diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md
index b96dee5c47b..6a6d87c2d1e 100644
--- a/.github/CONTRIBUTING.md
+++ b/.github/CONTRIBUTING.md
@@ -8,17 +8,20 @@ refer to the [Issue Report](#issues) section, as well as the
[Issue Report Template](ISSUE_TEMPLATE.md).
## Commenting
-If you comment on an active pull request, or issue report, make sure your comment is
+If you comment on an active pull request or issue report, make sure your comment is
concise and to the point. Comments on issue reports or pull requests should be relevant
and friendly, not attacks on the author or adages about something minimally relevant.
-If you believe an issue report is not a "bug", please report it to the Maintainers, or
-point out specifically and concisely your reasoning in a comment on the issue report.
+If you believe an issue report is not a "bug", please point out specifically and concisely your reasoning in a comment on the issue itself.
+
+#### Guidelines:
+ * Comments on Pull Requests and Issues should remain relevant to the subject in question and not derail discussions.
+ * Under no circumstances are users to be attacked for their ideas or contributions. All participants on a given PR or issue are expected to be civil. Failure to do so will result in disciplinary action.
+ For more details, see the [Code of Conduct](../CODE_OF_CONDUCT.md).
## Issues
The Issues section is not a place to request features, or ask for things to be changed
because you think they should be that way; The Issues section is specifically for
-reporting bugs in the code. Refer to ISSUE_TEMPLATE for the exact format that your Issue
-should be in.
+reporting bugs in the code.
#### Guidelines:
* Issue reports should be as detailed as possible, and if applicable, should include
@@ -57,21 +60,21 @@ actual development.
* While we have no issue helping contributors (and especially new contributors) bring reasonably sized contributions up to standards via the pull request review process, larger contributions are expected to pass a higher bar of completeness and code quality *before* you open a pull request. Maintainers may close such pull requests that are deemed to be substantially flawed. You should take some time to discuss with maintainers or other contributors on how to improve the changes.
#### Using Changelog
- * Tags used in changelog include add/rscadd, del/rscdel, fix/fixes, typo/spellcheck.
- * Without specifying a name it will default to using your GitHub name.
- Some examples
-```
-:cl:
-add: The ability to change the color of wires
-del: Deleted depreciated wire merging now handled in parent
-fix: Moving wires now follows the user input instead of moving the stack
-/:cl:
-```
-```
-:cl: N3X15
-typo: Fixes some misspelled words under Using Changelog
-/:cl:
-```
+ * The tags able to be used in the changelog are: `add/soundadd/imageadd`, `del/sounddel/imagedel`, `tweak`, `fix`, `wip`, `spellcheck`, and `experiment`.
+ * Without specifying a name it will default to using your GitHub name. Some examples include:
+
+ ```
+ :cl:
+ add: The ability to change the color of wires
+ del: Deleted depreciated wire merging now handled in parent
+ fix: Moving wires now follows the user input instead of moving the stack
+ /:cl:
+ ```
+ ```
+ :cl: UsernameHere
+ spellcheck: Fixes some misspelled words under Using Changelog
+ /:cl:
+ ```
## Specifications
@@ -113,14 +116,13 @@ datum
code
```
-The use of this is not allowed in this project *unless the majority of the file is already relatively pathed* as it makes finding definitions via full text
-searching next to impossible. The only exception is the variables of an object may be nested to the object, but must not nest further.
+The use of this format is **not** allowed in this project, as it makes finding definitions via full text searching next to impossible. The only exception is the variables of an object may be nested to the object, but must not nest further.
The previous code made compliant:
```DM
/datum/datum1
- var/varname1
+ var/varname1 = 1
var/varname2
var/static/varname3
var/static/varname4
@@ -129,6 +131,7 @@ The previous code made compliant:
code
/datum/datum1/proc/proc2()
code
+
/datum/datum1/datum2
varname1 = 0
/datum/datum1/datum2/proc/proc3()
@@ -139,11 +142,11 @@ The previous code made compliant:
```
### User Interfaces
-All new user interfaces in the game must be created using the TGUI framework. Documentation can be found inside the `tgui/docs` folder.
+All new user interfaces in the game must be created using the TGUI framework. Documentation can be found inside the [`tgui/docs`](../tgui/docs) folder, and the [`README.md`](../tgui/README.md) file.
This is to ensure all ingame UIs are snappy and respond well. An exception is made for user interfaces which are purely for OOC actions (Such as character creation, or anything admin related)
### No overriding type safety checks
-The use of the : operator to override type safety checks is not allowed. You must cast the variable to the proper type.
+The use of the `:` operator to override type safety checks is not allowed. You must cast the variable to the proper type.
### Type paths must begin with a /
eg: `/datum/thing`, not `datum/thing`
@@ -156,11 +159,11 @@ will still be, in actuality, `/datum/arbitrary`. Write your code to reflect this
It is rarely allowed to put type paths in a text format, as there are no compile errors if the type path no longer exists. Here is an example:
```DM
-//Good
-var/path_type = /obj/item/baseball_bat
-
//Bad
var/path_type = "/obj/item/baseball_bat"
+
+//Good
+var/path_type = /obj/item/baseball_bat
```
### Do not use `\The`.
@@ -170,17 +173,18 @@ The only exception to this rule is when dealing with items "belonging" to a mob,
ever forming.
```DM
+//Bad
+var/atom/A
+"\The [A]"
+
//Good
var/atom/A
"[A]"
-
-//Bad
-"\The [A]"
```
### Use the pronoun library instead of `\his` macros.
-We have a system in code/\_\_HELPERS/pronouns.dm for addressing all forms of pronouns. This is useful in a number of ways;
- * BYOND's \his macro can be unpredictable on what object it references.
+We have a system in [`code/__HELPERS/pronouns.dm`](../code/__HELPERS/pronouns.dm) for addressing all forms of pronouns. This is useful in a number of ways;
+ * BYOND's `\his` macro can be unpredictable on what object it references.
Take this example: `"[user] waves \his [user.weapon] around, hitting \his opponents!"`.
This will end up referencing the user's gender in the first occurence, but what about the second?
It'll actually print the gender set on the weapon he's carrying, which is unintended - and there's no way around this.
@@ -189,14 +193,14 @@ We have a system in code/\_\_HELPERS/pronouns.dm for addressing all forms of pro
The way to avoid these problems is to use the pronoun system. Instead of `"[user] waves \his arms."`, you can do `"[user] waves [user.p_their()] arms."`
-```
-//Good
-"[H] waves [H.p_their()] hands!"
-"[user] waves [H.p_their()] [user.weapon] around, hitting [H.p_their()] opponents!"`
-
+```DM
//Bad
"[H] waves \his hands!"
"[user] waves \his [user.weapon] around, hitting \his opponents!"
+
+//Good
+"[H] waves [H.p_their()] hands!"
+"[user] waves [H.p_their()] [user.weapon] around, hitting [H.p_their()] opponents!"`
```
### Use `[A.UID()]` over `\ref[A]`
@@ -207,24 +211,30 @@ if the original datum has been deleted - BYOND recycles the references.
UID's are actually unique; they work off of a global counter and are not recycled. Each datum has one assigned to it when it's created, which can be
accessed by `[datum.UID()]`. You can use this as a snap-in replacement for `\ref` by changing any `locate(ref)` calls in your code to `locateUID(ref)`.
-Usage of this system is mandatory for any /Topic( calls, and will produce errors in Dream Daemon if it's not used. ``, not `Link!"
-### Use var/name format when declaring variables
+//Good
+"Link!"
+```
+
+### Use `var/name` format when declaring variables
While DM allows other ways of declaring variables, this one should be used for consistency.
### Tabs, not spaces
You must use tabs to indent your code, NOT SPACES.
-(You may use spaces to align something, but you should tab to the block level first, then add the remaining spaces)
+(You may use spaces to align something, but you should tab to the block level first, then add the remaining spaces.)
### No hacky code
-Hacky code, such as adding specific checks (ex: `istype(src, /obj/whatever)`), is highly discouraged and only allowed when there is ***no*** other option. (
-Protip: 'I couldn't immediately think of a proper way so thus there must be no other option' is not gonna cut it here! If you can't think of anything else, say that outright and admit that you need help with it. Maintainers exist for exactly that reason.)
+Hacky code, such as adding specific checks (ex: `istype(src, /obj/whatever)`), is highly discouraged and only allowed when there is ***no*** other option. (Protip: 'I couldn't immediately think of a proper way so thus there must be no other option' is not gonna cut it here! If you can't think of anything else, say that outright and admit that you need help with it. Maintainers, PR Reviewers, and other contributors who can help you exist for exactly that reason.)
You can avoid hacky code by using object-oriented methodologies, such as overriding a function (called "procs" in DM) or sectioning code into functions and
then overriding them as required.
-The same also applies to bugfix - If an invalid value is being passed into a proc from something that shouldn't have that value, don't fix it on the proc itself, fix it at its origin! (Where feasible)
+The same also applies to bugfixes - If an invalid value is being passed into a proc from something that shouldn't have that value, don't fix it on the proc itself, fix it at its origin! (Where feasible)
### No duplicated code
Copying code from one place to another may be suitable for small, short-time projects, but Paradise is a long-term project and highly discourages this.
@@ -236,220 +246,226 @@ First, read the comments in [this BYOND thread](http://www.byond.com/forum/?post
There are two key points here:
-1) Defining a list in the variable's definition calls a hidden proc - init. If you have to define a list at startup, do so in New() (or preferably Initialize()) and avoid the overhead of a second call (Init() and then New())
+1) Defining a list in the variable's definition calls a hidden proc - init. If you have to define a list at startup, do so in `New()` (or preferably `Initialize()`) and avoid the overhead of a second call (`init()` and then `New()`)
2) It also consumes more memory to the point where the list is actually required, even if the object in question may never use it!
Remember: although this tradeoff makes sense in many cases, it doesn't cover them all. Think carefully about your addition before deciding if you need to use it.
### Prefer `Initialize()` over `New()` for atoms
-Our game controller is pretty good at handling long operations and lag, but it can't control what happens when the map is loaded, which calls `New` for all atoms on the map. If you're creating a new atom, use the `Initialize` proc to do what you would normally do in `New`. This cuts down on the number of proc calls needed when the world is loaded.
+Our game controller is pretty good at handling long operations and lag, but it can't control what happens when the map is loaded, which calls `New()` for all atoms on the map. If you're creating a new atom, use the `Initialize()` proc to do what you would normally do in `New()`. This cuts down on the number of proc calls needed when the world is loaded.
-While we normally encourage (and in some cases, even require) bringing out of date code up to date when you make unrelated changes near the out of date code, that is not the case for `New` -> `Initialize` conversions. These systems are generally more dependant on parent and children procs so unrelated random conversions of existing things can cause bugs that take months to figure out.
+While we normally encourage (and in some cases, even require) bringing out of date code up to date when you make unrelated changes near the out of date code, that is not the case for `New()` -> `Initialize()` conversions. These systems are generally more dependent on parent and children procs, so unrelated random conversions of existing things can cause bugs that take months to figure out.
-### No implicit var/
-When you declare a parameter in a proc, the var/ is implicit. Do not include any implicit var/ when declaring a variable.
+### No implicit `var/`
+When you declare a parameter in a proc, the `var/` is implicit. Do not include any implicit `var/` when declaring a variable.
+```DM
+//Bad
+/obj/item/proc1(var/mob/input1, var/input2)
+ code
-I.e.
-Bad:
-````
-obj/item/proc1(var/input1, var/input2)
-````
-Good:
-
-````
-obj/item/proc1(input1, input2)
-````
+//Good
+/obj/item/proc1(mob/input1, input2)
+ code
+```
### No magic numbers or strings
-This means stuff like having a "mode" variable for an object set to "1" or "2" with no clear indicator of what that means. Make these #defines with a name that
-more clearly states what it's for. For instance:
-````DM
+This means stuff like having a "mode" variable for an object set to "1" or "2" with no clear indicator of what that means. Make these #defines with a name that more clearly states what it's for. For instance:
+```DM
+//Bad
/datum/proc/do_the_thing(thing_to_do)
- switch(thing_to_do)
- if(1)
- (...)
- if(2)
- (...)
-````
+ switch(thing_to_do)
+ if(1)
+ do_stuff()
+ if(2)
+ do_other_stuff()
+```
There's no indication of what "1" and "2" mean! Instead, you should do something like this:
-````DM
+```DM
+//Good
#define DO_THE_THING_REALLY_HARD 1
#define DO_THE_THING_EFFICIENTLY 2
+
/datum/proc/do_the_thing(thing_to_do)
- switch(thing_to_do)
- if(DO_THE_THING_REALLY_HARD)
- (...)
- if(DO_THE_THING_EFFICIENTLY)
- (...)
-````
+ switch(thing_to_do)
+ if(DO_THE_THING_REALLY_HARD)
+ do_stuff()
+ if(DO_THE_THING_EFFICIENTLY)
+ do_other_stuff()
+```
This is clearer and enhances readability of your code! Get used to doing it!
### Control statements
(if, while, for, etc)
-* All control statements must not contain code on the same line as the statement (`if(condition) return`)
* All control statements comparing a variable to a number should use the formula of `thing` `operator` `number`, not the reverse
(eg: `if(count <= 10)` not `if(10 >= count)`)
* All control statements must be spaced as `if()`, with the brackets touching the keyword.
-* Do not use one-line control statements.
- Instead of doing
- ```
+* All control statements must not contain code on the same line as the statement.
+
+ ```DM
+ //Bad
if(x) return
- ```
- You should do
- ```
+
+ //Good
if(x)
- return
+ return
```
### Player Output
-Due to the use of "Goonchat", Paradise requires a special syntax for outputting text messages to players. Instead of `mob/client/world << "message"`,
-you must use `to_chat(mob/client/world, "message")`. Failure to do so will lead to your code not working.
+Due to the use of "Goonchat", Paradise requires a special syntax for outputting text messages to players. Instead of `mob << "message"`, you must use `to_chat(mob, "message")`. Failure to do so will lead to your code not working.
-### Use early return
+### Use early returns
Do not enclose a proc in an if-block when returning on a condition is more feasible.
This is bad:
````DM
/datum/datum1/proc/proc1()
- if(thing1)
- if(!thing2)
- if(thing3 == 30)
- do stuff
+ if(thing1)
+ if(!thing2)
+ if(thing3 == 30)
+ do stuff
````
This is good:
````DM
/datum/datum1/proc/proc1()
- if(!thing1)
- return
- if(thing2)
- return
- if(thing3 != 30)
- return
- do stuff
+ if(!thing1)
+ return
+ if(thing2)
+ return
+ if(thing3 != 30)
+ return
+ do stuff
````
This prevents nesting levels from getting deeper then they need to be.
-### Uses addtimer() instead of sleep() or spawn()
-If you need to call a proc after a set amount of time, use addtimer() instead of spawn() / sleep() where feasible.
-Although it is more complex, it is more performant and unlike spawn() or sleep(), it can be cancelled.
+### Use `addtimer()` instead of `sleep()` or `spawn()`
+If you need to call a proc after a set amount of time, use `addtimer()` instead of `spawn()` / `sleep()` where feasible.
+Though more complex, this method has greater performance. Additionally, unlike `spawn()` or `sleep()`, it can be cancelled.
For more details, see https://github.com/tgstation/tgstation/pull/22933.
-Look for code example on how to properly use it.
+Look for code examples on how to properly use it.
+```DM
+//Bad
+/datum/datum1/proc/proc1(target)
+ spawn(5 SECONDS)
+ target.dothing(arg1, arg2, arg3)
-This is bad:
-````DM
-/datum/datum1/proc/proc1()
- spawn(5)
- dothing(arg1, arg2, arg3)
-````
-This is good:
-````DM
- addtimer(CALLBACK(procsource, .proc/dothing, arg1, arg2, arg3), waittime, timertype)
-````
+//Good
+/datum/datum1/proc/proc1(target)
+ addtimer(CALLBACK(target, .proc/dothing, arg1, arg2, arg3), 5 SECONDS)
+```
This prevents nesting levels from getting deeper then they need to be.
### Operators
#### Spacing
-* Operators that should be separated by spaces
- * Boolean and logic operators like &&, || <, >, ==, etc (but not !)
- * Bitwise AND & and OR |
- * Argument separator operators like , (and ; when used in a forloop)
- * Assignment operators like = or += or the like
- * Math operators like +, -, /, or \*
-* Operators that should not be separated by spaces
- * Access operators like . and :
- * Parentheses ()
- * logical not !
+* Operators that should be separated by spaces:
+ * Boolean and logic operators like `&&`, `||` `<`, `>`, `==`, etc. (But not `!`)
+ * Bitwise AND `&` and OR `|`.
+ * Argument separator operators like `,`. (and `;` when used in a forloop)
+ * Assignment operators like `=` or `+=` or the like.
+ * Math operators like `+`, `-`, `/`, or `*`.
+* Operators that should NOT be separated by spaces:
+ * Access operators like `.` and `:`.
+ * Parentheses `()`.
+ * Logical not `!`.
#### Use
-* Bitwise AND - '&'
- * Should be written as ```bitfield & bitflag``` NEVER ```bitflag & bitfield```, both are valid, but the latter is confusing and nonstandard.
+* Bitwise AND `&`
+ * Should be written as `bitfield & bitflag` NEVER `bitflag & bitfield`, both are valid, but the latter is confusing and nonstandard.
* Associated lists declarations must have their key value quoted if it's a string
- * WRONG: list(a = "b")
- * RIGHT: list("a" = "b")
+
+ ```DM
+ //Bad
+ list(a = "b")
+
+ //Good
+ list("a" = "b")
+ ```
#### Bitflags
-* We prefer using bitshift operators instead of directly typing out the value. I.E.
+* We prefer using bitshift operators instead of directly typing out the value. I.E:
+
```
#define MACRO_ONE (1<<0)
#define MACRO_TWO (1<<1)
#define MACRO_THREE (1<<2)
```
- Is preferable to
+ Is preferable to:
```
#define MACRO_ONE 1
#define MACRO_TWO 2
#define MACRO_THREE 4
```
- This make the code more readable and less prone to error
+ While it may initially look intimidating, `(1<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.
@@ -482,9 +498,15 @@ in the SQL/updates folder.
### Mapping Standards
* Map Merge
- * You MUST run Map Merge prior to opening your PR when updating existing maps to minimize the change differences (even when using third party mapping programs such as FastDMM.)
- * Failure to run Map Merge on a map after using third party mapping programs (such as FastDMM) greatly increases the risk of the map's key dictionary
- becoming corrupted by future edits after running map merge. Resolving the corruption issue involves rebuilding the map's key dictionary;
+ * The following guideline for map merging applies to people who are **NOT** using StrongDMM, please see the StrongDMM section if you are.
+ * You **MUST** run Map Merge prior to opening your PR when updating existing maps to minimize the change differences (even when using third party mapping programs such as FastDMM.)
+ * Failure to run Map Merge on a map after using third party mapping programs (such as FastDMM) greatly increases the risk of the map's key dictionary becoming corrupted by future edits after running map merge. Resolving the corruption issue involves rebuilding the map's key dictionary;
+
+* StrongDMM
+ * When using StrongDMM, the following options **MUST** be enabled to avoid file bloat. They can be found under `File > Preferences > Save Options` in SDMM.
+ * Map save format: This **MUST** be set to **TGM** if you do not want to run Map Merge. Enabling this setting means SDMM will automatically map merge, letting you skip manual merging.
+ * Sanitize Variables - Removes variables that are declared on the map, but are the same as default. (For example: A standard floor turf that has `dir = 2` declared on the map will have that variable deleted as it is redundant.)
+ * Clean Unused Keys - Removes content tile keys that are no longer used on the map, usually leftover keys from deletions or edits.
* Variable Editing (Var-edits)
* While var-editing an item within the editor is perfectly fine, it is preferred that when you are changing the base behavior of an item (how it functions) that you make a new subtype of that item within the code, especially if you plan to use the item in multiple locations on the same map, or across multiple maps. This makes it easier to make corrections as needed to all instances of the item at one time as opposed to having to find each instance of it and change them all individually.
@@ -492,9 +514,45 @@ in the SQL/updates folder.
* Please attempt to clean out any dirty variables that may be contained within items you alter through var-editing. For example, due to how DM functions, changing the `pixel_x` variable from 23 to 0 will leave a dirty record in the map's code of `pixel_x = 0`. Likewise this can happen when changing an item's icon to something else and then back. This can lead to some issues where an item's icon has changed within the code, but becomes broken on the map due to it still attempting to use the old entry.
* Areas should not be var-edited on a map to change it's name or attributes. All areas of a single type and it's altered instances are considered the same area within the code, and editing their variables on a map can lead to issues with powernets and event subsystems which are difficult to debug.
-### 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)
+* If you are making non-minor edits to an area or room, (non-minor being anything more than moving a few objects or fixing small bugs) then you should ensure the entire area/room meets these standards.
+* When making a change to an area or room, follow these guidelines:
+ * Unless absolutely necessary, do not run pipes (including disposals) under wall turfs.
+ * NEVER run cables under wall turfs.
+ * Keep floor turf variations to a minimum. Generally, more than 3 floor turf types in one room is bad design.
+ * Run air pipes together where possible. The first example below is to be avoided, the second is optimal:
+
+  
+ * Pipe layouts should be logical and predictable, easy to understand at a glance. Always avoid complex layouts like in this example:
+
+ 
+
+ * Decals are to be used sparingly. Good map design does not require warning tape around everything. Decal overuse contributes to maptick slowdown.
+ * Every **area** should contain only one APC and air alarm.
+ * Critical infrastructure rooms (such as the engine, arrivals, and medbay areas) should be given an APC with a larger power cell.
+ * Every **room** should contain at least one fire alarm, air vent and scrubber, light switch, station intercom, and security camera.
+ * Intercoms should be set to frequency 145.9, and be speaker ON Microphone OFF. This is so radio signals can reach people even without headsets on. Larger room will require more than one at a time.
+ * Exceptions can be made to security camera placement for certain rooms, such as the execution room. Larger rooms may require more than one security camera. All security cameras should have a descriptive name that makes it easy to find on a camera console.
+ * A good example would be the template [Department name] - [Area], so Brig - Cell 1, or Medbay - Treatment Center. Consistency is key to good camera naming.
+ * Fire alarms should not be placed next to expected heat sources.
+ * Use the following "on" subtype of vents and scrubbers as opposed to var-editing: `/obj/machinery/atmospherics/unary/vent_scrubber/on` and `/obj/machinery/atmospherics/unary/vent_pump/on`
+ * Head of staff officers should contain a requests console.
+ * Firelocks should be used at area boundaries over doors and windows. Firelocks can also be used to break up hallways at reasonable intervals.
+ * Double firelocks are to be avoided unless absolutely necessary.
+ * Maintenance access doors should not have firelocks placed over them.
+ * Windows to secure areas or external areas should be reinforced. Windows in engine areas should be reinforced plasma glass.
+ * Windows in high security areas, such as the brig, bridge, and head of staff offices, should be electrified by placing a wire node under the window.
+ * Lights are to be used sparingly, they draw a significant amount of power.
+ * Ensure door and windoor access is correctly set, these are handled by the variables `req_access_txt` and `req_one_access_txt`. Public doors should have both of these values as `"0"`. For a list of access values, see [`code\__DEFINES\access.dm`](code/__DEFINES/access.dm).
+ * Always use numerical values encased in quotes for these variables. Multiple access values can be defined by separating them with a `;`, for example: `"28;31"` for kitchen AND cargo access.
+ * req_access_txt requires ALL LISTED ACCESSES to open the door, while req_one_access_txt lets anyone with ONE OF THE LISTED ACCESSES open the door.
+ * Departments should be connected to maintenance through a back or side door. This lets players escape and allows antags to break in.
+ * If this is not possible, departments should have extra entry and exit points.
+ * Engine areas, or areas with a high probability of receiving explosions, should use reinforced flooring if appropriate.
+ * 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)
* 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.
@@ -504,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)
@@ -543,10 +601,10 @@ for(var/obj/item/sword/S in bag_of_swords)
```
specifies a type for DM to filter by.
-With the previous example that's perfectly fine, we only want swords, but here the bag only contains swords? Is DM still going to try to filter because we gave
+With the previous example that's perfectly fine, we only want swords, but if the bag only contains swords? Is DM still going to try to filter because we gave
it a type to filter by? YES, and here comes the inefficiency. Wherever a list (or other container, such as an atom (in which case you're technically accessing
their special contents list, but that's irrelevant)) contains datums of the same datatype or subtypes of the datatype you require for your loop's body,
-you can circumvent DM's filtering and automatic ```istype()``` checks by writing the loop as such:
+you can circumvent DM's filtering and automatic `istype()` checks by writing the loop as such:
```DM
var/list/bag_of_swords = list(sword, sword, sword, sword)
var/obj/item/sword/best_sword
@@ -565,7 +623,7 @@ eg:
var/mob/living/carbon/human/H = YOU_THE_READER
H.gib()
```
-However, DM also has a dot variable, accessed just as `.` on its own, defaulting to a value of null. Now, what's special about the dot operator is that it is automatically returned (as in the `return` statement) at the end of a proc, provided the proc does not already manually return (`return count` for example.) Why is this special?
+However, DM also has a dot *variable*, accessed just as `.` on its own, defaulting to a value of null. Now, what's special about the dot operator is that it is automatically returned (as in the `return` statement) at the end of a proc, provided the proc does not already manually return (`return count` for example.) Why is this special?
With `.` being everpresent in every proc, can we use it as a temporary variable? Of course we can! However, the `.` operator cannot replace a typecasted variable - it can hold data any other var in DM can, it just can't be accessed as one, although the `.` operator is compatible with a few operators that look weird but work perfectly fine, such as: `.++` for incrementing `.'s` value, or `.[1]` for accessing the first element of `.`, provided that it's a list.
@@ -585,7 +643,7 @@ There is also an undocumented keyword called `static` that has the same behaviou
### Global Vars
-All new global vars must use the defines in code/\_\_DEFINES/\_globals.dm. Basic usage is as follows:
+All new global vars must use the defines in [`code/__DEFINES/_globals.dm`](../code/__DEFINES/_globals.dm). Basic usage is as follows:
To declare a global var:
```DM
@@ -606,13 +664,13 @@ responsible for properly tagging new pull requests and issues, moderating commen
pull requests/issues, and merging/closing pull requests.
### Maintainer List
-* [Fox P McCloud](https://github.com/Fox-McCloud)
-* [Crazy Lemon](https://github.com/Crazylemon64)
-* [Ansari](https://github.com/variableundefined)
* [AffectedArc07](https://github.com/AffectedArc07)
+* [Ansari](https://github.com/variableundefined)
+* [Crazy Lemon](https://github.com/Crazylemon64)
+* [Fox P McCloud](https://github.com/Fox-McCloud)
### Maintainer instructions
-* Do not `self-merge`; this refers to the practice of opening a pull request, then
+* Do not "self-merge"; this refers to the practice of opening a pull request, then
merging it yourself. A different maintainer must review and merge your pull request, no
matter how trivial. This is to ensure quality.
* A subset of this instruction: Do not push directly to the repository, always make a
diff --git a/.github/DOWNLOADING.md b/.github/DOWNLOADING.md
index eaad0dee7f9..39e671cff78 100644
--- a/.github/DOWNLOADING.md
+++ b/.github/DOWNLOADING.md
@@ -41,26 +41,29 @@ something has gone wrong - possibly a corrupt download or the files extracted wr
or a code issue on the main repo. Feel free to ask on Discord.
Once that's done, open up the config folder.
-Firstly, you will want to copy everything from the example folder into the regular config folder.
-EG: Move `config/example/config.txt` to `config/config.txt`, and do the same for all the other files.
-You'll want to edit `config.txt` to set your server location,
+Firstly, you will want to copy `config.toml` from the example folder into the regular config folder.
+You'll want to edit the `url_configuration` section of `config.toml` to set `reboot_url` to your server location,
so that all your players don't get disconnected at the end of each round.
It's recommended you don't turn on the gamemodes with probability 0,
as they have various issues and aren't currently being tested,
so they may have unknown and bizarre bugs.
-You'll also want to edit admins.txt to remove the default admins and add your own.
+You'll also want to edit the `admin_configuration` section of `config.toml` to remove the default admins and add your own.
If you are connecting from localhost to your own test server, you should automatically be admin.
-"Host" is the highest level of access, and the other recommended admin levels for now are
-"Game Admin" and "Moderator". The format is:
+"Head of Staff" is the highest level of access, and the other recommended admin levels for now are
+"Game Admin". The format is:
-```cfg
- byondkey - Rank
+```toml
+# Note that your ranks must be cased properly, usernames can be normal keys or ckey
+admin_assignments = [
+ {ckey = "Admin1", rank = "Hosting Provider"},
+ {ckey = "Admin2", rank = "Game Admin"},
+]
```
-where the BYOND key must be in lowercase and the admin rank must be properly capitalised.
-There are a bunch more admin ranks, but these two should be enough for most servers,
-assuming you have trustworthy admins. You can define your own ranks in `admin_ranks.txt`
+You can define your own ranks in the admin section of `config.toml`.
+
+If you want to run a production scale server, we highly recommend using database administrators.
Finally, to start the server,
run Dream Daemon and enter the path to your compiled paradise.dmb file.
@@ -94,7 +97,7 @@ When you have done this, you'll need to recompile the code, but then it should w
The SQL backend is required for storing character saves, preferences, administrative data, and many other things.
We recommend running a database if your server is going to be used as more than just a local test server.
-Your SQL server details go in `config/dbconfig.txt`,
+Your SQL server details go in the `database_configuration` section of `config.toml`,
and the SQL schema is in `SQL/paradise_schema.sql` or `SQL/paradise_schema_prefix.sql`,
depending on if you want table prefixes.
More detailed setup instructions are located on our wiki:
diff --git a/.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/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md
new file mode 100644
index 00000000000..1b5b2645fad
--- /dev/null
+++ b/CODE_OF_CONDUCT.md
@@ -0,0 +1,37 @@
+# Important
+
+The Paradise GitHub is not exempt from Paradise Station community and server rules, especially rules 0, 1, and 4. An inability to abide by the rules on the GitHub will result in disciplinary action up to, or including, a repository ban.
+
+## General Expectations
+
+### PR Discussion
+
+Comments on Pull Requests should remain relevant to the PR in question and not derail discussions.
+
+Under no circumstances are users to be attacked for their ideas or contributions. While constructive criticism is encouraged, toxicity or general mean-spirited behaviour will not be tolerated. All participants on a given PR or issue are expected to be civil. Failure to do so will result in disciplinary action.
+
+"Merge-nagging" or similar behaviour is not acceptable. Comments of this nature will result in warnings or an outright ban from the repository depending on general behaviour.
+
+If you exhibit behaviour that's considered to be a net-negative to the community (offensive commentary, repeat violations, constant nagging, personal attacks, etc.), you may be banned from other Paradise services (Discord, forums, server, wiki, etc.)
+
+Maintainers reserve the right to permanently revoke access from the repository if your behaviour is considered to be a net negative.
+
+### PR Approval/Objection Info
+
+Heads of Staff and Maintainers have the final say on Pull Requests. While thumbsup/thumbsdown reaction ratios are generally taken into account, they do not dictate whether or not a PR will be merged.
+
+After a twenty four hour minimum waiting period, Pull Requests can be merged once they receive approval from both a Head of Staff and a Maintainer. An exception is made for refactors and fixes, which may be merged at a Maintainer's discretion with no waiting period.
+
+While normally provided, Heads of Staff and Maintainers are not obligated to publicly state their objections to a Pull Request. Attacking or berating either of these roles over an objection will not be tolerated. Additionally, whining over the closure of a PR, the existence of an objection, or similar behaviour, will not be tolerated.
+
+### PR Expectations
+
+All Pull Requests are expected to be tested prior to submission. If a submitted Pull Request fails to pass CI checks, the likelihood of it being merged will be significantly lower. If you can't take the time to compile/test your Pull Request, do not expect a warm reception.
+
+It is expected that contributors discuss larger design changes on the forums prior to coding a Pull Request. The amount of time spent on any given Pull Request is not relevant. Maintainers are not responsible for contributors wasting their time creating features nobody asked for.
+
+Barring highly specific circumstances (such as single line changes, submissions from advanced users, or changes to repo documentation), we will not accept Pull Requests utilising the web editor.
+
+Pull Requests regarding heavy-handed nerfs, particularly immediately after said mechanic was used, will be tagged with `I ded pls nerf`. A bad experience with a particular mechanic is not a justification for nerfing it.
+
+Reactionary revert PRs are not tolerated under any circumstances. Posting a revert immediately after a Pull Request is merged will result in a repoban.
diff --git a/README.md b/README.md
index 802b951f5fe..196fb7376a2 100644
--- a/README.md
+++ b/README.md
@@ -10,15 +10,16 @@
# Useful Links
-- [Website](https://www.paradisestation.org/)
- [Discord](https://discordapp.com/invite/YJDsXFE)
- [Documentation](https://codedocs.paradisestation.org)
+- [Website](https://www.paradisestation.org/)
# Useful Documents
-- [Installation Guide](.github/DOWNLOADING.md)
-- [Contribution Guide](.github/CONTRIBUTING.md)
- [Autodocumentation Guide](.github/AUTODOC_GUIDE.md)
+- [Code of Conduct](./CODE_OF_CONDUCT.md)
+- [Contribution Guide](.github/CONTRIBUTING.md)
+- [Installation Guide](.github/DOWNLOADING.md)
---
diff --git a/SQL/paradise_schema.sql b/SQL/paradise_schema.sql
index f73134e6704..3ed1cbca688 100644
--- a/SQL/paradise_schema.sql
+++ b/SQL/paradise_schema.sql
@@ -1,5 +1,5 @@
-CREATE DATABASE IF NOT EXISTS `feedback` /*!40100 DEFAULT CHARACTER SET utf8 */;
-USE `feedback`;
+CREATE DATABASE IF NOT EXISTS `paradise_gamedb` /*!40100 DEFAULT CHARACTER SET utf8 */;
+USE `paradise_gamedb`;
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
@@ -24,7 +24,7 @@ CREATE TABLE `characters` (
`ckey` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL,
`slot` int(2) NOT NULL,
`OOC_Notes` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
- `real_name` varchar(45) COLLATE utf8mb4_unicode_ci NOT NULL,
+ `real_name` varchar(55) COLLATE utf8mb4_unicode_ci NOT NULL,
`name_is_always_random` tinyint(1) NOT NULL,
`gender` varchar(11) COLLATE utf8mb4_unicode_ci NOT NULL,
`age` smallint(4) NOT NULL,
diff --git a/SQL/paradise_schema_prefixed.sql b/SQL/paradise_schema_prefixed.sql
deleted file mode 100644
index 16ea512fb08..00000000000
--- a/SQL/paradise_schema_prefixed.sql
+++ /dev/null
@@ -1,597 +0,0 @@
-CREATE DATABASE IF NOT EXISTS `feedback` /*!40100 DEFAULT CHARACTER SET utf8 */;
-USE `feedback`;
-
-/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
-/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
-/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
-/*!40101 SET NAMES utf8 */;
-/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
-/*!40103 SET TIME_ZONE='+00:00' */;
-/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
-/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
-/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
-/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
-
---
--- Table structure for table `SS13_characters`
---
-
-DROP TABLE IF EXISTS `SS13_characters`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `SS13_characters` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `ckey` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL,
- `slot` int(2) NOT NULL,
- `OOC_Notes` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
- `real_name` varchar(45) COLLATE utf8mb4_unicode_ci NOT NULL,
- `name_is_always_random` tinyint(1) NOT NULL,
- `gender` varchar(11) COLLATE utf8mb4_unicode_ci NOT NULL,
- `age` smallint(4) NOT NULL,
- `species` varchar(45) COLLATE utf8mb4_unicode_ci NOT NULL,
- `language` varchar(45) COLLATE utf8mb4_unicode_ci NOT NULL,
- `hair_colour` varchar(7) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '#000000',
- `secondary_hair_colour` varchar(7) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '#000000',
- `facial_hair_colour` varchar(7) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '#000000',
- `secondary_facial_hair_colour` varchar(7) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '#000000',
- `skin_tone` smallint(4) NOT NULL,
- `skin_colour` varchar(7) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '#000000',
- `marking_colours` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'head=%23000000&body=%23000000&tail=%23000000',
- `head_accessory_colour` varchar(7) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '#000000',
- `hair_style_name` varchar(45) COLLATE utf8mb4_unicode_ci NOT NULL,
- `facial_style_name` varchar(45) COLLATE utf8mb4_unicode_ci NOT NULL,
- `marking_styles` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'head=None&body=None&tail=None',
- `head_accessory_style_name` varchar(45) COLLATE utf8mb4_unicode_ci NOT NULL,
- `alt_head_name` varchar(45) COLLATE utf8mb4_unicode_ci NOT NULL,
- `eye_colour` varchar(7) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '#000000',
- `underwear` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
- `undershirt` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
- `backbag` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
- `b_type` varchar(45) COLLATE utf8mb4_unicode_ci NOT NULL,
- `alternate_option` smallint(4) NOT NULL,
- `job_support_high` mediumint(8) NOT NULL,
- `job_support_med` mediumint(8) NOT NULL,
- `job_support_low` mediumint(8) NOT NULL,
- `job_medsci_high` mediumint(8) NOT NULL,
- `job_medsci_med` mediumint(8) NOT NULL,
- `job_medsci_low` mediumint(8) NOT NULL,
- `job_engsec_high` mediumint(8) NOT NULL,
- `job_engsec_med` mediumint(8) NOT NULL,
- `job_engsec_low` mediumint(8) NOT NULL,
- `job_karma_high` mediumint(8) NOT NULL,
- `job_karma_med` mediumint(8) NOT NULL,
- `job_karma_low` mediumint(8) NOT NULL,
- `flavor_text` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
- `med_record` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
- `sec_record` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
- `gen_record` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
- `disabilities` mediumint(8) NOT NULL,
- `player_alt_titles` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
- `organ_data` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
- `rlimb_data` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
- `nanotrasen_relation` varchar(45) COLLATE utf8mb4_unicode_ci NOT NULL,
- `speciesprefs` int(1) NOT NULL,
- `socks` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
- `body_accessory` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
- `gear` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
- `autohiss` tinyint(1) NOT NULL,
- PRIMARY KEY (`id`),
- KEY `ckey` (`ckey`)
-) ENGINE=InnoDB AUTO_INCREMENT=125467 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Table structure for table `SS13_customuseritems`
---
-
-DROP TABLE IF EXISTS `SS13_customuseritems`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `SS13_customuseritems` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `cuiCKey` varchar(36) NOT NULL,
- `cuiRealName` varchar(60) NOT NULL,
- `cuiPath` varchar(255) NOT NULL,
- `cuiItemName` text,
- `cuiDescription` text,
- `cuiReason` text,
- `cuiPropAdjust` text,
- `cuiJobMask` text NOT NULL,
- PRIMARY KEY (`id`)
-) ENGINE=InnoDB AUTO_INCREMENT=56 DEFAULT CHARSET=utf8mb4;
-ALTER TABLE `SS13_customuseritems` ADD INDEX(`cuiCKey`);
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Table structure for table `SS13_death`
---
-
-DROP TABLE IF EXISTS `SS13_death`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `SS13_death` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `pod` text NOT NULL COMMENT 'Place of death',
- `coord` text NOT NULL COMMENT 'X, Y, Z POD',
- `tod` datetime NOT NULL COMMENT 'Time of death',
- `job` text NOT NULL,
- `special` text NOT NULL,
- `name` text NOT NULL,
- `byondkey` text NOT NULL,
- `laname` text NOT NULL COMMENT 'Last attacker name',
- `lakey` text NOT NULL COMMENT 'Last attacker key',
- `gender` text NOT NULL,
- `bruteloss` int(11) NOT NULL,
- `brainloss` int(11) NOT NULL,
- `fireloss` int(11) NOT NULL,
- `oxyloss` int(11) NOT NULL,
- PRIMARY KEY (`id`)
-) ENGINE=InnoDB AUTO_INCREMENT=166546 DEFAULT CHARSET=utf8mb4;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Table structure for table `donators`
---
-
-DROP TABLE IF EXISTS `SS13_donators`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `SS13_donators` (
- `patreon_name` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL,
- `tier` int(2),
- `ckey` varchar(32) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Manual Field',
- `start_date` datetime,
- `end_date` datetime,
- `active` boolean,
- PRIMARY KEY (`patreon_name`),
- KEY `ckey` (`ckey`)
-) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Table structure for table `SS13_admin`
---
-
-DROP TABLE IF EXISTS `SS13_admin`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `SS13_admin` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `ckey` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL,
- `admin_rank` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Administrator',
- `level` int(2) NOT NULL DEFAULT '0',
- `flags` int(16) NOT NULL DEFAULT '0',
- PRIMARY KEY (`id`),
- KEY `ckey` (`ckey`)
-) ENGINE=InnoDB AUTO_INCREMENT=99 DEFAULT CHARSET=utf8mb4;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Table structure for table `SS13_admin_log`
---
-
-DROP TABLE IF EXISTS `SS13_admin_log`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `SS13_admin_log` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `datetime` datetime NOT NULL,
- `adminckey` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL,
- `adminip` varchar(18) COLLATE utf8mb4_unicode_ci NOT NULL,
- `log` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
- PRIMARY KEY (`id`),
- KEY `adminckey` (`adminckey`)
-) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Table structure for table `SS13_ban`
---
-
-DROP TABLE IF EXISTS `SS13_ban`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `SS13_ban` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `bantime` datetime NOT NULL,
- `ban_round_id` INT(11) NULL DEFAULT NULL,
- `serverip` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL,
- `bantype` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL,
- `reason` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
- `job` varchar(32) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
- `duration` int(11) NOT NULL,
- `rounds` int(11) DEFAULT NULL,
- `expiration_time` datetime NOT NULL,
- `ckey` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL,
- `computerid` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL,
- `ip` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL,
- `a_ckey` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL,
- `a_computerid` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL,
- `a_ip` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL,
- `who` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
- `adminwho` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
- `edits` mediumtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
- `unbanned` tinyint(1) DEFAULT NULL,
- `unbanned_datetime` datetime DEFAULT NULL,
- `unbanned_round_id` INT(11) NULL DEFAULT NULL,
- `unbanned_ckey` varchar(32) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
- `unbanned_computerid` varchar(32) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
- `unbanned_ip` varchar(32) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
- PRIMARY KEY (`id`),
- KEY `ckey` (`ckey`),
- KEY `computerid` (`computerid`),
- KEY `ip` (`ip`)
-) ENGINE=InnoDB AUTO_INCREMENT=58903 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Table structure for table `SS13_feedback`
---
-
-DROP TABLE IF EXISTS `SS13_feedback`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `SS13_feedback` (
- `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT,
- `datetime` datetime NOT NULL,
- `round_id` int(8) NOT NULL,
- `key_name` varchar(32) NOT NULL,
- `key_type` enum('text', 'amount', 'tally', 'nested tally', 'associative') NOT NULL,
- `version` tinyint(3) UNSIGNED NOT NULL,
- `json` LONGTEXT NOT NULL COLLATE 'utf8mb4_general_ci',
- PRIMARY KEY (`id`)
-) ENGINE=InnoDB AUTO_INCREMENT=257638 DEFAULT CHARSET=utf8mb4;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Table structure for table `SS13_player`
---
-
-DROP TABLE IF EXISTS `SS13_player`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `SS13_player` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `ckey` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL,
- `firstseen` datetime NOT NULL,
- `lastseen` datetime NOT NULL,
- `ip` varchar(18) COLLATE utf8mb4_unicode_ci NOT NULL,
- `computerid` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL,
- `lastadminrank` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Player',
- `ooccolor` varchar(7) COLLATE utf8mb4_unicode_ci DEFAULT '#b82e00',
- `UI_style` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT 'Midnight',
- `UI_style_color` varchar(7) COLLATE utf8mb4_unicode_ci DEFAULT '#ffffff',
- `UI_style_alpha` smallint(4) DEFAULT '255',
- `be_role` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
- `default_slot` smallint(4) DEFAULT '1',
- `toggles` int(11) DEFAULT NULL,
- `toggles_2` int(11) DEFAULT '0',
- `sound` mediumint(8) DEFAULT '31',
- `volume_mixer` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
- `lastchangelog` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0',
- `exp` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
- `clientfps` smallint(4) DEFAULT '0',
- `atklog` smallint(4) DEFAULT '0',
- `fuid` bigint(20) DEFAULT NULL,
- `fupdate` smallint(4) DEFAULT '0',
- `parallax` tinyint(1) DEFAULT '8',
- `byond_date` DATE DEFAULT NULL,
- `2fa_status` ENUM('DISABLED','ENABLED_IP','ENABLED_ALWAYS') NOT NULL DEFAULT 'DISABLED' COLLATE 'utf8mb4_general_ci',
- PRIMARY KEY (`id`),
- UNIQUE KEY `ckey` (`ckey`),
- KEY `lastseen` (`lastseen`),
- KEY `computerid` (`computerid`),
- KEY `ip` (`ip`),
- KEY `fuid` (`fuid`),
- KEY `fupdate` (`fupdate`)
-) ENGINE=InnoDB AUTO_INCREMENT=135298 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Table structure for table `SS13_privacy`
---
-
-DROP TABLE IF EXISTS `SS13_privacy`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `ss13_privacy` (
- `ckey` varchar(32) NOT NULL,
- `datetime` datetime NOT NULL,
- `consent` bit(1) NOT NULL,
- PRIMARY KEY (`ckey`)
-) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Table structure for table `SS13_karma`
---
-
-DROP TABLE IF EXISTS `SS13_karma`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `SS13_karma` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `spendername` text NOT NULL,
- `spenderkey` text NOT NULL,
- `receivername` text NOT NULL,
- `receiverkey` text NOT NULL,
- `receiverrole` text,
- `receiverspecial` text,
- `isnegative` tinyint(1) DEFAULT NULL,
- `spenderip` text NOT NULL,
- `time` datetime NOT NULL,
- PRIMARY KEY (`id`)
-) ENGINE=InnoDB AUTO_INCREMENT=73614 DEFAULT CHARSET=utf8mb4;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Table structure for table `SS13_karmatotals`
---
-
-DROP TABLE IF EXISTS `SS13_karmatotals`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `SS13_karmatotals` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `byondkey` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL,
- `karma` int(11) NOT NULL,
- `karmaspent` int(11) NOT NULL DEFAULT 0,
- PRIMARY KEY (`id`),
- KEY `byondkey` (`byondkey`)
-) ENGINE=InnoDB AUTO_INCREMENT=25715 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Table structure for table `SS13_library`
---
-
-DROP TABLE IF EXISTS `SS13_library`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `SS13_library` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `author` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
- `title` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
- `content` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
- `category` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
- `ckey` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL,
- `flagged` int(11) NOT NULL,
- PRIMARY KEY (`id`),
- KEY `ckey` (`ckey`),
- KEY `flagged` (`flagged`)
-) ENGINE=InnoDB AUTO_INCREMENT=4537 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Table structure for table `SS13_legacy_population`
---
-
-DROP TABLE IF EXISTS `SS13_legacy_population`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `SS13_legacy_population` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `playercount` int(11) DEFAULT NULL,
- `admincount` int(11) DEFAULT NULL,
- `time` datetime NOT NULL,
- PRIMARY KEY (`id`)
-) ENGINE=InnoDB AUTO_INCREMENT=2550 DEFAULT CHARSET=utf8mb4;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Table structure for table `SS13_whitelist`
---
-
-DROP TABLE IF EXISTS `SS13_whitelist`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `SS13_whitelist` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `ckey` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL,
- `job` mediumtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
- `species` mediumtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
- PRIMARY KEY (`id`),
- KEY `ckey` (`ckey`)
-) ENGINE=InnoDB AUTO_INCREMENT=4080 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-/*!40101 SET character_set_client = @saved_cs_client */;
-/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
-
-/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
-/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
-/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
-/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
-/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
-/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
-/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-
---
--- Table structure for table `SS13_watch`
---
-
-DROP TABLE IF EXISTS `SS13_watch`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `SS13_watch` (
- `ckey` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL,
- `reason` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
- `timestamp` datetime NOT NULL,
- `adminckey` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL,
- `last_editor` varchar(32) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
- `edits` mediumtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
- PRIMARY KEY (`ckey`)
-) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
-
---
--- Table structure for table `SS13_notes`
---
-
-DROP TABLE IF EXISTS `SS13_notes`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `SS13_notes` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `ckey` varchar(32) NOT NULL,
- `notetext` text NOT NULL,
- `timestamp` datetime NOT NULL,
- `round_id` INT(11) NULL DEFAULT NULL,
- `adminckey` varchar(32) NOT NULL,
- `last_editor` varchar(32),
- `edits` text,
- `server` varchar(50) NOT NULL,
- `crew_playtime` mediumint(8) UNSIGNED DEFAULT '0',
- `automated` TINYINT(3) UNSIGNED NULL DEFAULT '0',
- PRIMARY KEY (`id`),
- KEY `ckey` (`ckey`)
-) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Table structure for table `SS13_memo`
---
-
-DROP TABLE IF EXISTS `SS13_memo`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `SS13_memo` (
- `ckey` varchar(32) NOT NULL,
- `memotext` text NOT NULL,
- `timestamp` datetime NOT NULL,
- `last_editor` varchar(32),
- `edits` text,
- PRIMARY KEY (`ckey`)
-) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Table structure for table `SS13_ipintel`
---
-DROP TABLE IF EXISTS `SS13_ipintel`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `SS13_ipintel` (
- `ip` int UNSIGNED NOT NULL,
- `date` timestamp DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP NOT NULL,
- `intel` real NOT NULL DEFAULT '0',
- PRIMARY key (`ip`)
-) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Table structure for table `SS13_vpn_whitelist`
---
-DROP TABLE IF EXISTS `SS13_vpn_whitelist`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `SS13_vpn_whitelist` (
- `ckey` varchar(32) NOT NULL,
- `reason` text,
- PRIMARY KEY (`ckey`)
-) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Table structure for table `SS13_oauth_tokens`
---
-DROP TABLE IF EXISTS `SS13_oauth_tokens`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `SS13_oauth_tokens` (
- `ckey` varchar(32) NOT NULL,
- `token` varchar(32) NOT NULL,
- PRIMARY KEY (`token`),
- KEY `ckey` (`ckey`)
-) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Table structure for table `SS13_playtime_history`
---
-DROP TABLE IF EXISTS `SS13_playtime_history`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `SS13_playtime_history` (
- `ckey` varchar(32) NOT NULL,
- `date` DATE NOT NULL,
- `time_living` SMALLINT NOT NULL,
- `time_ghost` SMALLINT NOT NULL,
- PRIMARY KEY (`ckey`, `date`)
-) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
-
---
--- Table structure for table `SS13_connection_log`
---
-DROP TABLE IF EXISTS `SS13_connection_log`;
-CREATE TABLE `SS13_connection_log` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `datetime` datetime NOT NULL,
- `ckey` varchar(32) NOT NULL,
- `ip` varchar(32) NOT NULL,
- `computerid` varchar(32) NOT NULL,
- `result` ENUM('ESTABLISHED','DROPPED - IPINTEL','DROPPED - BANNED','DROPPED - INVALID') NOT NULL DEFAULT 'ESTABLISHED' COLLATE 'utf8mb4_general_ci',
- PRIMARY KEY (`id`),
- KEY `ckey` (`ckey`),
- KEY `ip` (`ip`),
- KEY `computerid` (`computerid`)
-) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
-
---
--- Table structure for table `SS13_changelog`
---
-DROP TABLE IF EXISTS `SS13_changelog`;
-CREATE TABLE `SS13_changelog` (
- `id` INT(11) NOT NULL AUTO_INCREMENT,
- `pr_number` INT(11) NOT NULL,
- `date_merged` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
- `author` VARCHAR(32) NOT NULL,
- `cl_type` ENUM('FIX','WIP','TWEAK','SOUNDADD','SOUNDDEL','CODEADD','CODEDEL','IMAGEADD','IMAGEDEL','SPELLCHECK','EXPERIMENT') NOT NULL,
- `cl_entry` TEXT NOT NULL,
- PRIMARY KEY (`id`)
-) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
-
---
--- Table structure for table `ip2group`
---
-DROP TABLE IF EXISTS `SS13_ip2group`;
-CREATE TABLE `SS13_ip2group` (
- `ip` varchar (18) COLLATE utf8mb4_unicode_ci NOT NULL,
- `date` timestamp DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP NOT NULL,
- `groupstr` varchar (32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
- PRIMARY KEY (`ip`),
- KEY `groupstr` (`groupstr`)
-) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
-
---
--- Table structure for table `round`
---
-DROP TABLE IF EXISTS `SS13_round`;
-CREATE TABLE `SS13_round` (
- `id` INT(11) NOT NULL AUTO_INCREMENT,
- `initialize_datetime` DATETIME NOT NULL,
- `start_datetime` DATETIME NULL,
- `shutdown_datetime` DATETIME NULL,
- `end_datetime` DATETIME NULL,
- `server_ip` INT(10) UNSIGNED NOT NULL,
- `server_port` SMALLINT(5) UNSIGNED NOT NULL,
- `commit_hash` CHAR(40) NULL,
- `game_mode` VARCHAR(32) NULL,
- `game_mode_result` VARCHAR(64) NULL,
- `end_state` VARCHAR(64) NULL,
- `shuttle_name` VARCHAR(64) NULL,
- `map_name` VARCHAR(32) NULL,
- `station_name` VARCHAR(80) NULL,
- PRIMARY KEY (`id`)
-) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
-
---
--- Table structure for table `2fa_secrets`
---
-CREATE TABLE `SS13_2fa_secrets` (
- `ckey` VARCHAR(50) NOT NULL COLLATE 'utf8mb4_general_ci',
- `secret` VARCHAR(64) NOT NULL COLLATE 'utf8mb4_general_ci',
- `date_setup` DATETIME NOT NULL DEFAULT current_timestamp(),
- `last_time` DATETIME NULL DEFAULT NULL,
- PRIMARY KEY (`ckey`) USING BTREE
-)
-COLLATE='utf8mb4_general_ci' ENGINE=InnoDB;
diff --git a/SQL/updates/10-11.sql b/SQL/updates/10-11.sql
index 843eb9d9982..7102170a9ff 100644
--- a/SQL/updates/10-11.sql
+++ b/SQL/updates/10-11.sql
@@ -6,35 +6,35 @@
# Generation (not necessary to run unless your DB has extra tables)
SELECT CONCAT("ALTER TABLE ", TABLE_SCHEMA, '.', TABLE_NAME," CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;") AS ExecuteTheString
FROM INFORMATION_SCHEMA.TABLES
-WHERE TABLE_SCHEMA="feedback"
+WHERE TABLE_SCHEMA="paradise_gamedb"
AND TABLE_TYPE="BASE TABLE";
# Actual table conversion stuff
-ALTER TABLE feedback.admin CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
-ALTER TABLE feedback.admin_log CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
-ALTER TABLE feedback.ban CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
-ALTER TABLE feedback.characters CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
-ALTER TABLE feedback.connection_log CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
-ALTER TABLE feedback.customuseritems CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
-ALTER TABLE feedback.death CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
-ALTER TABLE feedback.donators CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
-ALTER TABLE feedback.privacy CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
-ALTER TABLE feedback.feedback CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
-ALTER TABLE feedback.ipintel CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
-ALTER TABLE feedback.karma CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
-ALTER TABLE feedback.karmatotals CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
-ALTER TABLE feedback.legacy_population CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
-ALTER TABLE feedback.library CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
-ALTER TABLE feedback.memo CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
-ALTER TABLE feedback.notes CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
-ALTER TABLE feedback.oauth_tokens CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
-ALTER TABLE feedback.player CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
-ALTER TABLE feedback.playtime_history CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
-ALTER TABLE feedback.poll_option CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
-ALTER TABLE feedback.poll_question CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
-ALTER TABLE feedback.poll_textreply CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
-ALTER TABLE feedback.poll_vote CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
-ALTER TABLE feedback.privacy CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
-ALTER TABLE feedback.vpn_whitelist CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
-ALTER TABLE feedback.watch CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
-ALTER TABLE feedback.whitelist CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
+ALTER TABLE admin CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
+ALTER TABLE admin_log CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
+ALTER TABLE ban CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
+ALTER TABLE characters CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
+ALTER TABLE connection_log CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
+ALTER TABLE customuseritems CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
+ALTER TABLE death CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
+ALTER TABLE donators CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
+ALTER TABLE privacy CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
+ALTER TABLE feedback CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
+ALTER TABLE ipintel CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
+ALTER TABLE karma CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
+ALTER TABLE karmatotals CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
+ALTER TABLE legacy_population CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
+ALTER TABLE library CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
+ALTER TABLE memo CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
+ALTER TABLE notes CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
+ALTER TABLE oauth_tokens CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
+ALTER TABLE player CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
+ALTER TABLE playtime_history CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
+ALTER TABLE poll_option CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
+ALTER TABLE poll_question CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
+ALTER TABLE poll_textreply CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
+ALTER TABLE poll_vote CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
+ALTER TABLE privacy CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
+ALTER TABLE vpn_whitelist CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
+ALTER TABLE watch CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
+ALTER TABLE whitelist CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
diff --git a/SQL/updates/17-18.py b/SQL/updates/17-18.py
index 61d4fe39674..389722fa7d9 100644
--- a/SQL/updates/17-18.py
+++ b/SQL/updates/17-18.py
@@ -8,7 +8,7 @@
#To view the parameters for this script, execute it with the argument --help
#All the positional arguments are required, remember to include prefixes in your table names if you use them
#An example of the command used to execute this script from powershell:
-#python feedback_conversion_2017-11-12.py "localhost" "root" "password" "feedback" "feedback" "feedback_2"
+#python feedback_conversion_2017-11-12.py "localhost" "root" "password" "paradise_gamedb" "feedback" "feedback_2"
#I found that this script would complete conversion of 10000 rows approximately every 2-3 seconds
#Depending on the size of your feedback table and the computer used it may take several minutes for the script to finish
#
diff --git a/SQL/updates/24-25.sql b/SQL/updates/24-25.sql
new file mode 100644
index 00000000000..267dc013087
--- /dev/null
+++ b/SQL/updates/24-25.sql
@@ -0,0 +1,4 @@
+# Updates the DB from 24 to 25 -SabreML
+# Increases the maximum length of `real_name` from 45 to 55 in the `characters` table.
+
+ALTER TABLE `characters` MODIFY COLUMN `real_name` varchar(55) COLLATE utf8mb4_unicode_ci NOT NULL
diff --git a/_build_dependencies.sh b/_build_dependencies.sh
index be4b390a6d3..8cef5ce91b9 100644
--- a/_build_dependencies.sh
+++ b/_build_dependencies.sh
@@ -7,5 +7,3 @@ export NODE_VERSION=12
export BYOND_MAJOR=513
# Byond Minor
export BYOND_MINOR=1528
-# For the RUSTG library. Not actually installed by CI but kept as a reference
-export RUSTG_VERSION=2.1-P
diff --git a/_maps/map_files/Delta/delta.dmm b/_maps/map_files/Delta/delta.dmm
index 4be798f308c..0a5a95c69ac 100644
--- a/_maps/map_files/Delta/delta.dmm
+++ b/_maps/map_files/Delta/delta.dmm
@@ -20,36 +20,15 @@
/obj/machinery/power/tracker,
/obj/structure/cable{
d2 = 2;
- icon_state = "0-2";
- pixel_y = 0
- },
-/turf/simulated/floor/plasteel/airless{
- icon_state = "solarpanel"
- },
-/area/maintenance/auxsolarstarboard)
-"abG" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/structure/lattice/catwalk,
-/turf/space,
-/area/maintenance/auxsolarstarboard)
-"abW" = (
-/obj/machinery/power/solar{
- name = "Aft Starboard Solar Panel"
- },
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2";
- pixel_y = 0
+ icon_state = "0-2"
},
/turf/simulated/floor/plasteel/airless{
icon_state = "solarpanel"
},
/area/maintenance/auxsolarstarboard)
+"abQ" = (
+/turf/simulated/floor/plating,
+/area/security/permabrig)
"ace" = (
/obj/structure/cable{
d1 = 1;
@@ -155,8 +134,7 @@
master_tag = "tradedock";
name = "exterior access button";
pixel_x = 24;
- pixel_y = 4;
- req_access_txt = "0"
+ pixel_y = 4
},
/turf/simulated/floor/plating,
/area/hallway/secondary/entry)
@@ -194,23 +172,18 @@
/area/space)
"acO" = (
/obj/machinery/atmospherics/unary/vent_pump/high_volume{
- dir = 2;
frequency = 1331;
id_tag = "tradedock_pump"
},
/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
- frequency = 1379;
id_tag = "tradedock";
pixel_x = 25;
- pixel_y = 0;
- req_access_txt = "0";
tag_airpump = "tradedock_pump";
tag_chamber_sensor = "tradedock_sensor";
tag_exterior_door = "tradedock_outer";
tag_interior_door = "tradedock_inner"
},
/obj/machinery/airlock_sensor{
- frequency = 1379;
id_tag = "tradedock_sensor";
pixel_x = 25;
pixel_y = 5
@@ -246,8 +219,7 @@
/area/shuttle/pod_2)
"adt" = (
/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 5;
- icon_state = "intact"
+ dir = 5
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
@@ -263,8 +235,7 @@
"adv" = (
/obj/machinery/alarm{
dir = 4;
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/obj/machinery/light/small{
dir = 8
@@ -274,14 +245,11 @@
/area/hallway/secondary/entry)
"adx" = (
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/structure/chair/comfy/shuttle{
dir = 1
@@ -290,14 +258,11 @@
/area/shuttle/pod_1)
"adz" = (
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/structure/chair/comfy/shuttle{
dir = 1
@@ -321,7 +286,6 @@
"adO" = (
/obj/item/radio/intercom{
dir = 4;
- name = "station intercom (General)";
pixel_x = 28
},
/obj/structure/chair/comfy/shuttle{
@@ -332,7 +296,6 @@
"adP" = (
/obj/item/radio/intercom{
dir = 4;
- name = "station intercom (General)";
pixel_x = 28
},
/obj/structure/chair/comfy/shuttle{
@@ -395,9 +358,7 @@
/area/shuttle/pod_1)
"aee" = (
/obj/structure/shuttle/engine/propulsion{
- dir = 1;
- icon_state = "propulsion";
- tag = "icon-propulsion (NORTH)"
+ dir = 1
},
/turf/simulated/floor/plating/airless,
/area/shuttle/arrival/station)
@@ -433,8 +394,7 @@
/area/hallway/secondary/entry)
"aeA" = (
/obj/machinery/light/small{
- dir = 4;
- pixel_y = 0
+ dir = 4
},
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plating,
@@ -520,8 +480,7 @@
name = "Aux Construction Site"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry)
@@ -554,8 +513,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -570,8 +528,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -586,15 +543,13 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/sign/electricshock{
pixel_y = -32
},
/obj/machinery/door/airlock/engineering{
icon_state = "door_closed";
- locked = 0;
name = "Fore Starboard Solar Access";
req_access_txt = "10"
},
@@ -610,8 +565,7 @@
icon_state = "0-4"
},
/obj/machinery/power/terminal{
- dir = 1;
- icon_state = "term"
+ dir = 1
},
/turf/simulated/floor/plating,
/area/maintenance/auxsolarstarboard)
@@ -634,8 +588,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 5;
- icon_state = "intact"
+ dir = 5
},
/obj/machinery/access_button{
command = "cycle_interior";
@@ -683,9 +636,7 @@
id_tag = "solar_chapel_pump"
},
/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
- frequency = 1379;
id_tag = "solar_chapel_airlock";
- pixel_x = 0;
pixel_y = 25;
req_access_txt = "13";
tag_airpump = "solar_chapel_pump";
@@ -694,9 +645,7 @@
tag_interior_door = "solar_chapel_inner"
},
/obj/machinery/airlock_sensor{
- frequency = 1379;
id_tag = "solar_chapel_sensor";
- pixel_x = 0;
pixel_y = 32
},
/obj/effect/decal/warning_stripes/yellow,
@@ -733,13 +682,11 @@
/obj/structure/table/reinforced,
/obj/item/clipboard,
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/obj/machinery/camera{
c_tag = "Starboard Arrivals Storage";
dir = 4;
- network = list("SS13");
pixel_y = -22
},
/turf/simulated/floor/plasteel{
@@ -785,8 +732,7 @@
/obj/structure/cable,
/obj/machinery/power/solar_control{
id = "auxsolareast";
- name = "Fore Starboard Solar Control";
- track = 0
+ name = "Fore Starboard Solar Control"
},
/obj/effect/decal/warning_stripes/southeast,
/turf/simulated/floor/plating,
@@ -794,8 +740,7 @@
"afJ" = (
/obj/machinery/status_display{
layer = 4;
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel,
@@ -803,8 +748,7 @@
"afK" = (
/obj/machinery/status_display{
layer = 4;
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
@@ -833,8 +777,7 @@
/area/maintenance/disposal)
"afP" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -850,8 +793,7 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -869,8 +811,7 @@
/area/hallway/secondary/entry)
"agd" = (
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel,
@@ -890,13 +831,11 @@
dir = 10
},
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/machinery/camera{
c_tag = "Arrivals Port Fore";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
@@ -904,12 +843,10 @@
"agg" = (
/obj/machinery/status_display{
layer = 4;
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel,
@@ -917,17 +854,14 @@
"agh" = (
/obj/machinery/status_display{
layer = 4;
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/machinery/camera{
c_tag = "Arrivals Center Fore";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
@@ -935,41 +869,34 @@
"agk" = (
/obj/structure/window/reinforced,
/obj/structure/shuttle/engine/heater{
- dir = 1;
- icon_state = "heater";
- tag = "icon-heater (NORTH)"
+ dir = 1
},
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plating/airless,
/area/shuttle/arrival/station)
"agm" = (
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/obj/machinery/camera{
c_tag = "Arrivals Fore Starboard";
dir = 4;
- network = list("SS13");
pixel_y = -22
},
/obj/machinery/status_display{
layer = 4;
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry)
"agn" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/machinery/status_display{
layer = 4;
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/warning_stripes/east,
@@ -993,7 +920,6 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "brown"
},
/area/hallway/secondary/entry)
@@ -1058,8 +984,7 @@
"agL" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'.";
- name = "KEEP CLEAR: DOCKING AREA";
- pixel_y = 0
+ name = "KEEP CLEAR: DOCKING AREA"
},
/turf/simulated/wall/r_wall,
/area/engine/mechanic_workshop/hanger)
@@ -1108,8 +1033,7 @@
/obj/machinery/atmospherics/unary/vent_pump{
dir = 4;
external_pressure_bound = 101;
- on = 1;
- pressure_checks = 1
+ on = 1
},
/obj/machinery/newscaster/security_unit{
pixel_y = 32
@@ -1141,8 +1065,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -1154,7 +1077,6 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/obj/structure/cable{
@@ -1169,7 +1091,6 @@
/obj/structure/table,
/obj/machinery/cell_charger,
/obj/item/storage/toolbox/mechanical{
- pixel_x = 0;
pixel_y = 10
},
/obj/item/stock_parts/cell/high{
@@ -1207,8 +1128,7 @@
/area/engine/mechanic_workshop/hanger)
"ahf" = (
/obj/machinery/camera{
- c_tag = "Hanger North";
- network = list("SS13")
+ c_tag = "Hanger North"
},
/obj/effect/decal/warning_stripes/yellow/partial,
/turf/simulated/floor/engine,
@@ -1228,9 +1148,7 @@
desc = "A remote control-switch for the pod doors.";
id = "secpodbay";
name = "Pod Door Control";
- pixel_x = 0;
- pixel_y = 24;
- req_access_txt = "0"
+ pixel_y = 24
},
/obj/effect/decal/warning_stripes/yellow/partial,
/turf/simulated/floor/engine,
@@ -1241,7 +1159,6 @@
icon_state = "space";
layer = 4;
name = "EXTERNAL AIRLOCK";
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/engine,
@@ -1267,7 +1184,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/airlock/maintenance{
name = "Auxiliary Storage";
- req_access_txt = "0";
req_one_access_txt = "65;12"
},
/turf/simulated/floor/plasteel,
@@ -1348,8 +1264,7 @@
"ahI" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -1386,8 +1301,7 @@
"ahT" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
@@ -1396,8 +1310,7 @@
/obj/machinery/atmospherics/unary/vent_pump{
dir = 8;
external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
+ on = 1
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -1537,8 +1450,7 @@
"air" = (
/obj/effect/decal/warning_stripes/red/partial,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/engine{
icon_state = "stage_stairs";
@@ -1574,23 +1486,20 @@
/area/security/podbay)
"aiu" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/wall/r_wall,
/area/security/podbay)
"aiv" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/warning_stripes/southwestcorner,
/turf/simulated/floor/engine,
/area/engine/mechanic_workshop/hanger)
"aiw" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/engine,
/area/engine/mechanic_workshop/hanger)
@@ -1598,8 +1507,7 @@
/obj/machinery/atmospherics/unary/vent_pump{
dir = 8;
external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
+ on = 1
},
/turf/simulated/floor/engine,
/area/engine/mechanic_workshop/hanger)
@@ -1608,9 +1516,7 @@
luminosity = 3
},
/obj/machinery/door/poddoor/multi_tile/four_tile_ver{
- id_tag = "secpodbay";
- layer = 3.1;
- req_access_txt = "0"
+ id_tag = "secpodbay"
},
/turf/simulated/floor/engine,
/area/engine/mechanic_workshop/hanger)
@@ -1629,8 +1535,7 @@
},
/obj/structure/reagent_dispensers/fueltank,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/warning_stripes/red/hollow,
/obj/effect/decal/warning_stripes/south,
@@ -1643,8 +1548,7 @@
},
/obj/machinery/space_heater,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/warning_stripes/red/hollow,
/obj/effect/decal/warning_stripes/south,
@@ -1688,8 +1592,7 @@
/area/hallway/secondary/entry)
"aiJ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -1704,8 +1607,7 @@
"aiL" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel,
@@ -1734,8 +1636,7 @@
/area/engine/mechanic_workshop/hanger)
"aiT" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/warning_stripes/east,
@@ -1762,8 +1663,7 @@
"aiW" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/structure/rack{
dir = 1
@@ -1800,8 +1700,7 @@
/obj/machinery/atmospherics/unary/vent_pump{
dir = 8;
external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
+ on = 1
},
/turf/simulated/floor/engine,
/area/security/podbay)
@@ -1819,8 +1718,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/effect/decal/warning_stripes/red/hollow,
/obj/effect/decal/warning_stripes/east,
@@ -1885,7 +1783,7 @@
"ajD" = (
/obj/structure/table/reinforced,
/obj/item/clipboard,
-/obj/item/toy/figure/assistant,
+/obj/item/toy/figure/crew/assistant,
/turf/simulated/floor/mineral/titanium/blue,
/area/shuttle/arrival/station)
"ajF" = (
@@ -1969,13 +1867,11 @@
"akb" = (
/obj/machinery/status_display{
layer = 4;
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
@@ -2000,8 +1896,7 @@
dir = 8
},
/obj/machinery/camera{
- c_tag = "Mechanic's Office";
- network = list("SS13")
+ c_tag = "Mechanic's Office"
},
/obj/machinery/firealarm{
dir = 8;
@@ -2027,8 +1922,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/cable{
d2 = 8;
@@ -2037,7 +1931,6 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/turf/simulated/floor/plasteel{
@@ -2047,14 +1940,12 @@
"akf" = (
/obj/machinery/door/airlock/engineering/glass{
name = "Mechanic Workshop";
- req_access_txt = "70";
- req_one_access_txt = "0"
+ req_access_txt = "70"
},
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/engine,
/area/engine/mechanic_workshop)
@@ -2062,8 +1953,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/engine,
/area/engine/mechanic_workshop/hanger)
@@ -2084,8 +1974,7 @@
/obj/effect/decal/warning_stripes/west,
/obj/machinery/camera{
c_tag = "Hanger South";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/turf/simulated/floor/engine,
/area/engine/mechanic_workshop/hanger)
@@ -2133,8 +2022,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -2146,8 +2034,7 @@
/obj/item/stack/rods,
/obj/item/storage/box/lights/mixed,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -2156,8 +2043,7 @@
"akF" = (
/obj/effect/spawner/window/reinforced,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plating,
/area/engine/mechanic_workshop)
@@ -2165,21 +2051,18 @@
/obj/machinery/mecha_part_fabricator/spacepod,
/obj/effect/decal/warning_stripes/yellow/hollow,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/engine,
/area/engine/mechanic_workshop/hanger)
"akH" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/engine,
/area/engine/mechanic_workshop/hanger)
@@ -2190,8 +2073,7 @@
pixel_x = 28
},
/obj/machinery/light/small{
- dir = 4;
- pixel_y = 0
+ dir = 4
},
/turf/simulated/floor/engine,
/area/engine/mechanic_workshop/hanger)
@@ -2210,8 +2092,7 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/engineering/glass{
name = "Mechanic Workshop";
- req_access_txt = "70";
- req_one_access_txt = "0"
+ req_access_txt = "70"
},
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel,
@@ -2236,8 +2117,7 @@
/obj/machinery/door/window/westright{
name = "Mechanic's Desk";
req_access = null;
- req_access_txt = "70";
- req_one_access_txt = "0"
+ req_access_txt = "70"
},
/obj/machinery/cell_charger,
/turf/simulated/floor/plasteel{
@@ -2246,8 +2126,7 @@
/area/engine/mechanic_workshop)
"ald" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/structure/chair/office/light{
dir = 8
@@ -2267,8 +2146,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -2286,8 +2164,7 @@
/obj/machinery/atmospherics/unary/vent_pump{
dir = 8;
external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
+ on = 1
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -2312,7 +2189,6 @@
/obj/machinery/door_control{
id = "mechpod";
name = "Mechanic's Inner Door Control";
- pixel_x = 0;
pixel_y = -24;
req_access_txt = "70"
},
@@ -2335,7 +2211,6 @@
"alj" = (
/obj/structure/cable,
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
@@ -2375,17 +2250,14 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/status_display{
layer = 4;
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/machinery/camera{
c_tag = "Arrivals Port Aft";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
@@ -2404,8 +2276,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/status_display{
layer = 4;
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/machinery/light{
dir = 8
@@ -2417,17 +2288,14 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/status_display{
layer = 4;
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/machinery/camera{
c_tag = "Arrivals Center Aft";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
@@ -2451,7 +2319,6 @@
/area/engine/mechanic_workshop)
"alE" = (
/obj/docking_port/stationary{
- dir = 1;
dwidth = 2;
height = 12;
id = "ferry_home";
@@ -2464,8 +2331,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/status_display{
layer = 4;
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/machinery/light{
dir = 8
@@ -2473,7 +2339,6 @@
/obj/machinery/camera{
c_tag = "Arrivals Aft Starboard";
dir = 4;
- network = list("SS13");
pixel_y = -22
},
/obj/effect/decal/warning_stripes/west,
@@ -2494,12 +2359,10 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/status_display{
layer = 4;
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
@@ -2663,6 +2526,21 @@
/obj/effect/spawner/window/reinforced,
/turf/simulated/floor/plating,
/area/maintenance/fsmaint)
+"aml" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Prison Gate";
+ name = "Prison Lockdown Blast Doors";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/security/permabrig)
"amv" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/warning_stripes/south,
@@ -2679,8 +2557,7 @@
desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
icon_state = "space";
layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_x = 0
+ name = "EXTERNAL AIRLOCK"
},
/turf/simulated/floor/plating,
/area/hallway/secondary/entry)
@@ -2705,8 +2582,7 @@
/area/hallway/secondary/entry)
"amC" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/machinery/light/small,
/obj/effect/decal/cleanable/dirt,
@@ -2714,8 +2590,7 @@
/area/maintenance/fsmaint)
"amD" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
},
/obj/effect/decal/cleanable/dirt,
/obj/item/trash/candy,
@@ -2732,8 +2607,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -2745,8 +2619,7 @@
/area/maintenance/fsmaint)
"amF" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/barricade/wooden,
/obj/machinery/door/airlock/maintenance,
@@ -2754,8 +2627,7 @@
/area/maintenance/fsmaint)
"amG" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
@@ -2764,8 +2636,7 @@
/area/maintenance/fsmaint)
"amH" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/landmark{
name = "blobstart"
@@ -2778,8 +2649,7 @@
/obj/machinery/atmospherics/unary/vent_pump{
dir = 8;
external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
+ on = 1
},
/turf/simulated/floor/plasteel{
icon_state = "redyellowfull"
@@ -2882,8 +2752,7 @@
"ank" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -2892,8 +2761,7 @@
/area/hallway/secondary/entry)
"anl" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -2902,8 +2770,7 @@
/area/hallway/secondary/entry)
"anm" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
@@ -2913,8 +2780,7 @@
/area/hallway/secondary/entry)
"ann" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/light{
dir = 1
@@ -2926,8 +2792,7 @@
/area/hallway/secondary/entry)
"ano" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -2940,19 +2805,15 @@
icon_state = "0-4"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/obj/machinery/camera{
- c_tag = "Arrivals Hall Center";
- dir = 2;
- network = list("SS13")
+ c_tag = "Arrivals Hall Center"
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -2974,8 +2835,7 @@
/area/hallway/secondary/entry)
"anr" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
@@ -2985,8 +2845,7 @@
/area/hallway/secondary/entry)
"ans" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/light{
dir = 1
@@ -3063,7 +2922,6 @@
icon_state = "space";
layer = 4;
name = "EXTERNAL AIRLOCK";
- pixel_x = 0;
pixel_y = -32
},
/obj/machinery/atmospherics/unary/portables_connector{
@@ -3077,11 +2935,9 @@
/area/hallway/secondary/entry)
"anI" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
+ dir = 5
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "arrival"
},
/area/hallway/secondary/entry)
@@ -3091,7 +2947,6 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "arrival"
},
/area/hallway/secondary/entry)
@@ -3100,7 +2955,6 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "arrival"
},
/area/hallway/secondary/entry)
@@ -3108,22 +2962,18 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/machinery/alarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "arrival"
},
/area/hallway/secondary/entry)
"anM" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "arrival"
},
/area/hallway/secondary/entry)
@@ -3136,7 +2986,6 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "arrival"
},
/area/hallway/secondary/entry)
@@ -3152,22 +3001,19 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "arrival"
},
/area/hallway/secondary/entry)
"anP" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "arrival"
},
/area/hallway/secondary/entry)
"anQ" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -3215,8 +3061,7 @@
"anV" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 6;
@@ -3232,7 +3077,6 @@
dir = 1
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "arrival"
},
/area/hallway/secondary/entry)
@@ -3245,11 +3089,9 @@
dir = 4
},
/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
pixel_y = -32
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "arrival"
},
/area/hallway/secondary/entry)
@@ -3259,11 +3101,9 @@
},
/obj/machinery/alarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "arrival"
},
/area/hallway/secondary/entry)
@@ -3305,8 +3145,7 @@
/obj/structure/table,
/obj/random/toolbox,
/obj/machinery/newscaster{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
@@ -3314,15 +3153,13 @@
"aof" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitehall"
},
/area/maintenance/fsmaint)
"aog" = (
/obj/effect/decal/cleanable/cobweb2,
/obj/machinery/newscaster{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/structure/sink/kitchen{
desc = "A sink used for washing one's hands and face. It looks rusty and home-made";
@@ -3342,7 +3179,6 @@
},
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitehall"
},
/area/maintenance/fsmaint)
@@ -3354,7 +3190,6 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitehall"
},
/area/maintenance/fsmaint)
@@ -3427,7 +3262,6 @@
"aow" = (
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/secondary/entry)
@@ -3447,7 +3281,6 @@
/obj/machinery/vending/cigarette,
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutral"
},
/area/hallway/secondary/entry)
@@ -3455,7 +3288,6 @@
/obj/machinery/vending/clothing,
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutral"
},
/area/hallway/secondary/entry)
@@ -3487,8 +3319,7 @@
"aoE" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -3499,7 +3330,6 @@
/obj/machinery/vending/coffee,
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutral"
},
/area/hallway/secondary/entry)
@@ -3511,8 +3341,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
@@ -3522,26 +3351,21 @@
/area/maintenance/fsmaint)
"aoH" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plating,
/area/maintenance/fsmaint)
"aoI" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "redfull"
},
/area/maintenance/fsmaint)
"aoJ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
@@ -3551,15 +3375,12 @@
"aoK" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "redfull"
},
/area/maintenance/fsmaint)
"aoL" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/warning_stripes/yellow,
@@ -3569,29 +3390,23 @@
/area/maintenance/fsmaint)
"aoM" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/barricade/wooden,
/obj/machinery/door/airlock/maintenance,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "redfull"
},
/area/maintenance/fsmaint)
"aoN" = (
/obj/machinery/atmospherics/unary/vent_pump{
dir = 8;
external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
+ on = 1
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "redfull"
},
/area/maintenance/fsmaint)
"aoP" = (
@@ -3706,7 +3521,6 @@
pixel_y = 32
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "carpet"
},
/area/security/vacantoffice)
@@ -3715,7 +3529,6 @@
/obj/item/paper_bin,
/obj/item/pen,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "carpet"
},
/area/security/vacantoffice)
@@ -3768,8 +3581,7 @@
/area/bridge)
"aph" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -3843,8 +3655,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
@@ -3860,8 +3671,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/cleanable/dirt,
/obj/machinery/light/small{
@@ -3880,8 +3690,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
@@ -3894,8 +3703,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- level = 1
+ dir = 9
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
@@ -3972,8 +3780,7 @@
/obj/machinery/power/tracker,
/obj/structure/cable{
d2 = 2;
- icon_state = "0-2";
- pixel_y = 0
+ icon_state = "0-2"
},
/turf/simulated/floor/plasteel/airless{
icon_state = "solarpanel"
@@ -3996,8 +3803,7 @@
"apJ" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -4068,18 +3874,15 @@
dir = 8
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "carpet"
},
/area/security/vacantoffice)
"apT" = (
/obj/machinery/status_display{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/structure/computerframe,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "carpet"
},
/area/security/vacantoffice)
@@ -4104,8 +3907,7 @@
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -4116,8 +3918,7 @@
/obj/structure/table,
/obj/machinery/alarm{
dir = 8;
- pixel_x = 25;
- pixel_y = 0
+ pixel_x = 25
},
/obj/machinery/kitchen_machine/microwave,
/obj/effect/decal/warning_stripes/yellow/hollow,
@@ -4154,8 +3955,7 @@
"apZ" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -4166,9 +3966,7 @@
/obj/structure/table/wood,
/obj/item/flashlight/lamp,
/obj/machinery/camera{
- c_tag = "Arrivals Lobby";
- dir = 2;
- network = list("SS13")
+ c_tag = "Arrivals Lobby"
},
/turf/simulated/floor/plasteel{
icon_state = "grimy"
@@ -4204,8 +4002,7 @@
"aqf" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
icon_state = "redcorner"
@@ -4298,7 +4095,6 @@
name = "2maintenance loot spawner"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutral"
},
/area/maintenance/fsmaint)
@@ -4308,7 +4104,6 @@
/obj/effect/spawner/lootdrop/maintenance,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutral"
},
/area/maintenance/fsmaint)
@@ -4323,6 +4118,9 @@
/obj/effect/decal/cleanable/fungus,
/turf/simulated/wall,
/area/maintenance/fsmaint)
+"aqq" = (
+/turf/simulated/wall/r_wall/rust,
+/area/security/permabrig)
"aqu" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -4345,16 +4143,14 @@
/obj/item/clothing/accessory/waistcoat,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/maintenance/electrical_shop)
"aqw" = (
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/maintenance/electrical_shop)
"aqx" = (
@@ -4362,8 +4158,7 @@
/obj/item/storage/box/matches,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/maintenance/electrical_shop)
"aqy" = (
@@ -4461,8 +4256,7 @@
/area/maintenance/fsmaint)
"aqI" = (
/obj/structure/extinguisher_cabinet{
- pixel_x = -28;
- pixel_y = 0
+ pixel_x = -28
},
/turf/simulated/floor/plasteel{
icon_state = "grimy"
@@ -4505,7 +4299,6 @@
/area/security/vacantoffice)
"aqP" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "carpet"
},
/area/security/vacantoffice)
@@ -4515,7 +4308,6 @@
},
/obj/structure/computerframe,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "carpet"
},
/area/security/vacantoffice)
@@ -4589,8 +4381,7 @@
"aqZ" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
icon_state = "redcorner"
@@ -4619,12 +4410,10 @@
"arc" = (
/obj/machinery/camera{
c_tag = "Arrivals Checkpoint";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/obj/machinery/status_display{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/machinery/computer/prisoner,
/turf/simulated/floor/plasteel{
@@ -4657,7 +4446,6 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/turf/simulated/floor/plating,
@@ -4667,8 +4455,7 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/maintenance/fsmaint)
"ari" = (
@@ -4696,15 +4483,13 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/maintenance/electrical_shop)
"arp" = (
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/maintenance/electrical_shop)
"arq" = (
@@ -4712,8 +4497,7 @@
/obj/item/clothing/head/that,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/maintenance/electrical_shop)
"arr" = (
@@ -4801,8 +4585,7 @@
"arA" = (
/obj/machinery/alarm{
dir = 4;
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
@@ -4881,8 +4664,7 @@
"arI" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{
- dir = 8;
- icon_state = "map"
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -4893,16 +4675,13 @@
/obj/machinery/camera{
c_tag = "Customs Desk";
dir = 4;
- network = list("SS13");
pixel_y = -22
},
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/obj/item/radio/intercom{
- pixel_x = -28;
- pixel_y = 0
+ pixel_x = -28
},
/obj/machinery/computer/card,
/turf/simulated/floor/plasteel{
@@ -5043,20 +4822,15 @@
/area/security/checkpoint2)
"arT" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/item/radio/intercom{
dir = 1;
- name = "station intercom (General)";
- pixel_x = 28;
- pixel_y = 0
+ pixel_x = 28
},
/obj/machinery/computer/security,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "redfull"
},
/area/security/checkpoint2)
"arU" = (
@@ -5076,16 +4850,14 @@
/obj/effect/decal/cleanable/cobweb,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/maintenance/fsmaint)
"arW" = (
/obj/machinery/computer/arcade,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/maintenance/fsmaint)
"arX" = (
@@ -5093,8 +4865,7 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/maintenance/fsmaint)
"arY" = (
@@ -5108,8 +4879,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/maintenance/fsmaint)
"arZ" = (
@@ -5122,8 +4892,7 @@
/obj/structure/chair/stool,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/maintenance/fsmaint)
"asa" = (
@@ -5155,8 +4924,7 @@
},
/obj/structure/cable{
d2 = 2;
- icon_state = "0-2";
- pixel_y = 0
+ icon_state = "0-2"
},
/turf/simulated/floor/plasteel/airless{
icon_state = "solarpanel"
@@ -5169,26 +4937,22 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/maintenance/electrical_shop)
"asj" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/maintenance/electrical_shop)
"ask" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "wood"
@@ -5196,8 +4960,7 @@
/area/maintenance/electrical_shop)
"asl" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/table/wood,
/obj/item/clipboard,
@@ -5209,8 +4972,7 @@
/area/maintenance/electrical_shop)
"asm" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
},
/turf/simulated/floor/plasteel{
icon_state = "wood"
@@ -5220,8 +4982,7 @@
/obj/machinery/atmospherics/unary/vent_pump{
dir = 8;
external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
+ on = 1
},
/turf/simulated/floor/plasteel{
icon_state = "wood"
@@ -5296,8 +5057,7 @@
/area/maintenance/fsmaint)
"asw" = (
/obj/machinery/status_display{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/machinery/computer/med_data,
/turf/simulated/floor/plasteel{
@@ -5345,8 +5105,7 @@
"asB" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -5355,8 +5114,7 @@
/area/hallway/secondary/entry)
"asC" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/chair/comfy/brown{
dir = 4
@@ -5369,8 +5127,7 @@
/obj/machinery/atmospherics/unary/vent_pump{
dir = 8;
external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
+ on = 1
},
/turf/simulated/floor/carpet,
/area/hallway/secondary/entry)
@@ -5414,8 +5171,7 @@
/obj/structure/chair/stool,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/maintenance/fsmaint)
"asK" = (
@@ -5423,8 +5179,7 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/maintenance/fsmaint)
"asL" = (
@@ -5436,15 +5191,13 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/maintenance/fsmaint)
"asM" = (
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/maintenance/fsmaint)
"asN" = (
@@ -5515,16 +5268,6 @@
},
/turf/simulated/floor/plating,
/area/maintenance/disposal)
-"asU" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/structure/lattice/catwalk,
-/turf/space,
-/area/maintenance/auxsolarport)
"asV" = (
/obj/structure/cable{
d1 = 2;
@@ -5620,8 +5363,7 @@
/obj/item/circuitboard/arcade,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/maintenance/electrical_shop)
"atf" = (
@@ -5630,8 +5372,7 @@
/obj/item/airalarm_electronics,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/maintenance/electrical_shop)
"atg" = (
@@ -5717,8 +5458,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/computerframe,
/obj/machinery/status_display{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/turf/simulated/floor/plasteel{
icon_state = "wood"
@@ -5727,7 +5467,6 @@
"ato" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutral"
},
/area/maintenance/fsmaint)
@@ -5786,7 +5525,6 @@
"atv" = (
/obj/structure/cable,
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
@@ -5825,7 +5563,6 @@
/obj/item/storage/secure/briefcase,
/obj/machinery/alarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/turf/simulated/floor/plasteel{
@@ -5849,8 +5586,7 @@
"atB" = (
/obj/structure/filingcabinet,
/obj/machinery/newscaster{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/turf/simulated/floor/plasteel{
dir = 6;
@@ -5860,7 +5596,6 @@
"atC" = (
/obj/machinery/alarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/obj/structure/chair/comfy/brown{
@@ -5926,7 +5661,6 @@
"atI" = (
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/structure/closet/secure_closet/security,
@@ -5938,8 +5672,7 @@
"atJ" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
@@ -5980,29 +5713,14 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/maintenance/fsmaint)
-"atN" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
"atO" = (
/obj/structure/cable{
d1 = 4;
@@ -6011,13 +5729,11 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/maintenance/fsmaint)
"atP" = (
@@ -6030,13 +5746,11 @@
/obj/machinery/atmospherics/unary/vent_pump{
dir = 8;
external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
+ on = 1
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/maintenance/fsmaint)
"atQ" = (
@@ -6048,24 +5762,21 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/maintenance/fsmaint)
"atR" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/maintenance/fsmaint)
"atS" = (
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/maintenance/fsmaint)
"atT" = (
@@ -6208,8 +5919,7 @@
/obj/structure/table/wood,
/obj/machinery/alarm{
dir = 4;
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/obj/item/circuitboard/microwave,
/obj/item/stack/sheet/glass{
@@ -6224,8 +5934,7 @@
/obj/item/stack/cable_coil/random,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/maintenance/electrical_shop)
"aui" = (
@@ -6236,8 +5945,7 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/maintenance/electrical_shop)
"auj" = (
@@ -6256,8 +5964,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/maintenance/electrical_shop)
"auk" = (
@@ -6298,7 +6005,6 @@
/obj/structure/cable,
/obj/item/twohanded/required/kirbyplants,
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
@@ -6310,8 +6016,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/table/wood,
/obj/machinery/newscaster{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/item/folder/red,
/obj/item/lighter/zippo,
@@ -6334,7 +6039,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutral"
},
/area/maintenance/fsmaint)
@@ -6392,17 +6096,14 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/maintenance/fsmaint)
"auy" = (
/obj/structure/table/wood,
/obj/item/toy/AI,
/obj/machinery/light/small{
- dir = 4;
- icon_state = "bulb1";
- tag = "icon-bulb1 (EAST)"
+ dir = 4
},
/turf/simulated/floor/plating,
/area/maintenance/fsmaint)
@@ -6420,8 +6121,7 @@
id = "garbage"
},
/obj/machinery/light/small{
- dir = 4;
- pixel_y = 0
+ dir = 4
},
/obj/effect/decal/warning_stripes/west,
/obj/effect/decal/warning_stripes/east,
@@ -6632,8 +6332,7 @@
"auZ" = (
/obj/effect/decal/warning_stripes/yellow/hollow,
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/obj/structure/window/reinforced{
dir = 1;
@@ -6655,8 +6354,7 @@
"avb" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -6684,8 +6382,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
@@ -6701,8 +6398,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/door/airlock/maintenance{
req_access_txt = "12"
@@ -6734,11 +6430,9 @@
"avh" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/secondary/entry)
@@ -6793,8 +6487,7 @@
/obj/item/lighter/random,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/maintenance/fsmaint)
"avp" = (
@@ -6802,8 +6495,7 @@
/obj/item/clothing/glasses/regular/hipster,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/maintenance/fsmaint)
"avq" = (
@@ -6817,11 +6509,10 @@
/area/maintenance/fsmaint)
"avr" = (
/obj/structure/table/wood,
-/obj/item/toy/figure/wizard,
+/obj/item/toy/figure/crew/wizard,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/maintenance/fsmaint)
"avs" = (
@@ -6876,8 +6567,7 @@
/area/engine/controlroom)
"avy" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/warning_stripes/northwest,
/turf/simulated/floor/plasteel,
@@ -6889,8 +6579,7 @@
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
},
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel,
@@ -6915,8 +6604,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel,
@@ -6928,16 +6616,14 @@
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ 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;
- level = 1
+ dir = 4
},
/obj/machinery/light/small{
dir = 1
@@ -6952,8 +6638,7 @@
/area/engine/controlroom)
"avE" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -6969,8 +6654,7 @@
/area/engine/controlroom)
"avG" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -6979,8 +6663,7 @@
/area/engine/controlroom)
"avH" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/warning_stripes/northwest,
@@ -6988,8 +6671,7 @@
/area/engine/controlroom)
"avI" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel,
@@ -7055,7 +6737,6 @@
tag = ""
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutral"
},
/area/maintenance/fsmaint)
@@ -7067,8 +6748,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/turf/simulated/floor/plating,
/area/maintenance/fsmaint)
@@ -7080,8 +6760,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
},
/turf/simulated/floor/plating,
/area/maintenance/fsmaint)
@@ -7093,11 +6772,9 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutral"
},
/area/maintenance/fsmaint)
@@ -7109,8 +6786,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
@@ -7123,8 +6799,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
@@ -7140,8 +6815,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
@@ -7155,7 +6829,6 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutral"
},
/area/maintenance/fsmaint)
@@ -7173,25 +6846,21 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
},
/turf/simulated/floor/plating,
/area/maintenance/fsmaint)
"avX" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutral"
},
/area/maintenance/fsmaint)
"avY" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/closet/crate,
/obj/effect/spawner/lootdrop/maintenance{
@@ -7202,16 +6871,14 @@
/area/maintenance/fsmaint)
"avZ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/girder,
/turf/simulated/floor/plating,
/area/maintenance/fsmaint)
"awa" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/closet,
/obj/effect/spawner/lootdrop/maintenance{
@@ -7226,8 +6893,7 @@
icon_state = "pipe-c"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
},
/turf/simulated/floor/plating,
/area/maintenance/fsmaint)
@@ -7244,8 +6910,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
@@ -7255,12 +6920,10 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutral"
},
/area/maintenance/fsmaint)
@@ -7275,7 +6938,6 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutral"
},
/area/maintenance/fsmaint)
@@ -7290,8 +6952,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plating,
/area/maintenance/fsmaint)
@@ -7315,8 +6976,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
@@ -7345,8 +7005,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -7359,8 +7018,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -7372,8 +7030,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/navbeacon{
codes_txt = "patrol;next_patrol=hall1";
@@ -7389,8 +7046,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -7412,12 +7068,10 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/secondary/entry)
@@ -7426,8 +7080,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/door/airlock/maintenance{
req_access_txt = "12"
@@ -7440,8 +7093,7 @@
icon_state = "pipe-c"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
@@ -7460,8 +7112,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
@@ -7477,8 +7128,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
@@ -7501,8 +7151,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -7579,6 +7228,13 @@
},
/obj/effect/decal/warning_stripes/southwest,
/obj/effect/decal/warning_stripes/north,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
/turf/simulated/floor/plating,
/area/maintenance/disposal)
"awE" = (
@@ -7706,8 +7362,7 @@
/area/engine/controlroom)
"awO" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/cable{
d1 = 1;
@@ -7796,8 +7451,7 @@
/obj/structure/table/reinforced,
/obj/machinery/alarm{
dir = 8;
- pixel_x = 25;
- pixel_y = 0
+ pixel_x = 25
},
/obj/item/clothing/suit/radiation,
/obj/item/clothing/head/radiation,
@@ -7838,9 +7492,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/cleanable/dirt,
/obj/machinery/light/small{
- dir = 4;
- icon_state = "bulb1";
- tag = "icon-bulb1 (EAST)"
+ dir = 4
},
/turf/simulated/floor/plating,
/area/maintenance/fsmaint)
@@ -7861,8 +7513,7 @@
/area/crew_quarters/toilet)
"axf" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
@@ -7899,7 +7550,6 @@
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/secondary/entry)
@@ -7927,7 +7577,6 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/secondary/entry)
@@ -7935,7 +7584,6 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/secondary/entry)
@@ -7982,7 +7630,6 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutral"
},
/area/maintenance/fsmaint)
@@ -8003,8 +7650,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
@@ -8020,12 +7666,10 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutral"
},
/area/maintenance/fsmaint)
@@ -8040,12 +7684,10 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutral"
},
/area/maintenance/fsmaint)
@@ -8060,8 +7702,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
@@ -8073,16 +7714,16 @@
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/warning_stripes/yellow,
+/obj/structure/disposalpipe/junction{
+ dir = 8;
+ icon_state = "pipe-j2";
+ tag = null
+ },
/turf/simulated/floor/plasteel,
/area/maintenance/fsmaint)
"axw" = (
@@ -8096,11 +7737,9 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutral"
},
/area/maintenance/fsmaint)
@@ -8115,15 +7754,13 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/cleanable/dirt,
/obj/machinery/door/airlock/maintenance{
req_access_txt = "12"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutral"
},
/area/maintenance/disposal)
@@ -8138,8 +7775,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plating,
/area/maintenance/disposal)
@@ -8154,8 +7790,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
@@ -8185,12 +7820,10 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "brown"
},
/area/maintenance/disposal)
@@ -8205,8 +7838,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/cleanable/dirt,
/obj/machinery/alarm{
@@ -8228,11 +7860,9 @@
/obj/machinery/atmospherics/unary/vent_pump{
dir = 8;
external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
+ on = 1
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "brown"
},
/area/maintenance/disposal)
@@ -8246,14 +7876,12 @@
icon_state = "pipe-c"
},
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
/obj/effect/decal/cleanable/dirt,
/obj/machinery/light/small{
- dir = 4;
- pixel_y = 0
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 6;
@@ -8327,7 +7955,6 @@
},
/obj/item/radio/intercom{
dir = 1;
- name = "station intercom (General)";
pixel_y = -25
},
/obj/effect/decal/warning_stripes/south,
@@ -8411,8 +8038,7 @@
},
/obj/item/twohanded/required/kirbyplants,
/obj/structure/sign/nosmoking_2{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
@@ -8527,8 +8153,7 @@
/obj/item/storage/box/mousetraps,
/obj/item/storage/box/mousetraps,
/obj/structure/extinguisher_cabinet{
- pixel_x = -28;
- pixel_y = 0
+ pixel_x = -28
},
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
@@ -8551,7 +8176,6 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/obj/structure/closet/jcloset,
@@ -8560,9 +8184,7 @@
/area/janitor)
"aym" = (
/obj/machinery/camera{
- c_tag = "Janitor's Closet";
- dir = 2;
- network = list("SS13")
+ c_tag = "Janitor's Closet"
},
/obj/structure/closet/l3closet/janitor,
/obj/machinery/requests_console{
@@ -8577,7 +8199,7 @@
"ayn" = (
/obj/structure/table/reinforced,
/obj/item/clipboard,
-/obj/item/toy/figure/janitor,
+/obj/item/toy/figure/crew/janitor,
/obj/machinery/status_display{
pixel_y = 32
},
@@ -8642,11 +8264,9 @@
/area/hallway/secondary/entry)
"ayv" = (
/obj/structure/sign/directions/engineering{
- dir = 2;
pixel_y = 8
},
/obj/structure/sign/directions/science{
- dir = 2;
pixel_y = 1
},
/obj/structure/sign/directions/evac{
@@ -8665,8 +8285,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/door/airlock/maintenance{
req_access_txt = "12"
@@ -8677,8 +8296,7 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -8691,7 +8309,6 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/secondary/entry)
@@ -8699,11 +8316,8 @@
/obj/structure/sign/directions/evac{
pixel_y = -8
},
-/obj/structure/sign/directions/medical{
- dir = 2
- },
+/obj/structure/sign/directions/medical,
/obj/structure/sign/directions/security{
- dir = 2;
pixel_y = 8
},
/turf/simulated/wall,
@@ -8817,8 +8431,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 6;
- level = 2
+ dir = 6
},
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
@@ -8835,12 +8448,11 @@
dir = 4;
icon_state = "pipe-c"
},
-/turf/simulated/wall/rust,
+/turf/simulated/wall,
/area/maintenance/fsmaint)
"ayT" = (
/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 6;
- level = 2
+ dir = 6
},
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel,
@@ -8901,15 +8513,13 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria"
},
/area/maintenance/fsmaint)
"azb" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
@@ -8932,8 +8542,7 @@
/area/maintenance/fsmaint)
"aze" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "wood"
@@ -8962,8 +8571,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -9030,15 +8638,13 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (NORTHEAST)"
+ icon_state = "whitegreen"
},
/area/janitor)
"azm" = (
/obj/structure/reagent_dispensers/watertank,
/obj/structure/sign/nosmoking_2{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
@@ -9058,7 +8664,6 @@
},
/obj/structure/sink{
dir = 8;
- icon_state = "sink";
pixel_x = -12;
pixel_y = 2
},
@@ -9126,13 +8731,11 @@
"azw" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/camera{
c_tag = "Fore Hallway North";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -9182,8 +8785,7 @@
/area/quartermaster/sorting)
"azC" = (
/obj/machinery/camera{
- c_tag = "Cargo Backroom";
- network = list("SS13")
+ c_tag = "Cargo Backroom"
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -9250,9 +8852,13 @@
},
/area/quartermaster/storage)
"azK" = (
-/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/warning_stripes/yellow,
+/obj/structure/disposalpipe/sortjunction{
+ dir = 1;
+ name = "Disposals Maint";
+ sortType = 1
+ },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "brown"
@@ -9410,8 +9016,7 @@
/obj/machinery/atmospherics/unary/vent_pump{
dir = 4;
external_pressure_bound = 101;
- on = 1;
- pressure_checks = 1
+ on = 1
},
/turf/simulated/floor/engine,
/area/engine/supermatter)
@@ -9481,8 +9086,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel,
@@ -9527,7 +9131,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/dresser,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria"
},
/area/maintenance/fsmaint)
@@ -9549,7 +9152,6 @@
/area/maintenance/fsmaint)
"aAq" = (
/obj/structure/sign/nosmoking_2{
- pixel_x = 0;
pixel_y = -32
},
/obj/effect/decal/cleanable/dirt,
@@ -9567,8 +9169,7 @@
/obj/item/lightreplacer,
/obj/machinery/alarm{
dir = 4;
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/turf/simulated/floor/plasteel,
/area/janitor)
@@ -9578,8 +9179,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (WEST)"
+ icon_state = "whitegreen"
},
/area/janitor)
"aAu" = (
@@ -9636,14 +9236,12 @@
/area/crew_quarters/toilet)
"aAB" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutral"
},
/area/crew_quarters/toilet)
"aAC" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutral"
},
/area/crew_quarters/toilet)
@@ -9653,7 +9251,6 @@
icon_state = "0-4"
},
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
@@ -9668,7 +9265,6 @@
},
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/effect/decal/cleanable/dirt,
@@ -9711,14 +9307,11 @@
tag = ""
},
/obj/structure/disposalpipe/junction{
- dir = 4;
- icon_state = "pipe-j1";
- tag = "icon-pipe-j1 (EAST)"
+ dir = 4
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -9733,8 +9326,7 @@
tag = ""
},
/obj/machinery/door/airlock{
- name = "Auxillary Restrooms";
- req_access_txt = "0"
+ name = "Auxillary Restrooms"
},
/turf/simulated/floor/plasteel,
/area/crew_quarters/toilet)
@@ -9773,8 +9365,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -9783,8 +9374,7 @@
/area/quartermaster/sorting)
"aAN" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/closet/crate,
@@ -9794,8 +9384,7 @@
/area/quartermaster/sorting)
"aAO" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/spawner/lootdrop/maintenance,
/obj/effect/decal/warning_stripes/yellow,
@@ -9803,8 +9392,7 @@
/area/quartermaster/sorting)
"aAP" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/closet/cardboard,
/obj/effect/decal/warning_stripes/yellow/hollow,
@@ -9812,8 +9400,7 @@
/area/quartermaster/sorting)
"aAQ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/warning_stripes/yellow,
@@ -9821,8 +9408,7 @@
/area/quartermaster/sorting)
"aAR" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
@@ -9832,8 +9418,7 @@
/area/quartermaster/sorting)
"aAS" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/mining/glass{
@@ -9844,8 +9429,7 @@
/area/quartermaster/sorting)
"aAT" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/warning_stripes/northwest,
@@ -9853,8 +9437,7 @@
/area/quartermaster/storage)
"aAU" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/warning_stripes/north,
@@ -9862,8 +9445,7 @@
/area/quartermaster/storage)
"aAV" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel,
@@ -9872,8 +9454,7 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel,
@@ -9929,8 +9510,7 @@
/area/engine/supermatter)
"aBg" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/door/airlock/maintenance,
/turf/simulated/floor/plasteel,
@@ -10005,12 +9585,10 @@
/area/engine/controlroom)
"aBn" = (
/obj/effect/decal/warning_stripes/arrow{
- dir = 8;
- icon_state = "4"
+ dir = 8
},
/obj/effect/decal/warning_stripes/yellow/partial{
- dir = 8;
- icon_state = "3"
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -10028,13 +9606,11 @@
"aBp" = (
/obj/structure/cable,
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
/obj/machinery/light/small,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutral"
},
/area/maintenance/fsmaint)
@@ -10052,7 +9628,6 @@
/obj/effect/landmark/costume/random,
/obj/effect/spawner/lootdrop/maintenance,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria"
},
/area/maintenance/fsmaint)
@@ -10072,11 +9647,9 @@
pixel_y = 1
},
/obj/structure/sign/nosmoking_2{
- pixel_x = 0;
pixel_y = -32
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria"
},
/area/maintenance/fsmaint)
@@ -10095,7 +9668,6 @@
},
/obj/structure/sink{
dir = 8;
- icon_state = "sink";
pixel_x = -12;
pixel_y = 2
},
@@ -10127,7 +9699,6 @@
},
/obj/structure/sink{
dir = 8;
- icon_state = "sink";
pixel_x = -12;
pixel_y = 2
},
@@ -10144,18 +9715,14 @@
pixel_y = -26
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitegreen";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whitegreen"
},
/area/janitor)
"aBy" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (WEST)"
+ icon_state = "whitepurple"
},
/area/janitor)
"aBz" = (
@@ -10167,8 +9734,7 @@
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
dir = 6;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (SOUTHEAST)"
+ icon_state = "whitegreen"
},
/area/janitor)
"aBA" = (
@@ -10178,8 +9744,7 @@
},
/obj/machinery/disposal,
/obj/structure/extinguisher_cabinet{
- pixel_x = 25;
- pixel_y = 0
+ pixel_x = 25
},
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
@@ -10244,7 +9809,6 @@
"aBG" = (
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/obj/effect/decal/cleanable/dirt,
@@ -10274,8 +9838,7 @@
"aBJ" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
@@ -10345,8 +9908,7 @@
"aBR" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10;
- initialize_directions = 10;
- level = 1
+ initialize_directions = 10
},
/obj/effect/decal/warning_stripes/southwestcorner,
/turf/simulated/floor/plasteel{
@@ -10398,9 +9960,7 @@
/turf/simulated/floor/plasteel,
/area/engine/controlroom)
"aBX" = (
-/obj/machinery/power/supermatter_crystal{
- anchored = 1
- },
+/obj/machinery/power/supermatter_crystal,
/turf/simulated/floor/engine,
/area/engine/supermatter)
"aBY" = (
@@ -10548,7 +10108,6 @@
id = "janitorshutters";
name = "Janitor Shutters Control";
pixel_x = 25;
- pixel_y = 0;
req_access_txt = "26"
},
/obj/effect/decal/warning_stripes/south,
@@ -10559,15 +10118,13 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutral"
},
/area/maintenance/fsmaint)
"aCu" = (
/obj/machinery/light/small,
/obj/machinery/newscaster{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/structure/toilet{
dir = 8
@@ -10586,8 +10143,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/door/airlock/maintenance{
req_access_txt = "12"
@@ -10596,8 +10152,7 @@
/area/quartermaster/sorting)
"aCw" = (
/obj/machinery/door/airlock{
- name = "Private Restroom";
- req_access_txt = "0"
+ name = "Private Restroom"
},
/turf/simulated/floor/plasteel,
/area/crew_quarters/toilet)
@@ -10654,8 +10209,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -10665,8 +10219,7 @@
"aCD" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/effect/landmark/start{
name = "Cargo Technician"
@@ -10735,12 +10288,10 @@
layer = 2.9
},
/obj/effect/decal/warning_stripes/arrow{
- dir = 4;
- icon_state = "4"
+ dir = 4
},
/obj/effect/decal/warning_stripes/yellow/partial{
- dir = 4;
- icon_state = "3"
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/quartermaster/storage)
@@ -10759,8 +10310,7 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
@@ -10814,8 +10364,7 @@
desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
icon_state = "space";
layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_x = 0
+ name = "EXTERNAL AIRLOCK"
},
/turf/simulated/floor/plating,
/area/quartermaster/storage)
@@ -10973,8 +10522,7 @@
dir = 10
},
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
@@ -11083,8 +10631,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 6
@@ -11102,8 +10649,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -11122,15 +10668,13 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutral"
},
/area/maintenance/fsmaint)
@@ -11145,14 +10689,12 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutral"
},
/area/maintenance/fsmaint)
@@ -11189,8 +10731,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -11206,12 +10747,10 @@
},
/obj/structure/disposalpipe/junction{
dir = 8;
- icon_state = "pipe-j2";
- tag = "icon-pipe-j1 (WEST)"
+ icon_state = "pipe-j2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
/turf/simulated/floor/plasteel{
@@ -11234,8 +10773,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -11286,8 +10824,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -11300,8 +10837,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -11319,8 +10855,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -11346,8 +10881,7 @@
"aDJ" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -11379,8 +10913,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/door/airlock/maintenance{
name = "Cargo Bay Warehouse Maintenance";
@@ -11405,8 +10938,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/warning_stripes/yellow,
@@ -11498,12 +11030,10 @@
"aDW" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/warning_stripes/arrow{
- dir = 4;
- icon_state = "4"
+ dir = 4
},
/obj/effect/decal/warning_stripes/yellow/partial{
- dir = 4;
- icon_state = "3"
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/quartermaster/storage)
@@ -11586,9 +11116,7 @@
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'RADIOACTIVE AREA'";
icon_state = "radiation";
- name = "RADIOACTIVE AREA";
- pixel_x = 0;
- pixel_y = 0
+ name = "RADIOACTIVE AREA"
},
/turf/simulated/wall/r_wall,
/area/engine/supermatter)
@@ -11681,8 +11209,7 @@
"aEt" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/hydroponics/abandoned_garden)
@@ -11708,8 +11235,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -11730,7 +11256,6 @@
/obj/effect/decal/cleanable/dirt,
/obj/machinery/light/small,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutral"
},
/area/maintenance/fsmaint)
@@ -11743,7 +11268,6 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutral"
},
/area/maintenance/fsmaint)
@@ -11755,8 +11279,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
@@ -11769,8 +11292,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/light/small{
dir = 1
@@ -11783,15 +11305,13 @@
/area/crew_quarters/toilet)
"aEC" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/obj/structure/disposalpipe/sortjunction{
dir = 8;
- icon_state = "pipe-j1s";
name = "Custodial Junction";
sortType = 11
},
@@ -11809,8 +11329,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
@@ -11832,8 +11351,7 @@
},
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -11843,8 +11361,7 @@
"aEF" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -11862,8 +11379,7 @@
icon_state = "pipe-c"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
@@ -11888,13 +11404,10 @@
},
/obj/structure/disposalpipe/sortjunction{
dir = 4;
- icon_state = "pipe-j1s";
- sortType = 21;
- tag = "icon-pipe-j1s (EAST)"
+ sortType = 21
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
@@ -11935,8 +11448,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- level = 1
+ dir = 9
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
@@ -11965,8 +11477,7 @@
},
/obj/structure/disposaloutlet,
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/obj/structure/window/reinforced{
dir = 8
@@ -11976,8 +11487,7 @@
/area/quartermaster/office)
"aEN" = (
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/obj/structure/window/reinforced{
dir = 8
@@ -11991,8 +11501,7 @@
"aEO" = (
/obj/machinery/light/small,
/obj/machinery/newscaster{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/structure/toilet{
dir = 8
@@ -12027,8 +11536,7 @@
"aER" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -12158,9 +11666,7 @@
},
/obj/machinery/atmospherics/trinary/filter{
dir = 8;
- filter_type = "n2";
- name = "gas filter";
- on = 0
+ filter_type = "n2"
},
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel,
@@ -12323,8 +11829,7 @@
"aFB" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -12334,8 +11839,7 @@
"aFC" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/extinguisher_cabinet{
- pixel_x = 25;
- pixel_y = 0
+ pixel_x = 25
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -12345,7 +11849,6 @@
"aFD" = (
/obj/structure/closet/firecloset,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "brown"
},
/area/quartermaster/sorting)
@@ -12364,7 +11867,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "brown"
},
/area/quartermaster/sorting)
@@ -12374,7 +11876,6 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "brown"
},
/area/quartermaster/sorting)
@@ -12394,13 +11895,11 @@
"aFJ" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "brown"
},
/area/quartermaster/sorting)
"aFK" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "brown"
},
/area/quartermaster/sorting)
@@ -12448,8 +11947,7 @@
"aFQ" = (
/obj/machinery/light/small,
/obj/machinery/newscaster{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/structure/toilet{
dir = 8
@@ -12466,9 +11964,7 @@
/turf/simulated/floor/plating,
/area/quartermaster/storage)
"aFS" = (
-/obj/machinery/status_display/supply_display{
- pixel_y = 0
- },
+/obj/machinery/status_display/supply_display,
/turf/simulated/wall,
/area/quartermaster/storage)
"aFV" = (
@@ -12519,7 +12015,6 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/obj/structure/cable{
@@ -12592,14 +12087,12 @@
/area/engine/controlroom)
"aGd" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/structure/table/reinforced,
/obj/machinery/light/small,
/obj/structure/extinguisher_cabinet{
- pixel_x = -28;
- pixel_y = 0
+ pixel_x = -28
},
/obj/item/tank/internals/plasma,
/obj/effect/decal/warning_stripes/yellow/hollow,
@@ -12608,7 +12101,6 @@
"aGe" = (
/obj/structure/sink{
dir = 8;
- icon_state = "sink";
pixel_x = -12;
pixel_y = 2
},
@@ -12711,8 +12203,7 @@
/obj/item/folder,
/obj/item/pen,
/obj/machinery/newscaster{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/turf/simulated/floor/plasteel{
icon_state = "grimy"
@@ -12737,8 +12228,7 @@
/area/crew_quarters/sleep)
"aGr" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "grimy"
@@ -12746,8 +12236,7 @@
/area/crew_quarters/sleep)
"aGs" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/door/airlock/maintenance{
req_access_txt = "25"
@@ -12759,8 +12248,7 @@
"aGt" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/light/small{
@@ -12781,8 +12269,7 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -12802,8 +12289,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/crew_quarters/bar)
"aGw" = (
@@ -12814,7 +12300,6 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/obj/machinery/light/small{
@@ -12823,8 +12308,7 @@
/obj/structure/closet/secure_closet/bar,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/crew_quarters/bar)
"aGx" = (
@@ -12833,14 +12317,11 @@
pixel_y = 28
},
/obj/machinery/camera{
- c_tag = "Bar Backroom";
- dir = 2;
- network = list("SS13")
+ c_tag = "Bar Backroom"
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/crew_quarters/bar)
"aGy" = (
@@ -12853,15 +12334,13 @@
/obj/structure/closet/secure_closet/bar,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/crew_quarters/bar)
"aGz" = (
/obj/structure/table/wood,
/obj/item/ammo_box/shotgun/beanbag,
/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
pixel_y = 30
},
/obj/machinery/light_switch{
@@ -12870,8 +12349,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/crew_quarters/bar)
"aGA" = (
@@ -12882,8 +12360,7 @@
/obj/machinery/chem_dispenser/soda,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/crew_quarters/bar)
"aGB" = (
@@ -12891,8 +12368,7 @@
/obj/machinery/chem_dispenser/beer,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/crew_quarters/bar)
"aGC" = (
@@ -12902,8 +12378,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/crew_quarters/bar)
"aGD" = (
@@ -12915,7 +12390,6 @@
department = "Bar";
departmentType = 2;
name = "Bar Requests Console";
- pixel_x = 0;
pixel_y = 30
},
/obj/item/book/manual/barman_recipes,
@@ -12923,21 +12397,19 @@
/obj/item/reagent_containers/glass/rag,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/crew_quarters/bar)
"aGE" = (
/obj/structure/table/wood,
/obj/item/clipboard,
-/obj/item/toy/figure/bartender,
+/obj/item/toy/figure/crew/bartender,
/obj/machinery/status_display{
pixel_y = 32
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/crew_quarters/bar)
"aGF" = (
@@ -12953,8 +12425,7 @@
/obj/item/storage/box/matches,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/crew_quarters/bar)
"aGG" = (
@@ -12965,8 +12436,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/crew_quarters/bar)
"aGH" = (
@@ -12978,8 +12448,7 @@
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -13008,8 +12477,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/alarm{
dir = 8;
- pixel_x = 25;
- pixel_y = 0
+ pixel_x = 25
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -13054,12 +12522,10 @@
"aGQ" = (
/obj/structure/window/reinforced,
/obj/effect/decal/warning_stripes/arrow{
- dir = 4;
- icon_state = "4"
+ dir = 4
},
/obj/effect/decal/warning_stripes/yellow/partial{
- dir = 4;
- icon_state = "3"
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/quartermaster/storage)
@@ -13072,19 +12538,37 @@
},
/area/quartermaster/storage)
"aGT" = (
-/turf/simulated/wall/r_wall,
-/area/security/prison)
-"aGU" = (
-/turf/simulated/wall/r_wall/rust,
-/area/security/prison)
-"aGV" = (
-/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
},
-/turf/simulated/floor/plating,
-/area/security/prison)
+/obj/machinery/seed_extractor,
+/turf/simulated/floor/plasteel,
+/area/security/permabrig)
+"aGU" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/turf/simulated/floor/plasteel,
+/area/security/permabrig)
+"aGV" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plasteel,
+/area/security/permabrig)
"aGW" = (
/obj/structure/lattice,
/obj/structure/grille{
@@ -13110,9 +12594,7 @@
"aHb" = (
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
- pixel_x = 9;
- pixel_y = 0
+ pixel_x = 9
},
/obj/structure/sign/botany{
pixel_x = 32
@@ -13166,8 +12648,7 @@
"aHi" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
icon_state = "yellowfull"
@@ -13256,7 +12737,6 @@
/obj/structure/cable,
/obj/structure/table,
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
@@ -13502,8 +12982,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/crew_quarters/bar)
"aHO" = (
@@ -13520,8 +12999,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/crew_quarters/bar)
"aHP" = (
@@ -13534,8 +13012,7 @@
/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/crew_quarters/bar)
"aHQ" = (
@@ -13547,8 +13024,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/crew_quarters/bar)
"aHR" = (
@@ -13557,13 +13033,11 @@
icon_state = "pipe-c"
},
/obj/machinery/newscaster{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/crew_quarters/bar)
"aHS" = (
@@ -13584,8 +13058,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
@@ -13618,8 +13091,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
@@ -13632,8 +13104,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/door/airlock/maintenance{
req_access_txt = "12"
@@ -13737,21 +13208,18 @@
layer = 4;
name = "Loading Doors";
pixel_x = 24;
- pixel_y = 8;
- req_access_txt = "0"
+ pixel_y = 8
},
/obj/machinery/door_control{
id = "QMLoaddoor";
layer = 4;
name = "Loading Doors";
pixel_x = 24;
- pixel_y = -8;
- req_access_txt = "0"
+ pixel_y = -8
},
/obj/machinery/camera{
c_tag = "Medbay Storage";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
@@ -13799,75 +13267,38 @@
/turf/simulated/floor/plating,
/area/quartermaster/storage)
"aIl" = (
-/obj/structure/sign/electricshock{
- pixel_y = 32
- },
-/obj/machinery/hydroponics/constructable,
-/obj/machinery/light/small{
- dir = 8
- },
-/obj/item/seeds/carrot,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "redcorner"
- },
-/area/security/prison)
+/obj/item/reagent_containers/glass/bottle/nutrient/ez,
+/obj/item/reagent_containers/glass/bottle/nutrient/ez,
+/turf/simulated/floor/plating,
+/area/security/permabrig)
"aIm" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/item/cultivator,
+/obj/item/reagent_containers/glass/bucket,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/hydroponics/constructable,
/turf/simulated/floor/plasteel,
-/area/security/prison)
+/area/security/permabrig)
"aIn" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
- },
-/obj/structure/sink/kitchen{
- desc = "A sink used for washing one's hands and face. It looks rusty and home-made";
- name = "old sink";
- pixel_y = 28
- },
-/obj/machinery/camera{
- c_tag = "Perma-Brig Garden";
- network = list("SS13","Security")
- },
-/turf/simulated/floor/plasteel,
-/area/security/prison)
-"aIo" = (
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
},
-/obj/item/reagent_containers/glass/bucket,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
-/area/security/prison)
-"aIp" = (
-/obj/structure/sign/electricshock{
- pixel_y = 32
- },
+/area/security/permabrig)
+"aIo" = (
+/obj/item/plant_analyzer,
/obj/machinery/hydroponics/constructable,
-/obj/machinery/light/small{
- dir = 4;
- pixel_y = 0
- },
-/obj/effect/decal/cleanable/cobweb2,
-/obj/item/seeds/tower,
-/obj/item/seeds/amanita,
+/turf/simulated/floor/plasteel,
+/area/security/permabrig)
+"aIp" = (
+/obj/item/cultivator,
+/obj/item/reagent_containers/spray/pestspray,
/turf/simulated/floor/plating,
-/area/security/prison)
+/area/security/permabrig)
"aIq" = (
/obj/machinery/atmospherics/unary/portables_connector,
/obj/machinery/portable_atmospherics/canister/air{
@@ -13973,8 +13404,7 @@
/area/maintenance/incinerator)
"aIy" = (
/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 6;
- level = 2
+ dir = 6
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -14014,8 +13444,7 @@
/area/maintenance/incinerator)
"aIB" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/item/twohanded/required/kirbyplants,
/obj/effect/decal/warning_stripes/southwest,
@@ -14029,8 +13458,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
},
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
@@ -14043,8 +13471,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
@@ -14057,8 +13484,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 1
@@ -14078,8 +13504,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/firealarm{
dir = 1;
@@ -14096,8 +13521,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/warning_stripes/southwestcorner,
@@ -14117,8 +13541,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/engine/controlroom)
@@ -14130,8 +13553,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
},
/obj/effect/decal/warning_stripes/southeastcorner,
/turf/simulated/floor/plasteel,
@@ -14183,8 +13605,7 @@
/area/hydroponics/abandoned_garden)
"aIN" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
@@ -14220,7 +13641,6 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutral"
},
/area/maintenance/fsmaint)
@@ -14230,12 +13650,10 @@
/obj/machinery/camera{
c_tag = "Service Hall North";
dir = 4;
- network = list("SS13");
pixel_y = -22
},
/obj/machinery/newscaster{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -14311,15 +13729,13 @@
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/crew_quarters/bar)
"aIZ" = (
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/crew_quarters/bar)
"aJa" = (
@@ -14328,19 +13744,16 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/crew_quarters/bar)
"aJb" = (
/obj/structure/extinguisher_cabinet{
- pixel_x = 25;
- pixel_y = 0
+ pixel_x = 25
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/crew_quarters/bar)
"aJc" = (
@@ -14430,8 +13843,7 @@
/area/security/checkpoint/supply)
"aJl" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -14448,8 +13860,7 @@
icon_state = "pipe-c"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -14461,8 +13872,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -14474,8 +13884,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
@@ -14490,8 +13899,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -14541,8 +13949,7 @@
desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
icon_state = "space";
layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_x = 0
+ name = "EXTERNAL AIRLOCK"
},
/turf/simulated/floor/plating,
/area/quartermaster/storage)
@@ -14559,24 +13966,9 @@
},
/turf/simulated/floor/plating,
/area/quartermaster/storage)
-"aJw" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
- },
-/turf/simulated/floor/plating,
-/area/security/prison)
"aJx" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/seed_extractor,
-/turf/simulated/floor/plasteel,
-/area/security/prison)
+/turf/simulated/wall,
+/area/security/permabrig)
"aJy" = (
/obj/machinery/atmospherics/pipe/simple/heat_exchanging,
/obj/structure/lattice/catwalk,
@@ -14588,35 +13980,18 @@
/turf/space,
/area/space/nearstation)
"aJA" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
- },
-/turf/simulated/floor/plasteel,
-/area/security/prison)
-"aJB" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/biogenerator,
-/turf/simulated/floor/plasteel,
-/area/security/prison)
-"aJC" = (
/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
d2 = 8;
icon_state = "0-8"
},
/turf/simulated/floor/plating,
-/area/security/prison)
+/area/security/permabrig)
+"aJC" = (
+/obj/structure/table,
+/obj/item/clothing/head/chefhat,
+/turf/simulated/floor/plasteel,
+/area/security/permabrig)
"aJD" = (
/obj/item/twohanded/required/kirbyplants,
/obj/effect/decal/warning_stripes/southeast,
@@ -14630,13 +14005,11 @@
/area/quartermaster/storage)
"aJF" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/item/twohanded/required/kirbyplants,
/obj/item/radio/intercom{
dir = 1;
- name = "station intercom (General)";
pixel_y = -25
},
/obj/effect/decal/warning_stripes/southwest,
@@ -14669,8 +14042,7 @@
icon_state = "0-8"
},
/obj/machinery/power/terminal{
- dir = 1;
- icon_state = "term"
+ dir = 1
},
/obj/effect/landmark{
name = "blobstart"
@@ -14678,16 +14050,13 @@
/turf/simulated/floor/plating,
/area/maintenance/auxsolarport)
"aJJ" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ d2 = 4;
+ icon_state = "0-4"
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plasteel,
-/area/security/prison)
+/turf/simulated/floor/plating,
+/area/security/permabrig)
"aJK" = (
/obj/machinery/door/airlock/external{
frequency = 1379;
@@ -14713,9 +14082,7 @@
id_tag = "solar_tool_pump"
},
/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
- frequency = 1379;
id_tag = "solar_tool_airlock";
- pixel_x = 0;
pixel_y = 25;
req_access_txt = "32";
tag_airpump = "solar_tool_pump";
@@ -14724,9 +14091,7 @@
tag_interior_door = "solar_tool_inner"
},
/obj/machinery/airlock_sensor{
- frequency = 1379;
id_tag = "solar_tool_sensor";
- pixel_x = 0;
pixel_y = 32
},
/obj/effect/decal/warning_stripes/yellow,
@@ -14777,9 +14142,7 @@
tag = ""
},
/obj/machinery/atmospherics/binary/pump{
- dir = 2;
- name = "Gas to Turbine";
- on = 0
+ name = "Gas to Turbine"
},
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel,
@@ -14818,8 +14181,7 @@
icon_state = "0-8"
},
/obj/machinery/power/terminal{
- dir = 1;
- icon_state = "term"
+ dir = 1
},
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel,
@@ -14836,7 +14198,6 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/obj/effect/decal/warning_stripes/north,
@@ -14846,9 +14207,7 @@
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'RADIOACTIVE AREA'";
icon_state = "radiation";
- name = "RADIOACTIVE AREA";
- pixel_x = 0;
- pixel_y = 0
+ name = "RADIOACTIVE AREA"
},
/turf/simulated/wall/r_wall,
/area/engine/controlroom)
@@ -14890,9 +14249,7 @@
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'RADIOACTIVE AREA'";
icon_state = "radiation";
- name = "RADIOACTIVE AREA";
- pixel_x = 0;
- pixel_y = 0
+ name = "RADIOACTIVE AREA"
},
/turf/simulated/wall/r_wall,
/area/engine/controlroom)
@@ -15004,8 +14361,7 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
@@ -15053,12 +14409,10 @@
"aKm" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/item/radio/intercom{
dir = 0;
- name = "station intercom (General)";
pixel_x = -28
},
/turf/simulated/floor/plasteel{
@@ -15097,8 +14451,7 @@
/obj/item/gun/projectile/revolver/doublebarrel,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/crew_quarters/bar)
"aKq" = (
@@ -15110,33 +14463,28 @@
/obj/machinery/camera{
c_tag = "Bar";
dir = 4;
- network = list("SS13");
pixel_y = -22
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/crew_quarters/bar)
"aKs" = (
/obj/structure/table/reinforced,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/crew_quarters/bar)
"aKt" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/camera{
c_tag = "Fore Hallway North";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -15169,8 +14517,7 @@
on = 1
},
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/obj/effect/decal/warning_stripes/northeast,
/turf/simulated/floor/plasteel,
@@ -15196,8 +14543,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- level = 1
+ dir = 9
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -15239,9 +14585,7 @@
},
/obj/machinery/computer/security,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "redfull"
},
/area/security/checkpoint/supply)
"aKC" = (
@@ -15304,8 +14648,7 @@
"aKH" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -15337,16 +14680,18 @@
},
/area/quartermaster/storage)
"aKR" = (
-/obj/machinery/hydroponics/constructable,
-/obj/item/seeds/glowshroom,
-/turf/simulated/floor/plasteel,
-/area/security/prison)
-"aKS" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/item/reagent_containers/glass/bucket,
/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/security/prison)
+/obj/machinery/status_display{
+ pixel_y = 32
+ },
+/obj/machinery/computer/library/public,
+/obj/structure/table,
+/turf/simulated/floor/plasteel,
+/area/security/permabrig)
+"aKS" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plasteel,
+/area/security/permabrig)
"aKT" = (
/obj/structure/cable{
d1 = 1;
@@ -15355,30 +14700,36 @@
tag = ""
},
/obj/structure/cable{
- d1 = 2;
+ d1 = 1;
d2 = 8;
- icon_state = "2-8";
- tag = ""
+ icon_state = "1-8"
},
/obj/structure/cable{
- d1 = 2;
+ d1 = 1;
d2 = 4;
- icon_state = "2-4";
- tag = ""
+ icon_state = "1-4"
},
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plasteel,
-/area/security/prison)
-"aKU" = (
+/obj/machinery/door/airlock/glass{
+ name = "Garden"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/item/plant_analyzer,
/turf/simulated/floor/plasteel,
-/area/security/prison)
+/area/security/permabrig)
+"aKU" = (
+/turf/simulated/floor/plasteel,
+/area/security/permabrig)
"aKV" = (
-/obj/machinery/hydroponics/constructable,
-/obj/item/seeds/ambrosia,
-/turf/simulated/floor/plating,
-/area/security/prison)
+/obj/machinery/status_display{
+ pixel_y = 32
+ },
+/obj/structure/table,
+/obj/structure/bedsheetbin,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "barber"
+ },
+/area/security/permabrig)
"aKW" = (
/turf/simulated/wall,
/area/security/execution)
@@ -15400,8 +14751,7 @@
/obj/structure/cable,
/obj/machinery/power/solar_control{
id = "portsolar";
- name = "Aft Port Solar Control";
- track = 0
+ name = "Aft Port Solar Control"
},
/obj/effect/decal/warning_stripes/southwest,
/turf/simulated/floor/plating,
@@ -15431,7 +14781,6 @@
"aLc" = (
/obj/structure/cable,
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
@@ -15478,9 +14827,7 @@
icon_state = "1-4"
},
/obj/machinery/atmospherics/binary/pump{
- dir = 2;
- name = "Mix to Turbine";
- on = 0
+ name = "Mix to Turbine"
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -15521,8 +14868,7 @@
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -15557,8 +14903,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 9;
- icon_state = "intact"
+ dir = 9
},
/obj/machinery/access_button{
command = "cycle_interior";
@@ -15580,8 +14925,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/atmos/glass{
@@ -15599,8 +14943,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/warning_stripes/northwest,
/turf/simulated/floor/plasteel,
@@ -15613,8 +14956,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/effect/decal/warning_stripes/northeast,
/turf/simulated/floor/plasteel,
@@ -15636,7 +14978,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/engineering{
icon_state = "door_closed";
- locked = 0;
name = "Fore Port Solar Access";
req_access_txt = "32"
},
@@ -15645,8 +14986,7 @@
"aLs" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/effect/decal/warning_stripes/northwest,
/turf/simulated/floor/plasteel,
@@ -15705,7 +15045,6 @@
name = "2maintenance loot spawner"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutral"
},
/area/maintenance/fsmaint)
@@ -15716,14 +15055,12 @@
"aLz" = (
/obj/machinery/light/small,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutral"
},
/area/maintenance/fsmaint)
"aLA" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutral"
},
/area/maintenance/fsmaint)
@@ -15731,7 +15068,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/spawner/random_spawners/grille_maybe,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutral"
},
/area/maintenance/fsmaint)
@@ -15739,7 +15075,6 @@
/obj/effect/decal/cleanable/dirt,
/obj/effect/spawner/random_spawners/grille_maybe,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutral"
},
/area/maintenance/fsmaint)
@@ -15761,8 +15096,7 @@
"aLE" = (
/obj/structure/table/wood,
/obj/machinery/newscaster{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/turf/simulated/floor/plasteel{
icon_state = "wood"
@@ -15787,8 +15121,7 @@
/area/crew_quarters/sleep)
"aLH" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "wood"
@@ -15796,8 +15129,7 @@
/area/crew_quarters/sleep)
"aLI" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/door/airlock/maintenance{
req_access_txt = "25"
@@ -15808,8 +15140,7 @@
/area/crew_quarters/sleep)
"aLJ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
@@ -15826,8 +15157,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -15841,26 +15171,22 @@
/obj/machinery/disposal,
/obj/machinery/alarm{
dir = 4;
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/obj/machinery/newscaster{
layer = 3.3;
- pixel_x = 0;
pixel_y = -27
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/crew_quarters/bar)
"aLM" = (
/obj/machinery/chem_master/condimaster,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/crew_quarters/bar)
"aLN" = (
@@ -15876,8 +15202,7 @@
/obj/item/stack/cable_coil/random,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/crew_quarters/bar)
"aLO" = (
@@ -15885,8 +15210,7 @@
/obj/machinery/reagentgrinder,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/crew_quarters/bar)
"aLP" = (
@@ -15895,8 +15219,7 @@
/obj/item/hand_labeler,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/crew_quarters/bar)
"aLQ" = (
@@ -15995,8 +15318,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 5;
@@ -16071,8 +15393,7 @@
"aMh" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
@@ -16083,8 +15404,7 @@
"aMi" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -16093,8 +15413,7 @@
/area/quartermaster/storage)
"aMj" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -16103,8 +15422,7 @@
/area/quartermaster/storage)
"aMk" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
@@ -16116,78 +15434,42 @@
/obj/machinery/atmospherics/unary/vent_pump{
dir = 8;
external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
+ on = 1
},
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/quartermaster/storage)
-"aMq" = (
-/turf/simulated/wall,
-/area/security/prison)
-"aMr" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+"aMp" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ dir = 6;
+ icon_state = "darkblue"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/area/ai_monitored/storage/eva)
+"aMq" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/chair/stool,
/turf/simulated/floor/plating,
-/area/security/prison)
-"aMs" = (
+/area/security/permabrig)
+"aMu" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
tag = ""
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/door/airlock/glass{
- name = "Garden"
- },
+/obj/structure/chair/stool,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel,
-/area/security/prison)
-"aMt" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plating,
-/area/security/prison)
-"aMu" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
- },
-/turf/simulated/floor/plating,
-/area/security/prison)
+/area/security/permabrig)
"aMv" = (
/turf/simulated/wall/r_wall,
/area/security/execution)
"aMw" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/security/glass{
@@ -16204,8 +15486,7 @@
},
/obj/machinery/power/terminal,
/obj/structure/extinguisher_cabinet{
- pixel_x = 28;
- pixel_y = 0
+ pixel_x = 28
},
/obj/effect/decal/warning_stripes/southeast,
/turf/simulated/floor/plasteel,
@@ -16227,8 +15508,7 @@
/area/maintenance/incinerator)
"aMB" = (
/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 6;
- level = 2
+ dir = 6
},
/turf/simulated/floor/plasteel,
/area/maintenance/incinerator)
@@ -16265,8 +15545,7 @@
"aMG" = (
/obj/machinery/atmospherics/binary/pump{
dir = 8;
- name = "Port to Turbine";
- on = 0
+ name = "Port to Turbine"
},
/turf/simulated/floor/plasteel,
/area/maintenance/incinerator)
@@ -16284,9 +15563,7 @@
/turf/simulated/floor/plasteel,
/area/maintenance/incinerator)
"aMJ" = (
-/obj/structure/sign/vacuum{
- pixel_y = 0
- },
+/obj/structure/sign/vacuum,
/turf/simulated/wall/r_wall,
/area/maintenance/incinerator)
"aMK" = (
@@ -16312,8 +15589,7 @@
/area/engine/controlroom)
"aMN" = (
/obj/structure/extinguisher_cabinet{
- pixel_x = 22;
- pixel_y = 0
+ pixel_x = 22
},
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
@@ -16348,8 +15624,7 @@
"aMR" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/light/small,
/obj/effect/decal/warning_stripes/southeast,
@@ -16385,9 +15660,7 @@
icon_state = "0-8"
},
/obj/machinery/light/small,
-/obj/machinery/power/smes{
- charge = 0
- },
+/obj/machinery/power/smes,
/turf/simulated/floor/greengrid,
/area/engine/controlroom)
"aMU" = (
@@ -16395,16 +15668,12 @@
d2 = 8;
icon_state = "0-8"
},
-/obj/machinery/power/smes{
- charge = 0
- },
+/obj/machinery/power/smes,
/obj/structure/sign/nosmoking_2{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/item/radio/intercom{
dir = 1;
- name = "station intercom (General)";
pixel_y = -25
},
/turf/simulated/floor/plasteel{
@@ -16485,12 +15754,10 @@
"aNf" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/structure/extinguisher_cabinet{
- pixel_x = -25;
- pixel_y = 0
+ pixel_x = -25
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -16507,7 +15774,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/turf/simulated/floor/plasteel{
@@ -16517,12 +15783,10 @@
/area/crew_quarters/sleep)
"aNh" = (
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/obj/structure/extinguisher_cabinet{
- pixel_x = -28;
- pixel_y = 0
+ pixel_x = -28
},
/turf/simulated/floor/plasteel{
icon_state = "redyellowfull"
@@ -16535,13 +15799,11 @@
/area/crew_quarters/bar/atrium)
"aNj" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/machinery/alarm{
dir = 8;
- pixel_x = 25;
- pixel_y = 0
+ pixel_x = 25
},
/turf/simulated/floor/plasteel{
icon_state = "redyellowfull"
@@ -16609,8 +15871,7 @@
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/obj/machinery/door_timer{
id = "Cargo Cell";
@@ -16646,19 +15907,16 @@
/area/security/checkpoint/supply)
"aNs" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/item/twohanded/required/kirbyplants,
/obj/machinery/alarm{
dir = 8;
- pixel_x = 25;
- pixel_y = 0
+ pixel_x = 25
},
/obj/machinery/camera{
c_tag = "Medbay Storage";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 6;
@@ -16744,37 +16002,32 @@
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
/area/quartermaster/office)
-"aNC" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
- },
-/obj/item/soap/nanotrasen,
-/obj/machinery/shower{
- dir = 4;
- icon_state = "shower"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plasteel,
-/area/security/prison)
"aND" = (
-/obj/structure/sign/electricshock{
- pixel_y = 32
- },
-/obj/structure/table,
-/obj/effect/decal/cleanable/cobweb,
-/obj/item/storage/fancy/crayons,
-/obj/item/storage/fancy/crayons,
-/turf/simulated/floor/plating,
-/area/security/prison)
-"aNE" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
icon_state = "1-4"
},
-/obj/structure/table,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
/turf/simulated/floor/plating,
-/area/security/prison)
+/area/security/permabrig)
+"aNE" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/plasteel,
+/area/security/permabrig)
"aNF" = (
/obj/structure/cable{
d1 = 4;
@@ -16782,18 +16035,18 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/machinery/computer/security/telescreen/entertainment{
- pixel_y = 32
- },
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "redcorner"
},
-/area/security/prison)
+/area/security/permabrig)
"aNG" = (
/obj/structure/cable{
d1 = 4;
@@ -16801,26 +16054,15 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/status_display{
- pixel_y = 32
- },
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
-/area/security/prison)
-"aNH" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "redcorner"
- },
-/area/security/prison)
+/area/security/permabrig)
"aNI" = (
/obj/structure/cable{
d1 = 1;
@@ -16840,8 +16082,10 @@
icon_state = "2-4";
tag = ""
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/plasteel,
-/area/security/prison)
+/area/security/permabrig)
"aNJ" = (
/obj/structure/cable{
d1 = 4;
@@ -16849,39 +16093,45 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel,
-/area/security/prison)
-"aNK" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/status_display{
- pixel_y = 32
- },
/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "redcorner"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel,
+/area/security/permabrig)
+"aNK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/security/prison)
-"aNL" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
tag = ""
},
-/obj/machinery/light/small{
- dir = 1
+/turf/simulated/floor/plating,
+/area/security/permabrig)
+"aNL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
},
-/obj/structure/table,
-/obj/item/paper_bin,
/turf/simulated/floor/plasteel,
-/area/security/prison)
+/area/security/permabrig)
"aNM" = (
/obj/structure/cable{
d1 = 4;
@@ -16889,37 +16139,45 @@
icon_state = "4-8";
tag = ""
},
-/obj/structure/sign/electricshock{
- pixel_y = 32
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/structure/table,
-/obj/item/clipboard,
-/obj/item/toy/figure/syndie,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "redcorner"
},
-/area/security/prison)
+/area/security/permabrig)
"aNN" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
icon_state = "1-8"
},
-/obj/item/twohanded/required/kirbyplants,
+/obj/structure/chair/stool,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
/turf/simulated/floor/plasteel,
-/area/security/prison)
+/area/security/permabrig)
"aNO" = (
/obj/effect/decal/cleanable/dirt,
+/obj/structure/table,
+/obj/item/storage/box/donkpockets,
/turf/simulated/floor/plasteel,
-/area/security/prison)
+/area/security/permabrig)
"aNP" = (
/obj/machinery/light/small{
- dir = 4;
- pixel_y = 0
+ dir = 4
},
+/obj/structure/chair/stool,
/turf/simulated/floor/plating,
-/area/security/prison)
+/area/security/permabrig)
"aNQ" = (
/obj/machinery/light/small{
dir = 8
@@ -16945,8 +16203,7 @@
/area/security/execution)
"aNS" = (
/obj/machinery/light/small{
- dir = 4;
- pixel_y = 0
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -16972,9 +16229,7 @@
/area/maintenance/incinerator)
"aNW" = (
/obj/machinery/atmospherics/binary/pump{
- dir = 4;
- name = "gas pump";
- on = 0
+ dir = 4
},
/obj/machinery/light/small{
dir = 1
@@ -17016,8 +16271,7 @@
},
/obj/machinery/alarm{
dir = 8;
- pixel_x = 25;
- pixel_y = 0
+ pixel_x = 25
},
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
@@ -17080,9 +16334,7 @@
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'RADIOACTIVE AREA'";
icon_state = "radiation";
- name = "RADIOACTIVE AREA";
- pixel_x = 0;
- pixel_y = 0
+ name = "RADIOACTIVE AREA"
},
/turf/simulated/wall/r_wall,
/area/atmos)
@@ -17166,7 +16418,6 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/turf/simulated/floor/wood{
@@ -17224,8 +16475,7 @@
/obj/item/camera_film,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/crew_quarters/bar/atrium)
"aOB" = (
@@ -17243,16 +16493,13 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/obj/machinery/light{
dir = 1
},
/obj/machinery/camera{
- c_tag = "Theatre";
- dir = 2;
- network = list("SS13")
+ c_tag = "Theatre"
},
/turf/simulated/floor/plasteel{
icon_state = "grimy"
@@ -17279,8 +16526,7 @@
/obj/machinery/vending/cigarette,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/crew_quarters/bar/atrium)
"aOG" = (
@@ -17300,7 +16546,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/item/radio/intercom{
dir = 4;
- name = "station intercom (General)";
pixel_x = 28
},
/turf/simulated/floor/plasteel{
@@ -17379,9 +16624,7 @@
req_access_txt = "63"
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "redfull"
},
/area/security/checkpoint/supply)
"aOQ" = (
@@ -17411,20 +16654,6 @@
icon_state = "neutralfull"
},
/area/quartermaster/storage)
-"aOT" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
- },
-/obj/machinery/light/small{
- dir = 8
- },
-/obj/structure/toilet{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/security/prison)
"aOU" = (
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
dir = 5
@@ -17432,13 +16661,6 @@
/obj/structure/lattice/catwalk,
/turf/space,
/area/space/nearstation)
-"aOV" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plating,
-/area/security/prison)
"aOW" = (
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
dir = 4
@@ -17448,24 +16670,16 @@
/area/space/nearstation)
"aOX" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/sign/poster/official/cleanliness{
- pixel_y = 32
+/obj/machinery/ai_status_display{
+ pixel_y = -32
},
-/obj/machinery/door/airlock{
- name = "Bathroom"
- },
-/turf/simulated/floor/plasteel,
-/area/security/prison)
+/turf/simulated/floor/plating,
+/area/security/permabrig)
"aOY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/table,
/obj/item/storage/pill_bottle/dice,
/turf/simulated/floor/plating,
-/area/security/prison)
+/area/security/permabrig)
"aOZ" = (
/obj/structure/cable{
d1 = 1;
@@ -17473,65 +16687,48 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/structure/table,
/obj/item/paper,
/obj/item/pen,
/turf/simulated/floor/plasteel,
-/area/security/prison)
+/area/security/permabrig)
"aPa" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/structure/chair/stool,
/turf/simulated/floor/plasteel,
-/area/security/prison)
+/area/security/permabrig)
"aPb" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
/obj/effect/decal/cleanable/dirt,
/mob/living/simple_animal/mouse,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
-/area/security/prison)
-"aPc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plasteel,
-/area/security/prison)
+/area/security/permabrig)
"aPd" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "redcorner"
},
-/area/security/prison)
+/area/security/permabrig)
"aPe" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/security/prison)
+/area/security/permabrig)
"aPf" = (
/obj/machinery/alarm{
dir = 8;
- pixel_x = 25;
- pixel_y = 0
+ pixel_x = 25
},
/obj/effect/decal/cleanable/dirt,
+/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plating,
-/area/security/prison)
+/area/security/permabrig)
"aPg" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
/obj/machinery/sparker{
pixel_x = -18
},
@@ -17541,15 +16738,21 @@
},
/area/security/execution)
"aPh" = (
-/obj/structure/chair,
+/obj/structure/chair/e_chair,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "vault"
},
/area/security/execution)
"aPi" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
/obj/machinery/flasher{
id = "Execution";
@@ -17673,8 +16876,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -17689,8 +16891,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
@@ -17705,8 +16906,7 @@
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/binary/valve,
@@ -17719,15 +16919,13 @@
"aPu" = (
/obj/effect/spawner/window/reinforced,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plating,
/area/atmos)
"aPv" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
@@ -17737,8 +16935,7 @@
/area/atmos)
"aPw" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -17747,8 +16944,7 @@
/area/atmos)
"aPx" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/visible,
/turf/simulated/floor/plasteel{
@@ -17758,8 +16954,7 @@
/area/atmos)
"aPy" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- level = 1
+ dir = 9
},
/obj/machinery/light{
dir = 1;
@@ -17797,8 +16992,7 @@
/area/atmos)
"aPB" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/visible,
/obj/effect/decal/warning_stripes/south,
@@ -17825,8 +17019,7 @@
"aPD" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -17914,8 +17107,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/structure/chair/stool,
/turf/simulated/floor/plasteel{
@@ -17935,12 +17127,10 @@
"aPP" = (
/obj/structure/dresser,
/obj/machinery/newscaster{
- pixel_x = 0;
pixel_y = 32
},
/obj/machinery/status_display{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/turf/simulated/floor/plasteel{
icon_state = "redbluefull"
@@ -17954,9 +17144,7 @@
},
/obj/item/storage/fancy/crayons,
/obj/machinery/camera{
- c_tag = "Theatre Backstage";
- dir = 2;
- network = list("SS13")
+ c_tag = "Theatre Backstage"
},
/turf/simulated/floor/plasteel{
icon_state = "redbluefull"
@@ -17973,7 +17161,6 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/obj/machinery/vending/autodrobe,
@@ -17984,7 +17171,7 @@
"aPS" = (
/obj/structure/table/wood,
/obj/item/clipboard,
-/obj/item/toy/figure/clown,
+/obj/item/toy/figure/crew/clown,
/turf/simulated/floor/plasteel{
icon_state = "redbluefull"
},
@@ -17992,8 +17179,7 @@
"aPT" = (
/obj/structure/table/wood,
/obj/structure/extinguisher_cabinet{
- pixel_x = 25;
- pixel_y = 0
+ pixel_x = 25
},
/obj/item/radio/intercom{
pixel_y = 28
@@ -18008,8 +17194,7 @@
/obj/item/instrument/guitar,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/crew_quarters/bar/atrium)
"aPV" = (
@@ -18045,8 +17230,7 @@
/obj/structure/table/wood,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/crew_quarters/bar/atrium)
"aQa" = (
@@ -18090,8 +17274,7 @@
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/obj/item/stack/packageWrap,
/obj/item/hand_labeler,
@@ -18133,8 +17316,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -18150,8 +17332,7 @@
/obj/machinery/atmospherics/unary/vent_pump{
dir = 8;
external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
+ on = 1
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
@@ -18280,8 +17461,7 @@
/area/quartermaster/storage)
"aQs" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/machinery/conveyor/northeast/ccw{
id = "QMLoad"
@@ -18290,8 +17470,7 @@
/area/quartermaster/storage)
"aQt" = (
/obj/machinery/newscaster{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/structure/chair/stool/bar,
/turf/simulated/floor/plasteel{
@@ -18305,7 +17484,6 @@
},
/obj/item/radio/intercom{
dir = 0;
- name = "station intercom (General)";
pixel_x = -28
},
/obj/effect/decal/warning_stripes/southwestcorner,
@@ -18313,12 +17491,10 @@
/area/quartermaster/storage)
"aQv" = (
/obj/effect/decal/warning_stripes/arrow{
- dir = 1;
- icon_state = "4"
+ dir = 1
},
/obj/effect/decal/warning_stripes/yellow/partial{
- dir = 1;
- icon_state = "3"
+ dir = 1
},
/turf/simulated/floor/plasteel,
/area/quartermaster/storage)
@@ -18338,39 +17514,23 @@
"aQx" = (
/obj/structure/table,
/obj/item/book/manual/chef_recipes,
-/obj/item/storage/box/donkpockets,
-/obj/item/clothing/head/chefhat,
-/turf/simulated/floor/plasteel,
-/area/security/prison)
-"aQy" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11;
- level = 1
- },
-/turf/simulated/floor/plasteel,
-/area/security/prison)
-"aQz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 4
},
-/turf/simulated/floor/plating,
-/area/security/prison)
-"aQA" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
- },
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
-/area/security/prison)
-"aQB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
+/area/security/permabrig)
+"aQy" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4;
+ initialize_directions = 11
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel,
+/area/security/permabrig)
+"aQB" = (
/obj/structure/table,
/turf/simulated/floor/plating,
-/area/security/prison)
+/area/security/permabrig)
"aQC" = (
/obj/structure/cable{
d1 = 1;
@@ -18381,45 +17541,34 @@
/obj/structure/table,
/obj/item/deck/cards,
/turf/simulated/floor/plasteel,
-/area/security/prison)
+/area/security/permabrig)
"aQD" = (
/obj/structure/chair/stool,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/security/prison)
-"aQE" = (
-/turf/simulated/floor/plasteel,
-/area/security/prison)
-"aQF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/security/prison)
+/area/security/permabrig)
"aQG" = (
/obj/structure/chair/stool,
/turf/simulated/floor/plating,
-/area/security/prison)
+/area/security/permabrig)
"aQH" = (
-/obj/machinery/vending/coffee,
+/obj/machinery/computer/cryopod{
+ pixel_y = -32
+ },
/turf/simulated/floor/plasteel,
-/area/security/prison)
+/area/security/permabrig)
"aQI" = (
-/obj/machinery/vending/sustenance,
+/obj/machinery/cryopod,
/turf/simulated/floor/plating,
-/area/security/prison)
+/area/security/permabrig)
"aQJ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "vault"
},
/area/security/execution)
"aQK" = (
/obj/machinery/atmospherics/unary/outlet_injector/on,
-/turf/simulated/floor/plasteel{
- icon_state = "vault"
- },
-/area/security/execution)
-"aQL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "vault"
@@ -18442,9 +17591,7 @@
/area/maintenance/incinerator)
"aQO" = (
/obj/machinery/atmospherics/binary/pump{
- dir = 8;
- name = "gas pump";
- on = 0
+ dir = 8
},
/obj/machinery/light/small,
/turf/simulated/floor/engine,
@@ -18500,7 +17647,6 @@
/obj/item/folder/yellow,
/obj/item/reagent_containers/food/pill/patch/silver_sulf,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "caution"
},
/area/maintenance/incinerator)
@@ -18521,8 +17667,7 @@
/area/maintenance/incinerator)
"aQS" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
+ dir = 5
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -18613,8 +17758,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/item/tank/internals/emergency_oxygen,
/obj/item/tank/internals/emergency_oxygen,
@@ -18634,8 +17778,7 @@
/area/atmos)
"aRa" = (
/obj/structure/extinguisher_cabinet{
- pixel_x = -22;
- pixel_y = 0
+ pixel_x = -22
},
/obj/effect/decal/warning_stripes/yellow/hollow,
/obj/structure/closet/wardrobe/atmospherics_yellow,
@@ -18857,8 +18000,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
@@ -18884,8 +18026,7 @@
/obj/item/camera,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/crew_quarters/bar/atrium)
"aRx" = (
@@ -18912,14 +18053,12 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/crew_quarters/bar/atrium)
"aRB" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/structure/chair/stool,
/turf/simulated/floor/plasteel{
@@ -18928,8 +18067,7 @@
/area/crew_quarters/bar/atrium)
"aRC" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/table/wood,
/obj/item/reagent_containers/food/snacks/cheesiehonkers,
@@ -18939,8 +18077,7 @@
/area/crew_quarters/bar/atrium)
"aRD" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/table/wood,
/turf/simulated/floor/plasteel{
@@ -18949,8 +18086,7 @@
/area/crew_quarters/bar/atrium)
"aRE" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/table/wood,
/obj/item/deck/cards,
@@ -18960,8 +18096,7 @@
/area/crew_quarters/bar/atrium)
"aRF" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/chair/stool,
/turf/simulated/floor/plasteel{
@@ -18970,8 +18105,7 @@
/area/crew_quarters/bar/atrium)
"aRG" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "redyellowfull"
@@ -18988,8 +18122,7 @@
/area/hallway/primary/fore)
"aRI" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
@@ -19006,8 +18139,7 @@
},
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -19017,12 +18149,10 @@
"aRK" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -19046,8 +18176,7 @@
},
/obj/machinery/newscaster{
layer = 3.3;
- pixel_x = -27;
- pixel_y = 0
+ pixel_x = -27
},
/turf/simulated/floor/plasteel{
dir = 10;
@@ -19059,7 +18188,6 @@
/obj/item/folder/yellow,
/obj/item/destTagger,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "brown"
},
/area/quartermaster/office)
@@ -19072,7 +18200,6 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "brown"
},
/area/quartermaster/office)
@@ -19081,8 +18208,7 @@
/obj/item/twohanded/required/kirbyplants,
/obj/machinery/alarm{
dir = 8;
- pixel_x = 25;
- pixel_y = 0
+ pixel_x = 25
},
/turf/simulated/floor/plasteel{
dir = 6;
@@ -19190,9 +18316,7 @@
},
/area/quartermaster/storage)
"aRZ" = (
-/obj/machinery/status_display/supply_display{
- pixel_y = 0
- },
+/obj/machinery/status_display/supply_display,
/turf/simulated/wall,
/area/quartermaster/qm)
"aSa" = (
@@ -19238,13 +18362,6 @@
},
/turf/simulated/floor/plating,
/area/quartermaster/qm)
-"aSf" = (
-/obj/structure/lattice,
-/turf/space,
-/area/quartermaster/qm)
-"aSg" = (
-/turf/space,
-/area/quartermaster/qm)
"aSh" = (
/obj/structure/table/glass,
/obj/item/reagent_containers/glass/bottle/morphine,
@@ -19253,7 +18370,7 @@
dir = 9;
icon_state = "whitered"
},
-/area/security/prison)
+/area/security/permabrig)
"aSi" = (
/obj/structure/table/glass,
/obj/item/folder/blue,
@@ -19262,11 +18379,14 @@
dir = 1;
on = 1
},
+/obj/machinery/newscaster{
+ pixel_y = 32
+ },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "whitered"
},
-/area/security/prison)
+/area/security/permabrig)
"aSj" = (
/obj/structure/table/glass,
/obj/item/reagent_containers/glass/bottle/morphine,
@@ -19275,39 +18395,26 @@
dir = 5;
icon_state = "whitered"
},
-/area/security/prison)
-"aSk" = (
-/obj/structure/table,
-/obj/machinery/kitchen_machine/microwave,
-/turf/simulated/floor/plating,
-/area/security/prison)
+/area/security/permabrig)
"aSl" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plating,
-/area/security/prison)
+/area/security/permabrig)
"aSm" = (
/obj/machinery/light/small,
/obj/item/twohanded/required/kirbyplants,
/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plasteel,
-/area/security/prison)
-"aSn" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/ai_status_display{
+ pixel_y = -32
},
+/turf/simulated/floor/plasteel,
+/area/security/permabrig)
+"aSn" = (
/obj/structure/chair/stool,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
-/area/security/prison)
-"aSo" = (
-/obj/machinery/camera{
- c_tag = "Perma-Brig General Population";
- dir = 1;
- network = list("SS13","Security")
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/security/prison)
+/area/security/permabrig)
"aSp" = (
/obj/structure/cable{
d1 = 1;
@@ -19315,9 +18422,10 @@
icon_state = "1-2";
tag = ""
},
-/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
-/area/security/prison)
+/area/security/permabrig)
"aSq" = (
/obj/structure/disposalpipe/segment,
/obj/effect/decal/warning_stripes/southwest,
@@ -19326,19 +18434,21 @@
"aSr" = (
/obj/machinery/light/small,
/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/ai_status_display{
+ pixel_y = -32
+ },
/turf/simulated/floor/plating,
-/area/security/prison)
+/area/security/permabrig)
"aSs" = (
/obj/machinery/computer/arcade,
/turf/simulated/floor/plating,
-/area/security/prison)
+/area/security/permabrig)
"aSt" = (
/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
d2 = 2;
icon_state = "0-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
/area/security/execution)
"aSu" = (
@@ -19352,19 +18462,12 @@
name = "Justice Chamber";
req_access_txt = "3"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/security/execution)
-"aSv" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plating,
-/area/security/execution)
"aSw" = (
/obj/machinery/conveyor/east{
id = "QMLoad"
@@ -19395,8 +18498,7 @@
"aSA" = (
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
dir = 6;
- initialize_directions = 6;
- level = 2
+ initialize_directions = 6
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -19409,8 +18511,7 @@
dir = 8
},
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 4;
- level = 2
+ dir = 4
},
/obj/item/clothing/gloves/color/black,
/obj/item/clothing/suit/storage/hazardvest,
@@ -19422,24 +18523,21 @@
/area/atmos)
"aSC" = (
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 4;
- level = 2
+ dir = 4
},
/obj/effect/decal/warning_stripes/northwest,
/turf/simulated/floor/plasteel,
/area/atmos)
"aSD" = (
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 4;
- level = 2
+ dir = 4
},
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel,
/area/atmos)
"aSE" = (
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 4;
- level = 2
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/visible,
/obj/effect/decal/warning_stripes/north,
@@ -19447,8 +18545,7 @@
/area/atmos)
"aSF" = (
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 4;
- level = 2
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/visible/universal,
/obj/effect/decal/warning_stripes/north,
@@ -19457,8 +18554,7 @@
"aSG" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 4;
- level = 2
+ dir = 4
},
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel,
@@ -19471,8 +18567,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 4;
- level = 2
+ dir = 4
},
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel,
@@ -19480,24 +18575,21 @@
"aSI" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 4;
- level = 2
+ dir = 4
},
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel,
/area/atmos)
"aSJ" = (
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 4;
- level = 2
+ dir = 4
},
/obj/effect/decal/warning_stripes/northeast,
/turf/simulated/floor/plasteel,
/area/atmos)
"aSK" = (
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 4;
- level = 2
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -19507,8 +18599,7 @@
"aSL" = (
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
dir = 10;
- initialize_directions = 10;
- level = 2
+ initialize_directions = 10
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -19564,8 +18655,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/door/airlock/maintenance{
@@ -19584,8 +18674,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/hologram/holopad,
/obj/effect/decal/warning_stripes/yellow/hollow,
@@ -19605,8 +18694,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
@@ -19626,8 +18714,7 @@
icon_state = "pipe-c"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
@@ -19667,8 +18754,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -19683,8 +18769,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/maintenance{
@@ -19700,8 +18785,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/warning_stripes/yellow/hollow,
@@ -19741,7 +18825,7 @@
},
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
-/area/security/prison)
+/area/security/permabrig)
"aTc" = (
/obj/structure/cable{
d1 = 4;
@@ -19750,8 +18834,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/maintenance{
@@ -19767,13 +18850,11 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/crew_quarters/bar/atrium)
"aTe" = (
@@ -19784,8 +18865,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- level = 1
+ dir = 9
},
/turf/simulated/floor/plasteel{
icon_state = "grimy"
@@ -19816,8 +18896,7 @@
/area/crew_quarters/bar/atrium)
"aTi" = (
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/obj/machinery/camera{
c_tag = "Arrivals North";
@@ -19971,7 +19050,7 @@
"aTz" = (
/obj/structure/table,
/obj/item/clipboard,
-/obj/item/toy/figure/qm,
+/obj/item/toy/figure/crew/qm,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "brown"
@@ -19996,7 +19075,6 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/turf/simulated/floor/plasteel{
@@ -20024,15 +19102,13 @@
/area/quartermaster/qm)
"aTE" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/structure/table/reinforced,
/obj/item/stack/packageWrap,
/obj/item/hand_labeler,
/obj/item/radio/intercom{
dir = 4;
- name = "station intercom (General)";
pixel_x = 28
},
/turf/simulated/floor/plasteel{
@@ -20049,12 +19125,12 @@
dir = 8;
icon_state = "whitered"
},
-/area/security/prison)
+/area/security/permabrig)
"aTG" = (
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/security/prison)
+/area/security/permabrig)
"aTH" = (
/obj/structure/bed,
/obj/item/clothing/suit/straight_jacket,
@@ -20064,7 +19140,7 @@
dir = 4;
icon_state = "whitered"
},
-/area/security/prison)
+/area/security/permabrig)
"aTI" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/cleanable/dirt,
@@ -20072,8 +19148,12 @@
name = "Prison"
},
/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/poddoor/preopen{
+ id_tag = "cell1lockdown"
+ },
/turf/simulated/floor/plasteel,
-/area/security/prison)
+/area/security/permabrig)
"aTJ" = (
/obj/structure/cable{
d1 = 1;
@@ -20085,24 +19165,28 @@
name = "Prison"
},
/obj/effect/decal/warning_stripes/south,
+/obj/machinery/door/poddoor/preopen{
+ id_tag = "cell2lockdown"
+ },
/turf/simulated/floor/plasteel,
-/area/security/prison)
+/area/security/permabrig)
"aTK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/airlock/glass{
name = "Prison"
},
/obj/effect/decal/warning_stripes/south,
+/obj/machinery/door/poddoor/preopen{
+ id_tag = "cell3lockdown"
+ },
/turf/simulated/floor/plasteel,
-/area/security/prison)
+/area/security/permabrig)
"aTL" = (
/obj/machinery/status_display{
pixel_y = 32
},
/obj/machinery/alarm{
dir = 4;
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/obj/structure/table/reinforced,
/obj/item/reagent_containers/glass/bottle/morphine,
@@ -20129,16 +19213,17 @@
/obj/structure/table/reinforced,
/obj/item/folder/red,
/obj/item/restraints/handcuffs,
-/obj/item/taperecorder,
/obj/machinery/camera{
c_tag = "Prisoner Re-education Centre";
network = list("SS13","Security")
},
/obj/machinery/flasher_button{
id = "Execution";
- pixel_x = 0;
pixel_y = 27
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "darkred"
@@ -20157,10 +19242,11 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "darkred"
@@ -20173,11 +19259,11 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "darkred"
@@ -20195,11 +19281,10 @@
icon_state = "2-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- level = 1
- },
/obj/structure/closet/secure_closet/injection,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
dir = 5;
icon_state = "darkred"
@@ -20267,8 +19352,7 @@
/area/space/nearstation)
"aTV" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/warning_stripes/south,
@@ -20296,16 +19380,14 @@
/area/atmos)
"aTY" = (
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 6;
- level = 2
+ dir = 6
},
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel,
/area/atmos)
"aTZ" = (
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4;
- level = 2
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -20314,13 +19396,11 @@
/area/atmos)
"aUa" = (
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4;
- level = 2
+ dir = 4
},
/obj/machinery/atmospherics/binary/pump{
dir = 1;
- name = "Port to Turbine";
- on = 0
+ name = "Port to Turbine"
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -20329,13 +19409,11 @@
/area/atmos)
"aUb" = (
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4;
- level = 2
+ dir = 4
},
/obj/machinery/atmospherics/binary/pump{
dir = 1;
- name = "Port to Filter";
- on = 0
+ name = "Port to Filter"
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -20345,8 +19423,7 @@
"aUc" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4;
- level = 2
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -20361,8 +19438,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4;
- level = 2
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -20372,8 +19448,7 @@
"aUe" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4;
- level = 2
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -20382,8 +19457,7 @@
/area/atmos)
"aUf" = (
/obj/machinery/atmospherics/pipe/manifold/visible/yellow{
- dir = 1;
- level = 2
+ dir = 1
},
/obj/machinery/meter,
/obj/effect/decal/warning_stripes/east,
@@ -20399,7 +19473,6 @@
/obj/machinery/atmospherics/binary/pump{
dir = 8;
name = "Air to Pure";
- on = 0;
target_pressure = 101
},
/turf/simulated/floor/plasteel{
@@ -20417,16 +19490,14 @@
"aUi" = (
/obj/effect/spawner/window/reinforced,
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 4;
- level = 2
+ dir = 4
},
/turf/simulated/floor/plating,
/area/atmos)
"aUj" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10;
- initialize_directions = 10;
- level = 1
+ initialize_directions = 10
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/warning_stripes/south,
@@ -20435,8 +19506,7 @@
"aUk" = (
/obj/structure/grille,
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 4;
- level = 2
+ dir = 4
},
/obj/machinery/meter,
/turf/simulated/wall/r_wall,
@@ -20485,8 +19555,7 @@
/area/maintenance/gambling_den)
"aUr" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/structure/chair/stool,
/turf/simulated/floor/plating,
@@ -20498,8 +19567,7 @@
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/wood{
@@ -20515,8 +19583,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plating,
/area/maintenance/gambling_den)
@@ -20528,8 +19595,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/barricade/wooden,
/obj/machinery/door/airlock/maintenance,
@@ -20551,8 +19617,7 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
@@ -20560,8 +19625,7 @@
"aUw" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/wall,
/area/crew_quarters/theatre)
@@ -20572,7 +19636,6 @@
pixel_y = 3
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria"
},
/area/crew_quarters/theatre)
@@ -20584,7 +19647,6 @@
name = "Mime"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria"
},
/area/crew_quarters/theatre)
@@ -20593,7 +19655,6 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria"
},
/area/crew_quarters/theatre)
@@ -20611,7 +19672,6 @@
},
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria"
},
/area/crew_quarters/theatre)
@@ -20659,8 +19719,7 @@
/obj/item/lipstick/random,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/crew_quarters/bar/atrium)
"aUG" = (
@@ -20722,8 +19781,7 @@
/obj/item/paper_bin,
/obj/machinery/newscaster{
layer = 3.3;
- pixel_x = -27;
- pixel_y = 0
+ pixel_x = -27
},
/turf/simulated/floor/plasteel{
dir = 9;
@@ -20781,14 +19839,12 @@
"aUS" = (
/obj/structure/table,
/obj/machinery/camera{
- c_tag = "Medbay Lobby East";
- network = list("SS13")
+ c_tag = "Medbay Lobby East"
},
/obj/machinery/requests_console{
department = "Cargo Bay";
departmentType = 2;
name = "Cargo Requests Console";
- pixel_x = 0;
pixel_y = 30
},
/obj/item/storage/firstaid/regular,
@@ -20806,7 +19862,6 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/obj/item/paper_bin,
@@ -20835,13 +19890,11 @@
/area/quartermaster/office)
"aUW" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/item/twohanded/required/kirbyplants,
/obj/structure/extinguisher_cabinet{
- pixel_x = 25;
- pixel_y = 0
+ pixel_x = 25
},
/turf/simulated/floor/plasteel{
dir = 5;
@@ -20859,8 +19912,7 @@
dir = 8
},
/obj/structure/extinguisher_cabinet{
- pixel_x = -25;
- pixel_y = 0
+ pixel_x = -25
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -20913,15 +19965,13 @@
"aVc" = (
/obj/effect/spawner/window/reinforced,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plating,
/area/quartermaster/qm)
"aVd" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -20930,8 +19980,7 @@
/area/quartermaster/qm)
"aVe" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -20940,8 +19989,7 @@
/area/quartermaster/qm)
"aVf" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
@@ -20995,21 +20043,27 @@
},
/area/quartermaster/qm)
"aVk" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "whitered"
},
-/area/security/prison)
+/area/security/permabrig)
"aVl" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "whitered"
},
-/area/security/prison)
+/area/security/permabrig)
"aVm" = (
/obj/structure/bed,
/obj/item/bedsheet/brown,
@@ -21020,18 +20074,22 @@
dir = 8;
icon_state = "red"
},
-/area/security/prison)
+/area/security/permabrig)
"aVn" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8;
+ initialize_directions = 11
+ },
/turf/simulated/floor/plasteel{
dir = 0;
icon_state = "neutral"
},
-/area/security/prison)
+/area/security/permabrig)
"aVo" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
/obj/machinery/light/small{
dir = 1
@@ -21042,7 +20100,7 @@
},
/obj/structure/chair/stool,
/turf/simulated/floor/plating,
-/area/security/prison)
+/area/security/permabrig)
"aVp" = (
/obj/structure/cable{
d1 = 1;
@@ -21051,14 +20109,17 @@
tag = ""
},
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
/turf/simulated/floor/plasteel{
dir = 0;
icon_state = "neutral"
},
-/area/security/prison)
+/area/security/permabrig)
"aVq" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
/obj/machinery/light/small{
dir = 1
@@ -21072,7 +20133,7 @@
dir = 4;
icon_state = "red"
},
-/area/security/prison)
+/area/security/permabrig)
"aVr" = (
/obj/structure/bed,
/obj/item/bedsheet/brown,
@@ -21084,14 +20145,16 @@
dir = 8;
icon_state = "red"
},
-/area/security/prison)
+/area/security/permabrig)
"aVs" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
/turf/simulated/floor/plating,
-/area/security/prison)
+/area/security/permabrig)
"aVt" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
/obj/effect/decal/cleanable/cobweb2,
/obj/machinery/light/small{
@@ -21107,19 +20170,19 @@
dir = 4;
icon_state = "red"
},
-/area/security/prison)
+/area/security/permabrig)
"aVu" = (
/obj/structure/table/reinforced,
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
-/obj/item/radio/electropack,
-/obj/item/assembly/signaler,
-/obj/item/clothing/head/helmet,
/obj/structure/reagent_dispensers/peppertank{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
+ },
+/obj/item/storage/box/bodybags,
+/obj/item/assembly/signaler{
+ code = 6;
+ frequency = 1445
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -21137,24 +20200,17 @@
/obj/structure/chair/office/dark{
dir = 8
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/security/execution)
"aVw" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11;
- level = 1
- },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/security/execution)
"aVx" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
/obj/machinery/atmospherics/pipe/simple/hidden,
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -21187,13 +20243,11 @@
/area/security/execution)
"aVA" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/machinery/atmospherics/pipe/manifold/visible{
dir = 4;
- initialize_directions = 11;
- level = 2
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -21217,7 +20271,7 @@
},
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plating,
-/area/security/prison)
+/area/security/permabrig)
"aVC" = (
/obj/machinery/atmospherics/pipe/simple/visible/cyan,
/obj/machinery/light/small{
@@ -21240,16 +20294,14 @@
"aVE" = (
/obj/machinery/atmospherics/pipe/simple/visible/yellow,
/obj/machinery/atmospherics/pipe/simple/visible/green{
- dir = 4;
- level = 2
+ dir = 4
},
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel,
/area/atmos)
"aVF" = (
/obj/machinery/atmospherics/pipe/simple/visible/green{
- dir = 4;
- level = 2
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -21259,8 +20311,7 @@
"aVG" = (
/obj/machinery/atmospherics/pipe/simple/visible,
/obj/machinery/atmospherics/pipe/simple/visible/green{
- dir = 4;
- level = 2
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -21269,8 +20320,7 @@
/area/atmos)
"aVH" = (
/obj/machinery/atmospherics/pipe/simple/visible/green{
- dir = 4;
- level = 2
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/visible,
/turf/simulated/floor/plasteel{
@@ -21280,18 +20330,15 @@
/area/atmos)
"aVI" = (
/obj/machinery/atmospherics/pipe/simple/visible/green{
- dir = 4;
- level = 2
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "caution"
},
/area/atmos)
"aVJ" = (
/obj/machinery/atmospherics/pipe/simple/visible/green{
- dir = 4;
- level = 2
+ dir = 4
},
/obj/machinery/alarm{
dir = 1;
@@ -21303,31 +20350,26 @@
network = list("SS13","Engineering")
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "caution"
},
/area/atmos)
"aVK" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/visible/green{
- dir = 4;
- level = 2
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "caution"
},
/area/atmos)
"aVL" = (
/obj/machinery/atmospherics/pipe/simple/visible/green{
- dir = 4;
- level = 2
+ dir = 4
},
/obj/structure/sign/nosmoking_2{
pixel_y = -32
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "caution"
},
/area/atmos)
@@ -21338,11 +20380,9 @@
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/visible/green{
- dir = 4;
- level = 2
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "caution"
},
/area/atmos)
@@ -21355,8 +20395,7 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/visible/green{
- dir = 4;
- level = 2
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -21371,8 +20410,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/visible/green{
- dir = 4;
- level = 2
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -21382,8 +20420,7 @@
"aVP" = (
/obj/machinery/atmospherics/pipe/simple/visible/yellow,
/obj/machinery/atmospherics/pipe/simple/visible/green{
- dir = 4;
- level = 2
+ dir = 4
},
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
@@ -21448,7 +20485,6 @@
"aVY" = (
/obj/structure/table/wood,
/obj/structure/sign/nosmoking_2{
- pixel_x = 0;
pixel_y = -32
},
/obj/item/lipstick/random{
@@ -21467,11 +20503,9 @@
department = "Clown & Mime Office";
departmentType = 2;
name = "Clown and Mime Requests Console";
- pixel_x = -30;
- pixel_y = 0
+ pixel_x = -30
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria"
},
/area/crew_quarters/theatre)
@@ -21479,7 +20513,6 @@
/obj/structure/table/wood,
/obj/item/reagent_containers/food/snacks/baguette,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria"
},
/area/crew_quarters/theatre)
@@ -21491,23 +20524,20 @@
},
/obj/machinery/vending/autodrobe,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria"
},
/area/crew_quarters/theatre)
"aWb" = (
/obj/structure/table/wood,
/obj/item/clipboard,
-/obj/item/toy/figure/mime,
+/obj/item/toy/figure/crew/mime,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria"
},
/area/crew_quarters/theatre)
"aWc" = (
/obj/structure/dresser,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria"
},
/area/crew_quarters/theatre)
@@ -21530,8 +20560,7 @@
/obj/item/instrument/violin,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/crew_quarters/bar/atrium)
"aWf" = (
@@ -21579,7 +20608,6 @@
},
/obj/structure/disposalpipe/sortjunction{
dir = 1;
- icon_state = "pipe-j1s";
name = "Quartermaster Junction";
sortType = 13
},
@@ -21643,8 +20671,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -21770,8 +20797,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -21789,8 +20815,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/disposalpipe/segment{
@@ -21814,8 +20839,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -21846,8 +20870,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/effect/decal/cleanable/dirt,
/obj/structure/disposalpipe/segment{
@@ -21978,25 +21001,25 @@
},
/area/quartermaster/qm)
"aWK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/table/glass,
/obj/item/storage/firstaid/regular,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "whitered"
},
-/area/security/prison)
+/area/security/permabrig)
"aWL" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/bed/roller,
/obj/machinery/iv_drip,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "whitered"
},
-/area/security/prison)
+/area/security/permabrig)
"aWM" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
/obj/machinery/flasher{
id = "Cell 1";
pixel_x = -22
@@ -22006,19 +21029,15 @@
dir = 8;
icon_state = "red"
},
-/area/security/prison)
+/area/security/permabrig)
"aWN" = (
/obj/machinery/newscaster{
pixel_y = -32
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
-/area/security/prison)
+/area/security/permabrig)
"aWO" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- level = 1
- },
/obj/structure/table,
/obj/item/paper,
/obj/item/pen,
@@ -22026,15 +21045,17 @@
dir = 4;
icon_state = "red"
},
-/area/security/prison)
+/area/security/permabrig)
"aWP" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
/obj/machinery/flasher{
id = "Cell 2";
pixel_x = -22
},
/turf/simulated/floor/plating,
-/area/security/prison)
+/area/security/permabrig)
"aWQ" = (
/obj/structure/cable{
d1 = 1;
@@ -22042,14 +21063,15 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutral"
},
-/area/security/prison)
+/area/security/permabrig)
"aWR" = (
/obj/structure/disposalpipe/trunk{
dir = 4
@@ -22065,7 +21087,6 @@
/obj/item/flashlight/lamp,
/obj/item/radio/intercom{
dir = 8;
- name = "station intercom (General)";
pixel_x = -28
},
/turf/simulated/floor/plasteel{
@@ -22082,28 +21103,22 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkred"
},
/area/security/execution)
"aWU" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/firealarm{
dir = 1;
pixel_y = -24
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkred"
},
/area/security/execution)
@@ -22115,14 +21130,12 @@
dir = 5
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkred"
},
/area/security/execution)
"aWW" = (
/obj/structure/cable,
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
@@ -22137,8 +21150,7 @@
"aWX" = (
/obj/machinery/atmospherics/binary/pump{
dir = 8;
- name = "Justice gas pump";
- on = 0
+ name = "Justice gas pump"
},
/obj/machinery/door/window/westleft,
/turf/simulated/floor/plasteel{
@@ -22165,10 +21177,8 @@
dir = 8
},
/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
- frequency = 1379;
id_tag = "perma_airlock";
pixel_x = 25;
- pixel_y = 0;
req_access_txt = "63";
tag_airpump = "perma_pump";
tag_chamber_sensor = "perma_sensor";
@@ -22176,18 +21186,16 @@
tag_interior_door = "perma_inner"
},
/obj/machinery/atmospherics/unary/vent_pump/high_volume{
- dir = 2;
frequency = 1331;
id_tag = "perma_pump"
},
/obj/machinery/airlock_sensor{
- frequency = 1379;
id_tag = "perma_sensor";
pixel_x = 25;
pixel_y = 8
},
/turf/simulated/floor/plating,
-/area/security/prison)
+/area/security/permabrig)
"aXa" = (
/turf/simulated/floor/engine/co2,
/area/atmos)
@@ -22220,8 +21228,7 @@
"aXd" = (
/obj/structure/grille,
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4;
- level = 2
+ dir = 4
},
/obj/machinery/meter,
/turf/simulated/wall/r_wall,
@@ -22231,19 +21238,10 @@
/obj/machinery/door/airlock/maintenance,
/turf/simulated/floor/plasteel,
/area/maintenance/gambling_den)
-"aXf" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4;
- level = 2
- },
-/turf/simulated/floor/plating,
-/area/atmos)
"aXg" = (
/obj/machinery/atmospherics/pipe/simple/visible/cyan,
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4;
- level = 2
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -22260,8 +21258,7 @@
/obj/machinery/atmospherics/pipe/simple/visible/green,
/obj/machinery/atmospherics/binary/pump{
dir = 4;
- name = "CO2 to Pure";
- on = 0
+ name = "CO2 to Pure"
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -22307,8 +21304,7 @@
dir = 4
},
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -22363,8 +21359,7 @@
"aXt" = (
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
dir = 6;
- initialize_directions = 6;
- level = 2
+ initialize_directions = 6
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -22373,8 +21368,7 @@
/area/atmos)
"aXu" = (
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 4;
- level = 2
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/visible/yellow,
/obj/effect/decal/warning_stripes/east,
@@ -22386,8 +21380,7 @@
},
/obj/structure/window/reinforced,
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 4;
- level = 2
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/visible/green,
/turf/simulated/floor/plasteel{
@@ -22397,8 +21390,7 @@
/area/atmos)
"aXw" = (
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 4;
- level = 2
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -22437,8 +21429,7 @@
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -22460,8 +21451,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -22471,15 +21461,13 @@
"aXB" = (
/obj/structure/table/wood,
/obj/machinery/newscaster{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/item/twohanded/staff/broom,
/obj/item/clothing/head/witchwig,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/crew_quarters/bar/atrium)
"aXC" = (
@@ -22509,7 +21497,6 @@
},
/obj/machinery/newscaster{
layer = 3.3;
- pixel_x = 0;
pixel_y = -27
},
/turf/simulated/floor/plasteel{
@@ -22519,14 +21506,12 @@
"aXG" = (
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/crew_quarters/bar/atrium)
"aXH" = (
/obj/item/radio/intercom{
dir = 0;
- name = "station intercom (General)";
pixel_x = -28;
pixel_y = -28
},
@@ -22551,7 +21536,6 @@
},
/obj/structure/disposalpipe/sortjunction{
dir = 1;
- icon_state = "pipe-j1s";
name = "Cargo Junction";
sortType = 13
},
@@ -22635,8 +21619,7 @@
/area/quartermaster/office)
"aXR" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass,
@@ -22794,8 +21777,7 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10;
- initialize_directions = 10;
- level = 1
+ initialize_directions = 10
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -22834,44 +21816,32 @@
d2 = 2;
icon_state = "0-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plating,
-/area/security/prison)
+/area/security/permabrig)
"aYl" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/medical/glass{
id_tag = null;
name = "Brig Medical Bay";
- req_access_txt = "0";
req_one_access_txt = "63"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "whitehall"
},
-/area/security/prison)
-"aYm" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plating,
-/area/security/prison)
-"aYn" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/wall,
-/area/security/prison)
+/area/security/permabrig)
"aYo" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/door/airlock/security/glass{
- name = "Prison 1";
+ name = "Prison Perma Cell 1";
req_access_txt = "2"
},
+/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel,
-/area/security/prison)
+/area/security/permabrig)
"aYp" = (
/obj/structure/cable{
d1 = 1;
@@ -22881,19 +21851,23 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/airlock/security/glass{
- name = "Prison 2";
+ name = "Prison Perma Cell 2";
req_access_txt = "2"
},
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
-/area/security/prison)
+/area/security/permabrig)
"aYq" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/airlock/security/glass{
- name = "Prison 3";
+ name = "Prison Perma Cell 3";
req_access_txt = "2"
},
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
-/area/security/prison)
+/area/security/permabrig)
"aYr" = (
/obj/structure/cable{
d1 = 1;
@@ -22903,18 +21877,16 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/security/glass{
- name = "Prisoner Education Chamber";
- req_access_txt = "2"
+/obj/machinery/door/airlock/security{
+ name = "Execution Room";
+ req_access = null;
+ req_access_txt = "1"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/security/prison)
-"aYs" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/wall/r_wall,
-/area/security/prison)
+/area/security/execution)
"aYt" = (
/obj/structure/cable{
d1 = 4;
@@ -23040,8 +22012,7 @@
"aYG" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
@@ -23053,8 +22024,7 @@
/obj/structure/table/reinforced,
/obj/item/wrench,
/obj/machinery/newscaster{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/item/tank/internals/emergency_oxygen/engi,
/obj/effect/decal/warning_stripes/yellow/hollow,
@@ -23087,8 +22057,7 @@
/area/atmos)
"aYL" = (
/obj/machinery/atmospherics/pipe/manifold/visible/yellow{
- dir = 8;
- level = 2
+ dir = 8
},
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
@@ -23097,7 +22066,6 @@
/obj/machinery/atmospherics/binary/pump{
dir = 8;
name = "O2 to Pure";
- on = 0;
target_pressure = 101
},
/obj/machinery/atmospherics/pipe/simple/visible/green,
@@ -23111,8 +22079,7 @@
dir = 10
},
/obj/machinery/light/small{
- dir = 4;
- pixel_y = 0
+ dir = 4
},
/obj/machinery/camera{
c_tag = "Atmospherics East";
@@ -23162,8 +22129,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
@@ -23182,8 +22148,7 @@
sortType = 10
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plating,
/area/maintenance/fsmaint)
@@ -23216,12 +22181,10 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutral"
},
/area/maintenance/fsmaint)
@@ -23244,7 +22207,6 @@
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutral"
},
/area/maintenance/fsmaint)
@@ -23303,13 +22265,11 @@
/area/crew_quarters/kitchen)
"aZb" = (
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/obj/machinery/camera{
c_tag = "Atrium";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "redyellowfull"
@@ -23317,8 +22277,7 @@
/area/crew_quarters/bar/atrium)
"aZc" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/machinery/firealarm{
dir = 4;
@@ -23332,8 +22291,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/camera{
c_tag = "Fore Hallway South";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -23371,8 +22329,7 @@
"aZh" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -23443,11 +22400,9 @@
"aZo" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "brown"
},
/area/quartermaster/storage)
@@ -23457,7 +22412,6 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "purple"
},
/area/quartermaster/storage)
@@ -23465,18 +22419,19 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "brown"
},
/area/quartermaster/storage)
"aZr" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
/obj/machinery/flasher{
id = "Cell 3";
pixel_x = -22
},
/turf/simulated/floor/plating,
-/area/security/prison)
+/area/security/permabrig)
"aZs" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/firedoor,
@@ -23498,13 +22453,11 @@
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/obj/machinery/camera{
c_tag = "Cargo Office SouthWest";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -23514,7 +22467,6 @@
"aZu" = (
/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "brown"
},
/area/quartermaster/storage)
@@ -23558,7 +22510,6 @@
/obj/structure/table,
/obj/item/pen,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "brown"
},
/area/quartermaster/qm)
@@ -23567,11 +22518,9 @@
/obj/item/twohanded/required/kirbyplants,
/obj/machinery/newscaster{
layer = 3.3;
- pixel_x = 0;
pixel_y = -27
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "brown"
},
/area/quartermaster/qm)
@@ -23588,13 +22537,11 @@
dir = 1
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "brown"
},
/area/quartermaster/qm)
"aZB" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "brown"
},
/area/quartermaster/qm)
@@ -23606,14 +22553,12 @@
tag = ""
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "brown"
},
/area/quartermaster/qm)
"aZD" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/structure/bed/dogbed,
/turf/simulated/floor/plasteel{
@@ -23622,34 +22567,39 @@
},
/area/quartermaster/qm)
"aZE" = (
-/obj/item/twohanded/required/kirbyplants,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "redcorner"
},
-/area/security/prison)
+/area/security/permabrig)
"aZF" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
- },
-/obj/machinery/newscaster{
- pixel_y = 32
- },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel{
- dir = 2;
+ dir = 1;
icon_state = "redcorner"
},
-/area/security/prison)
+/area/security/permabrig)
"aZG" = (
/obj/machinery/camera{
c_tag = "Perma-Brig Hallway Port";
network = list("SS13","Security")
},
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "redcorner"
},
-/area/security/prison)
+/area/security/permabrig)
"aZH" = (
/obj/structure/cable{
d1 = 1;
@@ -23663,12 +22613,10 @@
icon_state = "2-4";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "redcorner"
},
-/area/security/prison)
+/area/security/permabrig)
"aZI" = (
/obj/structure/cable{
d1 = 2;
@@ -23682,11 +22630,12 @@
icon_state = "4-8";
tag = ""
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "redcorner"
},
-/area/security/prison)
+/area/security/permabrig)
"aZJ" = (
/obj/structure/cable{
d1 = 4;
@@ -23699,19 +22648,13 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11;
- level = 1
- },
/obj/structure/sign/greencross{
pixel_y = 32
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "redcorner"
},
-/area/security/prison)
+/area/security/permabrig)
"aZK" = (
/obj/structure/cable{
d1 = 4;
@@ -23719,14 +22662,21 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/door_control{
+ desc = "A remote control-switch to lock down the prison wing's blast doors";
+ id = "cell1lockdown";
+ name = "Cell Lockdown";
+ pixel_y = 32;
+ req_access_txt = "2"
+ },
+/obj/machinery/flasher_button{
+ id = "Cell 1";
+ pixel_y = 25
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "redcorner"
},
-/area/security/prison)
+/area/security/permabrig)
"aZL" = (
/obj/structure/cable{
d1 = 4;
@@ -23734,15 +22684,13 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/machinery/status_display{
pixel_y = 32
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "redcorner"
},
-/area/security/prison)
+/area/security/permabrig)
"aZM" = (
/obj/structure/cable{
d1 = 4;
@@ -23751,12 +22699,11 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "redcorner"
},
-/area/security/prison)
+/area/security/permabrig)
"aZN" = (
/obj/structure/cable{
d1 = 4;
@@ -23764,19 +22711,14 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/flasher_button{
id = "Cell 1";
- pixel_x = 0;
pixel_y = 27
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "redcorner"
},
-/area/security/prison)
+/area/security/permabrig)
"aZO" = (
/obj/structure/cable{
d1 = 4;
@@ -23790,15 +22732,13 @@
icon_state = "2-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/machinery/status_display{
pixel_y = 32
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "redcorner"
},
-/area/security/prison)
+/area/security/permabrig)
"aZP" = (
/obj/structure/cable{
d1 = 4;
@@ -23812,14 +22752,11 @@
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "redcorner"
},
-/area/security/prison)
+/area/security/permabrig)
"aZQ" = (
/obj/structure/cable{
d1 = 4;
@@ -23833,14 +22770,21 @@
icon_state = "2-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/flasher_button{
+ id = "Cell 2";
+ pixel_y = 25
+ },
+/obj/machinery/door_control{
+ desc = "A remote control-switch to lock down the prison wing's blast doors";
+ id = "cell2lockdown";
+ name = "Cell Lockdown";
+ pixel_y = 32;
+ req_access_txt = "2"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "redcorner"
},
-/area/security/prison)
+/area/security/permabrig)
"aZR" = (
/obj/structure/cable{
d1 = 4;
@@ -23854,7 +22798,6 @@
icon_state = "2-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/machinery/status_display{
pixel_y = 32
},
@@ -23863,26 +22806,9 @@
network = list("SS13","Security")
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "redcorner"
},
-/area/security/prison)
-"aZS" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redcorner"
- },
-/area/security/prison)
+/area/security/permabrig)
"aZT" = (
/obj/structure/cable{
d1 = 4;
@@ -23896,32 +22822,14 @@
icon_state = "2-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/firealarm{
pixel_y = 24
},
+/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "redcorner"
},
-/area/security/prison)
-"aZU" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redcorner"
- },
-/area/security/prison)
+/area/security/permabrig)
"aZV" = (
/obj/machinery/door/airlock/external{
frequency = 1379;
@@ -23935,7 +22843,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden,
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plating,
-/area/security/prison)
+/area/security/permabrig)
"aZW" = (
/obj/structure/cable{
d1 = 4;
@@ -23954,8 +22862,15 @@
req_access_txt = "2"
},
/obj/effect/decal/warning_stripes/west,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Prison Gate";
+ name = "Prison Lockdown Blast Doors";
+ opacity = 0
+ },
/turf/simulated/floor/plasteel,
-/area/security/prison)
+/area/security/permabrig)
"aZX" = (
/obj/structure/cable{
d1 = 4;
@@ -23965,7 +22880,7 @@
},
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
-/area/security/prison)
+/area/security/permabrig)
"aZY" = (
/obj/machinery/atmospherics/pipe/simple/visible{
dir = 4
@@ -23979,7 +22894,6 @@
"aZZ" = (
/obj/item/radio/intercom{
dir = 4;
- name = "station intercom (General)";
pixel_x = 28
},
/obj/structure/chair/stool/bar,
@@ -24001,13 +22915,13 @@
"bab" = (
/obj/effect/spawner/window/reinforced,
/turf/simulated/floor/plating,
-/area/security/prison)
+/area/security/permabrig)
"bac" = (
/obj/machinery/light/small{
dir = 1
},
/turf/simulated/floor/plating,
-/area/security/prison)
+/area/security/permabrig)
"bad" = (
/obj/structure/cable{
d1 = 4;
@@ -24017,7 +22931,7 @@
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
-/area/security/prison)
+/area/security/permabrig)
"bae" = (
/turf/simulated/wall/mineral/titanium,
/area/shuttle/pod_3)
@@ -24032,8 +22946,7 @@
"bah" = (
/obj/structure/grille,
/obj/machinery/atmospherics/pipe/simple/visible/green{
- dir = 4;
- level = 2
+ dir = 4
},
/obj/machinery/meter,
/turf/simulated/wall/r_wall,
@@ -24058,16 +22971,14 @@
"baj" = (
/obj/effect/spawner/window/reinforced,
/obj/machinery/atmospherics/pipe/simple/visible/green{
- dir = 4;
- level = 2
+ dir = 4
},
/turf/simulated/floor/plating,
/area/atmos)
"bak" = (
/obj/machinery/atmospherics/pipe/simple/visible/cyan,
/obj/machinery/atmospherics/pipe/simple/visible/green{
- dir = 4;
- level = 2
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -24137,8 +23048,7 @@
"bar" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -24153,8 +23063,7 @@
"bau" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -24171,8 +23080,7 @@
/obj/machinery/atmospherics/unary/vent_pump{
dir = 8;
external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
+ on = 1
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -24250,14 +23158,12 @@
"baC" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/maintenance/fsmaint)
"baD" = (
/obj/effect/spawner/random_spawners/grille_maybe,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutral"
},
/area/maintenance/fsmaint)
@@ -24289,8 +23195,7 @@
"baI" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/wall,
/area/hydroponics)
@@ -24303,13 +23208,11 @@
"baK" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/door/firedoor,
/obj/item/radio/intercom{
dir = 0;
- name = "station intercom (General)";
pixel_x = -28
},
/obj/effect/decal/warning_stripes/south,
@@ -24334,8 +23237,7 @@
/area/crew_quarters/kitchen)
"baN" = (
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 4;
- level = 2
+ dir = 4
},
/obj/structure/lattice/catwalk,
/turf/space,
@@ -24351,18 +23253,19 @@
req_access_txt = "67"
},
/turf/space,
-/area/space/nearstation)
+/area/space)
"baP" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4;
+ initialize_directions = 11
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutral"
},
-/area/security/prison)
+/area/security/permabrig)
"baQ" = (
/obj/structure/sink/kitchen{
pixel_y = 30
@@ -24372,8 +23275,7 @@
/area/crew_quarters/kitchen)
"baR" = (
/obj/machinery/newscaster{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
@@ -24381,17 +23283,16 @@
},
/area/crew_quarters/bar/atrium)
"baS" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11;
- level = 1
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutral"
},
-/area/security/prison)
+/area/security/permabrig)
"baT" = (
/obj/structure/disposalpipe/trunk{
dir = 8
@@ -24404,12 +23305,10 @@
"baU" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/obj/structure/extinguisher_cabinet{
- pixel_x = -25;
- pixel_y = 0
+ pixel_x = -25
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -24443,44 +23342,38 @@
/obj/machinery/disposal,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "brown"
},
/area/quartermaster/office)
"baX" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "brown"
},
/area/quartermaster/office)
"baY" = (
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "brown"
},
/area/quartermaster/office)
"baZ" = (
/obj/structure/table,
/obj/item/clipboard,
-/obj/item/toy/figure/cargotech,
+/obj/item/toy/figure/crew/cargotech,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "brown"
},
/area/quartermaster/office)
"bba" = (
/obj/structure/filingcabinet/filingcabinet,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "brown"
},
/area/quartermaster/office)
"bbb" = (
/obj/machinery/computer/supplycomp,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "brown"
},
/area/quartermaster/office)
@@ -24490,15 +23383,13 @@
name = "Cargo Technician"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "brown"
},
/area/quartermaster/office)
"bbd" = (
/obj/structure/table/reinforced,
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/item/stamp/granted{
pixel_x = 3;
@@ -24510,12 +23401,10 @@
},
/obj/machinery/newscaster{
layer = 3.3;
- pixel_x = 0;
pixel_y = -27
},
/obj/item/radio/intercom{
dir = 4;
- name = "station intercom (General)";
pixel_x = 28
},
/turf/simulated/floor/plasteel{
@@ -24632,8 +23521,15 @@
d2 = 4;
icon_state = "1-4"
},
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Prison Gate";
+ name = "Prison Lockdown Blast Doors";
+ opacity = 0
+ },
/turf/simulated/floor/plating,
-/area/security/prison)
+/area/security/permabrig)
"bbo" = (
/obj/structure/cable{
d1 = 4;
@@ -24641,8 +23537,19 @@
icon_state = "4-8";
tag = ""
},
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
/turf/simulated/floor/plasteel,
-/area/security/prison)
+/area/security/permabrig)
"bbp" = (
/obj/structure/cable{
d1 = 4;
@@ -24650,15 +23557,15 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "redcorner"
},
-/area/security/prison)
+/area/security/permabrig)
"bbq" = (
/obj/structure/cable{
d1 = 4;
@@ -24667,19 +23574,21 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/light,
/obj/machinery/firealarm{
dir = 1;
pixel_y = -24
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "redcorner"
},
-/area/security/prison)
+/area/security/permabrig)
"bbr" = (
/obj/structure/cable{
d1 = 1;
@@ -24693,12 +23602,18 @@
icon_state = "2-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1;
+ initialize_directions = 11
+ },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "redcorner"
},
-/area/security/prison)
+/area/security/permabrig)
"bbs" = (
/obj/structure/cable{
d1 = 1;
@@ -24706,56 +23621,43 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "redcorner"
},
-/area/security/prison)
+/area/security/permabrig)
"bbt" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "redcorner"
- },
-/area/security/prison)
-"bbu" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "redcorner"
},
-/area/security/prison)
+/area/security/permabrig)
"bbv" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "redcorner"
},
-/area/security/prison)
+/area/security/permabrig)
"bbw" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
+ dir = 4
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "redcorner"
},
-/area/security/prison)
+/area/security/permabrig)
"bbx" = (
/obj/structure/cable{
d1 = 1;
@@ -24764,37 +23666,39 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/landmark{
name = "lightsout"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "redcorner"
},
-/area/security/prison)
+/area/security/permabrig)
"bby" = (
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "redcorner"
},
-/area/security/prison)
+/area/security/permabrig)
"bbz" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/light,
/obj/item/radio/intercom{
@@ -24802,15 +23706,17 @@
name = "Station Intercom (General)";
pixel_y = -29
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "redcorner"
},
-/area/security/prison)
+/area/security/permabrig)
"bbA" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/item/twohanded/required/kirbyplants,
/obj/structure/sign/pods{
@@ -24820,24 +23726,28 @@
dir = 1;
icon_state = "redcorner"
},
-/area/security/prison)
+/area/security/permabrig)
"bbB" = (
/obj/effect/spawner/window/reinforced,
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
+ },
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Prison Gate";
+ name = "Prison Lockdown Blast Doors";
+ opacity = 0
},
/turf/simulated/floor/plating,
-/area/security/prison)
+/area/security/permabrig)
"bbC" = (
/obj/effect/decal/warning_stripes/arrow{
- dir = 4;
- icon_state = "4"
+ dir = 4
},
/obj/effect/decal/warning_stripes/yellow/partial{
- dir = 4;
- icon_state = "3"
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -24846,8 +23756,7 @@
/area/hallway/primary/fore)
"bbD" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/light/small,
/obj/structure/sign/securearea{
@@ -24855,34 +23764,28 @@
},
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
-/area/security/prison)
+/area/security/permabrig)
"bbE" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/security/prison)
+/area/security/permabrig)
"bbF" = (
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4;
- level = 2
+ dir = 4
},
/obj/structure/lattice/catwalk,
/turf/space,
/area/atmos)
-"bbG" = (
-/turf/simulated/floor/plating,
-/area/security/prison)
"bbH" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
-/area/security/prison)
+/area/security/permabrig)
"bbI" = (
/obj/docking_port/mobile/pod{
dir = 4;
@@ -24897,9 +23800,6 @@
/area/shuttle/pod_3)
"bbJ" = (
/obj/item/radio/intercom{
- broadcasting = 0;
- listening = 1;
- name = "station intercom (General)";
pixel_y = 25
},
/obj/structure/chair/comfy/shuttle{
@@ -24909,9 +23809,7 @@
/area/shuttle/pod_3)
"bbK" = (
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/obj/machinery/light,
@@ -24969,9 +23867,7 @@
"bbQ" = (
/obj/machinery/atmospherics/trinary/filter{
dir = 1;
- filter_type = "";
- name = "gas filter";
- on = 0
+ filter_type = ""
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -25089,8 +23985,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
@@ -25100,8 +23995,7 @@
dir = 10
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/structure/extinguisher_cabinet{
pixel_x = -6;
@@ -25157,22 +24051,18 @@
"bcl" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/camera{
c_tag = "Service Hall South";
dir = 4;
- network = list("SS13");
pixel_y = -22
},
/obj/effect/decal/warning_stripes/arrow{
- dir = 1;
- icon_state = "4"
+ dir = 1
},
/obj/effect/decal/warning_stripes/yellow/partial{
- dir = 1;
- icon_state = "3"
+ dir = 1
},
/turf/simulated/floor/plasteel,
/area/crew_quarters/sleep)
@@ -25201,8 +24091,7 @@
"bco" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
@@ -25237,9 +24126,7 @@
/area/crew_quarters/kitchen)
"bct" = (
/obj/machinery/camera{
- c_tag = "Kitchen Backroom";
- dir = 2;
- network = list("SS13")
+ c_tag = "Kitchen Backroom"
},
/obj/structure/sink/kitchen{
pixel_y = 30
@@ -25255,8 +24142,7 @@
"bcv" = (
/obj/structure/closet/secure_closet/freezer/meat,
/obj/structure/extinguisher_cabinet{
- pixel_x = 25;
- pixel_y = 0
+ pixel_x = 25
},
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
@@ -25334,7 +24220,6 @@
/obj/structure/filingcabinet/chestdrawer,
/obj/item/radio/intercom{
dir = 0;
- name = "station intercom (General)";
pixel_x = -28
},
/turf/simulated/floor/plasteel{
@@ -25394,7 +24279,6 @@
/obj/structure/closet/secure_closet/cargotech,
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "purple"
},
/area/quartermaster/storage)
@@ -25408,7 +24292,6 @@
},
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "brown"
},
/area/quartermaster/storage)
@@ -25423,12 +24306,10 @@
/obj/machinery/light,
/obj/machinery/newscaster{
layer = 3.3;
- pixel_x = 0;
pixel_y = -27
},
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "purple"
},
/area/quartermaster/storage)
@@ -25476,18 +24357,18 @@
/obj/item/folder/red,
/obj/item/pen,
/turf/simulated/floor/plasteel,
-/area/security/prison)
+/area/security/permabrig)
"bcV" = (
/obj/machinery/recharger,
/obj/structure/table/reinforced,
/turf/simulated/floor/plasteel,
-/area/security/prison)
+/area/security/permabrig)
"bcW" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/external,
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel,
-/area/security/prison)
+/area/security/permabrig)
"bcX" = (
/obj/structure/cable{
d1 = 1;
@@ -25502,20 +24383,28 @@
req_access_txt = "2"
},
/obj/effect/decal/warning_stripes/south,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Prison Gate";
+ name = "Prison Lockdown Blast Doors";
+ opacity = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
-/area/security/prison)
+/area/security/permabrig)
"bcY" = (
-/obj/structure/table/reinforced,
/obj/machinery/light/small{
dir = 8
},
/obj/structure/reagent_dispensers/peppertank{
pixel_y = -32
},
+/obj/structure/closet/secure_closet/brig,
/turf/simulated/floor/plasteel{
icon_state = "vault"
},
-/area/security/prison)
+/area/security/permabrig)
"bcZ" = (
/obj/structure/cable{
d1 = 1;
@@ -25523,10 +24412,11 @@
icon_state = "1-2";
tag = ""
},
+/obj/structure/closet/secure_closet/brig,
/turf/simulated/floor/plasteel{
icon_state = "vault"
},
-/area/security/prison)
+/area/security/permabrig)
"bda" = (
/obj/structure/cable{
d1 = 4;
@@ -25536,7 +24426,7 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
-/area/security/prison)
+/area/security/permabrig)
"bdb" = (
/obj/machinery/light/small{
dir = 8
@@ -25545,25 +24435,13 @@
/turf/simulated/floor/plasteel{
icon_state = "vault"
},
-/area/security/prison)
-"bdc" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/closet/secure_closet/brig,
-/turf/simulated/floor/plasteel{
- icon_state = "vault"
- },
-/area/security/prison)
+/area/security/permabrig)
"bdd" = (
/obj/structure/closet/secure_closet/brig,
/turf/simulated/floor/plasteel{
icon_state = "vault"
},
-/area/security/prison)
+/area/security/permabrig)
"bde" = (
/obj/effect/spawner/window/reinforced,
/obj/structure/cable,
@@ -25577,14 +24455,21 @@
d2 = 8;
icon_state = "1-8"
},
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Prison Gate";
+ name = "Prison Lockdown Blast Doors";
+ opacity = 0
+ },
/turf/simulated/floor/plating,
-/area/security/prison)
+/area/security/permabrig)
"bdf" = (
/obj/structure/table,
/obj/item/storage/box/bodybags,
/obj/item/pen,
/turf/simulated/floor/plasteel,
-/area/security/prison)
+/area/security/permabrig)
"bdg" = (
/obj/structure/cable{
d1 = 1;
@@ -25596,22 +24481,28 @@
/obj/item/restraints/handcuffs,
/obj/item/clothing/suit/armor/vest,
/turf/simulated/floor/plasteel,
-/area/security/prison)
+/area/security/permabrig)
"bdh" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/light/small,
/turf/simulated/floor/plating,
-/area/security/prison)
+/area/security/permabrig)
"bdi" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/security/glass{
name = "Prison Wing";
req_access_txt = "2"
},
/obj/effect/decal/warning_stripes/south,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Prison Gate";
+ name = "Prison Lockdown Blast Doors";
+ opacity = 0
+ },
/turf/simulated/floor/plasteel,
-/area/security/prison)
+/area/security/permabrig)
"bdk" = (
/turf/simulated/floor/engine/plasma,
/area/atmos)
@@ -25651,8 +24542,7 @@
/obj/machinery/atmospherics/pipe/simple/visible/green,
/obj/machinery/atmospherics/binary/pump{
dir = 4;
- name = "Plasma to Pure";
- on = 0
+ name = "Plasma to Pure"
},
/turf/simulated/floor/plasteel{
dir = 9;
@@ -25713,8 +24603,7 @@
/area/atmos)
"bdu" = (
/obj/machinery/atmospherics/pipe/simple/visible/green{
- dir = 4;
- level = 2
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -25773,8 +24662,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -25789,8 +24677,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
@@ -25812,8 +24699,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -25828,8 +24714,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -25844,8 +24729,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -25860,8 +24744,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
@@ -25874,8 +24757,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/door/airlock/glass{
name = "Hydroponics";
@@ -25897,8 +24779,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
@@ -25925,8 +24806,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/door/airlock/freezer{
req_access_txt = "28"
@@ -25941,8 +24821,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/warning_stripes/yellow,
@@ -25956,8 +24835,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "freezerfloor"
@@ -25971,8 +24849,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
},
/obj/effect/landmark/start{
name = "Chef"
@@ -25991,8 +24868,7 @@
/obj/machinery/atmospherics/unary/vent_pump{
dir = 8;
external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
+ on = 1
},
/turf/simulated/floor/plasteel{
icon_state = "freezerfloor"
@@ -26001,7 +24877,6 @@
"bdN" = (
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/obj/structure/rack,
@@ -26017,8 +24892,7 @@
/obj/structure/disposalpipe/trunk,
/obj/machinery/disposal,
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
@@ -26027,9 +24901,7 @@
/area/crew_quarters/kitchen)
"bdP" = (
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "redfull"
},
/area/crew_quarters/kitchen)
"bdQ" = (
@@ -26042,17 +24914,13 @@
pixel_y = 30
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "redfull"
},
/area/crew_quarters/kitchen)
"bdS" = (
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "redfull"
},
/area/crew_quarters/kitchen)
"bdT" = (
@@ -26079,7 +24947,6 @@
},
/obj/item/radio/intercom{
dir = 0;
- name = "station intercom (General)";
pixel_x = -28
},
/turf/simulated/floor/plasteel{
@@ -26112,8 +24979,7 @@
/area/hallway/primary/fore)
"bdZ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
@@ -26131,16 +24997,13 @@
/area/hallway/primary/fore)
"beb" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/warning_stripes/arrow{
- dir = 1;
- icon_state = "4"
+ dir = 1
},
/obj/effect/decal/warning_stripes/yellow/partial{
- dir = 1;
- icon_state = "3"
+ dir = 1
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -26150,8 +25013,7 @@
"bec" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
@@ -26177,8 +25039,7 @@
"bef" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/quartermaster/miningdock)
@@ -26288,8 +25149,7 @@
desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
icon_state = "space";
layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_x = 0
+ name = "EXTERNAL AIRLOCK"
},
/turf/simulated/floor/plating,
/area/quartermaster/miningdock)
@@ -26334,17 +25194,23 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
-/area/security/prison)
+/area/security/permabrig)
"beA" = (
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
-/area/security/prison)
+/area/security/permabrig)
"beB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/light/small{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
-/area/security/prison)
+/area/security/permabrig)
"beC" = (
/obj/structure/closet/bombcloset,
/obj/effect/decal/cleanable/dirt,
@@ -26352,12 +25218,19 @@
dir = 8;
icon_state = "vault"
},
-/area/security/prison)
+/area/security/permabrig)
"beD" = (
/obj/effect/spawner/window/reinforced,
/obj/structure/cable,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Prison Gate";
+ name = "Prison Lockdown Blast Doors";
+ opacity = 0
+ },
/turf/simulated/floor/plating,
-/area/security/prison)
+/area/security/permabrig)
"beE" = (
/obj/machinery/light/small{
dir = 8
@@ -26439,8 +25312,7 @@
/area/atmos)
"beN" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/structure/closet/wardrobe/atmospherics_yellow,
/obj/effect/decal/warning_stripes/yellow/hollow,
@@ -26467,7 +25339,6 @@
/obj/machinery/atmospherics/binary/pump{
dir = 8;
name = "N2 to Pure";
- on = 0;
target_pressure = 101
},
/obj/machinery/atmospherics/pipe/simple/visible/green,
@@ -26481,8 +25352,7 @@
dir = 10
},
/obj/machinery/light/small{
- dir = 4;
- pixel_y = 0
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -26507,7 +25377,6 @@
/area/hydroponics)
"beU" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "greenblue"
},
/area/hydroponics)
@@ -26516,7 +25385,6 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "greenblue"
},
/area/hydroponics)
@@ -26528,35 +25396,29 @@
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "greenblue"
},
/area/hydroponics)
"beX" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/camera{
c_tag = "Hydroponics Backroom";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "greenblue"
},
/area/hydroponics)
"beY" = (
/obj/structure/cable,
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "greenblue"
},
/area/hydroponics)
@@ -26566,7 +25428,6 @@
on = 1
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "greenblue"
},
/area/hydroponics)
@@ -26621,7 +25482,6 @@
"bfh" = (
/obj/structure/cable,
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
@@ -26635,23 +25495,18 @@
/area/crew_quarters/kitchen)
"bfj" = (
/obj/machinery/newscaster{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/structure/closet/secure_closet/freezer/fridge,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "redfull"
},
/area/crew_quarters/kitchen)
"bfk" = (
/obj/machinery/cooker/deepfryer,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "redfull"
},
/area/crew_quarters/kitchen)
"bfl" = (
@@ -26668,9 +25523,7 @@
"bfm" = (
/obj/machinery/kitchen_machine/oven,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "redfull"
},
/area/crew_quarters/kitchen)
"bfn" = (
@@ -26754,7 +25607,7 @@
},
/obj/structure/table,
/obj/item/clipboard,
-/obj/item/toy/figure/miner,
+/obj/item/toy/figure/crew/miner,
/obj/machinery/firealarm{
dir = 4;
pixel_x = -28
@@ -26817,8 +25670,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -26827,8 +25679,7 @@
/area/quartermaster/miningdock)
"bfG" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/landmark/start{
name = "Shaft Miner"
@@ -26842,8 +25693,7 @@
/obj/machinery/atmospherics/unary/vent_pump{
dir = 8;
external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
+ on = 1
},
/obj/effect/landmark/start{
name = "Shaft Miner"
@@ -26904,16 +25754,18 @@
"bfR" = (
/obj/structure/cable{
d2 = 2;
- icon_state = "0-2";
- pixel_y = 0
+ icon_state = "0-2"
},
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/obj/structure/table/glass,
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
/turf/simulated/floor/plasteel{
dir = 9;
icon_state = "whitered"
@@ -26931,17 +25783,16 @@
/obj/machinery/portable_atmospherics/canister/air,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
-/area/security/prison)
+/area/security/permabrig)
"bfT" = (
/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
pixel_y = -32
},
/obj/structure/closet/secure_closet/brig,
/turf/simulated/floor/plasteel{
icon_state = "vault"
},
-/area/security/prison)
+/area/security/permabrig)
"bfU" = (
/obj/machinery/light/small{
dir = 1
@@ -26951,7 +25802,7 @@
},
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
-/area/security/prison)
+/area/security/permabrig)
"bfV" = (
/obj/structure/cable{
d1 = 2;
@@ -26965,14 +25816,11 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11;
- level = 1
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/warning_stripes/north,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
-/area/security/prison)
+/area/security/permabrig)
"bfW" = (
/obj/structure/cable{
d1 = 4;
@@ -26980,28 +25828,9 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel,
-/area/security/prison)
-"bfX" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plasteel,
-/area/security/prison)
+/area/security/permabrig)
"bfY" = (
/obj/structure/cable{
d1 = 4;
@@ -27009,17 +25838,21 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/door/airlock/security/glass{
- name = "Security Closet";
- req_access_txt = "1"
- },
/obj/effect/decal/warning_stripes/west,
+/obj/machinery/door/airlock/security{
+ name = "Security-Storage Backroom";
+ req_access = null;
+ req_access_txt = "63"
+ },
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Prison Gate";
+ name = "Prison Lockdown Blast Doors";
+ opacity = 0
+ },
/turf/simulated/floor/plasteel,
-/area/security/prison)
+/area/security/permabrig)
"bfZ" = (
/obj/structure/cable{
d1 = 4;
@@ -27033,7 +25866,7 @@
dir = 8;
icon_state = "vault"
},
-/area/security/prison)
+/area/security/permabrig)
"bga" = (
/obj/machinery/atmospherics/unary/outlet_injector/on{
dir = 4;
@@ -27060,8 +25893,7 @@
"bgc" = (
/obj/machinery/atmospherics/binary/pump{
dir = 1;
- name = "Port Mix to Port Ports";
- on = 0
+ name = "Port Mix to Port Ports"
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -27071,12 +25903,10 @@
"bgd" = (
/obj/machinery/atmospherics/binary/pump{
dir = 1;
- name = "Port Mix to Starboard Ports";
- on = 0
+ name = "Port Mix to Starboard Ports"
},
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -27103,8 +25933,7 @@
/area/atmos)
"bgg" = (
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 5;
- level = 2
+ dir = 5
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -27113,8 +25942,7 @@
/area/atmos)
"bgh" = (
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 4;
- level = 2
+ dir = 4
},
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
@@ -27208,8 +26036,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass{
- name = "Service Hall";
- req_access_txt = "0"
+ name = "Service Hall"
},
/turf/simulated/floor/plasteel,
/area/crew_quarters/sleep)
@@ -27264,8 +26091,7 @@
/area/hallway/primary/fore)
"bgy" = (
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/obj/structure/closet/secure_closet/freezer/kitchen,
/obj/effect/decal/warning_stripes/yellow,
@@ -27300,9 +26126,7 @@
/obj/structure/table/reinforced,
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "redfull"
},
/area/crew_quarters/kitchen)
"bgC" = (
@@ -27310,8 +26134,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -27324,8 +26147,7 @@
icon_state = "pipe-c"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
@@ -27336,8 +26158,7 @@
"bgE" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
@@ -27358,8 +26179,7 @@
/area/hallway/primary/fore)
"bgG" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -27380,9 +26200,7 @@
/obj/structure/table/reinforced,
/obj/machinery/door/firedoor,
/obj/machinery/door/window{
- base_state = "left";
dir = 8;
- icon_state = "left";
name = "Kitchen";
req_access_txt = "28"
},
@@ -27392,15 +26210,13 @@
"bgJ" = (
/obj/effect/spawner/window/reinforced,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plating,
/area/quartermaster/miningdock)
"bgK" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
@@ -27410,8 +26226,7 @@
/area/quartermaster/miningdock)
"bgL" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
@@ -27427,16 +26242,14 @@
/area/quartermaster/miningdock)
"bgN" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/quartermaster/miningdock)
"bgO" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/item/twohanded/required/kirbyplants,
/obj/effect/decal/cleanable/dirt,
@@ -27447,8 +26260,7 @@
/area/quartermaster/miningdock)
"bgP" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -27457,8 +26269,7 @@
/area/quartermaster/miningdock)
"bgQ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/cleanable/dirt,
@@ -27476,8 +26287,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/quartermaster/miningdock)
@@ -27512,11 +26322,13 @@
/area/quartermaster/miningdock)
"bgX" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "browncorner"
@@ -27573,30 +26385,18 @@
icon_state = "whitered"
},
/area/security/medbay)
-"bhe" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
- },
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/security/prison)
"bhf" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/turf/simulated/floor/plating,
-/area/security/brig)
+/obj/machinery/photocopier/faxmachine/longrange{
+ department = "Magistrate's Office"
+ },
+/obj/structure/table/wood,
+/turf/simulated/floor/plasteel{
+ icon_state = "cult"
+ },
+/area/magistrateoffice)
"bhg" = (
/obj/structure/cable{
d1 = 1;
@@ -27606,11 +26406,19 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/security/glass{
+/obj/effect/decal/warning_stripes/south,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Prison Gate";
+ name = "Prison Lockdown Blast Doors";
+ opacity = 0
+ },
+/obj/machinery/door/airlock/security{
name = "Prison Wing";
req_access_txt = "2"
},
-/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/security/brig)
"bhh" = (
@@ -27648,7 +26456,6 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/turf/simulated/floor/plasteel{
@@ -27784,9 +26591,8 @@
"bhB" = (
/obj/structure/table/glass,
/obj/item/clipboard,
-/obj/item/toy/figure/botanist,
+/obj/item/toy/figure/crew/botanist,
/obj/machinery/newscaster{
- pixel_x = 0;
pixel_y = 32
},
/obj/effect/decal/warning_stripes/yellow/hollow,
@@ -27849,9 +26655,7 @@
"bhJ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "redfull"
},
/area/crew_quarters/kitchen)
"bhK" = (
@@ -27865,9 +26669,7 @@
"bhL" = (
/mob/living/carbon/human/monkey/punpun,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "redfull"
},
/area/crew_quarters/kitchen)
"bhM" = (
@@ -27888,8 +26690,7 @@
"bhO" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -27917,9 +26718,7 @@
/obj/item/reagent_containers/food/snacks/dough,
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "redfull"
},
/area/crew_quarters/kitchen)
"bhR" = (
@@ -27977,8 +26776,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -27987,12 +26785,10 @@
/area/hallway/primary/fore)
"bhZ" = (
/obj/effect/decal/warning_stripes/arrow{
- dir = 1;
- icon_state = "4"
+ dir = 1
},
/obj/effect/decal/warning_stripes/yellow/partial{
- dir = 1;
- icon_state = "3"
+ dir = 1
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -28015,8 +26811,7 @@
"bic" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/quartermaster/miningdock)
@@ -28029,8 +26824,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/quartermaster/miningdock)
@@ -28051,12 +26845,10 @@
/area/quartermaster/miningdock)
"bif" = (
/obj/effect/decal/warning_stripes/arrow{
- dir = 1;
- icon_state = "4"
+ dir = 1
},
/obj/effect/decal/warning_stripes/yellow/partial{
- dir = 1;
- icon_state = "3"
+ dir = 1
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -28225,22 +27017,14 @@
pixel_y = 28
},
/obj/item/bedsheet/blue,
+/obj/machinery/light{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 5;
icon_state = "whitered"
},
/area/security/medbay)
-"bit" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/security/medbay)
"biu" = (
/obj/structure/cable{
d1 = 1;
@@ -28249,34 +27033,21 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 9;
icon_state = "red"
},
/area/security/brig)
"biv" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "red"
},
/area/security/brig)
"biw" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11;
- level = 1
+/obj/machinery/light{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 5;
@@ -28286,8 +27057,7 @@
"bix" = (
/obj/item/twohanded/required/kirbyplants,
/obj/structure/extinguisher_cabinet{
- pixel_x = -25;
- pixel_y = 0
+ pixel_x = -25
},
/turf/simulated/floor/plasteel{
dir = 9;
@@ -28307,6 +27077,7 @@
icon_state = "2-4";
tag = ""
},
+/obj/structure/closet/secure_closet/security,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "red"
@@ -28322,6 +27093,7 @@
/obj/machinery/alarm{
pixel_y = 23
},
+/obj/structure/closet/secure_closet/security,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "red"
@@ -28342,6 +27114,7 @@
c_tag = "Security Briefing Room North";
network = list("SS13","Security")
},
+/obj/structure/closet/secure_closet/security,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "red"
@@ -28357,6 +27130,7 @@
/obj/machinery/newscaster{
pixel_y = 32
},
+/obj/structure/closet/secure_closet/security,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "red"
@@ -28485,8 +27259,7 @@
/obj/machinery/atmospherics/pipe/simple/visible/green,
/obj/machinery/atmospherics/binary/pump{
dir = 4;
- name = "n2o to Pure";
- on = 0
+ name = "n2o to Pure"
},
/turf/simulated/floor/plasteel{
dir = 9;
@@ -28496,8 +27269,7 @@
"biO" = (
/obj/machinery/atmospherics/binary/pump{
dir = 1;
- name = "Pure to Ports";
- on = 0
+ name = "Pure to Ports"
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -28507,8 +27279,7 @@
"biP" = (
/obj/machinery/atmospherics/binary/pump{
dir = 1;
- name = "Mix to Ports";
- on = 0
+ name = "Mix to Ports"
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -28518,8 +27289,7 @@
"biQ" = (
/obj/machinery/atmospherics/binary/pump{
dir = 1;
- name = "Air to Ports";
- on = 0
+ name = "Air to Ports"
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -28540,8 +27310,7 @@
"biS" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
+ dir = 5
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -28597,8 +27366,7 @@
"biX" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -28631,8 +27399,7 @@
"bja" = (
/obj/machinery/atmospherics/pipe/simple/visible/yellow,
/obj/machinery/atmospherics/pipe/simple/visible/green{
- dir = 4;
- level = 2
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -28673,13 +27440,11 @@
"bje" = (
/obj/structure/sink{
dir = 8;
- icon_state = "sink";
pixel_x = -12;
pixel_y = 2
},
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/obj/effect/decal/warning_stripes/yellow/hollow,
@@ -28705,8 +27470,7 @@
"bjh" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -28816,9 +27580,7 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "redfull"
},
/area/crew_quarters/kitchen)
"bjs" = (
@@ -28841,9 +27603,7 @@
dir = 8
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "redfull"
},
/area/crew_quarters/kitchen)
"bju" = (
@@ -28859,9 +27619,7 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "redfull"
},
/area/crew_quarters/kitchen)
"bjw" = (
@@ -28875,9 +27633,7 @@
name = "Chef"
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "redfull"
},
/area/crew_quarters/kitchen)
"bjx" = (
@@ -28886,9 +27642,7 @@
icon_state = "pipe-c"
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "redfull"
},
/area/crew_quarters/kitchen)
"bjy" = (
@@ -28905,8 +27659,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/yellow,
@@ -29014,7 +27767,6 @@
/area/quartermaster/miningdock)
"bjL" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "purple"
},
/area/quartermaster/miningdock)
@@ -29037,7 +27789,6 @@
icon_state = "pipe-c"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "brown"
},
/area/quartermaster/miningdock)
@@ -29053,7 +27804,6 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "purple"
},
/area/quartermaster/miningdock)
@@ -29070,11 +27820,9 @@
/obj/effect/decal/cleanable/dirt,
/obj/machinery/camera{
c_tag = "Atmospherics South-East";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "brown"
},
/area/quartermaster/miningdock)
@@ -29090,7 +27838,6 @@
icon_state = "pipe-c"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "purple"
},
/area/quartermaster/miningdock)
@@ -29102,7 +27849,6 @@
tag = ""
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "brown"
},
/area/quartermaster/miningdock)
@@ -29118,7 +27864,6 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "purple"
},
/area/quartermaster/miningdock)
@@ -29198,6 +27943,12 @@
tag = ""
},
/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -29209,11 +27960,11 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- external_pressure_bound = 101;
- on = 1;
- pressure_checks = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -29238,15 +27989,16 @@
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/door/airlock/medical/glass{
id_tag = null;
name = "Brig Medical Bay";
- req_access_txt = "0";
req_one_access_txt = "63"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "whitered"
@@ -29266,8 +28018,11 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4;
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -29276,15 +28031,15 @@
/area/security/brig)
"bke" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8";
tag = ""
},
/obj/structure/cable{
d1 = 2;
- d2 = 8;
- icon_state = "2-8";
+ d2 = 4;
+ icon_state = "2-4";
tag = ""
},
/turf/simulated/floor/plasteel{
@@ -29293,20 +28048,28 @@
},
/area/security/brig)
"bkf" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "red"
},
/area/security/brig)
"bkg" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/security/glass{
+/obj/effect/decal/warning_stripes/south,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Prison Gate";
+ name = "Prison Lockdown Blast Doors";
+ opacity = 0
+ },
+/obj/machinery/door/airlock/security{
name = "Prison Wing";
req_access_txt = "2"
},
-/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
/area/security/brig)
"bkh" = (
@@ -29317,8 +28080,8 @@
tag = ""
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redcorner"
+ dir = 8;
+ icon_state = "neutralfull"
},
/area/security/main)
"bki" = (
@@ -29326,26 +28089,28 @@
/obj/effect/landmark/start{
name = "Security Officer"
},
-/turf/simulated/floor/plasteel{
- dir = 0;
- icon_state = "red"
- },
-/area/security/main)
-"bkj" = (
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "redcorner"
- },
-/area/security/main)
-"bkk" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/security/main)
+"bkj" = (
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/obj/machinery/light{
+ dir = 1;
+ on = 1
+ },
+/obj/machinery/camera{
+ c_tag = "Security Interrogation Room";
+ dir = 4;
+ network = list("Interrogation")
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/interrogation)
"bkl" = (
/turf/simulated/floor/plasteel{
dir = 8;
@@ -29360,6 +28125,10 @@
/area/security/main)
"bkn" = (
/obj/machinery/computer/secure_data,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -29482,16 +28251,14 @@
/area/atmos)
"bkA" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
/area/atmos)
"bkB" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/visible/yellow,
/obj/machinery/meter,
@@ -29500,8 +28267,7 @@
/area/atmos)
"bkC" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/visible/cyan,
/obj/machinery/meter,
@@ -29510,8 +28276,7 @@
/area/atmos)
"bkD" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
@@ -29523,8 +28288,7 @@
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
@@ -29552,8 +28316,7 @@
icon_state = "pipe-c"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
@@ -29569,8 +28332,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
@@ -29586,8 +28348,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/warning_stripes/southwestcorner,
/turf/simulated/floor/plasteel,
@@ -29610,8 +28371,7 @@
icon_state = "pipe-c"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -29627,8 +28387,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/effect/decal/warning_stripes/southeastcorner,
/turf/simulated/floor/plasteel,
@@ -29661,8 +28420,7 @@
"bkP" = (
/obj/machinery/atmospherics/pipe/simple/visible/yellow,
/obj/machinery/light/small{
- dir = 4;
- pixel_y = 0
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -29699,8 +28457,7 @@
/area/hydroponics)
"bkV" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/machinery/hydroponics/constructable,
/obj/effect/decal/warning_stripes/yellow,
@@ -29711,8 +28468,7 @@
/area/hydroponics)
"bkW" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/hydroponics/constructable,
@@ -29724,8 +28480,7 @@
/area/hydroponics)
"bkX" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -29734,8 +28489,7 @@
/area/hydroponics)
"bkY" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -29744,15 +28498,13 @@
/area/hydroponics)
"bkZ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/hydroponics)
"bla" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/table/reinforced,
/obj/machinery/door/window/eastleft{
@@ -29761,7 +28513,6 @@
req_access_txt = "35"
},
/obj/machinery/door/window/eastleft{
- dir = 4;
name = "Hydroponics Desk";
req_access_txt = "35"
},
@@ -29770,8 +28521,7 @@
/area/hydroponics)
"blb" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -29786,8 +28536,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
@@ -29807,25 +28556,14 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11;
- level = 1
- },
-/obj/machinery/flasher_button{
- id = "Cell 2";
- pixel_x = 0;
- pixel_y = 27
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "redcorner"
},
-/area/security/prison)
+/area/security/permabrig)
"blf" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/firealarm{
dir = 1;
@@ -29836,8 +28574,7 @@
/area/crew_quarters/kitchen)
"blg" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/foodcart,
/obj/effect/decal/warning_stripes/yellow,
@@ -29862,15 +28599,12 @@
/obj/item/storage/box/papersack,
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "redfull"
},
/area/crew_quarters/kitchen)
"blj" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/icemachine,
/obj/effect/decal/warning_stripes/yellow,
@@ -29878,8 +28612,7 @@
/area/crew_quarters/kitchen)
"blk" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/rack,
/obj/item/storage/box/donkpockets,
@@ -29890,8 +28623,7 @@
/area/crew_quarters/kitchen)
"bll" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/table/reinforced,
/obj/item/reagent_containers/food/snacks/mint,
@@ -29901,8 +28633,7 @@
/area/crew_quarters/kitchen)
"blm" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/table/reinforced,
/obj/machinery/reagentgrinder,
@@ -29911,26 +28642,23 @@
/area/crew_quarters/kitchen)
"bln" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/light,
/obj/machinery/processor,
/obj/machinery/camera{
c_tag = "Kitchen";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/turf/simulated/floor/plasteel,
/area/crew_quarters/kitchen)
"blo" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/table/reinforced,
/obj/item/clipboard,
-/obj/item/toy/figure/chef,
+/obj/item/toy/figure/crew/chef,
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
/area/crew_quarters/kitchen)
@@ -29975,20 +28703,17 @@
dir = 1
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "brown"
},
/area/hallway/primary/fore)
"blu" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "brown"
},
/area/hallway/primary/fore)
"blv" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "brown"
},
/area/hallway/primary/fore)
@@ -29996,14 +28721,12 @@
/obj/item/twohanded/required/kirbyplants,
/obj/machinery/light,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "brown"
},
/area/hallway/primary/fore)
"blx" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "brown"
},
/area/hallway/primary/fore)
@@ -30015,7 +28738,6 @@
name = "Civilian"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "brown"
},
/area/hallway/primary/fore)
@@ -30026,7 +28748,6 @@
pixel_y = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "brown"
},
/area/hallway/primary/fore)
@@ -30141,12 +28862,10 @@
"blN" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/warning_stripes/arrow{
- dir = 4;
- icon_state = "4"
+ dir = 4
},
/obj/effect/decal/warning_stripes/yellow/partial{
- dir = 4;
- icon_state = "3"
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/quartermaster/miningdock)
@@ -30160,15 +28879,47 @@
},
/turf/simulated/floor/plating,
/area/quartermaster/miningdock)
+"blR" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8";
+ tag = ""
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4";
+ tag = ""
+ },
+/obj/structure/sink/kitchen{
+ desc = "A sink used for washing one's hands and face. It looks rusty and home-made";
+ name = "old sink";
+ pixel_y = 28
+ },
+/obj/machinery/camera{
+ c_tag = "Perma-Brig Garden";
+ network = list("SS13","Security")
+ },
+/obj/item/reagent_containers/glass/bucket,
+/turf/simulated/floor/plasteel,
+/area/security/permabrig)
"blS" = (
/obj/structure/closet/secure_closet/brigdoc,
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
/turf/simulated/floor/plasteel{
dir = 10;
icon_state = "whitered"
},
/area/security/medbay)
"blT" = (
-/obj/machinery/light/small,
+/obj/machinery/light,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
/turf/simulated/floor/plasteel{
dir = 0;
icon_state = "whitered"
@@ -30189,6 +28940,7 @@
/obj/structure/sign/greencross{
pixel_x = -32
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "red"
@@ -30201,41 +28953,23 @@
icon_state = "1-2";
tag = ""
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/security/brig)
"blX" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "red"
},
/area/security/brig)
"blY" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
+/obj/machinery/door/airlock/security/glass{
+ name = "Security Office";
+ req_access_txt = "63"
},
+/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
/area/security/main)
"blZ" = (
@@ -30259,8 +28993,8 @@
name = "Security Officer"
},
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "red"
+ dir = 8;
+ icon_state = "neutralfull"
},
/area/security/main)
"bmb" = (
@@ -30268,28 +29002,37 @@
/obj/item/folder/red,
/obj/item/clothing/mask/gas/sechailer,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ dir = 8;
+ icon_state = "neutralfull"
},
/area/security/main)
"bmc" = (
/obj/structure/table/reinforced,
/obj/item/storage/fancy/donut_box,
+/obj/item/flash,
+/obj/item/restraints/handcuffs,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ dir = 8;
+ icon_state = "neutralfull"
},
/area/security/main)
"bmd" = (
+/obj/structure/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 = "red"
+ icon_state = "neutralfull"
},
/area/security/main)
"bme" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/table/reinforced,
+/obj/item/taperecorder,
+/obj/item/book/manual/security_space_law,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -30321,9 +29064,7 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
- },
+/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
@@ -30381,6 +29122,9 @@
pixel_x = 32
},
/obj/item/flashlight/lamp,
+/obj/machinery/firealarm{
+ pixel_y = 24
+ },
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
@@ -30464,8 +29208,7 @@
/area/atmos)
"bmw" = (
/obj/machinery/atmospherics/pipe/manifold/visible/yellow{
- dir = 1;
- level = 2
+ dir = 1
},
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
@@ -30485,24 +29228,21 @@
"bmz" = (
/obj/machinery/atmospherics/pipe/manifold/visible/cyan{
dir = 8;
- initialize_directions = 11;
- level = 2
+ initialize_directions = 11
},
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
/area/atmos)
"bmA" = (
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 4;
- level = 2
+ dir = 4
},
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
/area/atmos)
"bmB" = (
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 4;
- level = 2
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 9;
@@ -30520,8 +29260,7 @@
/area/atmos)
"bmD" = (
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 4;
- level = 2
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -30531,8 +29270,7 @@
"bmE" = (
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
dir = 10;
- initialize_directions = 10;
- level = 2
+ initialize_directions = 10
},
/turf/simulated/floor/plasteel{
dir = 5;
@@ -30669,8 +29407,7 @@
"bmQ" = (
/obj/machinery/hydroponics/constructable,
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
@@ -30710,13 +29447,11 @@
"bmV" = (
/obj/machinery/plantgenes,
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/machinery/camera{
c_tag = "Hydroponics";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
@@ -30735,8 +29470,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass{
- name = "Service Foyer";
- req_access_txt = "0"
+ name = "Service Foyer"
},
/turf/simulated/floor/plasteel,
/area/crew_quarters/sleep)
@@ -30771,9 +29505,7 @@
/obj/structure/table/reinforced,
/obj/machinery/door/firedoor,
/obj/machinery/door/window{
- base_state = "left";
dir = 8;
- icon_state = "left";
name = "Kitchen";
req_access_txt = "28"
},
@@ -30782,8 +29514,7 @@
/area/crew_quarters/kitchen)
"bnc" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- level = 1
+ dir = 9
},
/obj/structure/table/reinforced,
/obj/item/clothing/suit/chef,
@@ -30829,19 +29560,16 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/warning_stripes/arrow{
- dir = 8;
- icon_state = "4"
+ dir = 8
},
/obj/effect/decal/warning_stripes/yellow/partial{
- dir = 8;
- icon_state = "3"
+ dir = 8
},
/turf/simulated/floor/plasteel,
/area/quartermaster/miningdock)
"bni" = (
/obj/structure/extinguisher_cabinet{
- pixel_x = -25;
- pixel_y = 0
+ pixel_x = -25
},
/obj/structure/rack,
/obj/item/storage/toolbox/emergency{
@@ -30874,30 +29602,6 @@
/obj/structure/cable,
/turf/simulated/floor/plating,
/area/quartermaster/miningdock)
-"bnl" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
- },
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
- },
-/turf/simulated/floor/plating,
-/area/security/prisonershuttle)
-"bnm" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/turf/simulated/floor/plating,
-/area/security/prisonershuttle)
"bnn" = (
/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
@@ -30910,17 +29614,15 @@
icon_state = "2-8";
tag = ""
},
+/obj/effect/spawner/window/reinforced,
/turf/simulated/floor/plating,
/area/security/prisonershuttle)
"bno" = (
/turf/simulated/wall/r_wall,
/area/security/prisonershuttle)
"bnp" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11;
- level = 1
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "red"
@@ -30934,8 +29636,16 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -30943,38 +29653,32 @@
},
/area/security/brig)
"bnr" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "red"
+ icon_state = "redcorner"
},
/area/security/brig)
-"bns" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/wall/r_wall,
-/area/security/main)
"bnt" = (
/obj/structure/cable{
d2 = 4;
icon_state = "0-4"
},
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -30994,57 +29698,12 @@
icon_state = "2-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/structure/chair/office/dark{
- dir = 4
- },
-/obj/effect/landmark/start{
- name = "Security Officer"
- },
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "red"
- },
-/area/security/main)
-"bnv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/structure/table/reinforced,
-/obj/item/restraints/handcuffs,
-/obj/item/flash,
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
- },
-/area/security/main)
-"bnw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "red"
- },
-/area/security/main)
-"bnx" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "redcorner"
+ dir = 8;
+ icon_state = "neutralfull"
},
/area/security/main)
"bny" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/structure/table/reinforced,
/obj/item/folder/red,
/obj/item/folder/blue{
@@ -31053,38 +29712,17 @@
},
/obj/item/lighter/zippo,
/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "red"
+ dir = 8;
+ icon_state = "neutralfull"
},
/area/security/main)
"bnz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/photocopier,
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "red"
- },
-/area/security/main)
-"bnA" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+/obj/structure/chair/comfy/brown{
+ dir = 8
},
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "red"
- },
-/area/security/main)
-"bnB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 8;
+ icon_state = "neutralfull"
},
/area/security/main)
"bnC" = (
@@ -31099,27 +29737,15 @@
d2 = 2;
icon_state = "0-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/turf/simulated/floor/plating,
/area/security/hos)
"bnD" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/mob/living/simple_animal/hostile/retaliate/araneus,
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
/area/security/hos)
"bnE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/structure/chair/office/dark{
dir = 4
},
@@ -31134,62 +29760,22 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/structure/table/wood,
/obj/item/flashlight/lamp,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/security/hos)
-"bnG" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/computer/secure_data,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/security/hos)
-"bnH" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
/area/security/hos)
"bnI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/computer/card/minor/hos,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "vault"
},
/area/security/hos)
-"bnJ" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plating,
-/area/security/hos)
"bnK" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
- },
+/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
@@ -31254,16 +29840,14 @@
/obj/effect/spawner/window/reinforced,
/obj/machinery/atmospherics/pipe/manifold/visible/cyan{
dir = 8;
- initialize_directions = 11;
- level = 2
+ initialize_directions = 11
},
/turf/simulated/floor/plating,
/area/atmos)
"bnT" = (
/obj/effect/spawner/window/reinforced,
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 4;
- level = 2
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/visible/green,
/turf/simulated/floor/plating,
@@ -31271,16 +29855,14 @@
"bnU" = (
/obj/effect/spawner/window/reinforced,
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 4;
- level = 2
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/visible/yellow,
/turf/simulated/floor/plating,
/area/atmos)
"bnV" = (
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 4;
- level = 2
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/visible/yellow,
/obj/machinery/door/firedoor,
@@ -31294,8 +29876,7 @@
"bnW" = (
/obj/effect/spawner/window/reinforced,
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 9;
- level = 2
+ dir = 9
},
/turf/simulated/floor/plating,
/area/atmos)
@@ -31321,7 +29902,7 @@
"bnZ" = (
/obj/structure/table/reinforced,
/obj/item/clipboard,
-/obj/item/toy/figure/atmos,
+/obj/item/toy/figure/crew/atmos,
/obj/machinery/atmospherics/pipe/simple/visible/cyan,
/obj/machinery/atmospherics/pipe/simple/visible/purple{
dir = 4
@@ -31359,16 +29940,13 @@
"boc" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/item/radio/intercom{
dir = 4;
- name = "station intercom (General)";
pixel_x = 28
},
/obj/effect/decal/warning_stripes/east,
@@ -31433,6 +30011,9 @@
dir = 6
},
/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
@@ -31445,8 +30026,9 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -31455,10 +30037,9 @@
/area/hallway/primary/central)
"bon" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11;
- level = 1
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -31467,8 +30048,10 @@
/area/hallway/primary/central)
"boo" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -31477,16 +30060,16 @@
/area/hallway/primary/central)
"bop" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
pixel_y = 30
},
/obj/machinery/camera{
- c_tag = "Central Ring Hallway North";
- dir = 2
+ c_tag = "Central Ring Hallway North"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -31495,8 +30078,10 @@
/area/hallway/primary/central)
"boq" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -31505,11 +30090,13 @@
/area/hallway/primary/central)
"bor" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
@@ -31517,10 +30104,9 @@
/area/hallway/primary/central)
"bos" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
@@ -31535,8 +30121,11 @@
},
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1;
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -31545,6 +30134,9 @@
/area/hallway/primary/central)
"bou" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "browncorner"
@@ -31552,8 +30144,10 @@
/area/hallway/primary/central)
"bov" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -31562,10 +30156,9 @@
/area/hallway/primary/central)
"bow" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "browncorner"
@@ -31573,8 +30166,10 @@
/area/hallway/primary/central)
"box" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -31583,8 +30178,10 @@
/area/hallway/primary/central)
"boy" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -31593,16 +30190,16 @@
/area/hallway/primary/central)
"boz" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
pixel_y = 30
},
/obj/machinery/camera{
- c_tag = "Central Ring Hallway North";
- dir = 2
+ c_tag = "Central Ring Hallway North"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -31611,10 +30208,9 @@
/area/hallway/primary/central)
"boA" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/hallway/primary/central)
"boB" = (
@@ -31625,13 +30221,15 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutralcorner"
@@ -31645,12 +30243,14 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
},
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutralcorner"
@@ -31668,8 +30268,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -31712,8 +30311,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -31732,8 +30330,14 @@
tag = ""
},
/obj/structure/filingcabinet/filingcabinet,
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8";
+ tag = ""
+ },
/turf/simulated/floor/plasteel{
- dir = 9;
+ dir = 1;
icon_state = "red"
},
/area/security/prisonershuttle)
@@ -31776,25 +30380,24 @@
"boP" = (
/obj/structure/table/reinforced,
/obj/machinery/light_switch{
- pixel_x = 0;
pixel_y = 26
},
/obj/item/storage/box/prisoner,
+/obj/machinery/light/small{
+ dir = 1
+ },
/turf/simulated/floor/plasteel{
dir = 5;
icon_state = "red"
},
/area/security/prisonershuttle)
-"boQ" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
- },
-/turf/simulated/floor/plating,
-/area/security/prisonershuttle)
"boR" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "red"
@@ -31810,6 +30413,9 @@
/obj/effect/landmark{
name = "lightsout"
},
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -31817,7 +30423,13 @@
/area/security/brig)
"boT" = (
/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plasteel,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "red"
+ },
/area/security/main)
"boU" = (
/obj/structure/cable{
@@ -31826,38 +30438,65 @@
icon_state = "1-2";
tag = ""
},
+/obj/structure/chair/office/dark{
+ dir = 4
+ },
+/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 = 4;
- icon_state = "red"
+ dir = 8;
+ icon_state = "neutralfull"
},
/area/security/main)
"boV" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/secure/briefcase,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ dir = 8;
+ icon_state = "neutralfull"
},
/area/security/main)
"boW" = (
/obj/item/twohanded/required/kirbyplants,
/obj/effect/decal/warning_stripes/northwest,
-/turf/simulated/floor/plasteel,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/turf/simulated/floor/plasteel{
+ dir = 9;
+ icon_state = "red"
+ },
/area/security/prisonershuttle)
"boX" = (
/obj/structure/table/reinforced,
/obj/item/reagent_containers/food/snacks/donut/jelly/cherryjelly,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "red"
+ icon_state = "neutralfull"
},
/area/security/main)
"boY" = (
-/obj/structure/chair/comfy/brown{
- dir = 8
+/obj/machinery/photocopier,
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "red"
+ dir = 8;
+ icon_state = "neutralfull"
},
/area/security/main)
"boZ" = (
@@ -31867,11 +30506,10 @@
icon_state = "2-4";
tag = ""
},
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "red"
@@ -31916,6 +30554,7 @@
name = "Head of Security";
req_access_txt = "58"
},
+/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
@@ -31979,6 +30618,7 @@
/obj/structure/table/wood,
/obj/item/folder/red,
/obj/item/stamp/hos,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
@@ -32193,8 +30833,7 @@
"bpy" = (
/obj/machinery/atmospherics/pipe/simple/visible/cyan,
/obj/machinery/atmospherics/pipe/simple/visible/green{
- dir = 4;
- level = 2
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 9;
@@ -32224,9 +30863,7 @@
/area/atmos)
"bpB" = (
/obj/machinery/atmospherics/binary/pump{
- dir = 2;
- name = "Pure to Mix";
- on = 0
+ name = "Pure to Mix"
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -32235,8 +30872,7 @@
/area/atmos)
"bpC" = (
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 6;
- level = 2
+ dir = 6
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -32245,8 +30881,7 @@
/area/atmos)
"bpD" = (
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 9;
- tag = "icon-intact-y (NORTHWEST)"
+ dir = 9
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -32308,8 +30943,7 @@
/obj/item/weldingtool,
/obj/item/clothing/head/welding,
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 5;
- level = 2
+ dir = 5
},
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
@@ -32319,8 +30953,7 @@
/area/atmos)
"bpK" = (
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 4;
- level = 2
+ dir = 4
},
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel,
@@ -32357,16 +30990,14 @@
/area/atmos)
"bpN" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/wall/r_wall,
/area/atmos)
"bpO" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/space_heater,
/obj/effect/decal/warning_stripes/yellow/hollow,
@@ -32374,8 +31005,7 @@
/area/atmos)
"bpP" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/portable_atmospherics/canister/sleeping_agent,
/obj/effect/decal/warning_stripes/yellow/hollow,
@@ -32383,8 +31013,7 @@
/area/atmos)
"bpQ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/portable_atmospherics/canister/nitrogen,
/obj/machinery/light{
@@ -32396,8 +31025,7 @@
/area/atmos)
"bpR" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/portable_atmospherics/canister/oxygen,
/obj/effect/decal/warning_stripes/yellow/hollow,
@@ -32405,8 +31033,7 @@
/area/atmos)
"bpS" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/portable_atmospherics/canister/air,
/obj/effect/decal/warning_stripes/yellow/hollow,
@@ -32576,8 +31203,7 @@
},
/obj/structure/disposalpipe/junction{
dir = 8;
- icon_state = "pipe-j2";
- tag = "icon-pipe-j1 (WEST)"
+ icon_state = "pipe-j2"
},
/turf/simulated/floor/plating,
/area/maintenance/fsmaint)
@@ -32603,8 +31229,7 @@
"bqh" = (
/obj/machinery/hydroponics/constructable,
/obj/machinery/newscaster{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
@@ -32652,9 +31277,9 @@
"bqm" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
@@ -32698,10 +31323,8 @@
},
/obj/structure/disposalpipe/junction{
dir = 4;
- icon_state = "pipe-j2";
- tag = "icon-pipe-j2 (EAST)"
+ icon_state = "pipe-j2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -32732,9 +31355,8 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -32768,7 +31390,6 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/navbeacon{
codes_txt = "patrol;next_patrol=hall2";
location = "hall1"
@@ -32793,7 +31414,9 @@
dir = 8;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
/obj/effect/landmark{
name = "lightsout"
},
@@ -32819,27 +31442,13 @@
},
/area/hallway/primary/central)
"bqv" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "neutralcorner"
},
/area/hallway/primary/central)
-"bqw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/security/medbay)
"bqx" = (
/obj/structure/cable{
d1 = 4;
@@ -32847,9 +31456,8 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -32857,20 +31465,17 @@
},
/area/hallway/primary/central)
"bqy" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "bridge blast north";
+ name = "Bridge Blast Doors";
+ opacity = 0
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/hallway/primary/central)
+/turf/simulated/floor/plating,
+/area/bridge)
"bqz" = (
/obj/structure/cable{
d1 = 1;
@@ -32885,7 +31490,7 @@
tag = ""
},
/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
+ dir = 4
},
/obj/structure/disposalpipe/segment,
/obj/machinery/navbeacon{
@@ -32899,6 +31504,10 @@
/area/hallway/primary/central)
"bqA" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4;
+ initialize_directions = 11
+ },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutralcorner"
@@ -32911,18 +31520,16 @@
"bqC" = (
/turf/simulated/wall/rust,
/area/maintenance/starboard)
-"bqI" = (
-/obj/structure/lattice,
-/obj/structure/sign/electricshock{
- pixel_x = 32;
- pixel_y = 0
- },
-/turf/space,
-/area/space/nearstation)
"bqJ" = (
/obj/machinery/hologram/holopad,
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
/area/security/main)
"bqK" = (
/obj/structure/cable{
@@ -32931,18 +31538,15 @@
icon_state = "1-2";
tag = ""
},
+/turf/simulated/floor/plasteel,
+/area/security/prisonershuttle)
+"bqL" = (
+/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "red"
},
/area/security/prisonershuttle)
-"bqL" = (
-/obj/machinery/light{
- dir = 8
- },
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
-/area/security/prisonershuttle)
"bqM" = (
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
@@ -32955,36 +31559,21 @@
/turf/simulated/floor/plasteel,
/area/security/prisonershuttle)
"bqO" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "red"
},
/area/security/prisonershuttle)
-"bqP" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/security/prisonershuttle)
"bqQ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8;
+ initialize_directions = 11
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8;
+ initialize_directions = 11
+ },
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "red"
@@ -33001,9 +31590,18 @@
dir = 4;
icon_state = "pipe-c"
},
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4";
+ tag = ""
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -33013,7 +31611,18 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "red"
@@ -33036,9 +31645,24 @@
name = "Security Office";
req_access_txt = "63"
},
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "red"
+ icon_state = "redfull";
+ tag = null
},
/area/security/main)
"bqU" = (
@@ -33049,47 +31673,84 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/plasteel,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 10;
+ icon_state = "red"
+ },
/area/security/main)
"bqV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/light,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/plasteel{
+ icon_state = "red"
+ },
+/area/security/main)
+"bqW" = (
+/obj/structure/chair/office/dark{
+ dir = 1
+ },
+/obj/effect/landmark/start{
+ name = "Security Officer"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/structure/chair/office/dark{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/effect/landmark/start{
- name = "Security Officer"
- },
/turf/simulated/floor/plasteel{
- dir = 4;
icon_state = "red"
},
/area/security/main)
-"bqW" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/table/reinforced,
-/obj/item/folder/red,
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
- },
-/area/security/main)
"bqX" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/structure/chair/office/dark{
+ dir = 1
+ },
+/obj/effect/landmark/start{
+ name = "Security Officer"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
- dir = 10;
icon_state = "red"
},
/area/security/main)
@@ -33097,49 +31758,31 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "redcorner"
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
},
-/area/security/main)
-"bqZ" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11;
- level = 1
- },
-/obj/structure/table/reinforced,
-/obj/item/book/manual/security_space_law,
-/obj/item/taperecorder,
-/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "red"
- },
-/area/security/main)
-"bra" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/computer/secure_data,
/turf/simulated/floor/plasteel{
- dir = 6;
icon_state = "red"
},
/area/security/main)
"brb" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d2 = 8;
+ icon_state = "1-8"
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
},
/turf/simulated/floor/plasteel{
- dir = 4;
+ dir = 6;
icon_state = "red"
},
/area/security/main)
@@ -33147,7 +31790,10 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/structure/closet/secure_closet/security,
+/obj/machinery/light,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -33164,6 +31810,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plating,
/area/security/hos)
"bre" = (
@@ -33176,6 +31825,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
@@ -33187,6 +31839,9 @@
/obj/structure/chair/office/dark{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
@@ -33200,11 +31855,11 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/structure/table/wood,
/obj/item/clothing/mask/cigarette/cigar,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
@@ -33216,6 +31871,9 @@
/obj/machinery/computer/security{
network = list("SS13","Mining Outpost")
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
@@ -33225,6 +31883,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
@@ -33234,6 +31895,9 @@
dir = 4
},
/obj/machinery/computer/prisoner,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "vault"
@@ -33245,12 +31909,18 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plating,
/area/security/hos)
"brl" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
@@ -33259,6 +31929,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
@@ -33321,9 +31994,7 @@
/turf/space,
/area/space/nearstation)
"bru" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
/area/security/prisonershuttle)
@@ -33368,8 +32039,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 5;
- icon_state = "intact"
+ dir = 5
},
/obj/machinery/access_button{
command = "cycle_interior";
@@ -33381,11 +32051,10 @@
req_access_txt = "67"
},
/turf/simulated/floor/plating,
-/area/security/prison)
+/area/security/permabrig)
"brA" = (
/obj/machinery/atmospherics/pipe/manifold/visible/green{
- dir = 8;
- tag = "icon-manifold-g (NORTH)"
+ dir = 8
},
/obj/effect/decal/warning_stripes/northwest,
/turf/simulated/floor/plasteel,
@@ -33405,8 +32074,7 @@
/area/atmos)
"brD" = (
/obj/machinery/atmospherics/pipe/manifold/visible/yellow{
- dir = 8;
- level = 2
+ dir = 8
},
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel,
@@ -33431,8 +32099,7 @@
/obj/structure/table/reinforced,
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
dir = 6;
- initialize_directions = 6;
- level = 2
+ initialize_directions = 6
},
/obj/item/wrench,
/obj/item/crowbar,
@@ -33446,8 +32113,7 @@
"brH" = (
/obj/machinery/atmospherics/pipe/manifold/visible/cyan{
dir = 4;
- initialize_directions = 11;
- level = 2
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -33498,16 +32164,14 @@
/obj/effect/spawner/window/reinforced,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4;
- level = 2
+ dir = 4
},
/turf/simulated/floor/plating,
/area/atmos)
"brN" = (
/obj/machinery/space_heater,
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4;
- level = 2
+ dir = 4
},
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
@@ -33515,8 +32179,7 @@
"brO" = (
/obj/machinery/portable_atmospherics/canister/sleeping_agent,
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4;
- level = 2
+ dir = 4
},
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
@@ -33524,8 +32187,7 @@
"brP" = (
/obj/machinery/portable_atmospherics/canister/nitrogen,
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4;
- level = 2
+ dir = 4
},
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
@@ -33533,8 +32195,7 @@
"brQ" = (
/obj/machinery/portable_atmospherics/canister/oxygen,
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4;
- level = 2
+ dir = 4
},
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
@@ -33542,12 +32203,10 @@
"brR" = (
/obj/machinery/portable_atmospherics/canister/air,
/obj/structure/sign/nosmoking_2{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4;
- level = 2
+ dir = 4
},
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
@@ -33555,15 +32214,13 @@
"brS" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4;
- level = 2
+ dir = 4
},
/turf/simulated/wall/r_wall,
/area/atmos)
"brT" = (
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4;
- level = 2
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -33579,8 +32236,7 @@
},
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 10;
- level = 2
+ dir = 10
},
/obj/machinery/navbeacon{
codes_txt = "patrol;next_patrol=engi3";
@@ -33629,8 +32285,7 @@
"bsa" = (
/obj/machinery/hydroponics/constructable,
/obj/structure/extinguisher_cabinet{
- pixel_x = -28;
- pixel_y = 0
+ pixel_x = -28
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
@@ -33663,41 +32318,29 @@
/obj/item/reagent_containers/food/snacks/grown/banana,
/obj/machinery/door/window/eastright{
dir = 8;
- icon_state = "right";
name = "Hydroponics Desk";
- req_access_txt = "35";
- tag = "icon-right"
+ req_access_txt = "35"
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
/area/hydroponics)
"bse" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/door_control{
+ id = "bridge blast north";
+ name = "North Bridge Blast Door Control";
+ pixel_y = 32;
+ req_access_txt = "19"
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "dark"
},
-/area/hallway/primary/central)
+/area/bridge)
"bsf" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
@@ -33705,12 +32348,8 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/light,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
@@ -33722,7 +32361,6 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
@@ -33730,12 +32368,8 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/light/small,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
@@ -33743,33 +32377,19 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/door/firedoor,
/obj/structure/sign/poster/official/nanotrasen_logo{
pixel_y = -32
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
-"bsk" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- icon_state = "neutral"
- },
-/area/hallway/primary/central)
"bsl" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/effect/landmark{
name = "Observer-Start"
},
@@ -33781,9 +32401,6 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
icon_state = "neutral"
},
@@ -33792,14 +32409,10 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/light/small,
/obj/machinery/camera{
c_tag = "Central Ring Hallway North";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -33818,23 +32431,10 @@
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
-"bsp" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/central)
"bsq" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/light/small,
/turf/simulated/floor/plasteel{
dir = 8;
@@ -33845,7 +32445,6 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/machinery/firealarm{
dir = 1;
pixel_y = -24
@@ -33856,20 +32455,6 @@
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
-"bss" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/central)
"bst" = (
/obj/structure/cable{
d1 = 1;
@@ -33891,6 +32476,7 @@
icon_state = "pipe-c"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutralcorner"
@@ -33926,7 +32512,6 @@
/obj/structure/closet/wardrobe/miner,
/obj/item/radio/intercom{
dir = 1;
- name = "station intercom (General)";
pixel_y = -25
},
/obj/effect/decal/warning_stripes/yellow/hollow,
@@ -33949,27 +32534,33 @@
dir = 4;
icon_state = "pipe-c"
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "red"
- },
+/turf/simulated/floor/plasteel,
/area/security/prisonershuttle)
"bsE" = (
+/obj/structure/table/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/table/reinforced,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "vault"
},
/area/security/prisonershuttle)
"bsF" = (
+/obj/structure/table/reinforced,
+/obj/item/phone,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/table/reinforced,
-/obj/item/phone,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "vault"
@@ -33982,6 +32573,12 @@
icon_state = "2-4";
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
},
@@ -33997,28 +32594,28 @@
icon_state = "4-8";
tag = ""
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
/obj/structure/cable{
d1 = 2;
d2 = 4;
icon_state = "2-4";
tag = ""
},
+/obj/machinery/door/airlock/security/glass{
+ name = "Labor Camp Office";
+ req_access_txt = "63"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/door/airlock/security/glass{
- name = "Security Office";
- req_access_txt = "63"
- },
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "redfull"
},
/area/security/prisonershuttle)
"bsI" = (
@@ -34028,239 +32625,55 @@
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "red"
- },
-/area/security/brig)
-"bsJ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
- },
-/obj/structure/disposalpipe/segment,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/security/brig)
-"bsK" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- icon_state = "red"
+ initialize_directions = 11
},
-/area/security/brig)
-"bsL" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/door/airlock/security/glass{
- name = "Security Office";
- req_access_txt = "63"
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "red"
- },
-/area/security/main)
-"bsM" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/plasteel,
-/area/security/main)
-"bsN" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/chair/office/dark{
- dir = 4
- },
-/obj/effect/landmark/start{
- name = "Security Officer"
- },
-/turf/simulated/floor/plasteel{
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- icon_state = "red"
- },
-/area/security/main)
-"bsO" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/table/reinforced,
-/obj/item/folder/red,
-/obj/item/storage/secure/briefcase,
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
- },
-/area/security/main)
-"bsP" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/table/reinforced,
-/obj/item/paper_bin,
-/obj/item/pen,
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
- },
-/area/security/main)
-"bsQ" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "red"
- },
-/area/security/main)
-"bsR" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/security/main)
-"bsS" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/security/main)
-"bsT" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ initialize_directions = 11
},
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 4;
+ dir = 8;
icon_state = "red"
},
-/area/security/main)
-"bsU" = (
-/obj/structure/closet/secure_closet/security,
+/area/security/brig)
+"bsL" = (
+/turf/simulated/wall/r_wall,
+/area/security/interrogation)
+"bsT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/airlock/security{
+ name = "Interrogation Monitoring";
+ req_access_txt = "63";
+ req_one_access_txt = null
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/security/main)
+/area/security/interrogation)
+"bsU" = (
+/obj/structure/table/wood,
+/obj/item/folder/red,
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/interrogation)
"bsV" = (
/obj/structure/cable{
d1 = 1;
@@ -34282,6 +32695,21 @@
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 1
},
+/obj/machinery/door_control{
+ desc = "A remote control-switch to lock down the prison wing's blast doors";
+ id = "Prison Gate";
+ name = "Prison Wing Lockdown";
+ pixel_x = -7;
+ pixel_y = -28;
+ req_access_txt = "2"
+ },
+/obj/machinery/door_control{
+ id = "Secure Gate";
+ name = "Brig Lockdown";
+ pixel_x = 3;
+ pixel_y = -28;
+ req_access_txt = "2"
+ },
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
@@ -34295,8 +32723,7 @@
"bsY" = (
/obj/structure/table/wood,
/obj/machinery/newscaster{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/structure/extinguisher_cabinet{
pixel_x = 28;
@@ -34319,7 +32746,10 @@
tag = ""
},
/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "red"
+ },
/area/security/prisonershuttle)
"bta" = (
/obj/structure/closet/secure_closet/hos,
@@ -34374,8 +32804,7 @@
"btg" = (
/obj/machinery/atmospherics/pipe/simple/visible/cyan,
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4;
- level = 2
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 10;
@@ -34384,21 +32813,17 @@
/area/atmos)
"bth" = (
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4;
- level = 2
+ dir = 4
},
/obj/machinery/atmospherics/binary/pump{
- dir = 1;
- name = "gas pump";
- on = 0
+ dir = 1
},
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel,
/area/atmos)
"bti" = (
/obj/machinery/atmospherics/pipe/manifold/visible/yellow{
- dir = 1;
- level = 2
+ dir = 1
},
/obj/effect/landmark/start{
name = "Life Support Specialist"
@@ -34431,8 +32856,7 @@
on = 1
},
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -34446,7 +32870,6 @@
},
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/obj/effect/decal/warning_stripes/yellow/hollow,
@@ -34504,8 +32927,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
@@ -34521,8 +32943,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/door/firedoor,
@@ -34543,8 +32964,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
@@ -34560,8 +32980,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/portable_atmospherics/canister/sleeping_agent,
/obj/effect/decal/warning_stripes/yellow/hollow,
@@ -34579,8 +32998,7 @@
icon_state = "pipe-c"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/portable_atmospherics/canister/nitrogen,
/obj/effect/decal/warning_stripes/yellow/hollow,
@@ -34664,8 +33082,7 @@
"btD" = (
/obj/structure/table/glass,
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/item/stack/packageWrap,
/obj/item/hand_labeler,
@@ -34696,8 +33113,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/door/airlock/maintenance,
/turf/simulated/floor/plasteel,
@@ -34705,10 +33121,6 @@
"btG" = (
/obj/structure/table/glass,
/obj/machinery/computer/med_data/laptop,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
- },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "whitered"
@@ -34752,12 +33164,12 @@
/turf/simulated/wall/r_wall,
/area/security/nuke_storage)
"btR" = (
-/obj/machinery/suit_storage_unit/security,
/obj/item/radio/intercom{
pixel_x = -6;
pixel_y = -28
},
/obj/effect/decal/warning_stripes/northeast,
+/obj/machinery/suit_storage_unit/security/hos,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -34790,15 +33202,31 @@
tag = ""
},
/obj/structure/disposalpipe/segment,
+/obj/machinery/door/window/brigdoor{
+ dir = 1
+ },
+/obj/effect/decal/warning_stripes/north,
+/turf/simulated/floor/plasteel,
+/area/security/prisonershuttle)
+"btV" = (
+/obj/effect/decal/warning_stripes/west,
+/obj/structure/closet/emcloset,
+/obj/effect/decal/warning_stripes/west,
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/obj/item/radio/intercom{
+ pixel_x = -28
+ },
+/obj/machinery/light{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "red"
},
/area/security/prisonershuttle)
-"btV" = (
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
-/area/security/prisonershuttle)
"btW" = (
/obj/structure/cable{
d1 = 4;
@@ -34806,13 +33234,13 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- external_pressure_bound = 101;
- on = 1;
- pressure_checks = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
},
-/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel,
/area/security/prisonershuttle)
"btX" = (
@@ -34828,11 +33256,10 @@
icon_state = "2-4";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/effect/decal/warning_stripes/north,
+/obj/machinery/door/window/brigdoor{
+ dir = 1
+ },
/turf/simulated/floor/plasteel,
/area/security/prisonershuttle)
"btY" = (
@@ -34841,10 +33268,10 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/obj/machinery/door/window/brigdoor{
+ dir = 1
},
+/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "red"
@@ -34859,23 +33286,8 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/turf/simulated/floor/plating,
/area/security/prisonershuttle)
-"bua" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "red"
- },
-/area/security/brig)
"bub" = (
/obj/structure/cable{
d1 = 1;
@@ -34890,70 +33302,81 @@
},
/area/security/brig)
"buc" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable,
-/turf/simulated/floor/plating,
-/area/security/main)
+/turf/simulated/wall,
+/area/security/interrogation)
"bud" = (
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "redcorner"
- },
-/area/security/main)
-"bue" = (
/obj/structure/chair/office/dark{
- dir = 1
+ dir = 4
},
-/obj/effect/landmark/start{
- name = "Security Officer"
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "red"
- },
-/area/security/main)
-"buf" = (
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "redcorner"
- },
-/area/security/main)
-"bug" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/security/main)
-"buh" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "red"
- },
-/area/security/main)
-"bui" = (
-/obj/machinery/light/small{
- dir = 4;
- pixel_y = 0
- },
-/obj/structure/closet/secure_closet/security,
+/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/security/main)
+/area/security/interrogation)
+"bue" = (
+/obj/structure/table/reinforced,
+/obj/item/flashlight/lamp,
+/obj/item/radio/intercom/interrogation{
+ broadcasting = 1;
+ listening = 0;
+ pixel_y = 28
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "vault"
+ },
+/area/security/interrogation)
+"buf" = (
+/obj/machinery/hologram/holopad,
+/obj/machinery/light{
+ dir = 1;
+ on = 1
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/interrogation)
+"bug" = (
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/structure/window/reinforced/polarized{
+ dir = 8
+ },
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
+/area/security/interrogation)
+"buh" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/interrogation)
+"bui" = (
+/obj/structure/table/wood,
+/obj/machinery/camera{
+ c_tag = "Security Interrogation Obsersvation Room";
+ dir = 8;
+ network = list("SS13","Security")
+ },
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/item/radio/intercom/interrogation{
+ pixel_y = 28
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/interrogation)
"buj" = (
/obj/structure/cable,
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
@@ -34970,7 +33393,7 @@
"buk" = (
/obj/structure/table/wood,
/obj/item/clipboard,
-/obj/item/toy/figure/hos,
+/obj/item/toy/figure/crew/hos,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "vault"
@@ -35020,8 +33443,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/visible/cyan{
dir = 8;
- initialize_directions = 11;
- level = 2
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 9;
@@ -35032,17 +33454,14 @@
/obj/machinery/meter,
/obj/machinery/atmospherics/pipe/manifold/visible/cyan{
dir = 4;
- initialize_directions = 11;
- level = 2
+ initialize_directions = 11
},
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel,
/area/atmos)
"buq" = (
/obj/machinery/atmospherics/binary/pump{
- dir = 2;
- name = "Mix to Distro";
- on = 0
+ name = "Mix to Distro"
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -35086,7 +33505,6 @@
pixel_y = -32
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "arrival"
},
/area/atmos)
@@ -35103,7 +33521,6 @@
pixel_y = -32
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "arrival"
},
/area/atmos)
@@ -35113,7 +33530,6 @@
},
/obj/machinery/portable_atmospherics/scrubber,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "escape"
},
/area/atmos)
@@ -35127,7 +33543,6 @@
pixel_y = -24
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "escape"
},
/area/atmos)
@@ -35206,12 +33621,10 @@
dir = 4
},
/obj/effect/decal/warning_stripes/arrow{
- dir = 1;
- icon_state = "4"
+ dir = 1
},
/obj/effect/decal/warning_stripes/yellow/partial{
- dir = 1;
- icon_state = "3"
+ dir = 1
},
/turf/simulated/floor/plasteel,
/area/atmos)
@@ -35245,8 +33658,7 @@
},
/obj/structure/disposalpipe/junction,
/obj/machinery/atmospherics/pipe/manifold/visible/yellow{
- dir = 8;
- level = 2
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -35306,7 +33718,6 @@
"buP" = (
/obj/structure/sink{
dir = 8;
- icon_state = "sink";
pixel_x = -12;
pixel_y = 2
},
@@ -35328,9 +33739,7 @@
"buS" = (
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
- pixel_x = 10;
- pixel_y = 0
+ pixel_x = 10
},
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
@@ -35341,6 +33750,7 @@
/area/hydroponics)
"buU" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
@@ -35361,16 +33771,13 @@
/area/hallway/primary/central)
"buW" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
"buX" = (
/obj/machinery/atmospherics/pipe/simple/visible/green{
- dir = 4;
- level = 2
+ dir = 4
},
/obj/structure/lattice/catwalk,
/turf/space,
@@ -35391,13 +33798,6 @@
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
/area/maintenance/starboard)
-"buZ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/central)
"bva" = (
/obj/structure/cable{
d1 = 1;
@@ -35410,14 +33810,6 @@
icon_state = "neutralfull"
},
/area/hallway/primary/central)
-"bvb" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/central)
"bvc" = (
/turf/simulated/floor/plasteel{
dir = 1;
@@ -35487,20 +33879,13 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
},
-/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel,
/area/security/prisonershuttle)
"bvm" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -35508,81 +33893,76 @@
tag = ""
},
/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "red"
- },
+/turf/simulated/floor/plasteel,
/area/security/prisonershuttle)
"bvn" = (
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "red"
- },
+/turf/simulated/floor/plasteel,
/area/security/prisonershuttle)
-"bvo" = (
-/obj/structure/cable,
-/obj/machinery/power/apc{
- dir = 2;
- name = "south bump";
- pixel_y = -24
+"bvr" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "red"
- },
-/area/security/prisonershuttle)
-"bvp" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
tag = ""
},
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "red"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/interrogation)
+"bvs" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/interrogation)
+"bvt" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "vault"
+ },
+/area/security/interrogation)
+"bvu" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
},
-/area/security/prisonershuttle)
-"bvq" = (
/obj/machinery/firealarm{
dir = 1;
pixel_y = -24
},
-/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "red"
+ icon_state = "dark"
},
-/area/security/prisonershuttle)
-"bvr" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -24
- },
-/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "red"
- },
-/area/security/main)
-"bvs" = (
-/obj/machinery/computer/security/telescreen/entertainment{
- pixel_y = -32
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "redcorner"
- },
-/area/security/main)
-"bvt" = (
-/turf/simulated/floor/plasteel,
-/area/security/main)
-"bvu" = (
-/obj/structure/sign/goldenplaque{
- pixel_y = -32
- },
-/turf/simulated/floor/plasteel,
-/area/security/main)
+/area/security/interrogation)
"bvv" = (
/obj/structure/window/reinforced,
/obj/machinery/camera{
@@ -35595,25 +33975,45 @@
},
/area/construction/hallway)
"bvw" = (
-/obj/item/twohanded/required/kirbyplants,
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "red"
- },
-/area/security/main)
-"bvx" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "redcorner"
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
-/area/security/main)
+/obj/structure/window/reinforced/polarized{
+ dir = 8
+ },
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
+/area/security/interrogation)
+"bvx" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/machinery/button/windowtint{
+ id = 1;
+ pixel_x = 25
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/interrogation)
"bvy" = (
/obj/effect/spawner/window/reinforced,
/obj/structure/cable,
@@ -35652,15 +34052,12 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
-/area/security/prison)
+/area/security/permabrig)
"bvC" = (
/obj/item/twohanded/required/kirbyplants,
/obj/structure/cable{
@@ -35687,8 +34084,7 @@
/area/atmos)
"bvE" = (
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 5;
- level = 2
+ dir = 5
},
/obj/effect/decal/warning_stripes/southwest,
/turf/simulated/floor/plasteel,
@@ -35702,7 +34098,6 @@
target_pressure = 101
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "caution"
},
/area/atmos)
@@ -35718,7 +34113,6 @@
},
/obj/machinery/atmospherics/pipe/manifold/visible,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "caution"
},
/area/atmos)
@@ -35726,7 +34120,6 @@
/obj/machinery/meter,
/obj/machinery/atmospherics/pipe/manifold4w/visible,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "caution"
},
/area/atmos)
@@ -35735,11 +34128,9 @@
/obj/machinery/atmospherics/binary/pump{
dir = 4;
name = "Air to Waste";
- on = 0;
target_pressure = 101
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "caution"
},
/area/atmos)
@@ -36011,8 +34402,7 @@
department = "Hydroponics";
departmentType = 2;
name = "Hydroponics Requests Console";
- pixel_x = 30;
- pixel_y = 0
+ pixel_x = 30
},
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
@@ -36029,6 +34419,13 @@
d2 = 4;
icon_state = "0-4"
},
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "bridge blast north";
+ name = "Bridge Blast Doors";
+ opacity = 0
+ },
/turf/simulated/floor/plating,
/area/bridge)
"bwd" = (
@@ -36043,6 +34440,13 @@
d2 = 4;
icon_state = "0-4"
},
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "bridge blast north";
+ name = "Bridge Blast Doors";
+ opacity = 0
+ },
/turf/simulated/floor/plating,
/area/bridge)
"bwe" = (
@@ -36057,6 +34461,13 @@
icon_state = "2-8";
tag = ""
},
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "bridge blast north";
+ name = "Bridge Blast Doors";
+ opacity = 0
+ },
/turf/simulated/floor/plating,
/area/bridge)
"bwf" = (
@@ -36068,6 +34479,13 @@
d2 = 4;
icon_state = "0-4"
},
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "bridge blast north";
+ name = "Bridge Blast Doors";
+ opacity = 0
+ },
/turf/simulated/floor/plating,
/area/bridge)
"bwh" = (
@@ -36088,6 +34506,13 @@
icon_state = "2-8";
tag = ""
},
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "bridge blast north";
+ name = "Bridge Blast Doors";
+ opacity = 0
+ },
/turf/simulated/floor/plating,
/area/bridge)
"bwi" = (
@@ -36096,6 +34521,13 @@
d2 = 8;
icon_state = "0-8"
},
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "bridge blast north";
+ name = "Bridge Blast Doors";
+ opacity = 0
+ },
/turf/simulated/floor/plating,
/area/bridge)
"bwj" = (
@@ -36110,6 +34542,13 @@
d2 = 2;
icon_state = "0-2"
},
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "bridge blast north";
+ name = "Bridge Blast Doors";
+ opacity = 0
+ },
/turf/simulated/floor/plating,
/area/bridge)
"bwk" = (
@@ -36124,6 +34563,13 @@
icon_state = "4-8";
tag = ""
},
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "bridge blast north";
+ name = "Bridge Blast Doors";
+ opacity = 0
+ },
/turf/simulated/floor/plating,
/area/bridge)
"bwl" = (
@@ -36138,39 +34584,42 @@
icon_state = "2-8";
tag = ""
},
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "bridge blast north";
+ name = "Bridge Blast Doors";
+ opacity = 0
+ },
/turf/simulated/floor/plating,
/area/bridge)
"bwm" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11;
- level = 1
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
"bwn" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "0-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "bridge blast west";
+ name = "Bridge Blast Doors";
+ opacity = 0
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/hallway/primary/central)
+/turf/simulated/floor/plating,
+/area/bridge)
"bwo" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8;
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -36197,8 +34646,7 @@
},
/obj/machinery/camera{
c_tag = "Vault";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -36225,46 +34673,47 @@
},
/area/security/nuke_storage)
"bwy" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8";
+ tag = ""
+ },
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
tag = ""
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
/obj/structure/disposalpipe/segment,
-/obj/machinery/door/airlock/security/glass{
- name = "Security Office";
- req_access_txt = "63"
- },
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "red"
},
/area/security/prisonershuttle)
"bwz" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
+/obj/structure/chair{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "red"
},
-/turf/simulated/floor/plating,
/area/security/prisonershuttle)
"bwA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/camera{
- c_tag = "Security Hallway North";
- dir = 8;
- network = list("SS13","Security")
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 28
},
-/obj/machinery/newscaster{
- pixel_x = 32;
- pixel_y = 0
+/obj/machinery/door/airlock/security/glass{
+ id_tag = "BrigEast";
+ name = "Brig";
+ req_access_txt = "63"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Secure Gate";
+ name = "Security Blast Door";
+ opacity = 0
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -36272,48 +34721,45 @@
},
/area/security/brig)
"bwB" = (
-/obj/machinery/door/airlock/security/glass{
- name = "Security Office";
- req_access_txt = "63"
+/obj/machinery/door/airlock/security{
+ name = "Interrogation";
+ req_access = null;
+ req_one_access_txt = "1;4"
+ },
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Secure Gate";
+ name = "Security Blast Door";
+ opacity = 0
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 8;
+ icon_state = "vault"
},
-/area/security/main)
+/area/security/interrogation)
"bwC" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+/turf/simulated/floor/plasteel{
+ icon_state = "red"
},
-/turf/simulated/floor/plating,
-/area/security/main)
+/area/security/brig)
"bwD" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Secure Gate";
+ name = "Security Blast Door";
+ opacity = 0
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/airlock/security/glass{
- name = "Security Office";
- req_access_txt = "63"
+/obj/machinery/door/airlock/security{
+ name = "Interrogation Monitoring";
+ req_access_txt = "63";
+ req_one_access_txt = null
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/security/main)
+/area/security/interrogation)
"bwE" = (
/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
@@ -36382,8 +34828,7 @@
/area/turret_protected/ai)
"bwK" = (
/obj/machinery/power/terminal{
- dir = 1;
- icon_state = "term"
+ dir = 1
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -36462,8 +34907,7 @@
/obj/item/paper_bin,
/obj/item/pen,
/obj/structure/extinguisher_cabinet{
- pixel_x = 22;
- pixel_y = 0
+ pixel_x = 22
},
/turf/simulated/floor/plasteel{
icon_state = "redyellowfull"
@@ -36480,8 +34924,7 @@
pixel_y = 24
},
/obj/structure/extinguisher_cabinet{
- pixel_x = -22;
- pixel_y = 0
+ pixel_x = -22
},
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
@@ -36508,8 +34951,7 @@
/obj/item/crowbar,
/obj/item/analyzer,
/obj/machinery/newscaster{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/machinery/camera{
c_tag = "Atmospherics Front Desk";
@@ -36566,8 +35008,7 @@
"bxg" = (
/obj/structure/table,
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/item/wrench,
/obj/item/clothing/mask/gas,
@@ -36593,13 +35034,11 @@
/area/storage/tech)
"bxk" = (
/obj/machinery/light/small{
- dir = 4;
- pixel_y = 0
+ dir = 4
},
/obj/machinery/camera{
c_tag = "Secure Technical Storage";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
@@ -36607,9 +35046,9 @@
"bxl" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/extinguisher_cabinet{
- pixel_x = -28;
- pixel_y = 0
+ pixel_x = -28
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
@@ -36618,7 +35057,7 @@
"bxm" = (
/obj/machinery/computer/card,
/turf/simulated/floor/plasteel{
- dir = 9;
+ dir = 1;
icon_state = "darkblue"
},
/area/bridge)
@@ -36684,7 +35123,6 @@
/area/bridge)
"bxt" = (
/obj/structure/table/reinforced,
-/obj/item/storage/toolbox/mechanical,
/obj/machinery/status_display{
pixel_y = 32
},
@@ -36707,7 +35145,7 @@
/area/bridge)
"bxv" = (
/obj/machinery/computer/atmos_alert,
-/obj/machinery/computer/station_alert,
+/obj/machinery/computer/atmos_alert,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "darkyellow"
@@ -36721,7 +35159,7 @@
pixel_y = 1
},
/turf/simulated/floor/plasteel{
- dir = 5;
+ dir = 1;
icon_state = "darkyellow"
},
/area/bridge)
@@ -36734,7 +35172,6 @@
},
/obj/machinery/door/airlock/maintenance{
name = "Auxiliary Storage";
- req_access_txt = "0";
req_one_access_txt = "65;12"
},
/turf/simulated/floor/plasteel,
@@ -36758,9 +35195,9 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutralcorner"
@@ -36774,8 +35211,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -36789,8 +35225,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/door/airlock/vault{
icon_state = "door_locked";
@@ -36809,8 +35244,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -36824,8 +35258,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/greengrid,
/area/security/nuke_storage)
@@ -36866,46 +35299,50 @@
},
/area/security/nuke_storage)
"bxJ" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/effect/decal/warning_stripes/west,
+/obj/structure/closet/secure_closet/brig,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "red"
},
-/obj/structure/closet/emcloset,
-/obj/effect/decal/warning_stripes/southwest,
-/turf/simulated/floor/plasteel,
/area/security/prisonershuttle)
"bxK" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d2 = 4;
+ icon_state = "1-4"
},
/obj/structure/disposalpipe/segment,
+/obj/machinery/door/airlock/security/glass{
+ name = "Labor Camp Processing";
+ req_access_txt = "63"
+ },
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Secure Gate";
+ name = "Security Blast Door";
+ opacity = 0
+ },
+/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "red"
+ icon_state = "redfull"
},
/area/security/prisonershuttle)
"bxL" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/briefcase{
- pixel_x = 4;
- pixel_y = 4
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
},
-/obj/item/storage/secure/briefcase,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "red"
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Secure Gate";
+ name = "Security Blast Door";
+ opacity = 0
},
+/turf/simulated/floor/plating,
/area/security/prisonershuttle)
"bxM" = (
/obj/structure/window/reinforced{
@@ -36925,100 +35362,43 @@
},
/area/construction/hallway)
"bxN" = (
-/obj/machinery/light,
-/obj/machinery/camera{
- c_tag = "Security Meeting Room South";
- dir = 1;
- network = list("SS13","Security")
- },
-/obj/machinery/status_display{
- pixel_y = -32
- },
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "red"
- },
-/area/security/main)
-"bxO" = (
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 24
- },
-/obj/structure/reagent_dispensers/peppertank{
- pixel_y = 32
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/obj/item/twohanded/required/kirbyplants,
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "red"
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
},
-/area/security/prisonershuttle)
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/interrogation)
"bxP" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/firealarm{
dir = 8;
pixel_x = -24
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "red"
},
/area/security/brig)
"bxQ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "red"
+ icon_state = "redcorner"
},
/area/security/brig)
-"bxR" = (
-/turf/simulated/wall,
-/area/security/main)
"bxS" = (
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/security/main)
-"bxT" = (
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
- },
-/area/security/main)
-"bxU" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
-/obj/structure/chair/office/dark{
- dir = 8
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/security/main)
-"bxV" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/security/main)
"bxW" = (
/obj/structure/window/reinforced{
dir = 8
@@ -37067,21 +35447,18 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/greengrid,
/area/turret_protected/ai)
"byb" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/cable{
d1 = 1;
@@ -37092,15 +35469,13 @@
/area/turret_protected/ai)
"byc" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/ai_slipper,
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/cable{
d1 = 2;
@@ -37112,14 +35487,12 @@
/area/turret_protected/ai)
"byd" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/cable{
d1 = 1;
@@ -37132,14 +35505,12 @@
"bye" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/greengrid,
/area/turret_protected/ai)
@@ -37188,9 +35559,7 @@
/area/engine/gravitygenerator)
"byk" = (
/obj/machinery/light/small{
- dir = 4;
- icon_state = "bulb1";
- tag = "icon-bulb1 (EAST)"
+ dir = 4
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
@@ -37257,8 +35626,7 @@
"byt" = (
/obj/structure/table/reinforced,
/obj/machinery/newscaster{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/item/storage/box/donkpockets,
/turf/simulated/floor/plasteel{
@@ -37274,8 +35642,7 @@
"byv" = (
/obj/machinery/vending/cola,
/obj/machinery/newscaster{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/turf/simulated/floor/plasteel{
icon_state = "redyellowfull"
@@ -37283,9 +35650,7 @@
/area/engine/break_room)
"byw" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/sign/nosmoking_2{
- pixel_y = 0
- },
+/obj/structure/sign/nosmoking_2,
/turf/simulated/wall/r_wall,
/area/engine/break_room)
"byx" = (
@@ -37381,9 +35746,7 @@
name = "Atmospherics Desk"
},
/obj/machinery/door/window{
- base_state = "left";
dir = 8;
- icon_state = "left";
name = "Atmospherics Desk";
req_access_txt = "24"
},
@@ -37406,8 +35769,7 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
dir = 6;
- initialize_directions = 6;
- level = 2
+ initialize_directions = 6
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -37420,8 +35782,7 @@
},
/obj/machinery/camera{
c_tag = "Port Hallway North";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/obj/machinery/portable_atmospherics/pump,
/turf/simulated/floor/plasteel{
@@ -37474,8 +35835,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/warning_stripes/yellow/hollow,
@@ -37493,8 +35853,7 @@
icon_state = "pipe-c"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plating,
/area/maintenance/fsmaint)
@@ -37512,8 +35871,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plating,
/area/maintenance/fsmaint)
@@ -37525,12 +35883,10 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutral"
},
/area/maintenance/fsmaint)
@@ -37551,9 +35907,9 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
@@ -37575,10 +35931,6 @@
tag = ""
},
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -37586,22 +35938,14 @@
/area/hallway/primary/central)
"byQ" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/machinery/camera{
c_tag = "Central Ring Hallway West";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
@@ -37610,16 +35954,13 @@
/obj/item/storage/firstaid/regular,
/obj/item/radio/intercom{
dir = 8;
- name = "station intercom (General)";
pixel_x = -28
},
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "darkbluecorners"
+ icon_state = "dark"
},
/area/bridge)
"byS" = (
@@ -37672,33 +36013,38 @@
/obj/structure/chair/office/dark{
dir = 4
},
+/obj/machinery/door_control{
+ id = "bridge blast east";
+ name = "East Bridge Blast Door Control";
+ pixel_x = 26;
+ req_access_txt = "19"
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/bridge)
"byY" = (
/obj/structure/table/reinforced,
-/obj/item/assembly/timer,
-/obj/item/assembly/signaler,
-/obj/item/wrench,
/obj/item/radio/intercom{
dir = 4;
- name = "station intercom (General)";
pixel_x = 28
},
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
+ },
+/obj/item/flash,
+/obj/item/storage/box/ids,
+/obj/item/storage/box/PDAs{
+ pixel_x = 4;
+ pixel_y = 4
},
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "darkyellowcorners"
+ icon_state = "dark"
},
/area/bridge)
"byZ" = (
@@ -37713,13 +36059,18 @@
icon_state = "2-4";
tag = ""
},
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "bridge blast north";
+ name = "Bridge Blast Doors";
+ opacity = 0
+ },
/turf/simulated/floor/plating,
/area/bridge)
"bza" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -37729,6 +36080,7 @@
"bzb" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/hallway/primary/central)
"bzc" = (
@@ -37754,75 +36106,55 @@
/turf/space,
/area/space)
"bzg" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- external_pressure_bound = 101;
- on = 1;
- pressure_checks = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "red"
- },
-/area/security/prisonershuttle)
-"bzh" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/security/prisonershuttle)
-"bzi" = (
+/area/hallway/primary/starboard)
+"bzh" = (
/obj/structure/cable{
- d1 = 4;
+ d1 = 2;
d2 = 8;
- icon_state = "4-8";
+ icon_state = "2-8";
tag = ""
},
-/obj/effect/decal/warning_stripes/northwest,
-/turf/simulated/floor/plasteel,
-/area/security/prisonershuttle)
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/closet/secure_closet/brig{
+ id = "Cell 2";
+ name = "Cell 2 Locker"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/plasteel{
+ dir = 9;
+ icon_state = "red"
+ },
+/area/security/brig)
"bzj" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/obj/item/radio/intercom{
+ pixel_y = 28
},
/turf/simulated/floor/plasteel{
- dir = 4;
+ dir = 5;
icon_state = "red"
},
-/area/security/prisonershuttle)
+/area/security/brig)
"bzk" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
},
-/obj/machinery/door/airlock/security/glass{
- name = "Security Office";
- req_access_txt = "63"
- },
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
- },
-/area/security/prisonershuttle)
-"bzl" = (
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "red"
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Secure Gate";
+ name = "Security Blast Door";
+ opacity = 0
},
+/turf/simulated/floor/plating,
/area/security/brig)
"bzm" = (
/obj/structure/cable{
@@ -37832,9 +36164,17 @@
tag = ""
},
/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4";
+ tag = ""
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -37842,100 +36182,87 @@
},
/area/security/brig)
"bzn" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
-/obj/machinery/door/airlock/security/glass{
- name = "Security Office";
- req_access_txt = "63"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/security/main)
-"bzo" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
- },
-/obj/structure/chair/office/dark{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "red"
},
-/area/security/main)
-"bzp" = (
-/obj/structure/table/reinforced,
-/obj/item/folder/red,
-/obj/item/pen,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
- },
-/area/security/main)
-"bzq" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/obj/structure/chair/office/dark{
- dir = 8
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/security/main)
-"bzr" = (
+/area/security/brig)
+"bzo" = (
/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/structure/chair/office/dark{
- dir = 8
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/security/main)
-"bzs" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/security/main)
-"bzt" = (
-/obj/structure/table/reinforced,
-/obj/machinery/light{
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- on = 1
+ initialize_directions = 11
},
-/obj/item/folder/red,
-/obj/item/book/manual/security_space_law,
-/obj/item/paper_bin,
-/obj/item/pen,
/turf/simulated/floor/plasteel{
- dir = 1;
icon_state = "red"
},
-/area/security/prisonershuttle)
+/area/security/brig)
+"bzp" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/machinery/light,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "red"
+ },
+/area/security/brig)
+"bzq" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "red"
+ },
+/area/security/brig)
+"bzr" = (
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "redcorner"
+ },
+/area/security/brig)
"bzu" = (
/obj/structure/window/reinforced{
dir = 8
@@ -37964,9 +36291,7 @@
/obj/item/twohanded/required/kirbyplants,
/obj/machinery/atmospherics/unary/vent_pump{
dir = 4;
- external_pressure_bound = 101.325;
- on = 1;
- pressure_checks = 1
+ on = 1
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -37974,8 +36299,7 @@
/area/turret_protected/ai)
"bzy" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable{
@@ -37987,8 +36311,7 @@
/area/turret_protected/ai)
"bzz" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -37997,8 +36320,7 @@
"bzA" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -38006,8 +36328,7 @@
/area/turret_protected/ai)
"bzB" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/structure/cable{
d1 = 1;
@@ -38051,8 +36372,7 @@
"bzG" = (
/obj/effect/spawner/window/reinforced,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/sign/electricshock{
pixel_y = 32
@@ -38061,8 +36381,7 @@
/area/engine/gravitygenerator)
"bzH" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/status_display{
pixel_y = 32
@@ -38080,13 +36399,11 @@
icon_state = "0-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/obj/effect/decal/warning_stripes/north,
@@ -38119,8 +36436,7 @@
charge = 5e+006
},
/obj/structure/extinguisher_cabinet{
- pixel_x = 22;
- pixel_y = 0
+ pixel_x = 22
},
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
@@ -38135,10 +36451,8 @@
id_tag = "atmo_tank_vent"
},
/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
- frequency = 1379;
id_tag = "atmo_tank_airlock";
pixel_x = 57;
- pixel_y = 0;
req_access_txt = "32";
tag_airpump = "atmo_tank_pump";
tag_chamber_sensor = "atmo_tank_sensor";
@@ -38146,7 +36460,6 @@
tag_interior_door = "atmo_tank_inner"
},
/obj/machinery/airlock_sensor{
- frequency = 1379;
id_tag = "atmo_tank_sensor";
pixel_x = 57;
pixel_y = 8
@@ -38186,8 +36499,7 @@
"bzR" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/wall,
/area/engine/break_room)
@@ -38272,8 +36584,7 @@
/obj/effect/spawner/window/reinforced,
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/turf/simulated/floor/plating,
/area/atmos)
@@ -38317,8 +36628,7 @@
/obj/item/plant_analyzer,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/storage/tech)
"bAh" = (
@@ -38352,8 +36662,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/storage/tech)
"bAl" = (
@@ -38373,8 +36682,7 @@
"bAm" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/wall,
/area/storage/primary)
@@ -38403,9 +36711,9 @@
"bAq" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
@@ -38429,29 +36737,26 @@
"bAt" = (
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "darkblue"
+ icon_state = "dark"
},
/area/bridge)
"bAu" = (
/obj/machinery/vending/cola,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "darkblue"
+ icon_state = "dark"
},
/area/bridge)
"bAv" = (
/obj/machinery/vending/snack,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "darkblue"
+ icon_state = "dark"
},
/area/bridge)
"bAw" = (
/obj/machinery/computer/security/mining,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "darkpurple"
+ icon_state = "darkbrown"
},
/area/bridge)
"bAx" = (
@@ -38464,13 +36769,17 @@
/obj/machinery/computer/supplycomp,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "darkyellow"
+ icon_state = "darkbrown"
},
/area/bridge)
"bAy" = (
-/obj/structure/table/reinforced,
-/obj/item/clipboard,
-/obj/item/mining_voucher,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -38482,9 +36791,7 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
- },
+/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -38505,25 +36812,20 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/bridge)
"bAC" = (
-/obj/structure/table/reinforced,
/obj/machinery/computer/security/telescreen{
desc = "Used for watching the RD's goons from the safety of his office.";
name = "Research Monitor";
network = list("Research","Research Outpost","RD");
- pixel_x = 0;
pixel_y = 2
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
+/turf/simulated/wall,
/area/bridge)
"bAD" = (
/obj/structure/cable{
@@ -38535,7 +36837,7 @@
/obj/machinery/computer/shuttle/mining,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "darkpurple"
+ icon_state = "darkbrown"
},
/area/bridge)
"bAE" = (
@@ -38548,24 +36850,15 @@
"bAF" = (
/obj/machinery/vending/coffee,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "darkblue"
+ icon_state = "dark"
},
/area/bridge)
"bAG" = (
/obj/machinery/vending/cigarette,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "darkblue"
+ icon_state = "dark"
},
/area/bridge)
-"bAH" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "bluecorner"
- },
-/area/hallway/primary/central)
"bAI" = (
/obj/machinery/alarm{
dir = 1;
@@ -38607,65 +36900,120 @@
icon_state = "vault"
},
/area/security/nuke_storage)
-"bAM" = (
+"bAN" = (
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "redcorner"
+ },
+/area/hallway/primary/starboard)
+"bAO" = (
/obj/structure/cable{
- d1 = 2;
+ d1 = 4;
d2 = 8;
- icon_state = "2-8";
+ icon_state = "4-8";
tag = ""
},
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4";
tag = ""
},
-/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "red"
},
-/area/security/prisonershuttle)
-"bAN" = (
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/security/prisonershuttle)
-"bAO" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/security/prisonershuttle)
+/area/security/brig)
"bAP" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/item/radio/intercom{
- pixel_x = 28;
- pixel_y = 0
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "red"
},
-/area/security/prisonershuttle)
+/area/security/brig)
"bAQ" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4";
+ tag = ""
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/door/window/brigdoor{
+ dir = 8;
+ id = "Cell 2";
+ name = "Cell 2";
+ req_access_txt = "2"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Secure Gate";
+ name = "Security Blast Door";
+ opacity = 0
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/wall/r_wall,
-/area/security/prisonershuttle)
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/security/brig)
"bAR" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4;
+ initialize_directions = 11
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4;
+ initialize_directions = 11
},
-/obj/machinery/light/small,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "red"
@@ -38679,110 +37027,136 @@
tag = ""
},
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8";
+ tag = ""
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
-/turf/simulated/floor/plasteel,
/area/security/brig)
"bAT" = (
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
-/obj/structure/extinguisher_cabinet{
- pixel_x = 28;
- pixel_y = 0
+/obj/machinery/light/small{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "red"
},
/area/security/brig)
-"bAU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/wall,
-/area/security/main)
"bAV" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Secure Gate";
+ name = "Security Blast Door";
+ opacity = 0
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/security/main)
-"bAW" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/chair/office/dark{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/security/main)
-"bAX" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/table/reinforced,
-/obj/item/flashlight/lamp,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
- },
-/area/security/main)
-"bAY" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/structure/chair/office/dark{
- dir = 8
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/security/main)
-"bAZ" = (
-/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
d2 = 4;
icon_state = "0-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
+/obj/effect/spawner/window/reinforced,
/turf/simulated/floor/plating,
-/area/security/main)
-"bBa" = (
+/area/security/brig)
+"bAW" = (
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Secure Gate";
+ name = "Security Blast Door";
+ opacity = 0
+ },
+/obj/machinery/door/firedoor,
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4";
+ tag = ""
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8";
+ tag = ""
+ },
+/obj/machinery/door/window/brigdoor{
+ dir = 2;
+ id = "Cell 3";
+ name = "Cell 3";
+ req_access_txt = "2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/chair/office/dark{
- dir = 8
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/security/main)
-"bBb" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
+/area/security/brig)
+"bAY" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Secure Gate";
+ name = "Security Blast Door";
+ opacity = 0
+ },
+/obj/machinery/door/window/brigdoor{
+ base_state = "rightsecure";
+ dir = 2;
+ icon_state = "rightsecure";
+ id = "Cell 4";
+ name = "Cell 4";
+ req_access_txt = "2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
-/obj/machinery/light/small,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/security/main)
+/area/security/brig)
+"bBa" = (
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/security/brig)
"bBc" = (
-/obj/structure/table/wood,
+/obj/structure/table/reinforced,
/obj/item/folder/red,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/item/pen,
+/obj/machinery/door/window/brigdoor{
+ dir = 8;
+ name = "Warden's Desk";
+ req_access_txt = "3"
},
-/area/security/main)
+/obj/machinery/door/window/brigdoor{
+ name = "Warden's Desk";
+ req_access_txt = "3"
+ },
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/warden)
"bBd" = (
/turf/simulated/floor/plasteel{
dir = 8;
@@ -38892,15 +37266,12 @@
/area/engine/gravitygenerator)
"bBq" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'RADIOACTIVE AREA'";
icon_state = "radiation";
- name = "RADIOACTIVE AREA";
- pixel_x = 0;
- pixel_y = 0
+ name = "RADIOACTIVE AREA"
},
/turf/simulated/wall/r_wall,
/area/engine/gravitygenerator)
@@ -38911,8 +37282,7 @@
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
@@ -38933,8 +37303,7 @@
/area/engine/gravitygenerator)
"bBt" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
},
/obj/machinery/camera{
c_tag = "Gravity Generation Access";
@@ -38951,8 +37320,7 @@
/area/engine/gravitygenerator)
"bBu" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/wall,
/area/engine/break_room)
@@ -38963,8 +37331,7 @@
icon_state = "0-4"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plating,
/area/engine/break_room)
@@ -38976,8 +37343,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
},
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/engineering/glass{
@@ -39014,8 +37380,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/engineering/glass{
@@ -39035,8 +37400,7 @@
/area/engine/break_room)
"bBA" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/warning_stripes/west,
@@ -39044,8 +37408,7 @@
/area/engine/break_room)
"bBB" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/firealarm{
pixel_y = 24
@@ -39059,8 +37422,7 @@
"bBC" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 9;
@@ -39069,8 +37431,7 @@
/area/engine/break_room)
"bBD" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -39079,8 +37440,7 @@
/area/engine/break_room)
"bBE" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -39093,14 +37453,12 @@
icon_state = "0-4"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/item/twohanded/required/kirbyplants,
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/obj/machinery/light{
@@ -39120,8 +37478,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
@@ -39143,8 +37500,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -39154,13 +37510,11 @@
"bBI" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/alarm{
dir = 8;
- pixel_x = 25;
- pixel_y = 0
+ pixel_x = 25
},
/turf/simulated/floor/plasteel{
dir = 5;
@@ -39182,7 +37536,6 @@
},
/obj/machinery/computer/station_alert,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "caution"
},
/area/atmos)
@@ -39193,7 +37546,6 @@
},
/obj/machinery/computer/atmos_alert,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "caution"
},
/area/atmos)
@@ -39202,7 +37554,6 @@
/obj/item/folder/yellow,
/obj/item/pen,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "caution"
},
/area/atmos)
@@ -39214,8 +37565,7 @@
department = "Atmospherics";
departmentType = 3;
name = "Atmospherics Requests Console";
- pixel_x = 30;
- pixel_y = 0
+ pixel_x = 30
},
/obj/machinery/status_display{
pixel_y = -32
@@ -39249,8 +37599,7 @@
/obj/item/healthanalyzer,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/storage/tech)
"bBQ" = (
@@ -39287,14 +37636,12 @@
"bBU" = (
/obj/structure/table/reinforced,
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/item/aicard,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/storage/tech)
"bBV" = (
@@ -39341,9 +37688,7 @@
/obj/machinery/disposal,
/obj/machinery/requests_console{
department = "Primary Tool Storage";
- departmentType = 0;
name = "Primary Tool Storage Console";
- pixel_x = 0;
pixel_y = 30
},
/obj/effect/decal/warning_stripes/yellow/hollow,
@@ -39428,6 +37773,9 @@
/obj/effect/landmark{
name = "lightsout"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -39475,6 +37823,16 @@
name = "Bridge";
req_access_txt = "19"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "bridge blast west";
+ name = "Bridge Blast Doors";
+ opacity = 0
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "vault"
@@ -39493,6 +37851,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -39511,6 +37872,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "vault"
@@ -39542,6 +37906,9 @@
name = "Bridge";
req_access_txt = "19"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "vault"
@@ -39557,6 +37924,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -39570,8 +37940,10 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -39590,31 +37962,23 @@
icon_state = "2-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1;
+ initialize_directions = 11
},
/obj/item/twohanded/required/kirbyplants,
/obj/machinery/light{
dir = 1
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
},
-/area/bridge)
-"bCo" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11;
- level = 1
- },
-/obj/structure/chair/office/dark{
- dir = 4
+/obj/machinery/door_control{
+ id = "bridge blast west";
+ name = "West Bridge Blast Door Control";
+ pixel_x = null;
+ pixel_y = 24;
+ req_access_txt = "19"
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -39644,6 +38008,9 @@
/obj/structure/chair/office/dark{
dir = 1
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -39660,12 +38027,11 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkbluecorners"
},
/area/bridge)
@@ -39680,6 +38046,9 @@
dir = 4
},
/obj/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "darkblue"
},
@@ -39693,20 +38062,19 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
+ },
+/obj/machinery/door/window/brigdoor/southright{
+ req_access_txt = "30"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/machinery/door/window/brigdoor/southright,
/turf/simulated/floor/plasteel{
icon_state = "darkblue"
},
/area/bridge)
"bCt" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -39718,17 +38086,20 @@
icon_state = "2-8";
tag = ""
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1;
+ initialize_directions = 11
},
/obj/structure/window/reinforced,
-/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
/turf/simulated/floor/plasteel{
icon_state = "darkblue"
},
@@ -39746,6 +38117,9 @@
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "darkbluecorners"
@@ -39767,6 +38141,9 @@
icon_state = "1-4";
tag = ""
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -39783,14 +38160,15 @@
d2 = 4;
icon_state = "1-4"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11;
- level = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/obj/structure/chair/office/dark{
dir = 1
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -39808,6 +38186,9 @@
/obj/structure/chair/office/dark{
dir = 1
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -39825,13 +38206,24 @@
icon_state = "2-4";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1;
+ initialize_directions = 11
},
-/obj/item/twohanded/required/kirbyplants,
/obj/machinery/light{
dir = 1
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/door_control{
+ id = "bridge blast east";
+ name = "East Bridge Blast Door Control";
+ pixel_x = null;
+ pixel_y = 24;
+ req_access_txt = "19"
+ },
+/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -39843,12 +38235,12 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -39879,6 +38271,9 @@
name = "Bridge";
req_access_txt = "19"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "vault"
@@ -39894,6 +38289,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "vault"
@@ -39906,10 +38304,11 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11;
- level = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -39929,6 +38328,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"
@@ -39936,129 +38341,107 @@
/area/hallway/primary/central)
"bCE" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4;
+ initialize_directions = 11
+ },
/obj/machinery/camera{
c_tag = "Central Ring Hallway East";
dir = 8
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4;
+ initialize_directions = 11
+ },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
-"bCI" = (
-/obj/structure/sign/electricshock{
- pixel_x = 32;
- pixel_y = 0
- },
-/obj/structure/lattice,
-/turf/space,
-/area/space/nearstation)
-"bCJ" = (
-/turf/simulated/wall,
-/area/security/prisonershuttle)
"bCK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/hologram/holopad,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/security/prisonershuttle)
-"bCL" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d2 = 4;
+ icon_state = "0-4"
},
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Secure Gate";
+ name = "Security Blast Door";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/security/brig)
+"bCL" = (
/obj/structure/disposalpipe/sortjunction{
dir = 8;
- icon_state = "pipe-j1s";
name = "HoS Junction";
sortType = 18
},
/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "red"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/security/prisonershuttle)
+/area/hallway/primary/starboard)
"bCM" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
},
-/obj/structure/chair{
- dir = 1
- },
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "red"
+ dir = 4;
+ icon_state = "redcorner"
},
-/area/security/prisonershuttle)
+/area/hallway/primary/starboard)
"bCN" = (
-/obj/structure/chair{
- dir = 8
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "red"
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Secure Gate";
+ name = "Security Blast Door";
+ opacity = 0
},
+/turf/simulated/floor/plating,
/area/security/prisonershuttle)
"bCO" = (
-/obj/machinery/alarm{
- dir = 1;
- pixel_y = -25
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
-/obj/structure/chair{
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 1
},
+/obj/machinery/flasher{
+ id = "Cell 2";
+ pixel_y = -28
+ },
/turf/simulated/floor/plasteel{
- dir = 2;
+ dir = 10;
icon_state = "red"
},
-/area/security/prisonershuttle)
+/area/security/brig)
"bCP" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/light_switch{
- pixel_x = 0;
- pixel_y = -26
- },
-/obj/structure/extinguisher_cabinet{
- pixel_x = 28;
- pixel_y = 0
- },
+/obj/structure/bed,
+/obj/item/bedsheet/red,
/turf/simulated/floor/plasteel{
dir = 6;
icon_state = "red"
},
-/area/security/prisonershuttle)
+/area/security/brig)
"bCQ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/wall,
-/area/security/brig)
-"bCR" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/airlock/security/glass{
- id_tag = "BrigEast";
- name = "Brig";
- req_access_txt = "63"
- },
-/turf/simulated/floor/plasteel,
-/area/security/brig)
-"bCS" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/wall,
+/obj/machinery/door_timer/cell_2{
+ pixel_x = -32
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "redcorner"
+ },
/area/security/brig)
"bCT" = (
/obj/effect/landmark{
@@ -40066,7 +38449,6 @@
},
/obj/item/radio/intercom{
dir = 1;
- name = "station intercom (General)";
pixel_y = -28
},
/obj/item/radio/intercom/private{
@@ -40074,7 +38456,6 @@
pixel_y = -10
},
/obj/item/radio/intercom/custom{
- pixel_x = 0;
pixel_y = 28
},
/turf/simulated/floor/greengrid,
@@ -40162,7 +38543,6 @@
},
/obj/item/radio/intercom{
dir = 1;
- name = "station intercom (General)";
pixel_y = -28
},
/obj/item/radio/intercom/private{
@@ -40170,7 +38550,6 @@
pixel_y = -10
},
/obj/item/radio/intercom/custom{
- pixel_x = 0;
pixel_y = 28
},
/turf/simulated/floor/greengrid,
@@ -40180,8 +38559,7 @@
desc = "A warning sign which reads 'RADIOACTIVE AREA'";
icon_state = "radiation";
name = "RADIOACTIVE AREA";
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/machinery/light{
dir = 8
@@ -40205,15 +38583,13 @@
/area/engine/gravitygenerator)
"bDe" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/light/small{
dir = 1
},
/obj/structure/extinguisher_cabinet{
- pixel_x = 22;
- pixel_y = 0
+ pixel_x = 22
},
/obj/structure/closet/radiation,
/obj/effect/decal/warning_stripes/northeast,
@@ -40358,8 +38734,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
@@ -40416,8 +38791,7 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -40464,8 +38838,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -40505,15 +38878,13 @@
/area/atmos)
"bDA" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/wall/r_wall,
/area/atmos)
"bDB" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
@@ -40530,8 +38901,7 @@
},
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -40554,8 +38924,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/storage/tech)
"bDF" = (
@@ -40575,13 +38944,14 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "neutralcorner"
+ icon_state = "bluecorner"
},
/area/hallway/primary/central)
"bDH" = (
@@ -40608,8 +38978,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/storage/tech)
"bDJ" = (
@@ -40688,8 +39057,7 @@
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
@@ -40700,6 +39068,7 @@
/area/storage/primary)
"bDR" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "yellowcorner"
@@ -40720,40 +39089,44 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command/glass{
name = "Bridge";
req_access_txt = "19"
},
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "bridge blast west";
+ name = "Bridge Blast Doors";
+ opacity = 0
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "vault"
},
/area/bridge)
"bDU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/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{
+ density = 0;
+ icon_state = "open";
+ id_tag = "bridge blast east";
+ name = "Bridge Blast Doors";
+ opacity = 0
},
+/turf/simulated/floor/plating,
/area/bridge)
"bDV" = (
/obj/structure/disposalpipe/sortjunction{
dir = 1;
- icon_state = "pipe-j1s";
name = "HoP Junction";
sortType = 13
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "vault"
@@ -40769,10 +39142,6 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command/glass{
name = "Bridge";
@@ -40787,10 +39156,6 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -40799,10 +39164,6 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 1
},
@@ -40821,81 +39182,104 @@
dir = 2;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/bridge)
"bEa" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8;
+ initialize_directions = 11
+ },
+/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"
+ dir = 1;
+ icon_state = "neutralcorner"
},
-/area/bridge)
+/area/hallway/primary/central)
"bEb" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/bridge)
-"bEc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 9;
icon_state = "darkblue"
},
/area/bridge)
+"bEc" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/command/glass{
+ name = "Bridge";
+ req_access_txt = "19"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "bridge blast east";
+ name = "Bridge Blast Doors";
+ opacity = 0
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "vault"
+ },
+/area/bridge)
"bEd" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- dir = 1;
+ dir = 4;
icon_state = "darkblue"
},
/area/bridge)
"bEe" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/structure/table/wood,
/obj/structure/window/reinforced{
dir = 8
},
/obj/item/restraints/handcuffs,
/obj/item/flash,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
+/turf/simulated/floor/carpet,
/area/bridge)
"bEf" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
+/turf/simulated/floor/carpet,
/area/bridge)
"bEg" = (
/obj/structure/cable{
@@ -40905,58 +39289,46 @@
tag = ""
},
/obj/machinery/computer/communications,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/carpet,
/area/bridge)
"bEh" = (
/obj/structure/table/wood,
/obj/machinery/computer/security/wooden_tv,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/carpet,
/area/bridge)
"bEi" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/structure/table/wood,
/obj/structure/window/reinforced{
dir = 4
},
/obj/item/flashlight/lamp,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
+/turf/simulated/floor/carpet,
/area/bridge)
"bEj" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- dir = 1;
+ dir = 8;
icon_state = "darkblue"
},
/area/bridge)
"bEk" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/command/glass{
+ name = "Bridge";
+ req_access_txt = "19"
},
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "darkblue"
+ dir = 8;
+ icon_state = "vault"
},
/area/bridge)
"bEl" = (
@@ -40966,24 +39338,38 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/bridge)
"bEm" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/bridge)
"bEn" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/command/glass{
+ name = "Bridge";
+ req_access_txt = "19"
+ },
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "bridge blast east";
+ name = "Bridge Blast Doors";
+ opacity = 0
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -40991,125 +39377,92 @@
},
/area/bridge)
"bEo" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "bluecorner"
},
/area/hallway/primary/central)
"bEp" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8;
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 1;
+ icon_state = "yellowcorner"
},
/area/hallway/primary/central)
"bEq" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
"bEr" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
- },
/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plating,
-/area/security/prisonershuttle)
-"bEs" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/door/airlock/security/glass{
- name = "Security Office";
- req_access_txt = "63"
+/obj/machinery/light{
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "red"
+ icon_state = "redcorner"
},
-/area/security/prisonershuttle)
-"bEt" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plating,
-/area/security/prisonershuttle)
+/area/hallway/primary/starboard)
"bEu" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel,
-/area/security/brig)
-"bEv" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "redcorner"
},
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plasteel,
/area/security/brig)
"bEw" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
},
-/obj/structure/closet/emcloset,
-/obj/effect/decal/warning_stripes/southwest,
-/turf/simulated/floor/plasteel,
-/area/security/prisonershuttle)
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "redcorner"
+ },
+/area/hallway/primary/starboard)
"bEx" = (
/turf/simulated/wall/r_wall,
/area/security/warden)
"bEy" = (
-/obj/structure/closet/secure_closet,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
- },
-/area/security/warden)
-"bEz" = (
-/obj/structure/closet/secure_closet,
/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/structure/chair/comfy/teal{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "bcarpet05"
+ },
+/area/security/brig)
+"bEz" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8";
+ tag = ""
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
+ icon_state = "bcarpet05"
},
-/area/security/warden)
+/area/security/brig)
"bEA" = (
/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
@@ -41118,27 +39471,9 @@
},
/turf/simulated/floor/plating,
/area/security/warden)
-"bEB" = (
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/security/brig)
-"bEC" = (
-/obj/machinery/suit_storage_unit/security,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
- },
-/area/security/warden)
"bED" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -41155,7 +39490,6 @@
},
/obj/item/radio/intercom{
dir = 1;
- name = "station intercom (General)";
pixel_y = -28
},
/obj/effect/landmark/start{
@@ -41226,8 +39560,7 @@
"bEK" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
@@ -41239,9 +39572,7 @@
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'RADIOACTIVE AREA'";
icon_state = "radiation";
- name = "RADIOACTIVE AREA";
- pixel_x = 0;
- pixel_y = 0
+ name = "RADIOACTIVE AREA"
},
/turf/simulated/wall/r_wall,
/area/engine/gravitygenerator)
@@ -41270,8 +39601,7 @@
"bEO" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/effect/decal/warning_stripes/southeastcorner,
/turf/simulated/floor/plasteel,
@@ -41303,14 +39633,12 @@
network = list("SS13","Engineering")
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "caution"
},
/area/engine/break_room)
"bER" = (
/obj/machinery/light,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "caution"
},
/area/engine/break_room)
@@ -41319,7 +39647,6 @@
dir = 1
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "caution"
},
/area/engine/break_room)
@@ -41327,8 +39654,7 @@
/obj/item/twohanded/required/kirbyplants,
/obj/machinery/firealarm{
dir = 8;
- pixel_x = -24;
- pixel_y = 0
+ pixel_x = -24
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
@@ -41519,7 +39845,6 @@
/obj/item/stock_parts/micro_laser,
/obj/item/radio/intercom{
dir = 4;
- name = "station intercom (General)";
pixel_x = 28
},
/turf/simulated/floor/plasteel{
@@ -41529,7 +39854,7 @@
/area/storage/tech)
"bFm" = (
/obj/structure/rack,
-/obj/item/floor_painter,
+/obj/item/painter,
/obj/item/toner,
/obj/machinery/status_display{
pixel_x = -32
@@ -41575,9 +39900,8 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -41589,14 +39913,8 @@
dir = 1;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "neutralcorner"
+ icon_state = "bluecorner"
},
/area/hallway/primary/central)
"bFu" = (
@@ -41605,6 +39923,13 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "bridge blast west";
+ name = "Bridge Blast Doors";
+ opacity = 0
+ },
/turf/simulated/floor/plating,
/area/bridge)
"bFv" = (
@@ -41643,7 +39968,6 @@
/area/bridge)
"bFz" = (
/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
pixel_y = -30
},
/turf/simulated/floor/plasteel{
@@ -41659,16 +39983,15 @@
},
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "darkblue"
},
/area/bridge)
"bFB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/camera{
c_tag = "Bridge Port";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/turf/simulated/floor/plasteel{
icon_state = "darkblue"
@@ -41677,7 +40000,6 @@
"bFC" = (
/obj/structure/cable,
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
@@ -41694,10 +40016,16 @@
},
/area/bridge)
"bFE" = (
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "darkblue"
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "bridge blast east";
+ name = "Bridge Blast Doors";
+ opacity = 0
},
+/turf/simulated/floor/plating,
/area/bridge)
"bFF" = (
/obj/structure/rack,
@@ -41705,9 +40033,8 @@
/obj/item/aicard,
/obj/item/storage/secure/briefcase,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ dir = 6;
+ icon_state = "darkblue"
},
/area/bridge)
"bFG" = (
@@ -41716,9 +40043,7 @@
dir = 8
},
/obj/item/taperecorder,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
+/turf/simulated/floor/carpet,
/area/bridge)
"bFH" = (
/obj/structure/cable{
@@ -41730,6 +40055,8 @@
/obj/structure/chair/comfy/black{
dir = 1
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/carpet,
/area/bridge)
"bFI" = (
@@ -41739,9 +40066,8 @@
/turf/simulated/floor/carpet,
/area/bridge)
"bFJ" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
/turf/simulated/floor/carpet,
/area/bridge)
@@ -41752,32 +40078,39 @@
},
/obj/item/folder/blue,
/obj/item/pen,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
+/turf/simulated/floor/carpet,
/area/bridge)
"bFL" = (
/obj/structure/rack,
/obj/item/storage/toolbox/emergency,
/obj/item/wrench,
/obj/machinery/light/small,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+/obj/item/storage/toolbox/mechanical{
+ pixel_y = -3
},
-/area/bridge)
-"bFM" = (
/turf/simulated/floor/plasteel{
- dir = 4;
+ dir = 10;
icon_state = "darkblue"
},
/area/bridge)
+"bFM" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/hallway/primary/central)
"bFN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/alarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/turf/simulated/floor/plasteel{
@@ -41787,8 +40120,7 @@
"bFO" = (
/obj/machinery/camera{
c_tag = "Bridge Starboard";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/turf/simulated/floor/plasteel{
icon_state = "darkblue"
@@ -41802,6 +40134,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "darkblue"
},
@@ -41871,30 +40204,27 @@
/area/security/detectives_office)
"bFX" = (
/obj/structure/disposalpipe/segment,
-/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "redcorner"
},
/area/hallway/primary/starboard)
-"bFY" = (
-/turf/simulated/floor/plasteel,
-/area/hallway/primary/starboard)
-"bFZ" = (
-/obj/structure/disposalpipe/segment,
-/obj/item/twohanded/required/kirbyplants,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "redcorner"
- },
-/area/hallway/primary/starboard)
"bGa" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+/obj/effect/decal/warning_stripes/west,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Secure Gate";
+ name = "Security Blast Door";
+ opacity = 0
},
-/turf/simulated/floor/plating,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/security/glass{
+ id_tag = "BrigWest";
+ name = "Brig";
+ req_access_txt = "63"
+ },
+/turf/simulated/floor/plasteel,
/area/security/brig)
"bGb" = (
/obj/structure/cable{
@@ -41907,227 +40237,132 @@
dir = 1
},
/obj/structure/closet/secure_closet/brig{
- id = "Cell 4";
- name = "Cell 2 Locker"
+ id = "Cell 1";
+ name = "Cell 1 Locker"
},
+/obj/item/radio/intercom{
+ pixel_y = 28
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plasteel{
dir = 9;
icon_state = "red"
},
/area/security/brig)
"bGc" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- external_pressure_bound = 101;
- on = 1;
- pressure_checks = 1
- },
/turf/simulated/floor/plasteel{
dir = 5;
icon_state = "red"
},
/area/security/brig)
"bGd" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/west,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Secure Gate";
+ name = "Security Blast Door";
+ opacity = 0
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/obj/machinery/door/airlock/security{
+ id_tag = "BrigEast";
+ name = "Brig";
+ req_access_txt = "63"
},
-/turf/simulated/floor/plating,
+/turf/simulated/floor/plasteel,
/area/security/brig)
"bGe" = (
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
-/obj/machinery/door_timer/cell_4{
- dir = 8;
- layer = 4;
- name = "Cell 2";
- pixel_x = -32;
- pixel_y = 0
- },
-/turf/simulated/floor/plasteel,
-/area/security/brig)
-"bGf" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/security/brig)
-"bGg" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "redcorner"
+ },
/area/security/brig)
-"bGh" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/door/airlock/security/glass{
- name = "Equipment Storage";
- req_access_txt = "1"
- },
-/turf/simulated/floor/plasteel,
-/area/security/warden)
"bGi" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
+/obj/structure/bed,
+/obj/item/bedsheet,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "bcarpet05"
},
-/area/security/warden)
+/area/security/brig)
"bGj" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/obj/machinery/flasher{
+ id = "Cell 3";
+ pixel_y = -26
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "bcarpet05"
},
-/area/security/warden)
+/area/security/brig)
"bGk" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/structure/cable,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Secure Gate";
+ name = "Security Blast Door";
+ opacity = 0
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
- },
-/obj/effect/landmark{
- name = "blobstart"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/security/warden)
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
+/area/security/brig)
"bGl" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/machinery/treadmill_monitor{
+ id = "Cell 4";
+ pixel_y = -32
},
+/obj/structure/cable,
+/obj/machinery/power/treadmill,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 1;
+ icon_state = "redcorner"
},
-/area/security/warden)
+/area/security/brig)
"bGm" = (
-/obj/item/radio/intercom{
- pixel_y = 28
- },
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/security/warden)
-"bGn" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Secure Gate";
+ name = "Security Blast Door";
+ opacity = 0
},
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
d1 = 1;
d2 = 8;
- icon_state = "1-8"
+ icon_state = "1-8";
+ tag = ""
},
/obj/structure/cable{
d1 = 2;
d2 = 8;
- icon_state = "2-8";
- tag = ""
+ icon_state = "2-8"
},
-/obj/machinery/door/airlock/security/glass{
- name = "Equipment Storage";
- req_access_txt = "1"
- },
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
-/area/security/warden)
-"bGo" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/dispenser/oxygen,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
- },
-/area/security/warden)
-"bGp" = (
-/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
d2 = 8;
icon_state = "0-8"
},
/turf/simulated/floor/plating,
-/area/security/warden)
+/area/security/brig)
+"bGn" = (
+/obj/structure/bed,
+/obj/machinery/flasher{
+ id = "Cell 4";
+ pixel_y = -28
+ },
+/obj/item/bedsheet/red,
+/turf/simulated/floor/plasteel{
+ icon_state = "redcorner"
+ },
+/area/security/brig)
+"bGp" = (
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/security/processing)
"bGq" = (
/obj/structure/table/reinforced,
/obj/item/crowbar,
@@ -42139,8 +40374,7 @@
/area/turret_protected/ai)
"bGr" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
+ dir = 5
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -42187,8 +40421,6 @@
},
/obj/machinery/alarm{
dir = 1;
- icon_state = "alarm0";
- pixel_x = 0;
pixel_y = -22
},
/obj/effect/decal/warning_stripes/south,
@@ -42213,7 +40445,6 @@
pixel_x = 28
},
/obj/machinery/light_switch{
- pixel_x = 0;
pixel_y = -26
},
/obj/effect/decal/warning_stripes/yellow/hollow,
@@ -42287,8 +40518,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/table/reinforced,
@@ -42317,8 +40547,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -42352,8 +40581,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -42371,14 +40599,12 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/engineering/glass{
name = "Engineering";
- req_access_txt = "32";
- req_one_access_txt = "0"
+ req_access_txt = "32"
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -42435,8 +40661,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- level = 1
+ dir = 9
},
/obj/effect/landmark{
name = "lightsout"
@@ -42470,8 +40695,7 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/engineering/glass{
name = "Engineering";
- req_access_txt = "32";
- req_one_access_txt = "0"
+ req_access_txt = "32"
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -42547,8 +40771,7 @@
"bGR" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -42564,8 +40787,7 @@
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/obj/item/folder/yellow,
/obj/item/airlock_electronics,
@@ -42607,21 +40829,18 @@
"bGV" = (
/obj/machinery/vending/assist,
/obj/structure/extinguisher_cabinet{
- pixel_x = -28;
- pixel_y = 0
+ pixel_x = -28
},
/obj/machinery/camera{
c_tag = "Primary Tool Storage";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
/area/storage/primary)
"bGW" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/rack,
/obj/item/circuitboard/mechfab,
@@ -42638,8 +40857,7 @@
/obj/machinery/atmospherics/unary/vent_pump{
dir = 8;
external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
+ on = 1
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -42650,7 +40868,6 @@
/obj/structure/table/reinforced,
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/item/stack/cable_coil/random,
@@ -42732,9 +40949,9 @@
"bHg" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -42753,13 +40970,11 @@
},
/area/engine/break_room)
"bHi" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/firealarm{
dir = 4;
pixel_x = 24
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
@@ -42784,26 +40999,38 @@
req_access = null;
req_access_txt = "19"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
/area/bridge/meeting_room)
"bHm" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4;
+ initialize_directions = 11
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/wall,
-/area/bridge/meeting_room)
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "neutralcorner"
+ },
+/area/hallway/primary/central)
"bHn" = (
/obj/structure/table/reinforced,
/obj/machinery/recharger,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 10;
+ icon_state = "darkbluefull"
},
/area/bridge)
"bHo" = (
/obj/structure/table/reinforced,
/obj/machinery/cell_charger,
+/obj/item/stock_parts/cell/high,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 10;
+ icon_state = "darkbluefull"
},
/area/bridge)
"bHp" = (
@@ -42816,9 +41043,7 @@
dir = 8
},
/obj/item/storage/fancy/donut_box,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
+/turf/simulated/floor/carpet,
/area/bridge)
"bHr" = (
/obj/structure/cable{
@@ -42827,6 +41052,8 @@
icon_state = "1-2";
tag = ""
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/carpet,
/area/bridge)
"bHs" = (
@@ -42840,8 +41067,13 @@
},
/obj/machinery/camera{
c_tag = "Bridge Center";
- dir = 1;
- network = list("SS13")
+ dir = 1
+ },
+/obj/machinery/turretid/stun{
+ control_area = "\improper AI Upload Chamber";
+ name = "AI Upload Turret Control";
+ pixel_y = -24;
+ req_access = list(75)
},
/turf/simulated/floor/carpet,
/area/bridge)
@@ -42871,9 +41103,8 @@
dir = 4
},
/obj/item/paper_bin,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
+/obj/item/pen,
+/turf/simulated/floor/carpet,
/area/bridge)
"bHv" = (
/obj/machinery/ai_status_display,
@@ -42882,17 +41113,15 @@
"bHw" = (
/obj/structure/table/reinforced,
/obj/item/paper_bin,
+/obj/item/pen,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 10;
+ icon_state = "darkbluefull"
},
/area/bridge)
"bHx" = (
/turf/simulated/wall/r_wall,
/area/crew_quarters/captain)
-"bHy" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/wall/r_wall,
-/area/crew_quarters/captain)
"bHz" = (
/obj/structure/cable{
d1 = 1;
@@ -42908,17 +41137,16 @@
req_access = null;
req_access_txt = "20"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
/area/crew_quarters/captain)
"bHA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/obj/structure/cable{
d2 = 4;
@@ -42962,6 +41190,7 @@
},
/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 = "neutralcorner"
@@ -43030,10 +41259,9 @@
"bHJ" = (
/obj/structure/table/wood,
/obj/item/clipboard,
-/obj/item/toy/figure/detective,
+/obj/item/toy/figure/crew/detective,
/obj/structure/extinguisher_cabinet{
- pixel_x = -28;
- pixel_y = 0
+ pixel_x = -28
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -43057,9 +41285,7 @@
/obj/item/camera{
desc = "A one use - polaroid camera. 30 photos left.";
name = "detectives camera";
- pictures_left = 30;
- pixel_x = 0;
- pixel_y = 0
+ pictures_left = 30
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -43073,7 +41299,6 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/obj/structure/table/wood,
@@ -43108,50 +41333,40 @@
pixel_y = 32
},
/obj/structure/reagent_dispensers/peppertank{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/security/detectives_office)
"bHQ" = (
-/obj/structure/rack,
-/obj/item/storage/briefcase{
- pixel_x = 4;
- pixel_y = 4
- },
-/obj/item/storage/secure/briefcase,
+/obj/structure/table/reinforced,
+/obj/item/paper_bin,
+/obj/structure/table/reinforced,
+/obj/item/pen,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 1;
+ icon_state = "redcorner"
},
-/area/security/detectives_office)
+/area/security/brig)
"bHR" = (
-/obj/structure/dresser,
+/obj/structure/table/reinforced,
+/obj/item/clipboard,
+/obj/item/toy/figure/crew/secofficer,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/security/detectives_office)
-"bHS" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4;
- level = 1
- },
-/obj/structure/chair{
- dir = 1
+ icon_state = "redcorner"
},
+/area/security/brig)
+"bHS" = (
+/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 4;
+ icon_state = "redcorner"
},
-/area/security/prisonershuttle)
+/area/hallway/primary/starboard)
"bHT" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
- },
+/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -43165,27 +41380,14 @@
},
/area/hallway/primary/starboard)
"bHV" = (
+/obj/effect/decal/warning_stripes/east,
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
tag = ""
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "red"
- },
+/turf/simulated/floor/plasteel,
/area/security/brig)
"bHW" = (
/obj/structure/cable{
@@ -43219,10 +41421,24 @@
},
/obj/machinery/door/window/brigdoor{
dir = 8;
- id = "Cell 4";
- name = "Cell 2";
+ id = "Cell 1";
+ name = "Cell 1";
req_access_txt = "2"
},
+/obj/machinery/door/firedoor,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Secure Gate";
+ name = "Security Blast Door";
+ opacity = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "red"
@@ -43235,8 +41451,15 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4;
+ initialize_directions = 11
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "redcorner"
+ },
/area/security/brig)
"bHZ" = (
/obj/structure/cable{
@@ -43257,68 +41480,11 @@
icon_state = "neutralfull"
},
/area/security/brig)
-"bIa" = (
-/obj/structure/table/wood,
-/obj/machinery/camera{
- c_tag = "Security Interrogation Room";
- dir = 8;
- network = list("SS13","Security")
- },
-/obj/item/paper_bin,
-/obj/item/pen,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/security/main)
-"bIb" = (
-/obj/structure/table,
-/obj/item/stack/packageWrap,
-/obj/item/hand_labeler,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
- },
-/area/security/warden)
-"bIc" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/security/warden)
-"bId" = (
-/obj/structure/chair{
- dir = 1
- },
-/obj/machinery/camera{
- c_tag = "Security Holding Room";
- dir = 1;
- network = list("SS13","Security")
- },
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "red"
- },
-/area/security/prisonershuttle)
"bIe" = (
/obj/effect/spawner/window/reinforced,
/obj/structure/cable,
/turf/simulated/floor/plating,
/area/security/warden)
-"bIf" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/security/warden)
"bIg" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 4
@@ -43333,8 +41499,7 @@
"bIh" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/structure/cable{
d1 = 1;
@@ -43357,7 +41522,6 @@
},
/obj/machinery/flasher{
id = "AI";
- pixel_x = 0;
pixel_y = 24
},
/turf/simulated/floor/plasteel{
@@ -43372,13 +41536,11 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/obj/structure/cable{
d2 = 2;
- icon_state = "0-2";
- pixel_y = 0
+ icon_state = "0-2"
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -43392,8 +41554,7 @@
/area/turret_protected/ai)
"bIm" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/cable{
d1 = 1;
@@ -43553,8 +41714,7 @@
"bIB" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/structure/chair/stool,
/turf/simulated/floor/plasteel{
@@ -43580,8 +41740,7 @@
"bID" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/effect/decal/warning_stripes/southwest,
/turf/simulated/floor/plasteel,
@@ -43600,8 +41759,7 @@
dir = 4
},
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -43677,8 +41835,7 @@
/obj/structure/table/reinforced,
/obj/machinery/camera{
c_tag = "Technical Storage";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/obj/item/airalarm_electronics,
/obj/item/apc_electronics,
@@ -43721,7 +41878,6 @@
/obj/machinery/vending/tool,
/obj/item/radio/intercom{
dir = 0;
- name = "station intercom (General)";
pixel_x = -28
},
/obj/effect/decal/warning_stripes/yellow,
@@ -43755,7 +41911,6 @@
/area/storage/primary)
"bIU" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "yellowcorner"
},
/area/storage/primary)
@@ -43787,14 +41942,11 @@
req_access_txt = "1"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "red"
},
/area/security/checkpoint/engineering)
"bIX" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
@@ -43812,7 +41964,7 @@
},
/area/bridge/meeting_room)
"bIZ" = (
-/obj/structure/bookcase,
+/obj/structure/reagent_dispensers/water_cooler,
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
@@ -43822,9 +41974,6 @@
/obj/machinery/light{
dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
@@ -43833,10 +41982,6 @@
/obj/machinery/firealarm{
pixel_y = 24
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
- },
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
@@ -43849,69 +41994,46 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
- },
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
/area/bridge/meeting_room)
"bJd" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- icon_state = "wood"
- },
-/area/bridge/meeting_room)
-"bJe" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/disposalpipe/segment{
dir = 8;
- icon_state = "pipe-c"
+ icon_state = "neutralfull"
},
+/area/hallway/primary/central)
+"bJe" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/light_switch{
pixel_x = 26;
pixel_y = 26
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
},
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
/area/bridge/meeting_room)
"bJf" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11;
- level = 1
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
},
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
-/area/bridge/meeting_room)
+/area/crew_quarters/captain)
"bJg" = (
/obj/structure/table/wood,
/obj/item/paicard,
@@ -43919,9 +42041,6 @@
icon_state = "wood"
},
/area/bridge/meeting_room)
-"bJh" = (
-/turf/simulated/wall/r_wall,
-/area/turret_protected/ai_upload)
"bJi" = (
/obj/structure/cable{
d1 = 1;
@@ -43933,15 +42052,16 @@
name = "AI Upload";
req_access_txt = "30"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/turret_protected/ai_upload)
"bJj" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/table/wood,
/obj/item/clipboard,
-/obj/item/toy/figure/captain,
+/obj/item/toy/figure/crew/captain,
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
@@ -43965,10 +42085,9 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "wood"
},
/area/crew_quarters/captain)
"bJm" = (
@@ -43993,8 +42112,7 @@
pixel_y = 32
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "wood"
},
/area/crew_quarters/captain)
"bJp" = (
@@ -44002,8 +42120,7 @@
pixel_y = 32
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "wood"
},
/area/crew_quarters/captain)
"bJq" = (
@@ -44011,8 +42128,7 @@
pixel_y = 32
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "wood"
},
/area/crew_quarters/captain)
"bJr" = (
@@ -44025,7 +42141,6 @@
/obj/machinery/computer/security/mining,
/obj/machinery/newscaster{
layer = 3.3;
- pixel_x = 0;
pixel_y = -27
},
/obj/effect/decal/warning_stripes/yellow/hollow,
@@ -44075,9 +42190,8 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -44091,8 +42205,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "grimy"
@@ -44117,9 +42230,8 @@
icon_state = "2-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
},
/turf/simulated/floor/plasteel{
icon_state = "grimy"
@@ -44132,71 +42244,17 @@
icon_state = "1-8"
},
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
/area/security/detectives_office)
-"bJA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/security/detectives_office)
-"bJB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/door/airlock/security{
- name = "Interview Room";
- req_access = null;
- req_access_txt = "4"
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
- },
-/area/security/detectives_office)
"bJC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/security/detectives_office)
-"bJD" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
- },
-/obj/machinery/camera{
- c_tag = "Arrivals Auxiliary Docking North";
- dir = 8;
- network = list("SS13")
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/security/detectives_office)
-"bJE" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "redcorner"
},
-/area/hallway/primary/starboard)
+/area/security/brig)
"bJF" = (
/turf/simulated/floor/plasteel{
dir = 8;
@@ -44210,11 +42268,10 @@
icon_state = "1-8"
},
/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
+ dir = 1
},
/obj/machinery/flasher{
- id = "Cell 4";
- pixel_x = 0;
+ id = "Cell 1";
pixel_y = -28
},
/turf/simulated/floor/plasteel{
@@ -44222,53 +42279,6 @@
icon_state = "red"
},
/area/security/brig)
-"bJH" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/structure/bed,
-/obj/item/bedsheet/red,
-/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "red"
- },
-/area/security/brig)
-"bJI" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable,
-/turf/simulated/floor/plating,
-/area/security/brig)
-"bJJ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/security/brig)
-"bJK" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
-/obj/machinery/requests_console{
- department = "Security";
- departmentType = 3;
- name = "Security Requests Console";
- pixel_x = 30
- },
-/turf/simulated/floor/plasteel,
-/area/security/brig)
"bJL" = (
/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
@@ -44278,33 +42288,35 @@
/turf/simulated/floor/plating,
/area/security/warden)
"bJM" = (
+/obj/structure/chair{
+ dir = 8
+ },
/obj/structure/cable{
- d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "0-2"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "red"
},
-/obj/machinery/door/airlock/security/glass{
- name = "Warden's Office";
- req_access_txt = "3"
- },
-/turf/simulated/floor/plasteel,
-/area/security/warden)
+/area/security/processing)
"bJN" = (
-/turf/simulated/wall/r_wall,
-/area/security/armoury)
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/security/processing)
"bJO" = (
/obj/structure/window/reinforced{
dir = 1;
@@ -44327,8 +42339,7 @@
layer = 2.9
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -44350,8 +42361,7 @@
/obj/structure/table/reinforced,
/obj/item/robot_parts/chest,
/obj/item/robot_parts/l_arm{
- pixel_x = -6;
- pixel_y = 0
+ pixel_x = -6
},
/obj/item/robot_parts/r_arm{
pixel_x = 6
@@ -44374,8 +42384,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/greengrid,
/area/turret_protected/ai)
@@ -44384,8 +42393,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/greengrid,
/area/turret_protected/ai)
@@ -44399,8 +42407,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/greengrid,
/area/turret_protected/ai)
@@ -44418,8 +42425,7 @@
dir = 8
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -44458,7 +42464,6 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/turf/simulated/floor/plasteel{
@@ -44487,7 +42492,6 @@
/obj/machinery/door_control{
id = "transitlock";
name = "Transit Tube Lockdown Control";
- pixel_x = 0;
pixel_y = 24;
req_access_txt = "11"
},
@@ -44510,14 +42514,12 @@
dir = 6
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/crew_quarters/chief)
"bKf" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "neutral"
@@ -44525,8 +42527,7 @@
/area/crew_quarters/chief)
"bKg" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
@@ -44542,8 +42543,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -44591,8 +42591,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command/glass{
@@ -44613,8 +42612,7 @@
icon_state = "pipe-c"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -44632,8 +42630,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- level = 1
+ dir = 9
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -44688,8 +42685,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -44734,8 +42730,7 @@
icon_state = "0-4"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
+ dir = 5
},
/turf/simulated/floor/plating,
/area/security/checkpoint/engineering)
@@ -44778,8 +42773,7 @@
"bKx" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -44793,8 +42787,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/storage/tech)
"bKA" = (
@@ -44815,8 +42808,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/storage/tech)
"bKC" = (
@@ -44827,8 +42819,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel,
@@ -44851,7 +42842,7 @@
/obj/machinery/door/poddoor/shutters{
density = 0;
dir = 8;
- icon_state = "shutter0";
+ icon_state = "open";
id_tag = "meetroomshutters";
name = "Meeting Room Shutters";
opacity = 0
@@ -44886,38 +42877,37 @@
},
/area/bridge/meeting_room)
"bKG" = (
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/bridge/meeting_room)
+/turf/simulated/floor/bluegrid,
+/area/turret_protected/ai_upload)
"bKH" = (
/obj/structure/chair/comfy/brown,
/turf/simulated/floor/carpet,
/area/bridge/meeting_room)
"bKI" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/turf/simulated/floor/carpet,
-/area/bridge/meeting_room)
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/turret_protected/ai_upload)
"bKJ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/structure/disposalpipe/segment,
-/obj/structure/chair/comfy/brown,
-/turf/simulated/floor/carpet,
-/area/bridge/meeting_room)
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/turret_protected/ai_upload)
"bKK" = (
/obj/structure/chair/comfy/beige,
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/carpet,
/area/bridge/meeting_room)
@@ -44926,12 +42916,21 @@
/obj/structure/table/wood,
/obj/item/phone,
/obj/item/cigbutt/cigarbutt,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
},
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/carpet,
/area/bridge/meeting_room)
"bKM" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/light_switch{
+ pixel_x = -8;
+ pixel_y = -26
+ },
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
@@ -44944,12 +42943,15 @@
"bKO" = (
/obj/machinery/vending/coffee,
/turf/simulated/floor/plasteel{
+ dir = 5;
icon_state = "dark"
},
/area/bridge/meeting_room)
"bKP" = (
/obj/machinery/porta_turret,
-/turf/simulated/floor/bluegrid,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
/area/turret_protected/ai_upload)
"bKR" = (
/obj/machinery/ai_status_display{
@@ -44970,22 +42972,21 @@
icon_state = "1-2";
tag = ""
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/turret_protected/ai_upload)
"bKU" = (
/obj/machinery/camera/motion{
- c_tag = "AI Upload Chamber";
- network = list("SS13")
+ c_tag = "AI Upload Chamber"
},
/turf/simulated/floor/bluegrid,
/area/turret_protected/ai_upload)
"bKV" = (
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/bluegrid,
@@ -44993,28 +42994,26 @@
"bKX" = (
/obj/machinery/vending/boozeomat,
/turf/simulated/floor/plasteel{
+ dir = 5;
icon_state = "dark"
},
/area/crew_quarters/captain)
"bKY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- icon_state = "wood"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/crew_quarters/captain)
+/turf/simulated/floor/bluegrid,
+/area/turret_protected/ai_upload)
"bKZ" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "wood"
},
/area/crew_quarters/captain)
"bLa" = (
@@ -45030,20 +43029,22 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8;
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "wood"
},
/area/crew_quarters/captain)
"bLb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "wood"
},
/area/crew_quarters/captain)
"bLc" = (
@@ -45059,14 +43060,14 @@
name = "Captain"
},
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ icon_state = "wood"
},
/area/crew_quarters/captain)
"bLe" = (
/obj/structure/table/wood,
/obj/item/storage/fancy/donut_box,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ icon_state = "wood"
},
/area/crew_quarters/captain)
"bLf" = (
@@ -45074,13 +43075,12 @@
dir = 8
},
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ icon_state = "wood"
},
/area/crew_quarters/captain)
"bLg" = (
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/turf/simulated/floor/plasteel{
@@ -45109,7 +43109,6 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/turf/simulated/floor/plasteel{
@@ -45169,101 +43168,63 @@
},
/area/security/detectives_office)
"bLq" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
/area/security/detectives_office)
-"bLr" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/chair/office/dark{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/security/detectives_office)
"bLs" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/table/wood,
/obj/item/clothing/glasses/sunglasses,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "carpet"
},
/area/security/detectives_office)
"bLt" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "carpet"
},
/area/security/detectives_office)
"bLu" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/requests_console{
name = "Detective Requests Console";
pixel_x = 30
},
/obj/machinery/computer/med_data,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "carpet"
},
/area/security/detectives_office)
-"bLv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/wall/r_wall,
-/area/security/detectives_office)
"bLw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/structure/filingcabinet/chestdrawer,
+/obj/machinery/camera{
+ c_tag = "Security Front Desk";
+ dir = 4;
+ network = list("SS13","Security")
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "redcorner"
+ },
+/area/security/brig)
+"bLx" = (
+/obj/machinery/light/small{
dir = 4
},
-/obj/structure/chair/office/dark,
+/obj/machinery/status_display{
+ pixel_x = 32
+ },
/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/security/detectives_office)
-"bLx" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/machinery/light/small{
dir = 4;
- pixel_y = 0
+ icon_state = "redcorner"
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/security/detectives_office)
+/area/security/brig)
"bLy" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/alarm{
dir = 4;
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -45273,8 +43234,10 @@
"bLz" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
+ },
+/obj/machinery/status_display{
+ pixel_x = 32
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -45299,12 +43262,20 @@
network = list("Research","SS13");
pixel_y = -22
},
-/turf/simulated/floor/plasteel,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "redcorner"
+ },
/area/security/brig)
"bLD" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "redcorner"
+ },
/area/security/brig)
"bLE" = (
/obj/structure/cable{
@@ -45323,85 +43294,44 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel,
-/area/security/warden)
+/area/security/processing)
"bLG" = (
-/obj/structure/rack,
-/obj/item/storage/box/handcuffs,
-/obj/item/storage/box/flashbangs,
-/obj/item/clothing/mask/gas/sechailer,
-/obj/item/clothing/mask/gas/sechailer,
-/obj/item/flashlight/seclite,
-/obj/item/flashlight/seclite,
-/obj/item/radio/intercom{
- dir = 1;
- name = "station intercom (General)";
- pixel_x = 28;
- pixel_y = 0
+/turf/simulated/floor/plasteel,
+/area/security/processing)
+"bLH" = (
+/obj/structure/table,
+/obj/item/camera{
+ desc = "A one use - polaroid camera. 30 photos left.";
+ name = "Camera";
+ pictures_left = 30
+ },
+/obj/machinery/camera{
+ c_tag = "Brig Prisoner Processing";
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 5;
+ dir = 4;
icon_state = "red"
},
-/area/security/warden)
-"bLH" = (
-/obj/machinery/flasher/portable,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
- },
-/area/security/armoury)
-"bLI" = (
-/obj/item/radio/intercom{
- pixel_y = 28
- },
-/obj/item/grenade/barrier,
-/obj/item/grenade/barrier,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
- },
-/area/security/armoury)
-"bLJ" = (
-/obj/structure/table/reinforced,
-/obj/machinery/alarm{
- pixel_y = 23
- },
-/obj/item/storage/box/chemimp,
-/obj/item/storage/box/trackimp,
-/obj/item/storage/lockbox/mindshield,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
- },
-/area/security/armoury)
+/area/security/processing)
"bLK" = (
-/obj/item/grenade/barrier,
-/obj/item/grenade/barrier,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/area/security/armoury)
-"bLL" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/box/teargas,
-/obj/item/storage/box/handcuffs,
-/obj/item/storage/box/flashbangs,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
+ dir = 4;
+ icon_state = "red"
},
-/area/security/armoury)
+/area/security/brig)
"bLM" = (
/obj/structure/window/reinforced{
dir = 1;
@@ -45414,8 +43344,7 @@
/area/space/nearstation)
"bLN" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/machinery/light,
/turf/simulated/floor/plasteel{
@@ -45424,8 +43353,7 @@
/area/turret_protected/ai)
"bLO" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/firealarm{
dir = 1;
@@ -45437,14 +43365,12 @@
/area/turret_protected/ai)
"bLP" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -45480,8 +43406,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -45498,8 +43423,7 @@
icon_state = "0-4"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -45514,12 +43438,10 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/external{
@@ -45539,8 +43461,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
@@ -45562,11 +43483,6 @@
},
/turf/simulated/floor/plasteel,
/area/engine/break_room)
-"bLY" = (
-/obj/machinery/light/small,
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/security/warden)
"bLZ" = (
/obj/structure/table/reinforced,
/obj/item/stack/sheet/glass/fifty,
@@ -45576,7 +43492,6 @@
},
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/obj/effect/decal/warning_stripes/yellow/hollow,
@@ -45610,13 +43525,9 @@
/area/hallway/primary/fore)
"bMc" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
/obj/machinery/camera{
c_tag = "Primary Security Hallway North";
dir = 4;
- network = list("SS13");
pixel_y = -22
},
/turf/simulated/floor/plasteel{
@@ -45661,8 +43572,7 @@
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- level = 1
+ dir = 9
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -45671,9 +43581,7 @@
"bMf" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/light/small{
- dir = 4;
- icon_state = "bulb1";
- tag = "icon-bulb1 (EAST)"
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -45777,7 +43685,6 @@
/obj/item/pen,
/obj/machinery/light,
/obj/machinery/light_switch{
- pixel_x = 0;
pixel_y = -26
},
/turf/simulated/floor/plasteel{
@@ -45849,9 +43756,7 @@
/area/security/checkpoint/engineering)
"bMA" = (
/obj/machinery/light/small{
- dir = 4;
- icon_state = "bulb1";
- tag = "icon-bulb1 (EAST)"
+ dir = 4
},
/obj/structure/closet/secure_closet/brig{
id = "engcell"
@@ -45870,16 +43775,14 @@
dir = 8
},
/obj/structure/extinguisher_cabinet{
- pixel_x = -28;
- pixel_y = 0
+ pixel_x = -28
},
/obj/item/clothing/gloves/color/yellow,
/obj/item/storage/toolbox/electrical,
/obj/item/multitool,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/storage/tech)
"bMD" = (
@@ -45892,8 +43795,7 @@
"bME" = (
/obj/structure/table/reinforced,
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/item/firelock_electronics,
/obj/item/firelock_electronics,
@@ -45902,8 +43804,7 @@
/obj/item/circuitboard/sleeper,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/storage/tech)
"bMF" = (
@@ -45954,9 +43855,6 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/door/firedoor,
/obj/structure/sign/poster/official/nanotrasen_logo{
pixel_y = -32
@@ -45999,7 +43897,7 @@
},
/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ icon_state = "wood"
},
/area/bridge/meeting_room)
"bMO" = (
@@ -46011,6 +43909,9 @@
},
/obj/structure/table/wood,
/obj/item/folder/blue,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/carpet,
/area/bridge/meeting_room)
"bMP" = (
@@ -46023,23 +43924,22 @@
/obj/structure/chair/comfy/brown{
dir = 4
},
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
/turf/simulated/floor/carpet,
/area/bridge/meeting_room)
"bMQ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/disposalpipe/segment,
/obj/structure/table/wood,
/obj/item/folder/yellow,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/carpet,
/area/bridge/meeting_room)
"bMR" = (
@@ -46058,36 +43958,47 @@
icon_state = "1-4";
tag = ""
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/carpet,
/area/bridge/meeting_room)
"bMS" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/structure/table/wood,
/obj/item/storage/fancy/donut_box,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4;
+ initialize_directions = 11
},
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/carpet,
/area/bridge/meeting_room)
"bMT" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
/area/bridge/meeting_room)
"bMU" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
/turf/simulated/floor/plasteel{
icon_state = "wood"
@@ -46095,11 +44006,11 @@
/area/bridge/meeting_room)
"bMV" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/machinery/vending/cigarette,
/turf/simulated/floor/plasteel{
+ dir = 5;
icon_state = "dark"
},
/area/bridge/meeting_room)
@@ -46130,19 +44041,14 @@
tag = ""
},
/obj/structure/table/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/turret_protected/ai_upload)
"bNa" = (
-/obj/item/aiModule/protectStation{
- pixel_x = -2;
- pixel_y = 2
- },
-/obj/item/aiModule/nanotrasen{
- pixel_x = 2;
- pixel_y = -2
- },
+/obj/item/aiModule/nanotrasen,
/obj/structure/table/glass,
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -46151,6 +44057,7 @@
"bNb" = (
/obj/machinery/vending/cigarette,
/turf/simulated/floor/plasteel{
+ dir = 5;
icon_state = "dark"
},
/area/crew_quarters/captain)
@@ -46169,23 +44076,9 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cult";
- tag = "icon-cult"
- },
-/area/crew_quarters/captain)
-"bNd" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "wood"
},
/area/crew_quarters/captain)
"bNe" = (
@@ -46195,7 +44088,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
@@ -46211,7 +44103,7 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ icon_state = "wood"
},
/area/crew_quarters/captain)
"bNg" = (
@@ -46225,17 +44117,15 @@
/obj/item/clothing/mask/cigarette/cigar,
/obj/item/clothing/mask/cigarette/cigar,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ icon_state = "wood"
},
/area/crew_quarters/captain)
"bNh" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/structure/extinguisher_cabinet{
- pixel_x = 28;
- pixel_y = 0
+ pixel_x = 28
},
/turf/simulated/floor/plasteel{
icon_state = "wood"
@@ -46247,8 +44137,7 @@
/obj/item/clothing/suit/storage/hazardvest,
/obj/item/multitool,
/obj/structure/extinguisher_cabinet{
- pixel_x = -28;
- pixel_y = 0
+ pixel_x = -28
},
/obj/machinery/light{
dir = 8
@@ -46264,7 +44153,9 @@
d2 = 4;
icon_state = "1-4"
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -46277,14 +44168,20 @@
icon_state = "1-8"
},
/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/storage/tools)
"bNl" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -46292,19 +44189,13 @@
},
/area/storage/tools)
"bNm" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/newscaster{
- pixel_x = 32;
- pixel_y = 0
- },
/obj/machinery/camera{
c_tag = "Security Hallway South";
dir = 8;
network = list("SS13","Security")
},
/turf/simulated/floor/plasteel{
- dir = 2;
+ dir = 4;
icon_state = "redcorner"
},
/area/security/brig)
@@ -46326,24 +44217,6 @@
icon_state = "dark"
},
/area/security/detectives_office)
-"bNp" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/security/detectives_office)
-"bNq" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/security/detectives_office)
"bNr" = (
/obj/structure/cable{
d1 = 1;
@@ -46364,7 +44237,6 @@
/obj/item/folder/red,
/obj/item/hand_labeler,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "carpet"
},
/area/security/detectives_office)
@@ -46377,102 +44249,51 @@
name = "Detective"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "carpet"
},
/area/security/detectives_office)
"bNu" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/machinery/status_display{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/machinery/computer/secure_data,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "carpet"
},
/area/security/detectives_office)
"bNv" = (
-/obj/structure/table/wood,
-/obj/item/clipboard,
-/obj/item/folder/red,
-/obj/item/pen,
+/obj/machinery/computer/secure_data,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
+ dir = 1;
+ icon_state = "redcorner"
},
-/area/security/detectives_office)
-"bNw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/landmark/start{
- name = "Detective"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/security/detectives_office)
+/area/security/brig)
"bNx" = (
/obj/effect/landmark{
name = "lightsout"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/hallway/primary/starboard)
"bNy" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
+/obj/effect/decal/warning_stripes/east,
+/obj/machinery/alarm{
+ pixel_y = 23
},
+/turf/simulated/floor/plasteel,
+/area/security/brig)
+"bNz" = (
+/obj/effect/decal/warning_stripes/yellow,
/obj/machinery/light/small{
dir = 1
},
-/obj/structure/closet/secure_closet/brig{
- id = "Cell 5";
- name = "Cell 1 Locker"
- },
-/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "red"
- },
-/area/security/brig)
-"bNz" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- external_pressure_bound = 101;
- on = 1;
- pressure_checks = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "red"
- },
-/area/security/brig)
-"bNA" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
-/obj/machinery/door_timer/cell_5{
- dir = 8;
- layer = 4;
- name = "Cell 1";
- pixel_x = -32;
- pixel_y = 0
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "redcorner"
- },
+/turf/simulated/floor/plasteel,
/area/security/brig)
"bNB" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -46488,26 +44309,28 @@
/turf/simulated/floor/plasteel,
/area/maintenance/starboard)
"bND" = (
-/obj/structure/chair/office/dark{
- dir = 8
+/obj/structure/chair{
+ dir = 1
},
-/obj/effect/landmark/start{
- name = "Warden"
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "red"
},
-/area/security/warden)
+/area/security/processing)
"bNE" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/turf/simulated/floor/plasteel,
-/area/security/warden)
+/area/security/processing)
"bNF" = (
/obj/machinery/computer/secure_data,
/turf/simulated/floor/plasteel{
@@ -46516,13 +44339,13 @@
},
/area/security/warden)
"bNG" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+/obj/structure/chair{
+ dir = 4
},
-/turf/simulated/floor/plating,
-/area/security/armoury)
+/turf/simulated/floor/plasteel{
+ icon_state = "red"
+ },
+/area/security/processing)
"bNH" = (
/obj/structure/cable{
d1 = 1;
@@ -46530,55 +44353,48 @@
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment,
/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/table/reinforced,
-/obj/item/folder/red,
-/obj/item/pen,
-/obj/machinery/door/window/brigdoor{
- dir = 8;
- name = "Warden's Desk";
- req_access_txt = "3"
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
},
-/obj/machinery/door/window/brigdoor{
- dir = 4;
- name = "Warden's Desk";
- req_access_txt = "3"
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
- },
-/area/security/warden)
-"bNJ" = (
-/obj/effect/decal/warning_stripes/northwest,
-/turf/simulated/floor/plasteel,
-/area/security/armoury)
+/turf/simulated/floor/plating,
+/area/security/processing)
"bNK" = (
-/obj/structure/closet/secure_closet,
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
+/obj/effect/spawner/window/reinforced,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Secure Gate";
+ name = "Security Blast Door";
+ opacity = 0
},
-/area/security/armoury)
+/turf/simulated/floor/plating,
+/area/security/brig)
"bNL" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10;
- initialize_directions = 10;
- level = 1
+ initialize_directions = 10
},
/obj/machinery/camera{
c_tag = "AI Chamber South";
@@ -46605,8 +44421,7 @@
/obj/machinery/door/firedoor,
/obj/machinery/flasher{
id = null;
- pixel_x = -24;
- pixel_y = 0
+ pixel_x = -24
},
/obj/machinery/door/poddoor{
density = 0;
@@ -46670,23 +44485,10 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/engineering/glass{
name = "Engineering";
- req_access_txt = "10";
- req_one_access_txt = "0"
+ req_access_txt = "10"
},
/turf/simulated/floor/plasteel,
/area/engine/break_room)
-"bNV" = (
-/obj/structure/closet/secure_closet,
-/obj/machinery/camera{
- c_tag = "Evidence Storage";
- dir = 1;
- network = list("SS13","Security")
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
- },
-/area/security/warden)
"bNW" = (
/obj/machinery/portable_atmospherics/canister/air,
/obj/machinery/atmospherics/unary/portables_connector{
@@ -46723,8 +44525,7 @@
department = "Chief Engineer's Desk";
departmentType = 7;
name = "Chief Engineer Requests Console";
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -46755,19 +44556,10 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/flasher_button{
- id = "Cell 3";
- pixel_x = 0;
- pixel_y = 27
- },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "redcorner"
},
-/area/security/prison)
+/area/security/permabrig)
"bOd" = (
/obj/structure/cable{
d1 = 4;
@@ -46795,8 +44587,7 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -46841,7 +44632,6 @@
/area/security/checkpoint/engineering)
"bOl" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "red"
},
/area/security/checkpoint/engineering)
@@ -46855,8 +44645,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/firealarm{
dir = 8;
- pixel_x = -24;
- pixel_y = 0
+ pixel_x = -24
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -46882,8 +44671,7 @@
"bOp" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -46897,8 +44685,7 @@
/obj/item/multitool,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/storage/tech)
"bOr" = (
@@ -46962,8 +44749,7 @@
/obj/item/flashlight,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/storage/tech)
"bOx" = (
@@ -47004,9 +44790,9 @@
"bOD" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
@@ -47034,18 +44820,25 @@
/turf/simulated/floor/carpet,
/area/bridge/meeting_room)
"bOH" = (
+/obj/machinery/door/airlock/command{
+ name = "Head of Personnel";
+ req_access = null;
+ req_access_txt = "57"
+ },
+/obj/machinery/door/firedoor,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
tag = ""
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
-/obj/structure/chair/comfy/beige{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ icon_state = "wood"
},
-/turf/simulated/floor/carpet,
-/area/bridge/meeting_room)
+/area/crew_quarters/heads/hop)
"bOI" = (
/obj/structure/chair/comfy/brown{
dir = 1
@@ -47055,66 +44848,61 @@
"bOJ" = (
/obj/structure/table/wood,
/obj/item/paper_bin,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11
- },
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
},
+/obj/structure/disposalpipe/segment,
+/obj/item/pen,
+/turf/simulated/floor/carpet,
/area/bridge/meeting_room)
"bOK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/newscaster{
pixel_x = 32;
pixel_y = -32
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
/area/bridge/meeting_room)
"bOL" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
-/area/bridge/meeting_room)
+/area/crew_quarters/heads/hop)
"bOM" = (
/obj/machinery/computer/account_database,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/turf/simulated/floor/plasteel{
+ dir = 5;
icon_state = "dark"
},
/area/bridge/meeting_room)
-"bON" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/wall/r_wall,
-/area/turret_protected/ai_upload)
"bOO" = (
-/obj/item/aiModule/quarantine,
+/obj/item/aiModule/crewsimov,
/obj/structure/table/glass,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/turret_protected/ai_upload)
"bOP" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
},
/turf/simulated/floor/bluegrid,
/area/turret_protected/ai_upload)
@@ -47126,67 +44914,63 @@
icon_state = "1-2";
tag = ""
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/turret_protected/ai_upload)
"bOR" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
+ dir = 8
},
/turf/simulated/floor/bluegrid,
/area/turret_protected/ai_upload)
"bOS" = (
-/obj/item/aiModule/freeform,
+/obj/item/aiModule/corp,
/obj/structure/table/glass,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/turret_protected/ai_upload)
"bOT" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/wall/r_wall,
+/turf/simulated/wall,
/area/turret_protected/ai_upload)
"bOU" = (
/obj/structure/bed/dogbed{
name = "fox box"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/mob/living/simple_animal/pet/dog/fox/Renault,
/turf/simulated/floor/plasteel{
+ dir = 5;
icon_state = "dark"
},
/area/crew_quarters/captain)
"bOV" = (
/obj/item/radio/intercom{
dir = 1;
- name = "station intercom (General)";
pixel_y = -28
},
/obj/machinery/newscaster{
pixel_x = -32;
pixel_y = -32
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
/area/crew_quarters/captain)
"bOW" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- icon_state = "wood"
+ dir = 8;
+ icon_state = "neutralcorner"
},
-/area/crew_quarters/captain)
+/area/hallway/primary/central)
"bOX" = (
/obj/structure/cable{
d1 = 1;
@@ -47195,47 +44979,35 @@
tag = ""
},
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/chair/comfy/brown,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
/area/crew_quarters/captain)
"bOY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
-/turf/simulated/floor/plasteel{
- icon_state = "wood"
- },
-/area/crew_quarters/captain)
+/turf/simulated/floor/carpet,
+/area/crew_quarters/heads/hop)
"bOZ" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/turf/simulated/floor/plasteel{
- icon_state = "wood"
- },
-/area/crew_quarters/captain)
+/turf/simulated/wall,
+/area/ntrep)
"bPa" = (
/obj/structure/cable,
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
@@ -47246,8 +45018,7 @@
"bPb" = (
/obj/machinery/camera{
c_tag = "Captain's Room";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/turf/simulated/floor/plasteel{
icon_state = "wood"
@@ -47257,9 +45028,9 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutralcorner"
@@ -47276,7 +45047,6 @@
},
/area/storage/tools)
"bPe" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/table,
/obj/item/stack/sheet/metal/fifty{
pixel_x = -2;
@@ -47290,15 +45060,15 @@
/area/storage/tools)
"bPf" = (
/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/storage/tools)
"bPg" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/table,
/obj/item/stack/sheet/glass/fifty,
/obj/item/storage/box/lights/mixed,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "yellowcorner"
},
/area/storage/tools)
@@ -47318,9 +45088,7 @@
"bPi" = (
/obj/structure/morgue,
/obj/machinery/light/small{
- dir = 8;
- icon_state = "bulb1";
- tag = "icon-bulb1 (WEST)"
+ dir = 8
},
/obj/effect/landmark{
name = "revenantspawn"
@@ -47350,14 +45118,16 @@
/area/security/detectives_office)
"bPl" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/security/detectives_office)
"bPm" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
@@ -47370,6 +45140,9 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
@@ -47379,7 +45152,6 @@
/obj/item/paper_bin,
/obj/item/pen,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "carpet"
},
/area/security/detectives_office)
@@ -47388,7 +45160,6 @@
/obj/structure/table/wood,
/obj/machinery/computer/security/wooden_tv,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "carpet"
},
/area/security/detectives_office)
@@ -47400,27 +45171,28 @@
/obj/item/flashlight/lamp,
/obj/item/reagent_containers/food/drinks/flask/detflask,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "carpet"
},
/area/security/detectives_office)
"bPr" = (
-/obj/structure/chair/office/dark{
- dir = 1
+/obj/machinery/computer/security{
+ network = list("SS13","Mining Outpost")
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 1;
+ icon_state = "redcorner"
},
-/area/security/detectives_office)
+/area/security/brig)
"bPs" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
+/obj/effect/landmark/start{
+ name = "Security Officer"
},
-/obj/item/twohanded/required/kirbyplants,
+/obj/structure/chair/office/dark,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 4;
+ icon_state = "redcorner"
},
-/area/security/detectives_office)
+/area/security/brig)
"bPt" = (
/obj/structure/cable{
d1 = 4;
@@ -47429,26 +45201,11 @@
tag = ""
},
/obj/structure/cable{
- d1 = 2;
d2 = 4;
- icon_state = "2-4";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/door/window/brigdoor{
- dir = 8;
- id = "Cell 5";
- name = "Cell 1";
- req_access_txt = "2"
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "red"
+ icon_state = "0-4"
},
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
/area/security/brig)
"bPu" = (
/obj/structure/cable{
@@ -47468,89 +45225,93 @@
"bPv" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plasteel,
+/area/security/processing)
+"bPw" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/structure/cable{
d1 = 2;
d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
+ icon_state = "2-8"
},
/turf/simulated/floor/plasteel,
-/area/security/warden)
-"bPw" = (
+/area/security/processing)
+"bPx" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plasteel,
+/area/security/processing)
+"bPy" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/security/brig)
+"bPz" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/security/brig)
+"bPA" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/security/brig)
+"bPB" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
tag = ""
},
-/obj/machinery/computer/security{
- network = list("SS13","Mining Outpost")
- },
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
- },
-/area/security/warden)
-"bPx" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
+/obj/machinery/door/airlock/security/glass{
+ name = "Security Office";
+ req_access_txt = "63"
},
/obj/structure/cable{
- d1 = 1;
+ d1 = 4;
d2 = 8;
- icon_state = "1-8"
- },
-/turf/simulated/floor/plating,
-/area/security/armoury)
-"bPy" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plasteel,
-/area/security/armoury)
-"bPz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/rack,
-/obj/item/gun/projectile/shotgun/riot{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/gun/projectile/shotgun/riot,
-/obj/item/gun/projectile/shotgun/riot{
- pixel_x = 3;
- pixel_y = -3
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel,
-/area/security/armoury)
-"bPA" = (
-/obj/effect/decal/warning_stripes/northeast,
-/turf/simulated/floor/plasteel,
-/area/security/armoury)
-"bPB" = (
-/obj/structure/rack,
-/obj/item/clothing/suit/armor/vest,
-/obj/item/clothing/suit/armor/vest,
-/obj/item/clothing/suit/armor/vest,
-/obj/item/clothing/head/helmet,
-/obj/item/clothing/head/helmet,
-/obj/item/clothing/head/helmet,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
- },
-/area/security/armoury)
+/area/security/seceqstorage)
"bPC" = (
/obj/structure/lattice,
/obj/structure/window/reinforced,
@@ -47590,9 +45351,7 @@
tag = ""
},
/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
- frequency = 1379;
id_tag = "station_ai_airlock";
- pixel_x = 0;
pixel_y = -57;
req_access_txt = "10;13";
tag_airpump = "station_ai_pump";
@@ -47601,9 +45360,7 @@
tag_interior_door = "station_ai_inner"
},
/obj/machinery/airlock_sensor{
- frequency = 1379;
id_tag = "station_ai_sensor";
- pixel_x = 0;
pixel_y = -66
},
/obj/machinery/atmospherics/unary/vent_pump/high_volume{
@@ -47632,8 +45389,7 @@
req_access_txt = "10;13"
},
/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 6
@@ -47680,13 +45436,11 @@
/area/turret_protected/aisat)
"bPK" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/warning_stripes/north,
/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 9;
- icon_state = "intact"
+ dir = 9
},
/obj/machinery/access_button{
command = "cycle_interior";
@@ -47739,8 +45493,7 @@
"bPP" = (
/obj/structure/cable{
d2 = 2;
- icon_state = "0-2";
- pixel_y = 0
+ icon_state = "0-2"
},
/obj/structure/sign/electricshock{
pixel_y = 32
@@ -47771,16 +45524,14 @@
/obj/structure/lattice,
/obj/structure/window/reinforced,
/obj/structure/transit_tube{
- icon_state = "D-SE";
- tag = "icon-D-SE"
+ icon_state = "D-SE"
},
/turf/space,
/area/space/nearstation)
"bPU" = (
/obj/structure/lattice,
/obj/structure/transit_tube{
- icon_state = "E-SW";
- tag = "icon-E-SW"
+ icon_state = "E-SW"
},
/turf/space,
/area/space/nearstation)
@@ -47792,16 +45543,14 @@
"bPW" = (
/obj/structure/lattice,
/obj/structure/transit_tube{
- icon_state = "W-SE";
- tag = "icon-W-SE"
+ icon_state = "W-SE"
},
/turf/space,
/area/space/nearstation)
"bPX" = (
/obj/structure/lattice,
/obj/structure/transit_tube{
- icon_state = "D-SW";
- tag = "icon-D-SW"
+ icon_state = "D-SW"
},
/turf/space,
/area/space/nearstation)
@@ -47815,8 +45564,7 @@
"bPZ" = (
/obj/structure/table/reinforced,
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/item/radio,
/obj/item/radio,
@@ -47826,8 +45574,7 @@
pixel_y = -24
},
/obj/machinery/light_switch{
- pixel_x = 24;
- pixel_y = 0
+ pixel_x = 24
},
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
@@ -47862,13 +45609,11 @@
/area/quartermaster/office)
"bQc" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/table/reinforced,
/obj/effect/decal/warning_stripes/yellow,
/obj/machinery/door/window/eastleft{
- dir = 4;
name = "Kitchen Desk";
req_access_txt = "28"
},
@@ -47911,8 +45656,7 @@
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- level = 1
+ dir = 9
},
/obj/structure/disposalpipe/segment{
dir = 8;
@@ -47930,7 +45674,7 @@
},
/obj/structure/table/reinforced,
/obj/item/clipboard,
-/obj/item/toy/figure/ce,
+/obj/item/toy/figure/crew/ce,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -47992,18 +45736,51 @@
},
/area/crew_quarters/chief)
"bQn" = (
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
-/area/security/armoury)
+/obj/machinery/door/airlock/security/glass{
+ id_tag = "Brig";
+ name = "Prisoner Processing";
+ req_access_txt = "63"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/processing)
"bQo" = (
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/security/armoury)
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/security/brig)
"bQp" = (
/obj/structure/disposalpipe/junction{
dir = 2;
- icon_state = "pipe-j2";
- tag = "icon-pipe-j2"
+ icon_state = "pipe-j2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/item/twohanded/required/kirbyplants,
@@ -48028,8 +45805,7 @@
},
/obj/structure/closet/radiation,
/obj/structure/extinguisher_cabinet{
- pixel_x = -28;
- pixel_y = 0
+ pixel_x = -28
},
/obj/effect/decal/warning_stripes/northwest,
/turf/simulated/floor/plasteel,
@@ -48073,9 +45849,7 @@
req_access_txt = "63"
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "redfull"
},
/area/security/checkpoint/engineering)
"bQv" = (
@@ -48090,8 +45864,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/camera{
c_tag = "Port Hallway South";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -48112,9 +45885,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{
@@ -48139,7 +45909,6 @@
pixel_y = 8
},
/obj/structure/sign/directions/science{
- dir = 2;
pixel_y = 1
},
/obj/structure/sign/directions/evac{
@@ -48179,12 +45948,11 @@
},
/area/bridge/meeting_room)
"bQF" = (
-/obj/structure/bookcase,
/obj/item/radio/intercom{
dir = 1;
- name = "station intercom (General)";
pixel_y = -28
},
+/obj/machinery/slot_machine,
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
@@ -48199,19 +45967,22 @@
"bQH" = (
/obj/machinery/alarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/obj/machinery/camera{
c_tag = "Command Meeting Room";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
/area/bridge/meeting_room)
"bQI" = (
+/turf/simulated/wall,
+/area/blueshield)
+"bQJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -48219,22 +45990,6 @@
tag = ""
},
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/turf/simulated/floor/plasteel{
- icon_state = "wood"
- },
-/area/bridge/meeting_room)
-"bQJ" = (
-/obj/machinery/light_switch{
- pixel_x = -8;
- pixel_y = -26
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- level = 1
- },
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
@@ -48242,7 +45997,6 @@
"bQK" = (
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/obj/machinery/porta_turret{
@@ -48286,7 +46040,7 @@
/obj/machinery/light{
dir = 8
},
-/turf/simulated/floor/carpet,
+/turf/simulated/floor/carpet/black,
/area/crew_quarters/captain)
"bQP" = (
/obj/structure/table/wood,
@@ -48295,7 +46049,9 @@
layer = 2.9
},
/obj/item/paper_bin,
-/turf/simulated/floor/carpet,
+/obj/item/melee/chainofcommand,
+/obj/item/pen,
+/turf/simulated/floor/carpet/black,
/area/crew_quarters/captain)
"bQQ" = (
/obj/structure/cable{
@@ -48314,7 +46070,10 @@
req_access_txt = "20"
},
/obj/item/folder/blue,
-/turf/simulated/floor/carpet,
+/obj/item/stamp/captain,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/carpet/black,
/area/crew_quarters/captain)
"bQR" = (
/obj/machinery/door/window{
@@ -48324,11 +46083,7 @@
name = "Captain's Desk Door";
req_access_txt = "20"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
+/turf/simulated/floor/carpet/black,
/area/crew_quarters/captain)
"bQS" = (
/obj/structure/table/wood,
@@ -48338,13 +46093,13 @@
},
/obj/item/storage/secure/briefcase,
/obj/item/storage/lockbox/medal,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
+/turf/simulated/floor/carpet/black,
/area/crew_quarters/captain)
"bQT" = (
/obj/structure/table/wood,
-/obj/item/camera,
+/obj/machinery/photocopier/faxmachine/longrange{
+ department = "Captain's Office"
+ },
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
@@ -48362,7 +46117,6 @@
pixel_y = 8
},
/obj/structure/sign/directions/science{
- dir = 2;
pixel_y = 1
},
/obj/structure/sign/directions/evac{
@@ -48372,7 +46126,6 @@
/area/storage/tools)
"bQW" = (
/obj/effect/spawner/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
/area/storage/tools)
"bQX" = (
@@ -48381,22 +46134,10 @@
name = "Auxiliary Tool Storage";
req_access_txt = "12"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/storage/tools)
-"bQY" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plating,
-/area/storage/tools)
-"bQZ" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plating,
-/area/security/detectives_office)
"bRa" = (
/obj/structure/cable{
d1 = 1;
@@ -48421,6 +46162,7 @@
name = "Detective";
req_access_txt = "4"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "red"
@@ -48451,7 +46193,6 @@
/area/security/detectives_office)
"bRd" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/firealarm{
dir = 8;
pixel_x = -24
@@ -48462,48 +46203,69 @@
},
/area/hallway/primary/starboard)
"bRe" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/obj/machinery/flasher{
- id = "Cell 5";
- pixel_x = 0;
- pixel_y = -28
- },
-/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "red"
- },
-/area/security/brig)
-"bRf" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/structure/bed,
-/obj/item/bedsheet/red,
-/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "red"
- },
-/area/security/brig)
-"bRg" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable,
+/obj/effect/decal/warning_stripes/east,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/plating,
-/area/security/brig)
-"bRh" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/turf/simulated/floor/plasteel,
/area/security/brig)
+"bRf" = (
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/light/small,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel,
+/area/security/brig)
+"bRg" = (
+/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";
+ id_tag = "Secure Gate";
+ name = "Security Blast Door";
+ opacity = 0
+ },
+/obj/machinery/door/airlock/security{
+ id_tag = "BrigEast";
+ name = "Brig";
+ req_access_txt = "63"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel,
+/area/security/brig)
+"bRh" = (
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "redcorner"
+ },
+/area/security/brig)
"bRi" = (
/obj/structure/cable{
d1 = 1;
@@ -48511,56 +46273,52 @@
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment,
/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
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/security/brig)
"bRj" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11;
- level = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "redcorner"
},
-/turf/simulated/floor/plasteel,
/area/security/brig)
"bRk" = (
-/obj/structure/table/reinforced,
-/obj/machinery/alarm{
- dir = 4;
- pixel_x = -23;
- pixel_y = 0
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/machinery/light{
- dir = 8
- },
-/obj/item/clipboard,
-/obj/item/toy/figure/warden,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "red"
},
-/area/security/warden)
+/area/security/processing)
"bRl" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel,
-/area/security/warden)
+/area/security/processing)
"bRm" = (
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
dir = 9
@@ -48569,47 +46327,37 @@
/turf/space,
/area/space/nearstation)
"bRn" = (
-/obj/structure/rack,
-/obj/item/ammo_box/shotgun/rubbershot,
-/obj/item/ammo_box/shotgun/rubbershot,
-/obj/item/ammo_box/shotgun/rubbershot,
-/obj/item/ammo_box/shotgun/rubbershot,
-/obj/item/ammo_box/shotgun/rubbershot,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/security/armoury)
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/security/processing)
"bRo" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/rack,
-/obj/item/gun/energy/laser{
- pixel_x = -3;
- pixel_y = 3
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/item/gun/energy/laser,
-/obj/item/gun/energy/laser{
- pixel_x = 3;
- pixel_y = -3
- },
-/turf/simulated/floor/plasteel,
-/area/security/armoury)
-"bRp" = (
-/obj/structure/rack,
-/obj/item/clothing/suit/armor/bulletproof,
-/obj/item/clothing/suit/armor/bulletproof,
-/obj/item/clothing/suit/armor/bulletproof,
-/obj/item/clothing/head/helmet/alt,
-/obj/item/clothing/head/helmet/alt,
-/obj/item/clothing/head/helmet/alt,
-/obj/item/storage/secure/safe{
- pixel_x = 32
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault"
+ icon_state = "red"
},
-/area/security/armoury)
+/area/security/brig)
+"bRp" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/spawner/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/security/seceqstorage)
"bRq" = (
/obj/structure/disposalpipe/segment{
dir = 4;
@@ -48635,8 +46383,7 @@
layer = 2.9
},
/obj/machinery/light/small{
- dir = 4;
- pixel_y = 0
+ dir = 4
},
/obj/machinery/firealarm{
dir = 4;
@@ -48688,15 +46435,13 @@
/area/construction/hallway)
"bRw" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/turf/simulated/wall/r_wall,
/area/engine/break_room)
"bRx" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/structure/showcase{
density = 0;
@@ -48729,8 +46474,7 @@
/area/turret_protected/aisat)
"bRz" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "grimy"
@@ -48744,8 +46488,7 @@
/area/turret_protected/aisat)
"bRB" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/ai_slipper,
/turf/simulated/floor/plasteel{
@@ -48755,8 +46498,7 @@
"bRC" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "grimy"
@@ -48765,8 +46507,7 @@
"bRD" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
icon_state = "grimy"
@@ -48774,8 +46515,7 @@
/area/turret_protected/aisat)
"bRE" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/showcase{
density = 0;
@@ -48792,8 +46532,7 @@
/area/turret_protected/aisat)
"bRF" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/wall/r_wall,
/area/turret_protected/aisat)
@@ -48807,8 +46546,7 @@
/area/space/nearstation)
"bRH" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -48817,8 +46555,7 @@
"bRI" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -48830,8 +46567,7 @@
layer = 2.9
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/light/small{
dir = 8
@@ -48843,8 +46579,7 @@
"bRK" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -48856,8 +46591,7 @@
layer = 2.9
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -48869,8 +46603,7 @@
layer = 2.9
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/sign/vacuum{
pixel_y = 32
@@ -48889,12 +46622,10 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10;
- initialize_directions = 10;
- level = 1
+ initialize_directions = 10
},
/obj/structure/transit_tube{
- icon_state = "S-NE";
- tag = "icon-S-NE"
+ icon_state = "S-NE"
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -48905,15 +46636,13 @@
dir = 8
},
/obj/structure/transit_tube{
- icon_state = "D-NW";
- tag = "icon-D-NW"
+ icon_state = "D-NW"
},
/turf/space,
/area/space/nearstation)
"bRP" = (
/obj/structure/transit_tube{
- icon_state = "D-NE";
- tag = "icon-D-NE"
+ icon_state = "D-NE"
},
/turf/space,
/area/space/nearstation)
@@ -48926,8 +46655,7 @@
/area/space/nearstation)
"bRR" = (
/obj/structure/transit_tube{
- icon_state = "D-SW";
- tag = "icon-D-SW"
+ icon_state = "D-SW"
},
/turf/space,
/area/space/nearstation)
@@ -49025,8 +46753,7 @@
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -49051,8 +46778,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command/glass{
@@ -49071,8 +46797,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -49086,8 +46811,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "grimy"
@@ -49107,8 +46831,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/landmark/start{
name = "Chief Engineer"
@@ -49139,6 +46862,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
@@ -49183,8 +46907,7 @@
icon_state = "0-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plating,
/area/engine/engineering)
@@ -49196,8 +46919,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
@@ -49211,13 +46933,11 @@
icon_state = "0-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/turf/simulated/floor/plasteel{
@@ -49227,8 +46947,7 @@
/area/security/checkpoint/engineering)
"bSm" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -49245,8 +46964,7 @@
/obj/machinery/atmospherics/unary/vent_pump{
dir = 8;
external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
+ on = 1
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -49289,8 +47007,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -49300,8 +47017,7 @@
"bSr" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/structure/cable{
d1 = 1;
@@ -49320,8 +47036,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -49336,8 +47051,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -49352,8 +47066,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
@@ -49387,8 +47100,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -49421,8 +47133,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
@@ -49431,11 +47142,9 @@
},
/area/hallway/primary/port)
"bSz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
@@ -49447,8 +47156,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -49459,8 +47167,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/camera{
c_tag = "Fore Hallway South";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -49479,28 +47186,17 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/hallway/primary/central)
"bSD" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
/obj/machinery/camera{
c_tag = "Central Ring Hallway West";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
@@ -49508,49 +47204,26 @@
/turf/simulated/wall/r_wall,
/area/crew_quarters/heads/hop)
"bSF" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ icon_state = "neutralcorner"
+ },
+/area/hallway/primary/central)
+"bSG" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/command{
- name = "Head of Personnel";
- req_access = null;
- req_access_txt = "57"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "wood"
- },
-/area/crew_quarters/heads/hop)
-"bSG" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/wall/r_wall,
+/turf/simulated/floor/carpet,
/area/crew_quarters/heads/hop)
"bSH" = (
-/obj/machinery/door/window{
- base_state = "right";
- dir = 4;
- icon_state = "right";
- name = "Core Modules";
- req_access_txt = "20"
- },
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/item/aiModule/crewsimov,
-/obj/item/aiModule/freeformcore,
-/obj/item/aiModule/corp,
-/obj/item/aiModule/paladin,
-/obj/item/aiModule/robocop,
-/obj/structure/table/glass,
+/obj/machinery/smartfridge/secure/circuits/aiupload/experimental,
/turf/simulated/floor/bluegrid,
/area/turret_protected/ai_upload)
"bSI" = (
@@ -49567,7 +47240,6 @@
/obj/machinery/computer/aiupload,
/obj/machinery/flasher{
id = "AI";
- pixel_x = 0;
pixel_y = -21
},
/turf/simulated/floor/bluegrid,
@@ -49576,7 +47248,6 @@
/obj/structure/cable,
/obj/machinery/power/apc{
cell_type = 5000;
- dir = 2;
name = "south bump Important Area";
pixel_y = -24
},
@@ -49585,7 +47256,6 @@
"bSL" = (
/obj/machinery/computer/borgupload,
/obj/item/radio/intercom/private{
- pixel_x = 0;
pixel_y = -28
},
/turf/simulated/floor/bluegrid,
@@ -49597,25 +47267,7 @@
},
/area/turret_protected/ai_upload)
"bSN" = (
-/obj/machinery/door/window{
- base_state = "left";
- dir = 8;
- icon_state = "left";
- name = "High-Risk Modules";
- req_access_txt = "20"
- },
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/item/aiModule/oxygen,
-/obj/item/aiModule/oneCrewMember,
-/obj/item/aiModule/purge,
-/obj/item/aiModule/antimov,
-/obj/structure/table/glass,
+/obj/machinery/smartfridge/secure/circuits/aiupload/highrisk,
/turf/simulated/floor/bluegrid,
/area/turret_protected/ai_upload)
"bSO" = (
@@ -49628,16 +47280,15 @@
department = "Captain's Desk";
departmentType = 5;
name = "Captain Requests Console";
- pixel_x = -30;
- pixel_y = 0
+ pixel_x = -30
},
/obj/machinery/computer/card,
-/turf/simulated/floor/carpet,
+/turf/simulated/floor/carpet/black,
/area/crew_quarters/captain)
"bSP" = (
/obj/structure/table/wood,
/obj/machinery/computer/security/wooden_tv,
-/turf/simulated/floor/carpet,
+/turf/simulated/floor/carpet/black,
/area/crew_quarters/captain)
"bSQ" = (
/obj/structure/cable{
@@ -49653,14 +47304,12 @@
/obj/effect/landmark/start{
name = "Captain"
},
-/turf/simulated/floor/carpet,
-/area/crew_quarters/captain)
-"bSR" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
+/turf/simulated/floor/carpet/black,
+/area/crew_quarters/captain)
+"bSR" = (
+/turf/simulated/floor/carpet/black,
/area/crew_quarters/captain)
"bSS" = (
/obj/structure/table/wood,
@@ -49669,9 +47318,7 @@
/obj/machinery/status_display{
pixel_x = 32
},
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
+/turf/simulated/floor/carpet/black,
/area/crew_quarters/captain)
"bST" = (
/turf/simulated/wall/r_wall,
@@ -49682,8 +47329,9 @@
icon_state = "pipe-c"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8;
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -49695,6 +47343,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutralcorner"
@@ -49704,9 +47353,6 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/firealarm{
pixel_y = 24
},
@@ -49719,7 +47365,6 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "cautioncorner"
@@ -49729,34 +47374,8 @@
/obj/structure/disposalpipe/junction{
dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "cautioncorner"
- },
-/area/hallway/primary/starboard)
-"bSZ" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "cautioncorner"
- },
-/area/hallway/primary/starboard)
-"bTa" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "cautioncorner"
@@ -49766,9 +47385,6 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutralcorner"
@@ -49780,8 +47396,7 @@
icon_state = "0-4"
},
/obj/machinery/power/terminal{
- dir = 1;
- icon_state = "term"
+ dir = 1
},
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plating,
@@ -49789,27 +47404,14 @@
"bTd" = (
/obj/item/radio/intercom{
dir = 1;
- name = "station intercom (General)";
- pixel_x = 28;
- pixel_y = 0
+ pixel_x = 28
},
/obj/machinery/camera{
c_tag = "Auxiliary Tool Storage";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/turf/simulated/floor/plasteel,
/area/storage/tools)
-"bTe" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/starboard)
"bTf" = (
/obj/structure/cable{
d1 = 1;
@@ -49821,9 +47423,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutralcorner"
@@ -49834,9 +47434,6 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "redcorner"
@@ -49846,23 +47443,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "redcorner"
- },
-/area/hallway/primary/starboard)
-"bTi" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "redcorner"
@@ -49873,60 +47454,58 @@
dir = 8;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "redcorner"
},
/area/hallway/primary/starboard)
"bTk" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/hallway/primary/starboard)
-"bTl" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10;
- initialize_directions = 10;
- level = 1
- },
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "redcorner"
- },
-/area/hallway/primary/starboard)
"bTm" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "redcorner"
},
/area/security/brig)
"bTn" = (
-/obj/structure/table/reinforced,
-/obj/machinery/recharger,
-/obj/machinery/newscaster{
- pixel_x = -32;
- pixel_y = 0
+/obj/structure/table,
+/obj/item/storage/box/evidence,
+/obj/item/radio/intercom{
+ dir = 8;
+ pixel_y = -28
+ },
+/obj/machinery/light{
+ dir = 8
},
/turf/simulated/floor/plasteel{
- dir = 8;
+ dir = 10;
icon_state = "red"
},
-/area/security/warden)
+/area/security/processing)
"bTo" = (
/obj/structure/rack,
/obj/item/storage/toolbox/mechanical,
@@ -49939,42 +47518,24 @@
},
/area/security/warden)
"bTp" = (
-/obj/vehicle/secway,
+/obj/structure/table,
+/obj/item/flashlight/lamp,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/machinery/light{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
+ dir = 6;
+ icon_state = "red"
},
-/area/security/armoury)
-"bTq" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/rack,
-/obj/item/gun/energy/gun/advtaser{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/gun/energy/gun/advtaser,
-/obj/item/gun/energy/gun/advtaser{
- pixel_x = 3;
- pixel_y = -3
- },
-/turf/simulated/floor/plasteel,
-/area/security/armoury)
+/area/security/processing)
"bTr" = (
-/obj/structure/rack,
-/obj/item/clothing/suit/armor/riot,
-/obj/item/clothing/suit/armor/riot,
-/obj/item/clothing/suit/armor/riot,
-/obj/item/clothing/head/helmet/riot,
-/obj/item/clothing/head/helmet/riot,
-/obj/item/clothing/head/helmet/riot,
-/obj/item/shield/riot,
-/obj/item/shield/riot,
-/obj/item/shield/riot,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
- },
-/area/security/armoury)
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
+/area/security/seceqstorage)
"bTs" = (
/turf/simulated/floor/plasteel{
dir = 8;
@@ -50009,8 +47570,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/cable{
d1 = 1;
@@ -50027,8 +47587,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/cable{
d1 = 2;
@@ -50047,8 +47606,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -50056,15 +47614,13 @@
/area/turret_protected/aisat)
"bTy" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/ai_slipper,
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -50073,14 +47629,12 @@
/area/turret_protected/aisat)
"bTz" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/maintenance_hatch{
@@ -50099,8 +47653,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -50111,8 +47664,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
icon_state = "grimy"
@@ -50123,8 +47675,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
icon_state = "grimy"
@@ -50153,8 +47704,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
icon_state = "grimy"
@@ -50167,8 +47717,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
icon_state = "grimy"
@@ -50178,8 +47727,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -50190,8 +47738,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/hatch{
@@ -50208,8 +47755,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -50223,8 +47769,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -50235,8 +47780,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -50250,8 +47794,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -50261,8 +47804,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/hatch{
@@ -50278,8 +47820,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -50289,14 +47830,12 @@
"bTO" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -50310,8 +47849,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -50321,8 +47859,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/item/radio/beacon,
/turf/simulated/floor/plasteel{
@@ -50333,8 +47870,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
@@ -50346,8 +47882,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -50373,9 +47908,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/structure/transit_tube/station{
- dir = 8;
- icon_state = "closed";
- tag = "icon-closed (EAST)"
+ dir = 8
},
/obj/structure/transit_tube_pod,
/turf/simulated/floor/plasteel{
@@ -50392,8 +47925,7 @@
/obj/machinery/atmospherics/unary/vent_pump{
dir = 8;
external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
+ on = 1
},
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel,
@@ -50416,8 +47948,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/yellow,
@@ -50447,8 +47978,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -50501,13 +48031,10 @@
/obj/item/twohanded/required/kirbyplants,
/obj/machinery/alarm{
dir = 8;
- pixel_x = 25;
- pixel_y = 0
+ pixel_x = 25
},
/obj/machinery/light/small{
- dir = 4;
- icon_state = "bulb1";
- tag = "icon-bulb1 (EAST)"
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -50744,8 +48271,7 @@
/obj/structure/table/reinforced,
/obj/machinery/alarm{
dir = 8;
- pixel_x = 25;
- pixel_y = 0
+ pixel_x = 25
},
/obj/item/book/manual/security_space_law,
/obj/item/radio,
@@ -50841,12 +48367,10 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/lattice/catwalk,
/turf/space,
@@ -50857,6 +48381,7 @@
codes_txt = "patrol;next_patrol=engi1";
location = "hall3"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -50879,13 +48404,10 @@
},
/area/hallway/primary/central)
"bUM" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
@@ -50937,17 +48459,9 @@
},
/area/crew_quarters/heads/hop)
"bUS" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
@@ -50959,7 +48473,6 @@
},
/area/crew_quarters/heads/hop)
"bUU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/table/wood,
/obj/item/storage/box/ids,
/obj/item/storage/box/PDAs,
@@ -50972,7 +48485,7 @@
/obj/machinery/ai_status_display{
pixel_x = -32
},
-/turf/simulated/floor/carpet,
+/turf/simulated/floor/carpet/black,
/area/crew_quarters/captain)
"bUW" = (
/obj/machinery/light_switch{
@@ -50981,10 +48494,9 @@
},
/obj/machinery/camera{
c_tag = "Captain's Desk";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
-/turf/simulated/floor/carpet,
+/turf/simulated/floor/carpet/black,
/area/crew_quarters/captain)
"bUX" = (
/obj/structure/cable{
@@ -50994,25 +48506,20 @@
tag = ""
},
/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/carpet,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/carpet/black,
/area/crew_quarters/captain)
"bUY" = (
/obj/item/radio/intercom{
dir = 1;
- name = "station intercom (General)";
pixel_y = -28
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
+/turf/simulated/floor/carpet/black,
/area/crew_quarters/captain)
"bUZ" = (
/obj/structure/displaycase/captain,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
+/turf/simulated/floor/carpet/black,
/area/crew_quarters/captain)
"bVa" = (
/obj/machinery/light{
@@ -51024,12 +48531,17 @@
/obj/effect/landmark/start{
name = "Captain"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/crew_quarters/captain/bedroom)
"bVb" = (
-/obj/machinery/atmospherics/unary/vent_pump,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
/obj/machinery/shower{
pixel_y = 22
},
@@ -51041,14 +48553,12 @@
},
/area/crew_quarters/captain/bedroom)
"bVc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/light{
dir = 8
},
/obj/machinery/camera{
c_tag = "Central Ring Hallway East";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -51091,6 +48601,7 @@
codes_txt = "patrol;next_patrol=hall11";
location = "hall10"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -51116,19 +48627,12 @@
icon_state = "4-8";
tag = ""
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/hallway/primary/starboard)
-"bVh" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -51141,8 +48645,11 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -51152,8 +48659,7 @@
"bVj" = (
/obj/item/twohanded/required/kirbyplants,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/camera{
c_tag = "Minisat Teleporter Room";
@@ -51178,6 +48684,12 @@
icon_state = "2-4";
tag = ""
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -51196,7 +48708,8 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -51215,6 +48728,12 @@
d2 = 4;
icon_state = "2-4"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -51227,9 +48746,10 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -51248,49 +48768,44 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/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{
dir = 8;
icon_state = "neutralfull"
},
/area/hallway/primary/starboard)
"bVp" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
/obj/machinery/navbeacon{
codes_txt = "patrol;next_patrol=hall12";
location = "hall11"
},
/obj/item/radio/beacon,
/mob/living/simple_animal/bot/secbot/beepsky,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/hallway/primary/starboard)
"bVq" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/disposalpipe/sortjunction{
- dir = 1;
- icon_state = "pipe-j1s";
- name = "Security Junction";
- sortType = 13
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
- },
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "redcorner"
},
/area/hallway/primary/starboard)
@@ -51327,121 +48842,38 @@
/area/space/nearstation)
"bVt" = (
/obj/structure/sign/vacuum{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/machinery/light/small,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "vault"
},
/area/engine/break_room)
-"bVu" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel,
-/area/security/brig)
-"bVv" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/security/brig)
-"bVw" = (
-/obj/structure/disposalpipe/junction{
- dir = 2;
- icon_state = "pipe-j2";
- tag = "icon-pipe-j2"
- },
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "redcorner"
- },
-/area/security/brig)
-"bVx" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/security/warden)
-"bVy" = (
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/obj/machinery/disposal,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "redcorner"
- },
-/area/security/warden)
"bVz" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- level = 1
+ dir = 9
},
/turf/simulated/wall,
/area/engine/break_room)
"bVA" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d1 = 4;
+ d1 = 1;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "red"
- },
-/area/security/warden)
+/obj/structure/cable,
+/turf/simulated/floor/plating,
+/area/security/processing)
"bVB" = (
/obj/structure/cable{
d1 = 4;
@@ -51451,6 +48883,12 @@
},
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -51464,8 +48902,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/yellow,
@@ -51478,39 +48915,12 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/starboard)
-"bVE" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/structure/rack,
-/obj/item/gun/energy/gun{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/gun/energy/gun,
-/obj/item/gun/energy/gun{
- pixel_x = 3;
- pixel_y = -3
- },
-/turf/simulated/floor/plasteel,
-/area/security/armoury)
"bVF" = (
/obj/structure/cable{
d1 = 1;
@@ -51518,31 +48928,19 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/airlock/glass{
name = "Magistrate's Office";
req_access_txt = "74"
},
/turf/simulated/floor/plasteel,
/area/crew_quarters/courtroom)
-"bVG" = (
-/obj/structure/rack,
-/obj/item/gun/energy/ionrifle,
-/obj/item/clothing/suit/armor/laserproof,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
- },
-/area/security/armoury)
"bVH" = (
/obj/structure/window/reinforced,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/light/small{
- dir = 4;
- pixel_y = 0
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -51550,15 +48948,13 @@
/area/construction/hallway)
"bVI" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/wall/r_wall,
/area/turret_protected/aisat)
"bVJ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/cable{
d1 = 1;
@@ -51566,8 +48962,7 @@
icon_state = "1-2"
},
/obj/structure/sign/nosmoking_2{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/structure/showcase{
density = 0;
@@ -51590,8 +48985,7 @@
/area/turret_protected/aisat)
"bVL" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/cable{
d1 = 1;
@@ -51604,8 +48998,7 @@
/area/turret_protected/aisat)
"bVM" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -51614,8 +49007,7 @@
"bVN" = (
/obj/item/twohanded/required/kirbyplants,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/firealarm{
dir = 4;
@@ -51627,8 +49019,7 @@
/area/turret_protected/aisat)
"bVO" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/showcase{
density = 0;
@@ -51645,8 +49036,7 @@
/area/turret_protected/aisat)
"bVP" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "grimy"
@@ -51654,8 +49044,7 @@
/area/turret_protected/aisat)
"bVQ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
@@ -51664,8 +49053,7 @@
/area/turret_protected/aisat)
"bVR" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/cable{
d1 = 1;
@@ -51684,8 +49072,7 @@
/area/turret_protected/aisat)
"bVT" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/showcase{
density = 0;
@@ -51703,8 +49090,7 @@
"bVU" = (
/obj/item/twohanded/required/kirbyplants,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/firealarm{
dir = 8;
@@ -51717,8 +49103,7 @@
"bVV" = (
/obj/structure/window/reinforced,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/light/small{
dir = 8
@@ -51734,8 +49119,7 @@
"bVW" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -51744,7 +49128,6 @@
"bVX" = (
/obj/structure/window/reinforced,
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
@@ -51759,8 +49142,7 @@
dir = 4
},
/obj/structure/transit_tube{
- icon_state = "N-SE";
- tag = "icon-N-SE"
+ icon_state = "N-SE"
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -51771,15 +49153,13 @@
dir = 8
},
/obj/structure/transit_tube{
- icon_state = "D-SW";
- tag = "icon-D-SW"
+ icon_state = "D-SW"
},
/turf/space,
/area/space/nearstation)
"bWa" = (
/obj/structure/transit_tube{
- icon_state = "D-SE";
- tag = "icon-D-SE"
+ icon_state = "D-SE"
},
/turf/space,
/area/space/nearstation)
@@ -51792,41 +49172,17 @@
/area/space/nearstation)
"bWc" = (
/obj/structure/transit_tube{
- icon_state = "D-NW";
- tag = "icon-D-NW"
+ icon_state = "D-NW"
},
/turf/space,
/area/space/nearstation)
"bWd" = (
/obj/structure/lattice,
/obj/structure/transit_tube{
- icon_state = "D-NE";
- tag = "icon-D-NE"
+ icon_state = "D-NE"
},
/turf/space,
/area/space/nearstation)
-"bWe" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/security/glass{
- id_tag = "BrigEast";
- name = "Brig";
- req_access_txt = "63"
- },
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
-/area/security/brig)
"bWf" = (
/obj/structure/transit_tube,
/obj/structure/window/reinforced{
@@ -51923,7 +49279,6 @@
"bWm" = (
/obj/structure/cable,
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
@@ -51993,49 +49348,22 @@
/turf/simulated/floor/plating,
/area/crew_quarters/chief)
"bWr" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/structure/dresser,
+/turf/simulated/floor/plasteel{
+ icon_state = "cult"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/security/brig)
+/area/magistrateoffice)
"bWs" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/structure/bed,
+/obj/item/bedsheet/black,
+/obj/machinery/light{
+ dir = 1;
+ on = 1
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
+/turf/simulated/floor/plasteel{
+ icon_state = "cult"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/security/brig)
+/area/magistrateoffice)
"bWt" = (
/obj/effect/spawner/window/reinforced,
/obj/structure/cable,
@@ -52060,7 +49388,6 @@
},
/obj/machinery/computer/station_alert,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "red"
},
/area/security/checkpoint/engineering)
@@ -52071,7 +49398,6 @@
},
/obj/machinery/computer/security,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "red"
},
/area/security/checkpoint/engineering)
@@ -52084,7 +49410,6 @@
},
/obj/machinery/computer/secure_data,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "red"
},
/area/security/checkpoint/engineering)
@@ -52092,8 +49417,7 @@
/obj/structure/table/reinforced,
/obj/machinery/recharger,
/obj/machinery/status_display{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/structure/extinguisher_cabinet{
pixel_x = 28;
@@ -52106,8 +49430,7 @@
/area/security/checkpoint/engineering)
"bWz" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
+ dir = 5
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -52135,19 +49458,14 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "yellowcorner"
},
/area/hallway/primary/port)
"bWC" = (
-/obj/machinery/camera{
- c_tag = "Exterior Armory";
- dir = 4;
- network = list("Security","SS13");
- pixel_y = -22
- },
-/turf/space,
-/area/space/nearstation)
+/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
@@ -52160,8 +49478,7 @@
"bWE" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -52196,8 +49513,7 @@
"bWI" = (
/obj/machinery/alarm{
dir = 8;
- pixel_x = 25;
- pixel_y = 0
+ pixel_x = 25
},
/obj/machinery/suit_storage_unit/ce,
/obj/effect/decal/warning_stripes/southwest,
@@ -52220,8 +49536,7 @@
"bWK" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel,
@@ -52229,18 +49544,16 @@
"bWL" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
"bWM" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "bluecorner"
},
/area/hallway/primary/central)
@@ -52270,15 +49583,14 @@
},
/obj/machinery/door/poddoor{
density = 0;
- icon_state = "pdoor0";
+ icon_state = "open";
id_tag = "hopprivacy";
name = "HoP Privacy Blast Doors";
opacity = 0
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/crew_quarters/heads/hop)
"bWQ" = (
@@ -52290,8 +49602,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/crew_quarters/heads/hop)
"bWR" = (
@@ -52299,43 +49610,16 @@
icon_state = "wood"
},
/area/crew_quarters/heads/hop)
-"bWS" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/crew_quarters/heads/hop)
"bWT" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/crew_quarters/heads/hop)
-"bWU" = (
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
},
+/turf/simulated/floor/carpet,
/area/crew_quarters/heads/hop)
"bWV" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/vending/cart,
/obj/machinery/computer/security/telescreen/entertainment{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/turf/simulated/floor/plasteel{
icon_state = "wood"
@@ -52355,27 +49639,25 @@
req_access = null;
req_access_txt = "20"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
/area/crew_quarters/captain)
"bWX" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/wall/r_wall,
+/turf/simulated/wall,
/area/crew_quarters/captain)
"bWY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/crew_quarters/captain/bedroom)
"bWZ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
- pixel_x = 12;
- pixel_y = 0
+ pixel_x = 12
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -52388,76 +49670,26 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
"bXb" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "0-8"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/door/airlock/security/glass{
- name = "Armoury";
- req_access_txt = "3"
- },
-/obj/effect/decal/warning_stripes/east,
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
-/area/security/armoury)
+/turf/simulated/floor/plating,
+/area/security/processing)
"bXc" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/starboard)
-"bXd" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/starboard)
-"bXe" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/starboard)
@@ -52465,14 +49697,15 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
/obj/machinery/alarm{
dir = 1;
pixel_y = -25
},
/obj/machinery/light,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/starboard)
@@ -52484,13 +49717,15 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/door/airlock{
name = "Internal Affairs Office";
req_access_txt = "38"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/lawoffice)
"bXh" = (
@@ -52503,12 +49738,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
- },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/starboard)
@@ -52516,34 +49746,22 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/light,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/starboard)
"bXj" = (
/obj/structure/disposalpipe/junction{
dir = 4;
- icon_state = "pipe-j2";
- tag = "icon-pipe-j2 (EAST)"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ icon_state = "pipe-j2"
},
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
/obj/structure/cable,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/starboard)
@@ -52551,12 +49769,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "redcorner"
},
/area/hallway/primary/starboard)
@@ -52570,13 +49783,9 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "redcorner"
},
/area/hallway/primary/starboard)
@@ -52591,140 +49800,31 @@
/area/turret_protected/aisat)
"bXn" = (
/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "redcorner"
},
/area/hallway/primary/starboard)
-"bXo" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plasteel,
-/area/security/armoury)
"bXp" = (
-/obj/structure/disposalpipe/segment,
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "redcorner"
},
/area/hallway/primary/starboard)
-"bXq" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/effect/decal/warning_stripes/northwestcorner,
-/turf/simulated/floor/plasteel,
-/area/security/armoury)
-"bXr" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/security/armoury)
-"bXs" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/turf/simulated/floor/plating,
-/area/security/brig)
"bXt" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/security/brig)
"bXu" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "redcorner"
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
-/obj/machinery/door/airlock/security/glass{
- name = "Warden's Office";
- req_access_txt = "3"
- },
-/turf/simulated/floor/plasteel,
-/area/security/warden)
-"bXv" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/turf/simulated/floor/plasteel,
-/area/security/warden)
-"bXw" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
- },
-/obj/effect/landmark/start{
- name = "Warden"
- },
-/turf/simulated/floor/plasteel,
-/area/security/warden)
+/area/security/brig)
"bXx" = (
/turf/simulated/floor/plasteel{
dir = 4;
@@ -52739,8 +49839,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/public/glass,
@@ -52749,18 +49848,11 @@
icon_state = "neutralcorner"
},
/area/hallway/primary/port)
-"bXz" = (
-/turf/simulated/floor/plasteel,
-/area/security/armoury)
-"bXA" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
- },
-/turf/simulated/floor/plasteel,
-/area/security/armoury)
"bXB" = (
-/obj/machinery/hologram/holopad,
-/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/disposalpipe/junction{
+ dir = 8;
+ icon_state = "pipe-j2"
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -52770,9 +49862,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,
/obj/machinery/door/airlock/public/glass,
@@ -52785,9 +49874,6 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/camera{
c_tag = "Primary Security Hallway"
},
@@ -52804,7 +49890,6 @@
},
/obj/item/radio/intercom{
dir = 4;
- name = "station intercom (General)";
pixel_x = 28
},
/obj/structure/closet/secure_closet/security/engine,
@@ -52821,8 +49906,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/access_button{
command = "cycle_exterior";
@@ -52875,8 +49959,6 @@
/obj/machinery/light,
/obj/machinery/alarm{
dir = 1;
- icon_state = "alarm0";
- pixel_x = 0;
pixel_y = -22
},
/turf/simulated/floor/plasteel{
@@ -52912,7 +49994,7 @@
/obj/structure/table/reinforced,
/obj/machinery/light,
/obj/item/clipboard,
-/obj/item/toy/figure/borg,
+/obj/item/toy/figure/crew/borg,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "vault"
@@ -52934,8 +50016,7 @@
"bXP" = (
/obj/item/twohanded/required/kirbyplants,
/obj/structure/extinguisher_cabinet{
- pixel_x = 28;
- pixel_y = 0
+ pixel_x = 28
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -52949,32 +50030,28 @@
layer = 2.9
},
/obj/structure/transit_tube{
- icon_state = "D-NE";
- tag = "icon-D-NE"
+ icon_state = "D-NE"
},
/turf/space,
/area/space/nearstation)
"bXR" = (
/obj/structure/lattice,
/obj/structure/transit_tube{
- icon_state = "E-NW";
- tag = "icon-E-NW"
+ icon_state = "E-NW"
},
/turf/space,
/area/space/nearstation)
"bXS" = (
/obj/structure/lattice,
/obj/structure/transit_tube{
- icon_state = "W-NE";
- tag = "icon-W-NE"
+ icon_state = "W-NE"
},
/turf/space,
/area/space/nearstation)
"bXT" = (
/obj/structure/lattice,
/obj/structure/transit_tube{
- icon_state = "D-NW";
- tag = "icon-D-NW"
+ icon_state = "D-NW"
},
/turf/space,
/area/space/nearstation)
@@ -52982,41 +50059,16 @@
/turf/simulated/wall/r_wall,
/area/engine/engineering)
"bXV" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+/obj/structure/closet/secure_closet/magistrate,
+/turf/simulated/floor/plasteel{
+ icon_state = "cult"
},
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
- },
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/security/brig)
+/area/magistrateoffice)
"bXW" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/turf/simulated/floor/plasteel{
+ icon_state = "cult"
},
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/security/brig)
-"bXX" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/door/airlock/security/glass{
- name = "Armoury";
- req_access_txt = "3"
- },
-/obj/effect/decal/warning_stripes/east,
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
-/area/security/armoury)
+/area/magistrateoffice)
"bXY" = (
/obj/structure/table/reinforced,
/obj/item/storage/firstaid/fire,
@@ -53044,9 +50096,7 @@
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'RADIOACTIVE AREA'";
icon_state = "radiation";
- name = "RADIOACTIVE AREA";
- pixel_x = 0;
- pixel_y = 0
+ name = "RADIOACTIVE AREA"
},
/turf/simulated/wall,
/area/engine/engineering)
@@ -53085,11 +50135,9 @@
/area/hallway/primary/port)
"bYg" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- level = 1
+ dir = 9
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "yellowcorner"
},
/area/hallway/primary/port)
@@ -53116,8 +50164,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/structure/lattice/catwalk,
/turf/space,
@@ -53130,8 +50177,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/lattice/catwalk,
/turf/space,
@@ -53140,11 +50186,8 @@
/obj/structure/sign/directions/evac{
pixel_y = -8
},
-/obj/structure/sign/directions/medical{
- dir = 2
- },
+/obj/structure/sign/directions/medical,
/obj/structure/sign/directions/security{
- dir = 2;
pixel_y = 8
},
/turf/simulated/wall,
@@ -53153,7 +50196,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/obj/machinery/light/small,
@@ -53168,7 +50210,7 @@
},
/obj/machinery/door/poddoor{
density = 0;
- icon_state = "pdoor0";
+ icon_state = "open";
id_tag = "hopprivacy";
name = "HoP Privacy Blast Doors";
opacity = 0
@@ -53185,8 +50227,7 @@
/obj/machinery/computer/card,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/crew_quarters/heads/hop)
"bYr" = (
@@ -53208,32 +50249,11 @@
tag = ""
},
/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/crew_quarters/heads/hop)
-"bYt" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
+/turf/simulated/floor/carpet,
/area/crew_quarters/heads/hop)
"bYu" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/status_display{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/machinery/pdapainter,
/turf/simulated/floor/plasteel{
@@ -53244,7 +50264,7 @@
/turf/simulated/wall/r_wall,
/area/ntrep)
"bYw" = (
-/turf/simulated/wall/r_wall,
+/turf/simulated/wall,
/area/civilian/barber)
"bYx" = (
/turf/simulated/wall/r_wall,
@@ -53266,6 +50286,8 @@
tag = ""
},
/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
@@ -53287,16 +50309,6 @@
icon_state = "neutralfull"
},
/area/hallway/primary/port)
-"bYC" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/security/armoury)
"bYD" = (
/turf/simulated/wall,
/area/crew_quarters/captain/bedroom)
@@ -53304,21 +50316,31 @@
/obj/machinery/door/airlock/silver{
name = "Captain's Bathroom"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/crew_quarters/captain/bedroom)
"bYF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/wall,
-/area/crew_quarters/captain/bedroom)
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/hallway/primary/central)
"bYG" = (
/obj/structure/sign/directions/evac{
pixel_y = -8
},
-/obj/structure/sign/directions/medical{
- dir = 2
- },
+/obj/structure/sign/directions/medical,
/obj/structure/sign/directions/security{
dir = 4;
pixel_y = 8
@@ -53328,11 +50350,6 @@
"bYH" = (
/turf/simulated/wall,
/area/crew_quarters/courtroom)
-"bYI" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plating,
-/area/crew_quarters/courtroom)
"bYJ" = (
/obj/structure/cable{
d1 = 1;
@@ -53359,6 +50376,12 @@
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/yellow,
/obj/machinery/door/airlock/public/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -53389,176 +50412,167 @@
},
/area/lawoffice)
"bYP" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
+/obj/machinery/door/poddoor/shutters{
+ density = 0;
+ dir = 2;
+ icon_state = "open";
+ id_tag = "magistrate";
+ name = "Magistrate Privacy Shutters";
+ opacity = 0
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+/obj/machinery/door/airlock{
+ name = "Magistrate's Office";
+ req_access_txt = "74"
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plating,
+/area/magistrateoffice)
+"bYQ" = (
+/obj/effect/spawner/window/reinforced,
+/obj/machinery/door/poddoor/shutters{
+ density = 0;
+ dir = 2;
+ icon_state = "open";
+ id_tag = "magistrate";
+ name = "Magistrate Privacy Shutters";
+ opacity = 0
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/magistrateoffice)
+"bYR" = (
+/obj/effect/spawner/window/reinforced,
+/obj/machinery/door/poddoor/shutters{
+ density = 0;
+ dir = 2;
+ icon_state = "open";
+ id_tag = "magistrate";
+ name = "Magistrate Privacy Shutters";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/magistrateoffice)
+"bYU" = (
+/obj/machinery/door/airlock{
+ name = "Magistrate's Bedroom";
+ req_access_txt = "74"
},
-/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
+ icon_state = "cult"
+ },
+/area/magistrateoffice)
+"bYV" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/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 = 1;
icon_state = "redcorner"
},
-/area/hallway/primary/starboard)
-"bYQ" = (
-/obj/structure/disposalpipe/segment{
+/area/security/brig)
+"bYW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel,
+/area/security/brig)
+"bYX" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "red"
- },
-/area/hallway/primary/starboard)
-"bYR" = (
-/obj/structure/disposalpipe/segment{
dir = 8;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redcorner"
- },
-/area/hallway/primary/starboard)
-"bYS" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/security/glass{
- id_tag = "BrigEast";
- name = "Brig";
- req_access_txt = "63"
- },
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
-/area/security/brig)
-"bYT" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/security/brig)
-"bYU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/security/brig)
-"bYV" = (
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
-/turf/simulated/floor/plasteel,
-/area/security/brig)
-"bYW" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "redcorner"
},
/area/security/brig)
-"bYX" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plating,
-/area/security/warden)
-"bYY" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/structure/table/reinforced,
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "red"
- },
-/area/security/warden)
-"bYZ" = (
+"bZa" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1;
+ initialize_directions = 11
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "redcorner"
+ },
+/area/security/brig)
+"bZc" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/light,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "redcorner"
+ },
+/area/security/brig)
+"bZe" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 10
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "red"
+ dir = 8;
+ icon_state = "redcorner"
},
-/area/security/warden)
-"bZa" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/structure/closet/secure_closet/warden,
-/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "red"
- },
-/area/security/warden)
-"bZb" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plating,
-/area/security/armoury)
-"bZc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/recharger,
-/obj/structure/table/reinforced,
-/obj/item/key/security,
-/obj/machinery/door_control{
- id = "Secure Armory";
- name = "Secure Armory Shutter Control";
- pixel_x = 7;
- pixel_y = -28;
- req_access_txt = "3"
- },
-/obj/effect/decal/warning_stripes/northeast,
-/turf/simulated/floor/plasteel,
-/area/security/armoury)
-"bZd" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plasteel,
-/area/security/armoury)
-"bZe" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- level = 1
- },
-/obj/structure/chair/office/dark,
-/turf/simulated/floor/plasteel,
-/area/security/armoury)
+/area/security/brig)
"bZf" = (
/obj/structure/window/reinforced{
dir = 4
@@ -53567,22 +50581,26 @@
/turf/space,
/area/space/nearstation)
"bZg" = (
-/obj/structure/table/reinforced,
-/obj/structure/reagent_dispensers/peppertank{
- pixel_x = 32;
- pixel_y = 0
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8";
+ tag = ""
},
-/obj/item/clothing/mask/gas/sechailer,
-/obj/item/clothing/mask/gas/sechailer,
-/obj/item/clothing/mask/gas/sechailer,
-/obj/item/flashlight/seclite,
-/obj/item/flashlight/seclite,
-/obj/item/flashlight/seclite,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
},
-/area/security/armoury)
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Secure Gate";
+ name = "Security Blast Door";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/security/brig)
"bZh" = (
/obj/structure/cable{
d1 = 1;
@@ -53592,8 +50610,7 @@
/obj/machinery/door/firedoor,
/obj/machinery/flasher{
id = null;
- pixel_x = -24;
- pixel_y = 0
+ pixel_x = -24
},
/obj/machinery/door/airlock/highsecurity{
name = "Telecommunications";
@@ -53688,8 +50705,7 @@
/area/engine/engineering)
"bZr" = (
/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/sign/vacuum,
/turf/simulated/wall/r_wall,
@@ -53735,8 +50751,7 @@
dir = 8
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/lattice/catwalk,
/turf/space,
@@ -53760,8 +50775,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel,
@@ -53807,8 +50821,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/effect/decal/warning_stripes/northeast,
/turf/simulated/floor/plasteel,
@@ -53884,7 +50897,6 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/obj/structure/closet/crate,
@@ -53992,14 +51004,13 @@
"bZT" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/item/radio/intercom{
dir = 8;
- name = "station intercom (General)";
pixel_x = -28
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
@@ -54021,12 +51032,10 @@
},
/area/hallway/primary/central)
"bZV" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/landmark{
name = "lightsout"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "bluecorner"
},
/area/hallway/primary/central)
@@ -54037,35 +51046,18 @@
"bZX" = (
/obj/machinery/computer/secure_data,
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/crew_quarters/heads/hop)
"bZY" = (
/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/crew_quarters/heads/hop)
-"bZZ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
+/turf/simulated/floor/carpet,
/area/crew_quarters/heads/hop)
"caa" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/table/wood,
/obj/machinery/light,
/obj/machinery/photocopier/faxmachine{
@@ -54083,18 +51075,14 @@
/area/ntrep)
"cac" = (
/obj/machinery/computer/secure_data,
-/turf/simulated/floor/plasteel{
- icon_state = "wood"
- },
+/turf/simulated/floor/carpet,
/area/ntrep)
"cad" = (
/obj/structure/table/wood,
/obj/machinery/photocopier/faxmachine/longrange{
department = "NT Representative's Office"
},
-/turf/simulated/floor/plasteel{
- icon_state = "wood"
- },
+/turf/simulated/floor/carpet,
/area/ntrep)
"cae" = (
/obj/item/flag/nt,
@@ -54106,11 +51094,9 @@
/obj/machinery/dye_generator,
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "barber"
},
/area/civilian/barber)
@@ -54118,7 +51104,6 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/obj/structure/chair/barber{
@@ -54129,7 +51114,6 @@
icon_state = "0-2"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "barber"
},
/area/civilian/barber)
@@ -54143,7 +51127,6 @@
c_tag = "Barber Shop"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "barber"
},
/area/civilian/barber)
@@ -54157,13 +51140,13 @@
/obj/structure/table/wood,
/obj/item/flashlight/lamp,
/turf/simulated/floor/plasteel{
- icon_state = "wood"
+ icon_state = "bcarpet05"
},
/area/blueshield)
"cak" = (
/obj/machinery/computer/crew,
/turf/simulated/floor/plasteel{
- icon_state = "wood"
+ icon_state = "bcarpet05"
},
/area/blueshield)
"cal" = (
@@ -54178,12 +51161,9 @@
/obj/item/disk/nuclear,
/obj/item/radio/intercom{
dir = 8;
- name = "station intercom (General)";
pixel_x = -28
},
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
+/turf/simulated/floor/carpet/black,
/area/crew_quarters/captain/bedroom)
"can" = (
/obj/structure/cable{
@@ -54193,20 +51173,32 @@
tag = ""
},
/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/carpet/black,
/area/crew_quarters/captain/bedroom)
"cao" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1;
+ initialize_directions = 11
+ },
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
/area/crew_quarters/captain/bedroom)
"cap" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
},
/turf/simulated/floor/plasteel{
icon_state = "wood"
@@ -54214,8 +51206,7 @@
/area/crew_quarters/captain/bedroom)
"caq" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
},
/turf/simulated/floor/plasteel{
icon_state = "wood"
@@ -54223,8 +51214,7 @@
/area/crew_quarters/captain/bedroom)
"car" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/table/wood,
/obj/item/flashlight/lamp/green,
@@ -54232,38 +51222,29 @@
/obj/structure/window/reinforced{
dir = 8
},
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
+/turf/simulated/floor/carpet/black,
/area/crew_quarters/captain/bedroom)
"cas" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ dir = 9
},
+/turf/simulated/floor/carpet/black,
/area/crew_quarters/captain/bedroom)
"cat" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- level = 1
- },
/obj/item/twohanded/required/kirbyplants,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
+/turf/simulated/floor/carpet/black,
/area/crew_quarters/captain/bedroom)
"cau" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/extinguisher_cabinet{
- pixel_x = 28;
- pixel_y = 0
+ pixel_x = 28
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4;
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
@@ -54297,18 +51278,12 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/camera{
c_tag = "Primary Security Hallway East";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "neutralcorner"
+ icon_state = "redcorner"
},
/area/hallway/primary/starboard)
"caA" = (
@@ -54350,19 +51325,6 @@
icon_state = "neutral"
},
/area/crew_quarters/courtroom)
-"caE" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutral"
- },
-/area/crew_quarters/courtroom)
"caF" = (
/turf/simulated/floor/plasteel{
dir = 5;
@@ -54376,8 +51338,7 @@
/obj/item/taperecorder,
/obj/item/clothing/glasses/sunglasses,
/obj/structure/extinguisher_cabinet{
- pixel_x = -28;
- pixel_y = 0
+ pixel_x = -28
},
/turf/simulated/floor/plasteel{
icon_state = "wood"
@@ -54386,7 +51347,7 @@
"caH" = (
/obj/structure/table/wood,
/obj/item/clipboard,
-/obj/item/toy/figure/lawyer,
+/obj/item/toy/figure/crew/lawyer,
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
@@ -54423,43 +51384,29 @@
icon_state = "wood"
},
/area/lawoffice)
-"caL" = (
-/turf/simulated/wall/r_wall,
-/area/lawoffice)
"caM" = (
-/obj/structure/table/reinforced,
-/obj/item/folder/red,
-/obj/item/pen,
-/obj/machinery/door/window/brigdoor{
+/obj/structure/disposalpipe/segment{
dir = 1;
- name = "Security Checkpoint";
- req_access_txt = "1"
+ icon_state = "pipe-c"
},
-/obj/machinery/door/window/brigdoor{
- dir = 3;
- name = "Security Checkpoint";
- req_access_txt = "1"
+/obj/machinery/computer/prisoner{
+ req_access = null;
+ req_access_txt = "2"
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "cult"
},
-/area/security/brig)
+/area/magistrateoffice)
"caN" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -24
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "redcorner"
},
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/plasteel,
/area/security/brig)
"caO" = (
/obj/structure/cable{
@@ -54468,11 +51415,8 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -54480,20 +51424,20 @@
},
/area/security/brig)
"caP" = (
-/obj/structure/cable,
-/obj/machinery/power/apc{
- dir = 2;
- name = "south bump";
- pixel_y = -24
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
},
-/obj/machinery/camera{
- c_tag = "Security Armory";
- dir = 1;
- network = list("SS13","Security")
+/obj/machinery/door_timer/cell_5{
+ pixel_y = -32
},
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/security/armoury)
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/security/brig)
"caQ" = (
/obj/structure/table/wood,
/obj/item/radio/intercom{
@@ -54513,49 +51457,57 @@
id = "hopprivacy";
name = "Privacy Shutters";
pixel_x = -24;
- pixel_y = -6;
+ pixel_y = -8;
req_one_access_txt = "18"
},
/obj/machinery/door_control{
id = "hopqueueshutters";
name = "Queue Shutters";
pixel_x = -24;
- pixel_y = 6;
req_one_access_txt = "18"
},
+/obj/machinery/door_control/ticket_machine_button{
+ pixel_x = -24;
+ pixel_y = 8
+ },
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/crew_quarters/heads/hop)
-"caR" = (
-/obj/machinery/door/poddoor/shutters{
- dir = 2;
- id_tag = "Secure Armory";
- name = "Secure Armory Shutters"
- },
-/obj/effect/decal/warning_stripes/north,
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/security/armoury)
"caS" = (
-/obj/structure/table/reinforced,
-/obj/item/folder/red,
-/obj/item/pen,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Secure Gate";
+ name = "Security Blast Door";
+ opacity = 0
+ },
/obj/machinery/door/window/brigdoor{
+ base_state = "rightsecure";
dir = 2;
- name = "Secure Armory";
- req_access_txt = "3"
+ icon_state = "rightsecure";
+ id = "Cell 5";
+ name = "Cell 5";
+ req_access_txt = "2"
},
-/obj/machinery/door/window/brigdoor{
- dir = 1;
- name = "Secure Armory";
- req_access_txt = "3"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/security/armoury)
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/brig)
"caV" = (
/obj/item/twohanded/required/kirbyplants,
/obj/machinery/light{
@@ -54669,9 +51621,7 @@
/area/engine/engineering)
"cbh" = (
/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
- frequency = 1379;
id_tag = "engineering_west_airlock";
- pixel_x = 0;
pixel_y = -25;
req_access_txt = "10;13";
tag_airpump = "engineering_west_pump";
@@ -54680,9 +51630,7 @@
tag_interior_door = "engineering_west_inner"
},
/obj/machinery/airlock_sensor{
- frequency = 1379;
id_tag = "engineering_west_sensor";
- pixel_x = 0;
pixel_y = -34
},
/obj/structure/cable/yellow{
@@ -54791,8 +51739,7 @@
"cbr" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
icon_state = "yellowfull"
@@ -54802,8 +51749,7 @@
/obj/machinery/atmospherics/unary/vent_pump{
dir = 8;
external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
+ on = 1
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -54812,8 +51758,7 @@
/area/engine/engineering)
"cbt" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel{
@@ -54844,8 +51789,7 @@
icon_state = "0-2"
},
/obj/machinery/power/terminal{
- dir = 1;
- icon_state = "term"
+ dir = 1
},
/obj/effect/decal/warning_stripes/northwest,
/turf/simulated/floor/plasteel,
@@ -54859,8 +51803,7 @@
icon_state = "0-2"
},
/obj/machinery/power/terminal{
- dir = 1;
- icon_state = "term"
+ dir = 1
},
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel,
@@ -54870,16 +51813,14 @@
dir = 10
},
/obj/structure/extinguisher_cabinet{
- pixel_x = 28;
- pixel_y = 0
+ pixel_x = 28
},
/obj/structure/cable/yellow{
d2 = 2;
icon_state = "0-2"
},
/obj/machinery/power/terminal{
- dir = 1;
- icon_state = "term"
+ dir = 1
},
/obj/effect/decal/warning_stripes/northeast,
/turf/simulated/floor/plasteel,
@@ -54898,9 +51839,6 @@
dir = 1;
in_use = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/warning_stripes/southwest,
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
@@ -54971,8 +51909,7 @@
"cbH" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
icon_state = "grimy"
@@ -54982,8 +51919,7 @@
/obj/machinery/atmospherics/unary/vent_pump{
dir = 8;
external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
+ on = 1
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -54994,8 +51930,7 @@
dir = 8
},
/obj/machinery/newscaster{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/machinery/camera{
c_tag = "Library North";
@@ -55027,8 +51962,7 @@
/obj/item/paper_bin,
/obj/item/pen,
/obj/machinery/status_display{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -55054,21 +51988,17 @@
},
/area/library)
"cbP" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11;
- level = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "bluecorner"
},
/area/hallway/primary/central)
"cbQ" = (
/obj/effect/spawner/window/reinforced,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plating,
/area/hallway/primary/central)
@@ -55093,38 +52023,18 @@
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/crew_quarters/heads/hop)
"cbT" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 1;
+ d1 = 4;
d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ icon_state = "4-8"
},
+/turf/simulated/floor/carpet,
/area/crew_quarters/heads/hop)
"cbU" = (
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
/obj/machinery/power/apc{
dir = 4;
name = "east bump";
@@ -55134,14 +52044,33 @@
c_tag = "Head of Personnel's Office";
dir = 8
},
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
},
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/carpet,
/area/crew_quarters/heads/hop)
"cbV" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/wall,
-/area/crew_quarters/heads/hop)
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8;
+ initialize_directions = 11
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralcorner"
+ },
+/area/hallway/primary/central)
"cbW" = (
/turf/simulated/floor/plasteel{
icon_state = "wood"
@@ -55178,9 +52107,7 @@
/obj/machinery/newscaster{
pixel_x = -32
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "barber"
},
/area/civilian/barber)
@@ -55192,18 +52119,15 @@
tag = ""
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "barber"
},
/area/civilian/barber)
"ccc" = (
/obj/structure/table/reinforced,
/obj/machinery/computer/security/telescreen/entertainment{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "barber"
},
/area/civilian/barber)
@@ -55218,7 +52142,6 @@
"cce" = (
/obj/structure/table/wood,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "bcarpet05"
},
/area/blueshield)
@@ -55230,7 +52153,6 @@
name = "Blueshield"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "bcarpet05"
},
/area/blueshield)
@@ -55241,17 +52163,12 @@
/area/blueshield)
"cch" = (
/obj/structure/table/wood,
-/obj/machinery/status_display{
- pixel_x = -32
- },
/obj/item/folder/blue,
/obj/item/pen/multi/fountain,
/obj/item/paper/safe_code{
owner = "captain"
},
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
+/turf/simulated/floor/carpet/black,
/area/crew_quarters/captain/bedroom)
"cci" = (
/obj/structure/cable{
@@ -55269,9 +52186,7 @@
/obj/effect/landmark/start{
name = "Captain"
},
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
+/turf/simulated/floor/carpet/black,
/area/crew_quarters/captain/bedroom)
"ccj" = (
/obj/structure/cable{
@@ -55283,7 +52198,9 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
@@ -55305,8 +52222,8 @@
dir = 2;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "wood"
@@ -55319,9 +52236,8 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
/turf/simulated/floor/plasteel{
icon_state = "wood"
@@ -55345,25 +52261,22 @@
/obj/item/reagent_containers/food/drinks/bottle/absinthe/premium,
/obj/item/lighter/zippo/nt_rep,
/obj/item/storage/fancy/cigarettes/cigpack_robustgold,
-/obj/item/toy/figure/captain,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
+/obj/item/toy/figure/crew/captain,
+/turf/simulated/floor/carpet/black,
/area/crew_quarters/captain/bedroom)
"ccn" = (
-/turf/simulated/floor/carpet,
+/turf/simulated/floor/carpet/black,
/area/crew_quarters/captain/bedroom)
"cco" = (
/obj/structure/bed,
/obj/item/bedsheet/captain,
/obj/machinery/light/small{
- dir = 4;
- pixel_y = 0
+ dir = 4
},
/obj/effect/landmark/start{
name = "Captain"
},
-/turf/simulated/floor/carpet,
+/turf/simulated/floor/carpet/black,
/area/crew_quarters/captain/bedroom)
"ccp" = (
/obj/structure/table,
@@ -55404,9 +52317,8 @@
icon_state = "2-4";
tag = ""
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -55421,8 +52333,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -55441,7 +52352,12 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -55455,8 +52371,10 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -55466,7 +52384,6 @@
"ccx" = (
/obj/structure/table/reinforced,
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
@@ -55488,8 +52405,11 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1;
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
icon_state = "wood"
@@ -55503,8 +52423,10 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "grimy"
@@ -55522,7 +52444,7 @@
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
icon_state = "grimy"
@@ -55541,6 +52463,9 @@
/obj/effect/landmark/start{
name = "Internal Affairs Agent"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
@@ -55548,8 +52473,7 @@
"ccC" = (
/obj/machinery/alarm{
dir = 8;
- pixel_x = 25;
- pixel_y = 0
+ pixel_x = 25
},
/obj/structure/filingcabinet/security,
/turf/simulated/floor/plasteel{
@@ -55557,213 +52481,121 @@
},
/area/lawoffice)
"ccD" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/obj/item/radio/intercom/department/security{
+ pixel_x = -28;
+ pixel_y = -7
},
-/obj/machinery/computer/security{
- network = list("SS13","Mining Outpost")
+/obj/item/radio/intercom{
+ pixel_x = -28;
+ pixel_y = 5
},
-/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "red"
+/obj/machinery/camera{
+ c_tag = "Magistrate's Office";
+ dir = 4
},
-/area/security/brig)
+/turf/simulated/floor/carpet,
+/area/magistrateoffice)
"ccE" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
},
-/obj/structure/chair/office/dark{
- dir = 1
- },
-/obj/effect/landmark/start{
- name = "Security Officer"
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "red"
- },
-/area/security/brig)
+/turf/simulated/floor/carpet,
+/area/magistrateoffice)
"ccF" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
},
-/obj/machinery/computer/secure_data,
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "red"
- },
-/area/security/brig)
+/turf/simulated/floor/carpet,
+/area/magistrateoffice)
"ccG" = (
-/obj/structure/chair,
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/simulated/floor/plasteel,
-/area/security/brig)
-"ccH" = (
-/obj/machinery/atmospherics/unary/vent_pump,
-/obj/structure/chair,
-/turf/simulated/floor/plasteel,
-/area/security/brig)
-"ccI" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11;
- level = 1
- },
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "redcorner"
+ icon_state = "cult"
},
-/area/security/brig)
-"ccJ" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/security/brig)
-"ccK" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/door/airlock/security/glass{
- name = "Security Office";
- req_access_txt = "63"
- },
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "red"
- },
-/area/security/brig)
+/area/magistrateoffice)
"ccL" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/obj/structure/closet/secure_closet,
+/obj/machinery/light/small{
+ dir = 8
},
/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "red"
+ icon_state = "dark"
},
-/area/security/brig)
+/area/security/evidence)
"ccM" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/structure/closet/secure_closet,
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "red"
+ icon_state = "dark"
},
-/area/security/brig)
+/area/security/evidence)
"ccN" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "red"
+ icon_state = "dark"
},
-/area/security/brig)
+/area/security/evidence)
"ccO" = (
/obj/structure/chair{
dir = 4
},
/obj/machinery/camera{
- c_tag = "Courtroom North";
- dir = 2;
- network = list("SS13")
+ c_tag = "Courtroom North"
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/crew_quarters/courtroom)
"ccP" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/obj/structure/closet/secure_closet,
+/obj/machinery/light/small{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "red"
+ icon_state = "dark"
},
-/area/security/brig)
+/area/security/evidence)
"ccQ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "red"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
+/turf/simulated/floor/plasteel,
/area/security/brig)
"ccR" = (
-/obj/structure/closet/secure_closet/security,
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "red"
+/obj/machinery/camera{
+ c_tag = "Brig Cell 4"
},
+/obj/structure/closet/secure_closet/brig{
+ id = "Cell 5";
+ name = "Cell 5 Locker"
+ },
+/turf/simulated/floor/plating,
/area/security/brig)
"ccS" = (
-/obj/structure/closet/secure_closet/security,
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+/obj/structure/cable,
+/obj/effect/spawner/window/reinforced,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Secure Gate";
+ name = "Security Blast Door";
+ opacity = 0
},
+/turf/simulated/floor/plating,
/area/security/brig)
"ccU" = (
/turf/simulated/floor/plasteel{
@@ -55774,8 +52606,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -55816,8 +52647,7 @@
/area/engine/engineering)
"cde" = (
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/obj/machinery/status_display{
pixel_x = -32
@@ -55855,8 +52685,7 @@
"cdi" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -55872,8 +52701,7 @@
/area/engine/engineering)
"cdk" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/yellow{
@@ -55896,8 +52724,7 @@
/area/engine/engineering)
"cdm" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/cable/yellow{
d1 = 4;
@@ -55910,8 +52737,7 @@
"cdn" = (
/obj/effect/spawner/window/reinforced,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/cable/yellow{
d1 = 4;
@@ -55933,8 +52759,7 @@
/obj/machinery/atmospherics/unary/vent_pump{
dir = 8;
external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
+ on = 1
},
/obj/structure/cable/yellow{
d1 = 4;
@@ -56031,8 +52856,7 @@
"cdx" = (
/obj/item/twohanded/required/kirbyplants,
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/turf/simulated/floor/plasteel{
icon_state = "wood"
@@ -56049,8 +52873,7 @@
"cdz" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
icon_state = "grimy"
@@ -56084,11 +52907,20 @@
/obj/machinery/computer/supplycomp,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/crew_quarters/heads/hop)
"cdF" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/heads/hop)
+"cdG" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4;
+ initialize_directions = 11
+ },
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -56096,41 +52928,22 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/crew_quarters/heads/hop)
-"cdG" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
+/turf/simulated/floor/carpet,
/area/crew_quarters/heads/hop)
"cdH" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
/obj/structure/table/wood,
/obj/machinery/light{
dir = 1
},
/obj/item/clipboard,
-/obj/item/toy/figure/hop,
+/obj/item/toy/figure/crew/hop,
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
/area/crew_quarters/heads/hop)
"cdI" = (
/obj/machinery/keycard_auth{
- pixel_x = -24;
- pixel_y = 0
+ pixel_x = -24
},
/obj/machinery/door/window{
dir = 2;
@@ -56144,34 +52957,34 @@
"cdJ" = (
/obj/structure/table/wood,
/obj/item/folder,
-/obj/item/stamp/centcom,
/obj/item/pen/multi/fountain,
/turf/simulated/floor/carpet,
/area/ntrep)
"cdK" = (
/obj/structure/table/wood,
+/obj/item/stamp/rep,
/turf/simulated/floor/carpet,
/area/ntrep)
"cdL" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on,
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
/area/ntrep)
"cdM" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/landmark/start{
name = "Barber"
},
/obj/machinery/light/small{
dir = 8
},
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "barber"
},
/area/civilian/barber)
@@ -56185,11 +52998,13 @@
/obj/structure/chair/barber{
dir = 4
},
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "barber"
},
/area/civilian/barber)
@@ -56199,16 +53014,17 @@
pixel_x = 28
},
/obj/item/razor,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "barber"
},
/area/civilian/barber)
"cdP" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on,
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/turf/simulated/floor/plasteel{
icon_state = "wood"
@@ -56223,7 +53039,6 @@
/obj/item/book/manual/sop_command,
/obj/item/paper/blueshield,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "bcarpet05"
},
/area/blueshield)
@@ -56238,7 +53053,6 @@
pixel_y = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "bcarpet05"
},
/area/blueshield)
@@ -56249,8 +53063,7 @@
req_access_txt = "67"
},
/obj/machinery/keycard_auth{
- pixel_x = 24;
- pixel_y = 0
+ pixel_x = 24
},
/turf/simulated/floor/plasteel{
icon_state = "wood"
@@ -56260,33 +53073,19 @@
/obj/structure/table/wood,
/obj/item/reagent_containers/food/drinks/flask/gold,
/obj/item/razor,
-/obj/item/radio/intercom{
- dir = 8;
- name = "station intercom (General)";
- pixel_x = -28
- },
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
+/turf/simulated/floor/carpet/black,
/area/crew_quarters/captain/bedroom)
"cdU" = (
/obj/structure/table/wood,
/obj/machinery/light/small,
/obj/machinery/computer/security/wooden_tv,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
+/turf/simulated/floor/carpet/black,
/area/crew_quarters/captain/bedroom)
"cdV" = (
/obj/machinery/alarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
@@ -56300,17 +53099,12 @@
},
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
/area/crew_quarters/captain/bedroom)
"cdX" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10;
- initialize_directions = 10;
- level = 1
- },
/obj/machinery/firealarm{
dir = 1;
pixel_y = -24
@@ -56318,8 +53112,7 @@
/obj/item/twohanded/required/kirbyplants,
/obj/machinery/camera{
c_tag = "Captain's Quarters";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/turf/simulated/floor/plasteel{
icon_state = "wood"
@@ -56329,7 +53122,6 @@
/obj/structure/cable,
/obj/structure/table/wood,
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
@@ -56337,17 +53129,15 @@
dir = 8
},
/obj/machinery/recharger,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
+/turf/simulated/floor/carpet/black,
/area/crew_quarters/captain/bedroom)
"cdZ" = (
/obj/structure/filingcabinet,
-/turf/simulated/floor/carpet,
+/turf/simulated/floor/carpet/black,
/area/crew_quarters/captain/bedroom)
"cea" = (
/obj/structure/dresser,
-/turf/simulated/floor/carpet,
+/turf/simulated/floor/carpet/black,
/area/crew_quarters/captain/bedroom)
"ceb" = (
/obj/structure/table,
@@ -56356,20 +53146,9 @@
icon_state = "dark"
},
/area/crew_quarters/courtroom)
-"cec" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/crew_quarters/courtroom)
"ced" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 6
},
/obj/structure/chair{
dir = 4
@@ -56379,11 +53158,8 @@
},
/area/crew_quarters/courtroom)
"cee" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
/obj/structure/chair{
dir = 4
@@ -56422,9 +53198,6 @@
},
/area/crew_quarters/courtroom)
"cei" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutral"
@@ -56432,38 +53205,15 @@
/area/crew_quarters/courtroom)
"cej" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/table/wood,
-/obj/item/folder/blue{
- pixel_x = 0;
- pixel_y = 0
- },
+/obj/item/folder/blue,
/obj/item/pen,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "red"
},
/area/crew_quarters/courtroom)
-"cek" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/chair{
- dir = 8
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/crew_quarters/courtroom)
-"cel" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/wall,
-/area/lawoffice)
"cem" = (
/obj/structure/cable{
d1 = 1;
@@ -56471,26 +53221,18 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11;
- level = 1
- },
/obj/machinery/newscaster{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/machinery/light{
dir = 8
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
/area/lawoffice)
"cen" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/table/wood,
/obj/item/folder/yellow,
/obj/item/clothing/glasses/sunglasses,
@@ -56499,14 +53241,8 @@
},
/area/lawoffice)
"ceo" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11;
- level = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
/obj/structure/chair/office/dark{
dir = 8
@@ -56527,6 +53263,7 @@
icon_state = "pipe-c"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
@@ -56541,110 +53278,28 @@
},
/area/lawoffice)
"cer" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/obj/structure/chair/comfy/brown{
+ dir = 4
},
-/obj/structure/table/reinforced,
-/obj/machinery/newscaster{
- pixel_x = -32;
- pixel_y = 0
+/obj/effect/landmark/start{
+ name = "Magistrate"
},
-/obj/item/clipboard,
-/obj/item/toy/figure/secofficer,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "red"
- },
-/area/security/brig)
+/turf/simulated/floor/carpet,
+/area/magistrateoffice)
"ces" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/security/brig)
+/obj/structure/table/reinforced,
+/obj/item/paper_bin/nanotrasen,
+/obj/item/stamp/magistrate,
+/turf/simulated/floor/carpet,
+/area/magistrateoffice)
"cet" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/obj/structure/chair/comfy/black{
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/structure/filingcabinet/chestdrawer,
-/turf/simulated/floor/plasteel,
-/area/security/brig)
-"ceu" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plasteel,
-/area/security/brig)
-"cev" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/turf/simulated/floor/plasteel,
-/area/security/brig)
-"cew" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/door/airlock/security/glass{
- name = "Security Lobby";
- req_access_txt = "0"
- },
-/turf/simulated/floor/plasteel,
-/area/security/brig)
-"cex" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/turf/simulated/floor/plasteel,
-/area/security/brig)
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/carpet,
+/area/magistrateoffice)
"cey" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -56657,9 +53312,6 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -56672,121 +53324,120 @@
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11;
- level = 1
- },
/turf/simulated/floor/plasteel{
- dir = 2;
+ dir = 4;
icon_state = "redcorner"
},
/area/security/brig)
"ceA" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
},
-/turf/simulated/floor/plating,
-/area/security/brig)
-"ceB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/door/airlock/security{
+ name = "Security-Storage Backroom";
+ req_access = null;
+ req_access_txt = "63"
},
-/obj/structure/table/reinforced,
-/obj/item/restraints/handcuffs,
-/obj/item/flash,
+/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "red"
+ icon_state = "dark"
},
-/area/security/brig)
+/area/security/evidence)
+"ceB" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/evidence)
"ceC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
},
-/obj/effect/landmark/start{
- name = "Security Officer"
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/turf/simulated/floor/plasteel,
-/area/security/brig)
+/area/security/evidence)
"ceD" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/evidence)
+"ceE" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/machinery/door/window/brigdoor{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/evidence)
+"ceF" = (
+/obj/machinery/camera{
+ c_tag = "Brig Evidence Storage";
+ dir = 8
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/evidence)
+"ceG" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8";
+ tag = ""
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
/obj/structure/cable{
d1 = 1;
d2 = 4;
icon_state = "1-4"
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/obj/effect/landmark/start{
- name = "Security Officer"
- },
-/turf/simulated/floor/plasteel,
-/area/security/brig)
-"ceE" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/effect/landmark/start{
- name = "Security Officer"
- },
-/turf/simulated/floor/plasteel,
-/area/security/brig)
-"ceF" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
-/obj/machinery/hologram/holopad,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/security/brig)
-"ceG" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
- },
-/obj/effect/landmark/start{
- name = "Security Officer"
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel,
/area/security/brig)
"ceH" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/turf/simulated/floor/plasteel,
-/area/security/brig)
-"ceI" = (
-/obj/effect/spawner/window/reinforced,
/turf/simulated/floor/plating,
/area/security/brig)
"ceL" = (
@@ -56809,8 +53460,7 @@
"ceN" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/porta_turret,
/turf/simulated/floor/bluegrid,
@@ -56825,8 +53475,7 @@
/area/tcommsat/chamber)
"ceQ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -56834,8 +53483,7 @@
/area/tcommsat/chamber)
"ceT" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/cable/yellow{
d1 = 4;
@@ -56894,7 +53542,6 @@
/area/engine/engineering)
"cfa" = (
/obj/structure/closet/secure_closet/captains,
-/obj/effect/decal/warning_stripes/southeast,
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
@@ -56939,8 +53586,7 @@
/obj/effect/decal/warning_stripes/west,
/obj/machinery/door/airlock/engineering/glass{
name = "Engineering Storage";
- req_access_txt = "32";
- req_one_access_txt = "0"
+ req_access_txt = "32"
},
/turf/simulated/floor/plasteel,
/area/engine/engineering)
@@ -56963,8 +53609,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/engine/engineering)
"cfi" = (
@@ -56981,8 +53626,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/engine/engineering)
"cfj" = (
@@ -57061,8 +53705,7 @@
/obj/item/pen,
/obj/machinery/alarm{
dir = 4;
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/turf/simulated/floor/plasteel{
icon_state = "wood"
@@ -57174,8 +53817,7 @@
/obj/machinery/computer/security/mining,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/crew_quarters/heads/hop)
"cfD" = (
@@ -57194,12 +53836,10 @@
},
/area/crew_quarters/heads/hop)
"cfE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/table/wood,
/obj/machinery/recharger,
/obj/machinery/newscaster{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/turf/simulated/floor/plasteel{
icon_state = "wood"
@@ -57207,20 +53847,15 @@
/area/crew_quarters/heads/hop)
"cfF" = (
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
/area/ntrep)
"cfG" = (
-/obj/structure/chair/office/dark{
- dir = 1
- },
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
},
/turf/simulated/floor/carpet,
/area/ntrep)
@@ -57249,9 +53884,7 @@
/area/ntrep)
"cfJ" = (
/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "barber"
},
/area/civilian/barber)
@@ -57263,15 +53896,14 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "barber"
},
/area/civilian/barber)
"cfL" = (
/obj/structure/dresser,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "barber"
},
/area/civilian/barber)
@@ -57283,8 +53915,7 @@
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -57295,27 +53926,21 @@
},
/area/blueshield)
"cfN" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "bcarpet05"
},
/area/blueshield)
"cfO" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "bcarpet05"
},
/area/blueshield)
"cfP" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "wood"
@@ -57336,53 +53961,10 @@
req_access = null;
req_access_txt = "20"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/crew_quarters/captain/bedroom)
"cfR" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/wall/r_wall,
-/area/crew_quarters/captain/bedroom)
-"cfS" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 24
- },
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/central)
-"cfT" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plating,
-/area/crew_quarters/courtroom)
-"cfU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutral"
- },
-/area/crew_quarters/courtroom)
-"cfV" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/crew_quarters/courtroom)
-"cfW" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -57390,20 +53972,26 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/crew_quarters/courtroom)
-"cfX" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/area/hallway/primary/central)
+"cfS" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/firealarm{
dir = 4;
- level = 1
+ pixel_x = 24
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ icon_state = "neutralcorner"
+ },
+/area/hallway/primary/central)
+"cfX" = (
/obj/structure/table/wood,
/obj/item/gavelblock,
/obj/item/gavelhammer,
@@ -57413,12 +54001,10 @@
},
/area/crew_quarters/courtroom)
"cfY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- level = 1
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/table/wood,
/obj/item/paper_bin,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "blue"
@@ -57441,8 +54027,7 @@
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/obj/effect/landmark/start{
name = "Internal Affairs Agent"
@@ -57464,7 +54049,6 @@
},
/area/lawoffice)
"cgc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/chair/office/dark{
dir = 8
},
@@ -57481,145 +54065,116 @@
},
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
/area/lawoffice)
-"cge" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/camera{
- c_tag = "Security Hallway South";
- dir = 8;
- network = list("SS13","Security")
- },
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "redcorner"
- },
-/area/security/brig)
"cgf" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
/obj/structure/table/reinforced,
-/obj/machinery/light/small{
- dir = 8;
- icon_state = "bulb1";
- tag = "icon-bulb1 (WEST)"
- },
-/obj/item/paper_bin,
-/obj/item/pen,
-/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "red"
- },
-/area/security/brig)
+/obj/item/megaphone,
+/obj/item/taperecorder,
+/turf/simulated/floor/carpet,
+/area/magistrateoffice)
"cgg" = (
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
+/obj/structure/closet/secure_closet,
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/evidence)
+"cgh" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 5
+ },
+/turf/simulated/floor/carpet,
+/area/magistrateoffice)
+"cgi" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -25
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/carpet,
+/area/magistrateoffice)
+"cgj" = (
+/obj/machinery/light,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/obj/machinery/power/apc{
- dir = 1;
- name = "north bump";
- pixel_x = 0;
- pixel_y = 24
- },
-/obj/machinery/camera{
- c_tag = "Officer Equipment Storage";
- network = list("SS13","Security")
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "red"
- },
-/area/security/brig)
-"cgh" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ name = "south bump";
+ pixel_y = -24
},
/obj/structure/cable{
- d1 = 1;
d2 = 4;
- icon_state = "1-4"
+ icon_state = "0-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "red"
- },
-/area/security/brig)
-"cgi" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/door/airlock/security{
- name = "Security Checkpoint";
- req_access = null;
- req_access_txt = "1"
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "red"
- },
-/area/security/brig)
-"cgj" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel,
-/area/security/brig)
-"cgk" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/chair{
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
dir = 1
},
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "red"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/security/brig)
-"cgl" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "cult"
+ },
+/area/magistrateoffice)
+"cgk" = (
+/obj/item/twohanded/required/kirbyplants,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/plasteel,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "cult"
+ },
+/area/magistrateoffice)
+"cgl" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4;
+ initialize_directions = 11
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4;
+ initialize_directions = 11
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "redcorner"
+ },
/area/security/brig)
"cgm" = (
/obj/structure/cable{
@@ -57628,58 +54183,57 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel,
-/area/security/brig)
-"cgn" = (
-/obj/structure/table/reinforced,
-/obj/item/radio,
-/obj/item/radio,
-/obj/item/radio,
-/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "red"
- },
-/area/security/brig)
-"cgo" = (
-/obj/structure/closet/secure_closet/security,
-/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "red"
- },
-/area/security/brig)
-"cgp" = (
-/obj/structure/closet/wardrobe/red,
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
- },
-/area/security/brig)
-"cgq" = (
-/obj/structure/closet/secure_closet/security,
-/obj/machinery/light,
-/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "red"
- },
-/area/security/brig)
-"cgr" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8";
tag = ""
},
-/obj/structure/table/reinforced,
-/obj/machinery/recharger,
/turf/simulated/floor/plasteel,
/area/security/brig)
-"cgs" = (
-/obj/machinery/vending/security,
+"cgo" = (
+/obj/structure/closet/secure_closet,
+/obj/item/radio/intercom{
+ dir = 8;
+ pixel_y = -28
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/evidence)
+"cgp" = (
+/obj/structure/table,
+/obj/item/hand_labeler,
+/obj/item/storage/box/evidence,
+/obj/item/storage/box/evidence,
+/obj/item/pen,
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/evidence)
+"cgq" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/evidence)
+"cgr" = (
+/obj/structure/cable,
+/obj/machinery/power/treadmill,
+/obj/machinery/treadmill_monitor{
+ id = "Cell 4";
+ pixel_y = -32
+ },
+/obj/machinery/flasher{
+ id = "Cell 5";
+ pixel_x = -28
+ },
/turf/simulated/floor/plasteel,
/area/security/brig)
"cgu" = (
@@ -57701,7 +54255,6 @@
},
/obj/machinery/alarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/obj/machinery/door/firedoor,
@@ -57730,19 +54283,14 @@
/obj/machinery/door/poddoor/shutters{
density = 0;
dir = 8;
- icon_state = "shutter0";
+ icon_state = "open";
id_tag = "hopqueueshutters";
name = "Queue Shutters";
opacity = 0
},
/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/arrow{
- dir = 8;
- icon_state = "4"
- },
-/obj/effect/decal/warning_stripes/yellow/partial{
- dir = 8;
- icon_state = "3"
+/obj/effect/turf_decal/loading_area{
+ dir = 8
},
/turf/simulated/floor/plasteel,
/area/hallway/primary/central)
@@ -57751,8 +54299,9 @@
id = "hopflash";
pixel_y = 58
},
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "bot"
+ },
/area/hallway/primary/central)
"cgG" = (
/obj/effect/spawner/window/reinforced,
@@ -57830,7 +54379,7 @@
/area/engine/engineering)
"cgQ" = (
/obj/machinery/shieldwallgen,
-/obj/effect/decal/warning_stripes/yellow,
+/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
/area/teleporter)
"cgR" = (
@@ -57850,8 +54399,7 @@
/obj/machinery/photocopier,
/obj/machinery/camera{
c_tag = "Magistrate's Office";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/turf/simulated/floor/plasteel{
icon_state = "wood"
@@ -57882,8 +54430,7 @@
/obj/structure/table/wood,
/obj/item/flashlight/lamp,
/obj/machinery/newscaster{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/turf/simulated/floor/plasteel{
icon_state = "wood"
@@ -57899,8 +54446,7 @@
/area/library)
"cgY" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "grimy"
@@ -57914,8 +54460,7 @@
/area/library)
"cha" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
},
/turf/simulated/floor/plasteel{
icon_state = "grimy"
@@ -57933,9 +54478,9 @@
},
/area/hallway/primary/port)
"chc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
@@ -57961,8 +54506,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/crew_quarters/heads/hop)
"chg" = (
@@ -57977,25 +54521,12 @@
/obj/structure/disposalpipe/segment,
/obj/structure/table/wood,
/obj/item/paper_bin,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
+/turf/simulated/floor/carpet,
/area/crew_quarters/heads/hop)
"chi" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
+/turf/simulated/floor/carpet,
/area/crew_quarters/heads/hop)
"chj" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/photocopier,
/turf/simulated/floor/plasteel{
icon_state = "wood"
@@ -58038,7 +54569,6 @@
/area/ntrep)
"chn" = (
/obj/effect/spawner/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
/area/civilian/barber)
"cho" = (
@@ -58053,13 +54583,13 @@
name = "Barber Shop"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "barber"
},
/area/civilian/barber)
"chp" = (
-/turf/simulated/wall,
+/turf/simulated/wall/r_wall,
/area/civilian/barber)
"chq" = (
/obj/structure/cable{
@@ -58080,7 +54610,6 @@
"chr" = (
/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "bcarpet05"
},
/area/blueshield)
@@ -58112,8 +54641,7 @@
/area/teleporter)
"chw" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/lattice/catwalk,
/turf/space,
@@ -58129,11 +54657,12 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plating,
/area/teleporter)
"chy" = (
@@ -58151,6 +54680,9 @@
dir = 10
},
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
/turf/simulated/floor/plating,
/area/teleporter)
"chz" = (
@@ -58160,38 +54692,22 @@
"chA" = (
/obj/structure/closet/emcloset,
/obj/machinery/light/small{
- dir = 4;
- pixel_y = 0
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/teleporter)
"chB" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11;
- level = 1
- },
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "neutralcorner"
+ icon_state = "bluecorner"
},
/area/hallway/primary/central)
"chC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/crew_quarters/courtroom)
-"chD" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11;
- level = 1
+ dir = 8;
+ initialize_directions = 11
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -58234,7 +54750,6 @@
},
/area/crew_quarters/courtroom)
"chI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/table/wood,
/obj/item/folder/yellow,
/obj/item/folder/blue{
@@ -58256,31 +54771,22 @@
},
/area/crew_quarters/courtroom)
"chK" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
+/obj/structure/table/reinforced,
+/obj/item/pen/multi/gold,
+/obj/item/book/manual/security_space_law,
+/obj/machinery/light,
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 4
},
-/obj/machinery/camera{
- c_tag = "Security Front Desk";
- dir = 1;
- network = list("SS13","Security")
- },
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "red"
- },
-/area/security/brig)
+/obj/item/gavelhammer,
+/obj/item/gavelblock,
+/turf/simulated/floor/carpet,
+/area/magistrateoffice)
"chL" = (
/obj/structure/table/wood,
/obj/item/flashlight/lamp,
/obj/item/radio/intercom{
dir = 8;
- name = "station intercom (General)";
pixel_x = -28
},
/turf/simulated/floor/plasteel{
@@ -58293,7 +54799,6 @@
/obj/item/pen,
/obj/machinery/requests_console{
name = "Detective Requests Console";
- pixel_x = 0;
pixel_y = -30
},
/turf/simulated/floor/plasteel{
@@ -58301,7 +54806,6 @@
},
/area/lawoffice)
"chN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
icon_state = "wood"
@@ -58316,6 +54820,7 @@
},
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
@@ -58350,12 +54855,19 @@
icon_state = "2-4";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/airlock/security/glass{
id_tag = "BrigEast";
name = "Brig";
req_access_txt = "63"
},
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Secure Gate";
+ name = "Security Blast Door";
+ opacity = 0
+ },
+/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel,
/area/security/brig)
"chR" = (
@@ -58364,8 +54876,13 @@
d2 = 8;
icon_state = "0-8"
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Secure Gate";
+ name = "Security Blast Door";
+ opacity = 0
+ },
/turf/simulated/floor/plating,
/area/security/brig)
"chS" = (
@@ -58378,8 +54895,7 @@
/obj/machinery/atmospherics/unary/vent_pump{
dir = 1;
external_pressure_bound = 101;
- on = 1;
- pressure_checks = 1
+ on = 1
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -58399,8 +54915,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/cable{
d1 = 1;
@@ -58415,8 +54930,7 @@
"chX" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10;
- initialize_directions = 10;
- level = 1
+ initialize_directions = 10
},
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
@@ -58434,8 +54948,7 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/engineering/glass{
name = "Engineering";
- req_access_txt = "10";
- req_one_access_txt = "0"
+ req_access_txt = "10"
},
/turf/simulated/floor/plasteel,
/area/engine/engineering)
@@ -58628,8 +55141,7 @@
"civ" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
icon_state = "grimy"
@@ -58676,15 +55188,10 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/yellow,
/obj/machinery/door/airlock/public/glass,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/starboard)
@@ -58696,8 +55203,7 @@
dir = 1
},
/obj/machinery/newscaster{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/turf/simulated/floor/plasteel{
icon_state = "wood"
@@ -58708,16 +55214,12 @@
/obj/structure/chair/office/dark{
dir = 1
},
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
+/turf/simulated/floor/carpet,
/area/crew_quarters/heads/hop)
"ciE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/bed/dogbed/ian,
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/mob/living/simple_animal/pet/dog/corgi/Ian,
@@ -58758,13 +55260,11 @@
},
/obj/machinery/alarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/obj/machinery/camera{
c_tag = "NT Representative's Office";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/obj/structure/disposalpipe/trunk{
dir = 4
@@ -58792,8 +55292,12 @@
icon_state = "2-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
@@ -58808,15 +55312,14 @@
d2 = 8;
icon_state = "0-8"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plating,
/area/ntrep)
-"ciK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/bridge/meeting_room)
"ciL" = (
/obj/structure/cable{
d1 = 1;
@@ -58824,10 +55327,11 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 1;
+ icon_state = "neutral"
},
/area/bridge/meeting_room)
"ciM" = (
@@ -58839,9 +55343,15 @@
dir = 1;
on = 1
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 4;
+ icon_state = "neutralcorner"
},
/area/bridge/meeting_room)
"ciN" = (
@@ -58850,6 +55360,12 @@
d2 = 4;
icon_state = "0-4"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plating,
/area/blueshield)
"ciO" = (
@@ -58870,8 +55386,12 @@
d2 = 4;
icon_state = "2-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
@@ -58889,13 +55409,11 @@
},
/obj/machinery/alarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/obj/machinery/camera{
c_tag = "Blueshield's Office";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/obj/structure/disposalpipe/trunk{
dir = 8
@@ -58934,9 +55452,9 @@
/turf/simulated/wall,
/area/teleporter)
"ciT" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/status_display,
/turf/simulated/wall,
-/area/teleporter)
+/area/crew_quarters/captain/bedroom)
"ciU" = (
/obj/structure/cable{
d1 = 1;
@@ -58950,14 +55468,10 @@
name = "Teleporter Maintenance";
req_access_txt = "17"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/teleporter)
"ciV" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11;
- level = 1
- },
/obj/structure/sign/securearea{
pixel_x = -32
},
@@ -58969,17 +55483,6 @@
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
-"ciW" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/central)
"ciX" = (
/obj/machinery/status_display{
pixel_y = -32
@@ -59003,47 +55506,34 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/engine/engineering)
-"ciY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/crew_quarters/courtroom)
-"ciZ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/crew_quarters/courtroom)
"cja" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ dir = 6
},
/obj/structure/chair{
dir = 4
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8;
+ initialize_directions = 11
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/crew_quarters/courtroom)
"cjb" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11;
- level = 1
- },
/obj/structure/chair{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -59053,12 +55543,18 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plating,
/area/crew_quarters/courtroom)
"cjd" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutral"
@@ -59068,6 +55564,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -59080,7 +55579,11 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1;
+ initialize_directions = 11
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/turf/simulated/floor/plasteel{
@@ -59089,13 +55592,14 @@
},
/area/crew_quarters/courtroom)
"cjg" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
/obj/structure/table/wood,
/obj/item/radio/intercom,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 10;
icon_state = "blue"
@@ -59108,21 +55612,21 @@
pixel_y = 4
},
/obj/item/storage/secure/briefcase,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "blue"
},
/area/crew_quarters/courtroom)
"cji" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "blue"
},
/area/crew_quarters/courtroom)
-"cjj" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/wall,
-/area/lawoffice)
"cjk" = (
/obj/structure/cable{
d1 = 1;
@@ -59136,20 +55640,18 @@
name = "Internal Affairs Maintenance";
req_access_txt = "38"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
/area/lawoffice)
"cjl" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/transit_tube{
- icon_state = "D-NE";
- tag = "icon-D-NE"
+ icon_state = "D-NE"
},
/obj/structure/transit_tube{
- icon_state = "D-SE";
- tag = "icon-D-SE"
+ icon_state = "D-SE"
},
/obj/structure/lattice/catwalk,
/turf/space,
@@ -59190,17 +55692,16 @@
/area/security/range)
"cjs" = (
/obj/machinery/light/small{
- dir = 8;
- icon_state = "bulb1";
- tag = "icon-bulb1 (WEST)"
+ dir = 8
},
/obj/structure/extinguisher_cabinet{
- pixel_x = -28;
- pixel_y = 0
+ pixel_x = -28
},
/obj/structure/closet/crate,
/obj/item/target/syndicate,
/obj/item/target/syndicate,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/security/range)
"cjt" = (
@@ -59210,64 +55711,37 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11;
- level = 1
- },
/turf/simulated/floor/plasteel,
/area/security/range)
"cju" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/table/reinforced,
/obj/machinery/recharger,
+/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plasteel,
/area/security/range)
"cjv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/structure/window/reinforced{
dir = 8
},
/turf/simulated/floor/plating,
/area/security/range)
"cjw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plating,
-/area/security/range)
-"cjx" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/light{
- dir = 1;
- in_use = 1
- },
/obj/structure/sign/securearea{
pixel_y = 32
},
/turf/simulated/floor/plating,
/area/security/range)
-"cjy" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
+"cjx" = (
+/obj/machinery/light{
+ dir = 1;
+ in_use = 1
},
/turf/simulated/floor/plating,
/area/security/range)
+"cjy" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/plating,
+/area/security/range)
"cjz" = (
/turf/simulated/floor/plating,
/area/security/range)
@@ -59440,16 +55914,14 @@
/area/maintenance/fpmaint2)
"cjW" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/warning_stripes/southeast,
/turf/simulated/floor/plasteel,
/area/maintenance/fpmaint2)
"cjX" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/door/airlock/maintenance,
/obj/effect/decal/warning_stripes/west,
@@ -59464,13 +55936,12 @@
},
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/teleporter)
"cjZ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
@@ -59496,8 +55967,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
@@ -59510,8 +55980,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plating,
/area/maintenance/fpmaint2)
@@ -59523,8 +55992,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/cleanable/dirt,
@@ -59554,8 +56022,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
},
/turf/simulated/floor/plasteel,
/area/maintenance/fpmaint2)
@@ -59567,8 +56034,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/door/airlock/maintenance{
name = "Library Maintenance";
@@ -59584,8 +56050,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "wood"
@@ -59599,8 +56064,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
@@ -59610,8 +56074,7 @@
"cki" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
icon_state = "grimy"
@@ -59636,34 +56099,27 @@
},
/area/library)
"ckm" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/extinguisher_cabinet{
pixel_x = 26
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
"ckn" = (
/obj/structure/dresser,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
+/turf/simulated/floor/carpet,
/area/crew_quarters/heads/hop)
"cko" = (
/obj/machinery/light{
dir = 1
},
/obj/structure/filingcabinet,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
+/turf/simulated/floor/carpet,
/area/crew_quarters/heads/hop)
"ckp" = (
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/obj/structure/extinguisher_cabinet{
pixel_x = -26
@@ -59680,33 +56136,20 @@
tag = ""
},
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
+/turf/simulated/floor/carpet,
/area/crew_quarters/heads/hop)
"ckr" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
/obj/structure/cable{
- d1 = 1;
+ d1 = 4;
d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ icon_state = "4-8"
},
+/turf/simulated/floor/carpet,
/area/crew_quarters/heads/hop)
"cks" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/item/twohanded/required/kirbyplants,
/obj/machinery/ai_status_display{
pixel_x = 32
},
@@ -59731,8 +56174,6 @@
name = "NT Representative's Office";
req_access_txt = "73"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
icon_state = "wood"
@@ -59756,8 +56197,6 @@
name = "Blueshield's Office";
req_access_txt = "67"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
icon_state = "wood"
@@ -59772,13 +56211,9 @@
/obj/machinery/light{
dir = 8
},
-/obj/effect/decal/warning_stripes/arrow,
-/obj/effect/decal/warning_stripes/yellow/partial,
/turf/simulated/floor/plasteel,
/area/teleporter)
"ckz" = (
-/obj/effect/decal/warning_stripes/arrow,
-/obj/effect/decal/warning_stripes/yellow/partial,
/turf/simulated/floor/plasteel,
/area/teleporter)
"ckA" = (
@@ -59786,7 +56221,6 @@
/obj/item/stack/packageWrap,
/obj/item/hand_labeler,
/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
pixel_y = 30
},
/turf/simulated/floor/plasteel,
@@ -59803,7 +56237,6 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/obj/structure/table,
@@ -59815,7 +56248,6 @@
dir = 2;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/table,
/obj/machinery/cell_charger,
/obj/item/stock_parts/cell/high,
@@ -59830,17 +56262,15 @@
/obj/machinery/door_control{
id = "teleaccessshutter";
name = "Teleporter Shutters Access Control";
- pixel_x = 0;
pixel_y = 24;
- req_access_txt = "62"
+ req_access_txt = "17"
},
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
/area/teleporter)
"ckE" = (
/obj/machinery/light/small{
- dir = 4;
- pixel_y = 0
+ dir = 4
},
/obj/effect/decal/warning_stripes/northeast,
/turf/simulated/floor/plating,
@@ -59867,7 +56297,6 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralcorner"
@@ -59891,45 +56320,41 @@
"ckJ" = (
/obj/structure/disposalpipe/junction{
dir = 1;
- icon_state = "pipe-j2";
- tag = "icon-pipe-j2"
+ icon_state = "pipe-j2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
"ckK" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
/obj/structure/chair{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8;
+ initialize_directions = 11
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/crew_quarters/courtroom)
"ckL" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
/obj/structure/chair{
dir = 4
},
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/crew_quarters/courtroom)
"ckM" = (
/obj/structure/table/wood,
-/obj/item/folder/blue{
- pixel_x = 0;
- pixel_y = 0
- },
+/obj/item/folder/blue,
/obj/item/pen,
/turf/simulated/floor/plasteel{
dir = 10;
@@ -59950,12 +56375,12 @@
icon_state = "1-2";
tag = ""
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "neutral"
},
/area/crew_quarters/courtroom)
"ckP" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "neutral"
},
@@ -60007,7 +56432,6 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
/area/maintenance/starboard)
"ckU" = (
@@ -60026,8 +56450,10 @@
dir = 8
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
},
/turf/simulated/floor/plating,
/area/maintenance/starboard)
@@ -60042,12 +56468,14 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/light/small{
dir = 1
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plating,
/area/maintenance/starboard)
"ckW" = (
@@ -60061,8 +56489,10 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plating,
/area/maintenance/starboard)
@@ -60077,12 +56507,14 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/landmark{
name = "blobstart"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plating,
/area/maintenance/starboard)
"ckY" = (
@@ -60096,10 +56528,12 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/maintenance/starboard)
"ckZ" = (
@@ -60115,14 +56549,16 @@
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/junction{
- dir = 8;
- icon_state = "pipe-j2";
- tag = "icon-pipe-j1 (WEST)"
- },
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plating,
/area/maintenance/starboard)
@@ -60133,17 +56569,16 @@
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/door/airlock/maintenance{
name = "Security Maintenance";
req_access_txt = "1"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/security/range)
"clb" = (
@@ -60153,16 +56588,10 @@
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/warning_stripes/west,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/security/range)
"clc" = (
@@ -60188,11 +56617,13 @@
icon_state = "2-4";
tag = ""
},
-/obj/structure/disposalpipe/segment{
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/security/range)
"cld" = (
@@ -60202,17 +56633,11 @@
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1;
+ initialize_directions = 11
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/plasteel,
/area/security/range)
"cle" = (
@@ -60226,6 +56651,12 @@
dir = 8;
req_access_txt = "63"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plating,
/area/security/range)
"clf" = (
@@ -60310,9 +56741,7 @@
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'RADIOACTIVE AREA'";
icon_state = "radiation";
- name = "RADIOACTIVE AREA";
- pixel_x = 0;
- pixel_y = 0
+ name = "RADIOACTIVE AREA"
},
/turf/simulated/wall/r_wall,
/area/engine/engineering)
@@ -60362,8 +56791,7 @@
"clx" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/light/small{
dir = 8
@@ -60411,8 +56839,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
icon_state = "grimy"
@@ -60485,19 +56912,15 @@
/area/library)
"clI" = (
/obj/machinery/newscaster{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/structure/bed,
/obj/item/bedsheet/hop,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
+/turf/simulated/floor/carpet,
/area/crew_quarters/heads/hop)
"clJ" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
},
/obj/machinery/light_switch{
pixel_x = 26;
@@ -60506,14 +56929,11 @@
/obj/effect/landmark/start{
name = "Head of Personnel"
},
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
+/turf/simulated/floor/carpet,
/area/crew_quarters/heads/hop)
"clK" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/door/airlock/command/glass{
name = "Head of Personnel Bedroom";
@@ -60525,8 +56945,7 @@
/area/crew_quarters/heads/hop)
"clL" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "wood"
@@ -60540,44 +56959,37 @@
tag = ""
},
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
+/turf/simulated/floor/carpet,
/area/crew_quarters/heads/hop)
"clN" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
+/turf/simulated/floor/carpet,
/area/crew_quarters/heads/hop)
"clO" = (
/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4;
+ initialize_directions = 11
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/carpet,
/area/crew_quarters/heads/hop)
"clP" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/table/wood,
/obj/item/clipboard,
-/obj/item/toy/figure/ian,
+/obj/item/toy/figure/crew/ian,
/obj/item/radio/intercom{
dir = 4;
- name = "station intercom (General)";
pixel_x = 28
},
/turf/simulated/floor/plasteel{
@@ -60591,24 +57003,10 @@
icon_state = "1-4";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/bridge/meeting_room)
-"clR" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 1;
+ icon_state = "neutralcorner"
},
/area/bridge/meeting_room)
"clS" = (
@@ -60618,10 +57016,9 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 1;
+ icon_state = "neutralcorner"
},
/area/bridge/meeting_room)
"clT" = (
@@ -60643,6 +57040,7 @@
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -60659,8 +57057,8 @@
c_tag = "Central Ring Hallway Center"
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 4;
+ icon_state = "neutralcorner"
},
/area/bridge/meeting_room)
"clV" = (
@@ -60670,12 +57068,10 @@
icon_state = "1-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 4;
+ icon_state = "neutralcorner"
},
/area/bridge/meeting_room)
"clW" = (
@@ -60683,27 +57079,25 @@
/obj/item/storage/toolbox/emergency,
/obj/item/crowbar,
/obj/item/wrench,
-/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
/area/teleporter)
"clX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 6
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
+/turf/simulated/floor/plasteel,
/area/teleporter)
"clY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
+/turf/simulated/floor/plasteel,
/area/teleporter)
"clZ" = (
/obj/structure/cable{
@@ -60716,15 +57110,13 @@
icon_state = "pipe-c"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/hologram/holopad,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
+/turf/simulated/floor/plasteel,
/area/teleporter)
"cma" = (
/obj/structure/cable{
@@ -60735,18 +57127,15 @@
},
/obj/structure/disposalpipe/junction{
dir = 4;
- icon_state = "pipe-j2";
- tag = "icon-pipe-j2 (EAST)"
+ icon_state = "pipe-j2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
+/turf/simulated/floor/plasteel,
/area/teleporter)
"cmb" = (
/obj/structure/cable{
@@ -60762,17 +57151,16 @@
},
/obj/structure/disposalpipe/junction{
dir = 4;
- icon_state = "pipe-j2";
- tag = "icon-pipe-j2 (EAST)"
+ icon_state = "pipe-j2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- level = 1
+ dir = 9
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4;
+ initialize_directions = 11
},
+/turf/simulated/floor/plasteel,
/area/teleporter)
"cmc" = (
/obj/structure/cable{
@@ -60793,7 +57181,7 @@
/obj/machinery/status_display{
pixel_x = 32
},
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plating,
/area/teleporter)
"cme" = (
/obj/structure/disposalpipe/segment,
@@ -60802,8 +57190,8 @@
c_tag = "Central Ring Hallway East";
dir = 8
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
@@ -60811,22 +57199,12 @@
/obj/item/twohanded/required/kirbyplants,
/obj/item/radio/intercom{
dir = 8;
- name = "station intercom (General)";
pixel_x = -28
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/crew_quarters/courtroom)
-"cmg" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/chair{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/crew_quarters/courtroom)
"cmh" = (
/obj/structure/chair{
dir = 1
@@ -60853,16 +57231,7 @@
tag = ""
},
/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/crew_quarters/courtroom)
-"cmk" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
+ dir = 1
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -60899,26 +57268,12 @@
},
/turf/simulated/floor/plating,
/area/maintenance/starboard)
-"cmp" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
- },
-/obj/structure/girder,
-/turf/simulated/floor/plating,
-/area/maintenance/starboard)
"cmq" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/rack,
/obj/effect/spawner/lootdrop/maintenance,
/turf/simulated/floor/plasteel,
/area/maintenance/starboard)
"cmr" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/maintenance/starboard)
@@ -60935,14 +57290,6 @@
},
/turf/simulated/floor/plating,
/area/maintenance/starboard)
-"cmu" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11;
- level = 1
- },
-/turf/simulated/floor/plasteel,
-/area/maintenance/starboard)
"cmv" = (
/obj/structure/cable{
d1 = 1;
@@ -60957,12 +57304,6 @@
},
/turf/simulated/floor/plating,
/area/maintenance/starboard)
-"cmw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/wall,
-/area/security/range)
"cmx" = (
/obj/structure/table/reinforced,
/obj/effect/decal/warning_stripes/north,
@@ -60973,12 +57314,10 @@
d2 = 4;
icon_state = "0-4"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/warning_stripes/yellow,
@@ -60996,28 +57335,10 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
/area/security/range)
-"cmA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/simulated/floor/plating,
-/area/security/range)
-"cmB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/security/range)
"cmC" = (
/obj/structure/lattice,
/obj/machinery/camera{
@@ -61029,7 +57350,7 @@
/area/engine/engineering)
"cmD" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
+ dir = 1
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
@@ -61039,7 +57360,6 @@
/turf/simulated/floor/plating,
/area/security/range)
"cmF" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/structure/table/reinforced,
/obj/machinery/alarm{
dir = 1;
@@ -61050,6 +57370,9 @@
/obj/item/clothing/ears/earmuffs,
/obj/item/clothing/ears/earmuffs,
/obj/effect/decal/warning_stripes/southeast,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
/turf/simulated/floor/plasteel,
/area/security/range)
"cmG" = (
@@ -61075,7 +57398,6 @@
"cmM" = (
/obj/structure/closet/secure_closet/engineering_personal,
/obj/machinery/newscaster{
- pixel_x = 0;
pixel_y = -32
},
/obj/effect/decal/warning_stripes/yellow,
@@ -61086,7 +57408,6 @@
department = "Engineering";
departmentType = 3;
name = "Engineering Requests Console";
- pixel_x = 0;
pixel_y = -30
},
/obj/structure/closet/secure_closet/engineering_personal,
@@ -61101,7 +57422,7 @@
"cmO" = (
/obj/structure/table/reinforced,
/obj/item/clipboard,
-/obj/item/toy/figure/engineer,
+/obj/item/toy/figure/crew/engineer,
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
dir = 6;
@@ -61111,14 +57432,12 @@
"cmP" = (
/obj/structure/table/reinforced,
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/obj/item/storage/toolbox/mechanical,
/obj/item/flashlight,
/obj/item/radio/intercom{
dir = 8;
- name = "station intercom (General)";
pixel_x = -28
},
/obj/effect/decal/warning_stripes/yellow/hollow,
@@ -61205,7 +57524,6 @@
dir = 1;
pixel_y = -24
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
/area/teleporter)
"cmY" = (
@@ -61246,7 +57564,6 @@
/obj/structure/dispenser,
/obj/item/radio/intercom{
dir = 1;
- name = "station intercom (General)";
pixel_y = 25
},
/obj/effect/decal/warning_stripes/yellow/hollow,
@@ -61279,8 +57596,7 @@
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/turf/simulated/floor/plasteel{
icon_state = "wood"
@@ -61333,8 +57649,7 @@
/obj/structure/table/wood,
/obj/machinery/computer/library/checkout,
/obj/machinery/newscaster{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
@@ -61346,18 +57661,13 @@
/obj/item/flashlight/lamp/green,
/obj/item/radio/intercom{
dir = 8;
- name = "station intercom (General)";
pixel_x = -28
},
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
+/turf/simulated/floor/carpet,
/area/crew_quarters/heads/hop)
"cnp" = (
/obj/structure/closet/secure_closet/hop,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
+/turf/simulated/floor/carpet,
/area/crew_quarters/heads/hop)
"cnq" = (
/obj/structure/cable{
@@ -61375,7 +57685,6 @@
},
/area/crew_quarters/heads/hop)
"cnr" = (
-/obj/item/twohanded/required/kirbyplants,
/obj/machinery/firealarm{
dir = 1;
pixel_y = -24
@@ -61392,12 +57701,12 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
/area/crew_quarters/heads/hop)
"cnt" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/item/twohanded/required/kirbyplants,
/obj/machinery/light_switch{
pixel_x = -8;
@@ -61407,43 +57716,22 @@
icon_state = "wood"
},
/area/crew_quarters/heads/hop)
-"cnu" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/bridge/meeting_room)
"cnv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/bridge/meeting_room)
+/obj/structure/disposalpipe/segment,
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/carpet,
+/area/crew_quarters/heads/hop)
"cnw" = (
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- icon_state = "neutralfull"
+ initialize_directions = 11
},
-/area/bridge/meeting_room)
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ icon_state = "neutralcorner"
+ },
+/area/hallway/primary/central)
"cnx" = (
/obj/structure/cable{
d1 = 1;
@@ -61451,48 +57739,32 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/bridge/meeting_room)
"cny" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 4;
+ icon_state = "neutralcorner"
},
/area/bridge/meeting_room)
"cnz" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11;
- level = 1
- },
-/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/teleporter)
"cnA" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
/obj/machinery/camera{
c_tag = "Teleporter";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/obj/machinery/light_switch{
pixel_x = -8;
@@ -61506,22 +57778,23 @@
/turf/simulated/floor/plasteel,
/area/teleporter)
"cnC" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/teleporter)
+/turf/simulated/floor/plasteel{
+ icon_state = "neutralcorner"
+ },
+/area/hallway/primary/central)
"cnD" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
+ dir = 1
},
/obj/machinery/light,
/obj/machinery/alarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/obj/effect/decal/warning_stripes/southwestcorner,
@@ -61539,35 +57812,25 @@
/area/teleporter)
"cnF" = (
/obj/machinery/light/small{
- dir = 4;
- pixel_y = 0
+ dir = 4
},
/obj/effect/decal/warning_stripes/southeast,
/turf/simulated/floor/plating,
/area/security/range)
"cnG" = (
/obj/machinery/computer/teleporter,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plating,
/area/teleporter)
"cnH" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/transit_tube{
- icon_state = "E-SW-NW";
- tag = "icon-E-SW-NW"
+ icon_state = "E-SW-NW"
},
/obj/structure/lattice/catwalk,
/turf/space,
/area/space/nearstation)
-"cnI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/item/twohanded/required/kirbyplants,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/crew_quarters/courtroom)
"cnJ" = (
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
@@ -61620,8 +57883,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/yellow,
@@ -61633,10 +57895,6 @@
"cnP" = (
/turf/simulated/wall,
/area/crew_quarters/locker)
-"cnQ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/wall,
-/area/maintenance/starboard)
"cnR" = (
/obj/structure/cable{
d1 = 1;
@@ -61647,6 +57905,7 @@
/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)
"cnS" = (
@@ -61685,8 +57944,9 @@
/turf/space,
/area/space/nearstation)
"cnW" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "bot"
+ },
/area/hallway/primary/central)
"cnX" = (
/obj/structure/lattice,
@@ -61775,8 +58035,7 @@
/area/engine/engineering)
"coi" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/transit_tube{
icon_state = "E-W-Pass"
@@ -61801,8 +58060,7 @@
"col" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/structure/cable/yellow{
d1 = 1;
@@ -61821,8 +58079,7 @@
icon_state = "0-2"
},
/obj/machinery/power/terminal{
- dir = 1;
- icon_state = "term"
+ dir = 1
},
/obj/effect/decal/warning_stripes/northeast,
/turf/simulated/floor/plasteel,
@@ -61859,6 +58116,7 @@
name = "Teleport Access";
req_access_txt = "17"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/teleporter)
"cor" = (
@@ -61881,8 +58139,7 @@
"cot" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10;
- initialize_directions = 10;
- level = 1
+ initialize_directions = 10
},
/obj/machinery/field/generator{
anchored = 1
@@ -61904,8 +58161,7 @@
"cow" = (
/obj/structure/bookcase,
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/turf/simulated/floor/plasteel{
icon_state = "wood"
@@ -61924,16 +58180,13 @@
"coy" = (
/obj/machinery/atmospherics/unary/vent_pump{
dir = 4;
- external_pressure_bound = 101.325;
- on = 1;
- pressure_checks = 1
+ on = 1
},
/turf/simulated/floor/carpet,
/area/library)
"coz" = (
/obj/machinery/status_display{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/machinery/libraryscanner,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -61946,7 +58199,7 @@
/obj/structure/cable,
/obj/machinery/door/poddoor{
density = 0;
- icon_state = "pdoor0";
+ icon_state = "open";
id_tag = "hopprivacy";
name = "HoP Privacy Blast Doors";
opacity = 0
@@ -61964,7 +58217,7 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/poddoor{
density = 0;
- icon_state = "pdoor0";
+ icon_state = "open";
id_tag = "hopprivacy";
name = "HoP Privacy Blast Doors";
opacity = 0
@@ -61974,6 +58227,7 @@
req_access = null;
req_access_txt = "57"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
@@ -61989,12 +58243,11 @@
"coD" = (
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 1;
+ icon_state = "neutralcorner"
},
/area/bridge/meeting_room)
"coE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
@@ -62003,31 +58256,25 @@
},
/area/hallway/primary/central)
"coF" = (
-/obj/machinery/door/poddoor/shutters{
- dir = 2;
- id_tag = "teleportershutter";
- name = "Teleporter Shutters"
- },
/obj/machinery/door_control{
id = "teleportershutter";
name = "Teleporter Shutters Access Control";
pixel_x = -24;
- pixel_y = 0;
- req_access_txt = "62"
+ req_access_txt = "17"
},
-/obj/effect/decal/warning_stripes/north,
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/teleporter)
-"coG" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/door/poddoor/shutters{
dir = 2;
id_tag = "teleportershutter";
name = "Teleporter Shutters"
},
-/obj/effect/decal/warning_stripes/north,
-/obj/effect/decal/warning_stripes/south,
+/turf/simulated/floor/plasteel,
+/area/teleporter)
+"coG" = (
+/obj/machinery/door/poddoor/shutters{
+ dir = 2;
+ id_tag = "teleportershutter";
+ name = "Teleporter Shutters"
+ },
/turf/simulated/floor/plasteel,
/area/teleporter)
"coH" = (
@@ -62040,24 +58287,16 @@
/obj/item/storage/fancy/donut_box,
/obj/machinery/alarm{
dir = 4;
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/crew_quarters/courtroom)
-"coJ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/crew_quarters/courtroom)
"coK" = (
/obj/machinery/vending/cigarette,
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -62143,7 +58382,6 @@
},
/area/crew_quarters/locker)
"coU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/cleanable/cobweb,
/obj/structure/closet,
/obj/effect/spawner/lootdrop/maintenance{
@@ -62164,6 +58402,10 @@
},
/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)
"coW" = (
@@ -62173,7 +58415,6 @@
/obj/machinery/disposal,
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/crew_quarters/locker)
@@ -62245,14 +58486,12 @@
},
/area/construction/hallway)
"cpf" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "bot"
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
/area/hallway/primary/central)
"cpg" = (
/obj/item/wrench,
@@ -62336,9 +58575,7 @@
dir = 8;
layer = 4;
name = "Singularity Engine Telescreen";
- network = list("Singularity");
- pixel_x = 0;
- pixel_y = 0
+ network = list("Singularity")
},
/turf/simulated/wall/r_wall,
/area/engine/engineering)
@@ -62388,8 +58625,7 @@
"cpu" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/structure/cable/yellow{
d1 = 4;
@@ -62471,8 +58707,7 @@
/area/engine/engine_smes)
"cpC" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
@@ -62482,8 +58717,7 @@
/area/engine/engine_smes)
"cpD" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/light{
dir = 4
@@ -62498,15 +58732,13 @@
/area/engine/engine_smes)
"cpE" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/wall/r_wall,
/area/engine/engine_smes)
"cpF" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/cleanable/dirt,
@@ -62521,8 +58753,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -62531,28 +58762,16 @@
/area/maintenance/fpmaint2)
"cpH" = (
/obj/machinery/newscaster{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/effect/decal/cleanable/cobweb,
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
/area/library)
-"cpI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/library)
"cpJ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "wood"
@@ -62595,8 +58814,11 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -62604,7 +58826,12 @@
},
/area/hallway/primary/central)
"cpO" = (
-/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,
/area/hallway/primary/central)
"cpP" = (
@@ -62614,24 +58841,15 @@
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "yellowcorner"
},
/area/hallway/primary/port)
-"cpQ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
- },
-/area/bridge/meeting_room)
"cpR" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -62646,6 +58864,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
@@ -62653,10 +58872,11 @@
/area/bridge/meeting_room)
"cpT" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
@@ -62664,19 +58884,20 @@
/area/bridge/meeting_room)
"cpU" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/obj/structure/cable{
d2 = 2;
icon_state = "0-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
@@ -62684,8 +58905,7 @@
/area/bridge/meeting_room)
"cpV" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'HIGH VOLTAGE'";
@@ -62693,6 +58913,9 @@
name = "HIGH VOLTAGE";
pixel_y = 32
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
@@ -62706,8 +58929,10 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -62716,12 +58941,14 @@
/area/bridge/meeting_room)
"cpX" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/sign/poster/official/nanotrasen_logo{
pixel_y = 32
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
@@ -62729,39 +58956,15 @@
/area/bridge/meeting_room)
"cpY" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
},
-/turf/simulated/floor/plasteel{
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- icon_state = "neutralcorner"
- },
-/area/bridge/meeting_room)
-"cpZ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
- },
-/area/bridge/meeting_room)
-"cqa" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/disposalpipe/segment{
- dir = 4
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -62779,33 +58982,37 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutral"
+ dir = 8;
+ icon_state = "neutralfull"
},
/area/bridge/meeting_room)
"cqc" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
+ dir = 8;
+ icon_state = "neutralfull"
},
/area/bridge/meeting_room)
"cqd" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
},
/obj/structure/disposalpipe/junction{
dir = 4;
- icon_state = "pipe-j2";
- tag = "icon-pipe-j2 (EAST)"
+ icon_state = "pipe-j2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -62814,8 +59021,7 @@
/area/bridge/meeting_room)
"cqe" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/sign/poster/official/nanotrasen_logo{
pixel_y = 32
@@ -62823,6 +59029,9 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutralcorner"
@@ -62836,12 +59045,14 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutralcorner"
@@ -62849,8 +59060,7 @@
/area/bridge/meeting_room)
"cqg" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'HIGH VOLTAGE'";
@@ -62861,6 +59071,9 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutralcorner"
@@ -62871,6 +59084,10 @@
/obj/structure/disposalpipe/segment{
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 = "neutralcorner"
@@ -62882,13 +59099,15 @@
/area/maintenance/starboard)
"cqj" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/effect/decal/warning_stripes/northeastcorner,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutralcorner"
@@ -62896,14 +59115,16 @@
/area/bridge/meeting_room)
"cqk" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/effect/decal/warning_stripes/north,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1;
+ initialize_directions = 11
+ },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutralcorner"
@@ -62911,14 +59132,15 @@
/area/bridge/meeting_room)
"cql" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/effect/decal/warning_stripes/north,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutralcorner"
@@ -62926,23 +59148,22 @@
/area/bridge/meeting_room)
"cqm" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
"cqn" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
@@ -62956,12 +59177,14 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -62970,16 +59193,17 @@
"cqp" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/structure/disposalpipe/junction{
dir = 1;
- icon_state = "pipe-j2";
- tag = "icon-pipe-j2"
+ icon_state = "pipe-j2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4;
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
@@ -62995,18 +59219,15 @@
/area/crew_quarters/courtroom)
"cqr" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/crew_quarters/courtroom)
"cqs" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/door/airlock/glass{
name = "Magistrate's Office";
@@ -63018,8 +59239,7 @@
/area/crew_quarters/courtroom)
"cqt" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/chair{
dir = 1
@@ -63029,11 +59249,8 @@
},
/area/crew_quarters/courtroom)
"cqu" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -63048,8 +59265,7 @@
},
/obj/structure/disposalpipe/segment,
/obj/structure/extinguisher_cabinet{
- pixel_x = -28;
- pixel_y = 0
+ pixel_x = -28
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -63072,7 +59288,6 @@
},
/obj/machinery/status_display{
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/plasteel{
@@ -63083,8 +59298,7 @@
"cqy" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -63093,8 +59307,7 @@
/area/crew_quarters/locker)
"cqz" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- level = 1
+ dir = 9
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -63104,8 +59317,7 @@
"cqA" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -63141,15 +59353,14 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
/area/maintenance/starboard)
"cqE" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
@@ -63167,8 +59378,7 @@
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plating,
/area/maintenance/starboard)
@@ -63182,8 +59392,7 @@
/obj/machinery/atmospherics/unary/vent_pump{
dir = 8;
external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
+ on = 1
},
/turf/simulated/floor/plasteel,
/area/maintenance/starboard)
@@ -63278,8 +59487,7 @@
/area/engine/engineering)
"cqV" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/warning_stripes/southeastcorner,
@@ -63306,8 +59514,7 @@
"cqY" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "yellowfull"
@@ -63315,16 +59522,14 @@
/area/engine/engineering)
"cqZ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ 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;
- level = 1
+ dir = 4
},
/obj/machinery/door/firedoor,
/obj/machinery/door/poddoor{
@@ -63338,8 +59543,7 @@
/obj/machinery/atmospherics/unary/vent_pump{
dir = 8;
external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
+ on = 1
},
/obj/effect/decal/warning_stripes/southeast,
/turf/simulated/floor/plasteel,
@@ -63365,13 +59569,15 @@
/area/engine/engineering)
"cre" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/effect/decal/warning_stripes/northwestcorner,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutralcorner"
@@ -63419,8 +59625,7 @@
/obj/item/twohanded/required/kirbyplants,
/obj/machinery/camera{
c_tag = "Library South";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/obj/machinery/light,
/turf/simulated/floor/plasteel{
@@ -63431,7 +59636,6 @@
/obj/structure/table/wood,
/obj/item/storage/pill_bottle/dice,
/obj/machinery/computer/security/telescreen/entertainment{
- pixel_x = 0;
pixel_y = -32
},
/obj/structure/window/reinforced{
@@ -63467,11 +59671,10 @@
/obj/structure/table/wood,
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/item/clipboard,
-/obj/item/toy/figure/librarian,
+/obj/item/toy/figure/crew/librarian,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "grimy"
@@ -63489,12 +59692,8 @@
d2 = 4;
icon_state = "1-4"
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -63508,12 +59707,7 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
@@ -63527,44 +59721,25 @@
icon_state = "dark"
},
/area/library)
-"crt" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralcorner"
- },
-/area/bridge/meeting_room)
"cru" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
tag = ""
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4;
+ initialize_directions = 11
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralcorner"
- },
-/area/bridge/meeting_room)
+/turf/simulated/floor/carpet,
+/area/crew_quarters/heads/hop)
"crv" = (
/obj/structure/cable{
d1 = 4;
@@ -63572,12 +59747,8 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
/obj/machinery/light,
/turf/simulated/floor/plasteel{
@@ -63592,13 +59763,9 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/camera{
c_tag = "Central Ring Hallway Center";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -63618,9 +59785,6 @@
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralcorner"
@@ -63633,7 +59797,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralcorner"
@@ -63646,9 +59809,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -63678,9 +59838,6 @@
icon_state = "2-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralcorner"
@@ -63693,9 +59850,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/light/small,
/turf/simulated/floor/plasteel{
dir = 8;
@@ -63709,11 +59863,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11;
- level = 1
- },
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'HIGH VOLTAGE'";
icon_state = "shock";
@@ -63721,27 +59870,12 @@
pixel_x = -32;
pixel_y = -32
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralcorner"
},
/area/bridge/meeting_room)
-"crD" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/item/twohanded/required/kirbyplants,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "bluecorner"
- },
-/area/bridge/meeting_room)
"crE" = (
/obj/structure/cable{
d1 = 4;
@@ -63749,11 +59883,10 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/structure/chair/comfy/black,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "bluecorner"
+ dir = 8;
+ icon_state = "neutralfull"
},
/area/bridge/meeting_room)
"crF" = (
@@ -63768,24 +59901,16 @@
icon_state = "2-8";
tag = ""
},
+/obj/item/radio/beacon,
/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/item/radio/beacon,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "bluecorner"
+ dir = 8;
+ icon_state = "neutralfull"
},
/area/bridge/meeting_room)
"crG" = (
@@ -63795,16 +59920,13 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/chair/comfy/black,
/obj/effect/landmark/start{
name = "Civilian"
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "bluecorner"
+ dir = 8;
+ icon_state = "neutralfull"
},
/area/bridge/meeting_room)
"crH" = (
@@ -63814,14 +59936,11 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/table/wood,
/obj/item/storage/fancy/donut_box,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "bluecorner"
+ dir = 8;
+ icon_state = "neutralfull"
},
/area/bridge/meeting_room)
"crI" = (
@@ -63832,9 +59951,6 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'HIGH VOLTAGE'";
icon_state = "shock";
@@ -63843,7 +59959,6 @@
pixel_y = -32
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/bridge/meeting_room)
@@ -63854,12 +59969,8 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/light/small,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/bridge/meeting_room)
@@ -63881,43 +59992,7 @@
icon_state = "2-4";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "neutralcorner"
- },
-/area/bridge/meeting_room)
-"crL" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "neutralcorner"
- },
-/area/bridge/meeting_room)
-"crM" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/bridge/meeting_room)
@@ -63935,11 +60010,8 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/bridge/meeting_room)
@@ -63950,15 +60022,15 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
/obj/machinery/light,
/obj/machinery/camera{
c_tag = "Central Ring Hallway Center";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/bridge/meeting_room)
@@ -63969,22 +60041,22 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/bridge/meeting_room)
"crQ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/door/firedoor,
/obj/structure/disposalpipe/segment{
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 = "neutralcorner"
@@ -63997,11 +60069,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralcorner"
@@ -64020,9 +60087,8 @@
icon_state = "2-8";
tag = ""
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -64033,19 +60099,13 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
-"crU" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plating,
-/area/crew_quarters/courtroom)
"crV" = (
/obj/structure/cable{
d1 = 1;
@@ -64083,8 +60143,7 @@
"crZ" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -64136,7 +60195,6 @@
"cse" = (
/obj/structure/cable,
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
@@ -64196,8 +60254,7 @@
/area/construction/hallway)
"csm" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plating,
@@ -64236,8 +60293,7 @@
/area/engine/engineering)
"csr" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/transit_tube,
/obj/structure/lattice/catwalk,
@@ -64294,12 +60350,10 @@
/area/engine/engine_smes)
"csy" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/transit_tube{
- icon_state = "W-SE";
- tag = "icon-W-SE"
+ icon_state = "W-SE"
},
/obj/structure/lattice/catwalk,
/turf/space,
@@ -64325,7 +60379,6 @@
"csB" = (
/obj/structure/table/reinforced,
/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
pixel_y = -30
},
/obj/item/clipboard,
@@ -64386,7 +60439,6 @@
/area/library)
"csI" = (
/obj/machinery/door/morgue{
- dir = 2;
name = "Private Study";
req_access_txt = "37"
},
@@ -64412,34 +60464,25 @@
icon_state = "pipe-c"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/machinery/camera{
c_tag = "Captain's Office Nook";
- dir = 4;
- network = list("SS13")
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
},
/turf/simulated/floor/plasteel,
/area/teleporter)
"csM" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d1 = 2;
d2 = 4;
- icon_state = "2-4";
- tag = ""
+ icon_state = "0-4"
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel,
-/area/security/warden)
+/turf/simulated/floor/plating,
+/area/security/processing)
"csN" = (
/obj/effect/spawner/window/reinforced,
/obj/structure/cable,
@@ -64448,8 +60491,7 @@
"csO" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/light{
dir = 8
@@ -64467,8 +60509,8 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "bluecorner"
+ dir = 8;
+ icon_state = "neutralfull"
},
/area/bridge/meeting_room)
"csQ" = (
@@ -64491,12 +60533,14 @@
/obj/effect/landmark{
name = "lightsout"
},
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
/area/bridge/meeting_room)
"csS" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -64505,28 +60549,25 @@
/area/bridge/meeting_room)
"csT" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/chair/comfy/black{
dir = 8
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "bluecorner"
+ dir = 8;
+ icon_state = "neutralfull"
},
/area/bridge/meeting_room)
"csU" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/light{
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/bridge/meeting_room)
@@ -64534,9 +60575,11 @@
/turf/simulated/wall/r_wall,
/area/gateway)
"csW" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/wall/r_wall,
-/area/gateway)
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "neutralcorner"
+ },
+/area/bridge/meeting_room)
"csX" = (
/obj/structure/cable{
d1 = 4;
@@ -64544,13 +60587,9 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/bridge/meeting_room)
@@ -64567,6 +60606,7 @@
name = "Gateway Access";
req_access_txt = "62"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/gateway)
"csZ" = (
@@ -64586,21 +60626,19 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
"ctc" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/maintenance/starboard)
"ctd" = (
@@ -64608,19 +60646,8 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/central)
-"cte" = (
-/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutralcorner"
@@ -64630,10 +60657,8 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutral"
@@ -64644,23 +60669,8 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/central)
-"cth" = (
-/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
@@ -64679,8 +60689,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -64704,8 +60713,7 @@
icon_state = "pipe-c"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -64714,8 +60722,7 @@
/area/crew_quarters/locker)
"ctm" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -64724,8 +60731,7 @@
/area/crew_quarters/locker)
"ctn" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/chair/stool,
/obj/effect/landmark/start{
@@ -64738,8 +60744,7 @@
/area/crew_quarters/locker)
"cto" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/table,
/obj/item/storage/fancy/donut_box,
@@ -64750,8 +60755,7 @@
/area/crew_quarters/locker)
"ctp" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/table,
/obj/item/camera,
@@ -64763,8 +60767,7 @@
"ctq" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/structure/table,
/obj/item/camera_film,
@@ -64801,6 +60804,8 @@
/obj/effect/landmark/start{
name = "Magistrate"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -64892,27 +60897,25 @@
/obj/machinery/door/poddoor/shutters{
density = 0;
dir = 8;
- icon_state = "shutter0";
+ icon_state = "open";
id_tag = "hopqueueshutters";
name = "Queue Shutters";
opacity = 0
},
/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/arrow{
- dir = 4;
- icon_state = "4"
+/obj/machinery/ticket_machine{
+ layer = 4;
+ pixel_y = 32
},
-/obj/effect/decal/warning_stripes/yellow/partial{
- dir = 4;
- icon_state = "3"
+/obj/effect/turf_decal/loading_area{
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/hallway/primary/central)
"ctF" = (
/obj/structure/table/reinforced,
/obj/structure/extinguisher_cabinet{
- pixel_x = -28;
- pixel_y = 0
+ pixel_x = -28
},
/obj/item/tank/internals/plasma,
/obj/effect/decal/warning_stripes/yellow/hollow,
@@ -64937,12 +60940,10 @@
/area/library)
"ctI" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/transit_tube{
- icon_state = "D-SW";
- tag = "icon-D-SW"
+ icon_state = "D-SW"
},
/obj/structure/window/reinforced{
dir = 4
@@ -64952,8 +60953,7 @@
/area/space/nearstation)
"ctJ" = (
/obj/structure/transit_tube{
- icon_state = "E-NW";
- tag = "icon-E-NW"
+ icon_state = "E-NW"
},
/obj/structure/window/reinforced{
dir = 4
@@ -64973,8 +60973,7 @@
/obj/item/storage/fancy/candle_box,
/obj/item/storage/fancy/candle_box,
/obj/machinery/computer/security/telescreen/entertainment{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -65008,14 +61007,11 @@
},
/area/library)
"ctQ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/turf/simulated/floor/plasteel{
@@ -65050,8 +61046,7 @@
/area/maintenance/fpmaint2)
"ctU" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/public/glass{
@@ -65064,8 +61059,7 @@
"ctV" = (
/obj/machinery/camera{
c_tag = "Courtroom East";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -65095,11 +61089,11 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command/glass{
name = "E.V.A.";
- req_access_txt = "0";
req_one_access_txt = "18"
},
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
/area/ai_monitored/storage/eva)
"ctY" = (
/obj/structure/cable/yellow{
@@ -65153,8 +61147,8 @@
/obj/structure/table/wood,
/obj/item/paper_bin,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "bluecorner"
+ dir = 8;
+ icon_state = "neutralfull"
},
/area/bridge/meeting_room)
"cuc" = (
@@ -65171,8 +61165,8 @@
name = "Civilian"
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "bluecorner"
+ dir = 8;
+ icon_state = "neutralfull"
},
/area/bridge/meeting_room)
"cud" = (
@@ -65188,8 +61182,8 @@
tag = ""
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "bluecorner"
+ dir = 8;
+ icon_state = "neutralfull"
},
/area/bridge/meeting_room)
"cue" = (
@@ -65203,8 +61197,8 @@
dir = 1
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "bluecorner"
+ dir = 8;
+ icon_state = "neutralfull"
},
/area/bridge/meeting_room)
"cuf" = (
@@ -65216,8 +61210,8 @@
},
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "bluecorner"
+ dir = 8;
+ icon_state = "neutralfull"
},
/area/bridge/meeting_room)
"cug" = (
@@ -65229,7 +61223,6 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/bridge/meeting_room)
@@ -65247,33 +61240,21 @@
},
/turf/simulated/floor/plating,
/area/bridge/meeting_room)
-"cui" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/door/airlock/public/glass,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/crew_quarters/courtroom)
"cuk" = (
/obj/structure/closet/secure_closet/exile,
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
/area/gateway)
"cul" = (
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
/turf/simulated/floor/plasteel,
/area/gateway)
"cum" = (
@@ -65284,18 +61265,22 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8";
+ tag = ""
+ },
/turf/simulated/floor/plasteel,
/area/gateway)
"cun" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/light{
dir = 8
},
/obj/machinery/alarm{
dir = 4;
- pixel_x = -25;
- pixel_y = 0
+ pixel_x = -25
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -65304,6 +61289,7 @@
/area/hallway/primary/central)
"cuo" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -65314,11 +61300,11 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command/glass{
name = "E.V.A.";
- req_access_txt = "0";
req_one_access_txt = "18"
},
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
/area/ai_monitored/storage/eva)
"cuq" = (
/turf/simulated/floor/plasteel{
@@ -65341,17 +61327,13 @@
},
/area/hallway/primary/central)
"cut" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/light,
/obj/structure/sign/securearea{
pixel_y = -32
},
/obj/machinery/camera{
c_tag = "Security Firing Range";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/turf/simulated/floor/plating,
/area/security/range)
@@ -65407,8 +61389,7 @@
/area/crew_quarters/locker)
"cuA" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/structure/table,
/obj/item/deck/cards,
@@ -65428,8 +61409,7 @@
"cuC" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
@@ -65443,14 +61423,9 @@
},
/obj/structure/closet/wardrobe/black,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/crew_quarters/locker)
-"cuE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel,
-/area/maintenance/starboard)
"cuF" = (
/obj/structure/cable{
d1 = 1;
@@ -65462,8 +61437,10 @@
icon_state = "pipe-c"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
},
/turf/simulated/floor/plating,
/area/maintenance/starboard)
@@ -65478,10 +61455,12 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plating,
/area/maintenance/starboard)
"cuH" = (
@@ -65495,8 +61474,10 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/maintenance/starboard)
@@ -65511,10 +61492,12 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/door/airlock/maintenance,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/crew_quarters/fitness)
"cuJ" = (
@@ -65541,8 +61524,10 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -65563,6 +61548,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 10
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -65576,8 +61564,7 @@
/area/crew_quarters/fitness)
"cuN" = (
/obj/machinery/light/small{
- dir = 4;
- pixel_y = 0
+ dir = 4
},
/obj/structure/closet/athletic_mixed,
/turf/simulated/floor/plasteel{
@@ -65655,8 +61642,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/alarm{
dir = 8;
- pixel_x = 25;
- pixel_y = 0
+ pixel_x = 25
},
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
@@ -65664,8 +61650,7 @@
"cuW" = (
/obj/structure/table/reinforced,
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/obj/item/storage/toolbox/electrical,
/obj/effect/decal/warning_stripes/yellow/hollow,
@@ -65680,7 +61665,6 @@
pixel_x = -8;
pixel_y = 24
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
/area/gateway)
"cuY" = (
@@ -65699,7 +61683,6 @@
/obj/machinery/suit_storage_unit/engine,
/obj/item/radio/intercom{
dir = 1;
- name = "station intercom (General)";
pixel_y = 25
},
/obj/effect/decal/warning_stripes/south,
@@ -65807,8 +61790,7 @@
"cvi" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/structure/chair/office/dark,
/turf/simulated/floor/plasteel{
@@ -65860,8 +61842,7 @@
"cvo" = (
/obj/structure/cult/archives,
/obj/machinery/newscaster{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -65887,14 +61868,11 @@
/area/library)
"cvr" = (
/obj/machinery/newscaster{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/machinery/atmospherics/unary/vent_pump{
dir = 1;
- external_pressure_bound = 101.325;
- on = 1;
- pressure_checks = 1
+ on = 1
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -65904,9 +61882,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/camera{
c_tag = "Central Ring Hallway West";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralcorner"
@@ -65937,8 +61915,7 @@
/obj/item/pen,
/obj/machinery/camera{
c_tag = "Courtroom West";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -65952,13 +61929,9 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"cvw" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
/area/ai_monitored/storage/eva)
"cvx" = (
/obj/structure/cable{
@@ -65968,28 +61941,26 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
/area/ai_monitored/storage/eva)
"cvy" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
/area/ai_monitored/storage/eva)
"cvz" = (
/obj/item/twohanded/required/kirbyplants,
/obj/machinery/light{
dir = 1
},
-/obj/effect/decal/warning_stripes/northeast,
-/turf/simulated/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"cvA" = (
-/obj/effect/decal/warning_stripes/southwest,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
/area/ai_monitored/storage/eva)
"cvB" = (
/obj/structure/cable{
@@ -66039,14 +62010,12 @@
/area/bridge/meeting_room)
"cvG" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/bridge/meeting_room)
"cvH" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/bridge/meeting_room)
@@ -66069,7 +62038,6 @@
},
/obj/item/storage/toolbox/emergency,
/obj/item/flashlight,
-/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
/area/gateway)
"cvK" = (
@@ -66083,22 +62051,6 @@
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
/area/gateway)
-"cvL" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/warning_stripes/northwest,
-/turf/simulated/floor/plasteel,
-/area/gateway)
"cvM" = (
/obj/structure/cable{
d1 = 1;
@@ -66112,18 +62064,8 @@
icon_state = "2-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
- },
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plasteel,
-/area/gateway)
-"cvN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/effect/decal/warning_stripes/northeast,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/gateway)
"cvO" = (
@@ -66168,7 +62110,6 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/machinery/light,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
@@ -66178,7 +62119,6 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
@@ -66212,7 +62152,6 @@
},
/obj/machinery/alarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/turf/simulated/floor/plasteel{
@@ -66223,7 +62162,6 @@
"cvY" = (
/obj/structure/table,
/obj/item/storage/firstaid/regular,
-/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
/area/gateway)
"cvZ" = (
@@ -66249,8 +62187,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/door/airlock/public/glass,
/turf/simulated/floor/plasteel{
@@ -66264,8 +62201,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -66290,8 +62226,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/effect/landmark{
name = "lightsout"
@@ -66318,46 +62253,10 @@
pixel_x = 32
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/crew_quarters/locker)
-"cwg" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/starboard)
-"cwh" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel,
-/area/maintenance/starboard)
-"cwi" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/closet/crate,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 2;
- name = "2maintenance loot spawner"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/starboard)
-"cwj" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/girder,
-/turf/simulated/floor/plating,
-/area/maintenance/starboard)
"cwk" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/light/small{
dir = 4;
pixel_y = 8
@@ -66370,15 +62269,6 @@
},
/turf/simulated/wall,
/area/crew_quarters/fitness)
-"cwm" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
- },
-/area/crew_quarters/fitness)
"cwn" = (
/obj/structure/cable{
d1 = 1;
@@ -66389,9 +62279,8 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11;
- level = 1
+ dir = 8;
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -66419,8 +62308,7 @@
"cwq" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -66430,8 +62318,7 @@
"cwr" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10;
- initialize_directions = 10;
- level = 1
+ initialize_directions = 10
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -66541,13 +62428,11 @@
},
/obj/machinery/disposal,
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/obj/machinery/camera{
c_tag = "Library Backroom";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -66621,8 +62506,7 @@
"cwL" = (
/obj/machinery/photocopier,
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -66631,7 +62515,6 @@
"cwM" = (
/obj/machinery/alarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/obj/structure/filingcabinet,
@@ -66656,7 +62539,6 @@
/obj/machinery/light,
/obj/item/radio/intercom{
dir = 1;
- name = "station intercom (General)";
pixel_y = -28
},
/obj/item/folder,
@@ -66675,7 +62557,6 @@
},
/area/library)
"cwQ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/firealarm{
dir = 4;
pixel_x = 24
@@ -66716,11 +62597,11 @@
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
+ dir = 5
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
/area/ai_monitored/storage/eva)
"cwT" = (
/obj/structure/cable{
@@ -66731,11 +62612,11 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10;
- initialize_directions = 10;
- level = 1
+ initialize_directions = 10
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
/area/ai_monitored/storage/eva)
"cwU" = (
/obj/structure/cable{
@@ -66749,14 +62630,15 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
/area/ai_monitored/storage/eva)
"cwV" = (
/obj/item/radio/beacon,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 1;
+ icon_state = "darkblue"
},
/area/ai_monitored/storage/eva)
"cwW" = (
@@ -66769,8 +62651,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 6
},
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
/area/ai_monitored/storage/eva)
"cwX" = (
/obj/structure/cable{
@@ -66780,14 +62663,15 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- level = 1
+ dir = 9
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
/area/ai_monitored/storage/eva)
"cwY" = (
-/obj/machinery/suit_storage_unit/standard_unit,
+/obj/machinery/suit_storage_unit/mime,
+/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -66814,7 +62698,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command/glass{
name = "Corporate Lounge";
- req_access_txt = "0";
req_one_access_txt = "19"
},
/turf/simulated/floor/plasteel{
@@ -66826,7 +62709,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command/glass{
name = "Corporate Lounge";
- req_access_txt = "0";
req_one_access_txt = "19"
},
/turf/simulated/floor/plasteel{
@@ -66849,7 +62731,7 @@
/area/crew_quarters/locker)
"cxe" = (
/obj/structure/bed/roller,
-/obj/effect/decal/warning_stripes/yellow,
+/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
/area/gateway)
"cxf" = (
@@ -66864,23 +62746,13 @@
d2 = 4;
icon_state = "1-4"
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/gateway)
-"cxg" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11;
- level = 1
- },
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
-/area/gateway)
"cxh" = (
/obj/structure/cable{
d1 = 4;
@@ -66888,8 +62760,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
/area/gateway)
"cxi" = (
@@ -66932,11 +62802,9 @@
},
/area/gateway)
"cxm" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/camera{
c_tag = "Central Ring Hallway East";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -66948,8 +62816,7 @@
/area/crew_quarters/locker/locker_toilet)
"cxo" = (
/obj/machinery/door/airlock{
- name = "Unisex Restrooms";
- req_access_txt = "0"
+ name = "Unisex Restrooms"
},
/turf/simulated/floor/plasteel,
/area/crew_quarters/locker/locker_toilet)
@@ -67027,7 +62894,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/closet/wardrobe/green,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/crew_quarters/locker)
@@ -67041,8 +62907,7 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
@@ -67052,8 +62917,7 @@
/area/crew_quarters/fitness)
"cxy" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -67062,8 +62926,7 @@
/area/crew_quarters/fitness)
"cxz" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -67071,8 +62934,7 @@
/area/crew_quarters/fitness)
"cxA" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -67080,8 +62942,7 @@
/area/crew_quarters/fitness)
"cxB" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
@@ -67131,8 +62992,7 @@
"cxI" = (
/obj/structure/table/reinforced,
/obj/structure/extinguisher_cabinet{
- pixel_x = 28;
- pixel_y = 0
+ pixel_x = 28
},
/obj/item/stack/cable_coil/random,
/obj/item/stack/cable_coil/random,
@@ -67152,7 +63012,6 @@
/obj/item/paper/pamphlet,
/obj/item/paper/pamphlet,
/obj/item/paper/pamphlet,
-/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
/area/gateway)
"cxK" = (
@@ -67199,10 +63058,12 @@
/area/engine/engine_smes)
"cxO" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
@@ -67219,15 +63080,15 @@
icon_state = "4-8";
tag = ""
},
-/obj/effect/decal/warning_stripes/southeast,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
/area/ai_monitored/storage/eva)
"cxR" = (
/obj/structure/table/reinforced,
/obj/machinery/alarm{
dir = 8;
- pixel_x = 25;
- pixel_y = 0
+ pixel_x = 25
},
/obj/item/clothing/shoes/magboots{
pixel_x = 4;
@@ -67286,7 +63147,6 @@
/obj/structure/table/wood,
/obj/item/deck/cards,
/obj/item/deck/cards{
- pixel_x = 0;
pixel_y = 6
},
/turf/simulated/floor/plasteel{
@@ -67310,8 +63170,7 @@
"cyb" = (
/obj/item/twohanded/required/kirbyplants,
/obj/machinery/newscaster{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -67337,16 +63196,11 @@
icon_state = "dark"
},
/area/ai_monitored/storage/eva)
-"cye" = (
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/ai_monitored/storage/eva)
"cyf" = (
/obj/machinery/suit_storage_unit/standard_unit,
-/obj/effect/decal/warning_stripes/yellow,
+/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "dark"
},
/area/ai_monitored/storage/eva)
"cyg" = (
@@ -67360,13 +63214,12 @@
tag = ""
},
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/obj/structure/window/reinforced,
/obj/structure/showcase,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ icon_state = "wood"
},
/area/assembly/showroom)
"cyi" = (
@@ -67394,9 +63247,7 @@
icon_state = "1-2";
tag = ""
},
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
+/turf/simulated/floor/carpet,
/area/assembly/showroom)
"cyl" = (
/obj/machinery/ai_status_display{
@@ -67405,25 +63256,13 @@
/obj/machinery/camera{
c_tag = "Showroom"
},
-/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "vault"
- },
-/area/assembly/showroom)
-"cym" = (
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "vault"
- },
+/turf/simulated/floor/carpet,
/area/assembly/showroom)
"cyn" = (
/obj/machinery/status_display{
pixel_y = 32
},
-/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "vault"
- },
+/turf/simulated/floor/carpet,
/area/assembly/showroom)
"cyo" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -67444,20 +63283,21 @@
},
/obj/structure/showcase,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ icon_state = "wood"
},
/area/assembly/showroom)
"cyq" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ dir = 9;
+ icon_state = "darkblue"
+ },
/area/ai_monitored/storage/eva)
"cyr" = (
/obj/structure/rack,
/obj/machinery/camera{
c_tag = "Gateway Access";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/obj/structure/closet/medical_wall{
pixel_x = -32
@@ -67472,7 +63312,6 @@
/obj/item/storage/pill_bottle/painkillers,
/obj/item/reagent_containers/food/pill/patch/styptic,
/obj/item/reagent_containers/food/pill/patch/silver_sulf,
-/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
/area/gateway)
"cys" = (
@@ -67482,19 +63321,28 @@
icon_state = "1-2";
tag = ""
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8;
+ initialize_directions = 11
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/gateway)
"cyt" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/warning_stripes/west,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/gateway)
"cyu" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/warning_stripes/east,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
/turf/simulated/floor/plasteel,
/area/gateway)
"cyv" = (
@@ -67535,18 +63383,15 @@
},
/obj/machinery/camera{
c_tag = "Gateway";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/gateway)
"cyz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/item/radio/intercom{
dir = 0;
- name = "station intercom (General)";
pixel_x = -28
},
/turf/simulated/floor/plasteel{
@@ -67560,15 +63405,14 @@
/obj/structure/extinguisher_cabinet{
pixel_x = 26
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
"cyB" = (
/obj/machinery/shower{
- dir = 4;
- icon_state = "shower"
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "freezerfloor"
@@ -67588,14 +63432,10 @@
/area/crew_quarters/locker/locker_toilet)
"cyD" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/shower{
- dir = 8;
- icon_state = "shower";
- pixel_x = 0;
- tag = "icon-shower (WEST)"
+ dir = 8
},
/turf/simulated/floor/plasteel{
icon_state = "freezerfloor"
@@ -67603,23 +63443,20 @@
/area/crew_quarters/locker/locker_toilet)
"cyE" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/wall,
/area/crew_quarters/locker/locker_toilet)
"cyF" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ 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;
- level = 1
+ dir = 1
},
/turf/simulated/floor/plasteel,
/area/crew_quarters/locker/locker_toilet)
@@ -67629,13 +63466,11 @@
icon_state = "0-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/obj/machinery/camera{
@@ -67650,16 +63485,14 @@
/obj/structure/dispenser/oxygen,
/obj/item/radio/intercom{
dir = 4;
- name = "station intercom (General)";
pixel_x = 28
},
-/obj/effect/decal/warning_stripes/yellow,
+/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
/area/gateway)
"cyJ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/urinal{
pixel_y = 28
@@ -67679,8 +63512,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/closet/wardrobe/white,
/turf/simulated/floor/plasteel{
@@ -67696,8 +63528,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -67712,8 +63543,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/chair/stool,
/turf/simulated/floor/plasteel{
@@ -67729,8 +63559,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/table,
/obj/item/folder,
@@ -67748,8 +63577,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/table,
/obj/item/paicard,
@@ -67766,8 +63594,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/table,
/turf/simulated/floor/plasteel{
@@ -67789,8 +63616,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/chair/stool,
@@ -67811,8 +63637,7 @@
},
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -67826,8 +63651,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/power/apc{
dir = 4;
@@ -67836,7 +63660,6 @@
},
/obj/structure/closet/wardrobe/pink,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/crew_quarters/locker)
@@ -67849,7 +63672,6 @@
"cyU" = (
/obj/machinery/status_display{
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/obj/structure/closet/secure_closet/personal/cabinet,
@@ -67883,7 +63705,6 @@
/obj/item/paper_bin,
/obj/machinery/status_display{
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/obj/item/pen,
@@ -68002,8 +63823,7 @@
dir = 4
},
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -68068,7 +63888,6 @@
/obj/item/twohanded/required/kirbyplants,
/obj/item/radio/intercom{
dir = 1;
- name = "station intercom (General)";
pixel_y = 25
},
/obj/effect/decal/cleanable/cobweb2,
@@ -68121,8 +63940,7 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/engineering/glass{
name = "Engineering Storage";
- req_access_txt = "32";
- req_one_access_txt = "0"
+ req_access_txt = "32"
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
@@ -68182,8 +64000,7 @@
"czy" = (
/obj/structure/table/wood,
/obj/machinery/status_display{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/item/newspaper,
/obj/item/newspaper,
@@ -68193,8 +64010,7 @@
/area/library)
"czz" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/structure/chair/office/dark{
dir = 1
@@ -68247,8 +64063,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -68278,8 +64093,10 @@
/area/engine/engine_smes)
"czI" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "darkblue"
+ },
/area/ai_monitored/storage/eva)
"czJ" = (
/obj/structure/cable{
@@ -68300,8 +64117,7 @@
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/turf/simulated/floor/plasteel{
icon_state = "wood"
@@ -68332,23 +64148,15 @@
d2 = 4;
icon_state = "1-4"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
},
/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
@@ -68424,6 +64232,7 @@
},
/obj/structure/table/wood,
/obj/item/paper_bin,
+/obj/item/pen,
/turf/simulated/floor/carpet,
/area/assembly/showroom)
"czR" = (
@@ -68433,9 +64242,8 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
},
/turf/simulated/floor/plasteel{
icon_state = "wood"
@@ -68448,9 +64256,8 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- on = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
/turf/simulated/floor/plasteel{
icon_state = "wood"
@@ -68470,7 +64277,6 @@
},
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/turf/simulated/floor/plasteel{
@@ -68479,8 +64285,7 @@
/area/assembly/showroom)
"czU" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/urinal{
pixel_y = 28
@@ -68495,10 +64300,8 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -68541,42 +64344,14 @@
name = "protective hat";
pixel_y = 8
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/gateway)
-"czX" = (
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
-/obj/effect/decal/warning_stripes/northeastcorner,
/turf/simulated/floor/plasteel,
/area/gateway)
"czY" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/turf/simulated/floor/plasteel{
dir = 4;
- level = 1
+ icon_state = "neutralcorner"
},
-/turf/simulated/floor/plating,
-/area/gateway)
-"czZ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/effect/decal/warning_stripes/northeast,
-/turf/simulated/floor/plasteel,
-/area/gateway)
-"cAa" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/effect/decal/warning_stripes/northwest,
-/turf/simulated/floor/plasteel,
-/area/gateway)
+/area/bridge/meeting_room)
"cAb" = (
/obj/structure/cable{
d1 = 1;
@@ -68584,12 +64359,7 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
- },
+/obj/machinery/atmospherics/unary/vent_pump/on,
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel,
/area/gateway)
@@ -68609,8 +64379,7 @@
/area/crew_quarters/locker/locker_toilet)
"cAe" = (
/obj/machinery/door/airlock{
- name = "Unisex Showers";
- req_access_txt = "0"
+ name = "Unisex Showers"
},
/turf/simulated/floor/plasteel,
/area/crew_quarters/locker/locker_toilet)
@@ -68637,7 +64406,6 @@
"cAj" = (
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/turf/simulated/floor/plasteel,
@@ -68672,7 +64440,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/closet/wardrobe/mixed,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/crew_quarters/locker)
@@ -68686,8 +64453,7 @@
"cAo" = (
/obj/structure/table/wood,
/obj/machinery/newscaster{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/item/folder,
/obj/item/razor,
@@ -68753,15 +64519,13 @@
"cAx" = (
/obj/effect/spawner/window/reinforced,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plating,
/area/crew_quarters/fitness)
"cAy" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/wall,
/area/crew_quarters/fitness)
@@ -68783,8 +64547,7 @@
"cAB" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
@@ -68799,8 +64562,7 @@
/area/engine/engineering)
"cAD" = (
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/obj/machinery/status_display{
pixel_x = -32
@@ -68824,8 +64586,7 @@
"cAG" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/landmark{
name = "lightsout"
@@ -68850,8 +64611,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plating,
/area/engine/engine_smes)
@@ -68867,8 +64627,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -68909,8 +64668,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/warning_stripes/east,
@@ -68923,8 +64681,7 @@
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
@@ -68944,8 +64701,7 @@
/area/maintenance/fpmaint2)
"cAQ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/landmark{
name = "blobstart"
@@ -68983,8 +64739,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plating,
/area/maintenance/fpmaint2)
@@ -68992,7 +64747,6 @@
/obj/structure/table/wood,
/obj/machinery/alarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/obj/item/storage/fancy/donut_box,
@@ -69002,13 +64756,11 @@
/area/library)
"cAU" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/item/twohanded/required/kirbyplants,
/obj/item/radio/intercom{
dir = 1;
- name = "station intercom (General)";
pixel_y = -28
},
/turf/simulated/floor/plasteel{
@@ -69017,8 +64769,7 @@
/area/library)
"cAV" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/status_display{
pixel_y = -32
@@ -69034,7 +64785,6 @@
/obj/item/dice/d10,
/obj/item/dice/d20,
/obj/machinery/computer/security/telescreen/entertainment{
- pixel_x = 0;
pixel_y = -32
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
@@ -69048,8 +64798,7 @@
icon_state = "pipe-c"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/filingcabinet,
/turf/simulated/floor/plasteel{
@@ -69061,8 +64810,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -69129,10 +64877,6 @@
icon_state = "dark"
},
/area/ai_monitored/storage/eva)
-"cBf" = (
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
-/area/ai_monitored/storage/eva)
"cBg" = (
/obj/structure/cable{
d1 = 4;
@@ -69140,9 +64884,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
dir = 8;
@@ -69154,8 +64895,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/public/glass,
@@ -69169,48 +64909,44 @@
/obj/machinery/light{
dir = 1
},
-/obj/effect/decal/warning_stripes/northwest,
/obj/machinery/camera{
c_tag = "EVA West"
},
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
/area/ai_monitored/storage/eva)
"cBj" = (
/obj/structure/dispenser/oxygen,
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "dark"
},
/area/ai_monitored/storage/eva)
"cBk" = (
/obj/machinery/requests_console{
department = "EVA";
name = "EVA Requests Console";
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/machinery/camera{
c_tag = "EVA Storage";
- dir = 8;
- network = list("SS13")
+ dir = 8
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
/area/ai_monitored/storage/eva)
"cBl" = (
/obj/machinery/hologram/holopad,
-/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "darkblue"
},
/area/ai_monitored/storage/eva)
"cBm" = (
/obj/structure/table/reinforced,
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/item/stack/rods{
@@ -69229,15 +64965,11 @@
},
/obj/structure/table/wood,
/obj/item/clipboard,
-/obj/item/toy/figure/dsquad,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
+/obj/item/toy/figure/crew/dsquad,
+/turf/simulated/floor/carpet,
/area/assembly/showroom)
"cBo" = (
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
+/turf/simulated/floor/carpet,
/area/assembly/showroom)
"cBp" = (
/obj/structure/chair/comfy/black{
@@ -69289,12 +65021,10 @@
},
/obj/structure/table/wood,
/obj/item/storage/secure/briefcase,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
+/turf/simulated/floor/carpet,
/area/assembly/showroom)
"cBv" = (
-/obj/effect/decal/warning_stripes/northeast,
+/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel,
/area/gateway)
"cBw" = (
@@ -69305,16 +65035,6 @@
},
/obj/item/storage/belt,
/obj/item/radio,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/gateway)
-"cBx" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11;
- level = 1
- },
-/obj/effect/decal/warning_stripes/southwest,
/turf/simulated/floor/plasteel,
/area/gateway)
"cBy" = (
@@ -69324,23 +65044,11 @@
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ dir = 5
},
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/gateway)
-"cBz" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
/area/gateway)
"cBA" = (
@@ -69361,27 +65069,17 @@
icon_state = "2-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command{
name = "Gateway Access";
req_access_txt = "62"
},
-/turf/simulated/floor/plasteel,
-/area/gateway)
-"cBB" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/effect/decal/warning_stripes/southeast,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/gateway)
"cBC" = (
@@ -69394,7 +65092,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/effect/decal/warning_stripes/west,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/gateway)
"cBD" = (
@@ -69403,10 +65103,12 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
/area/gateway)
"cBE" = (
@@ -69429,13 +65131,6 @@
},
/turf/simulated/wall,
/area/crew_quarters/locker/locker_toilet)
-"cBH" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/gateway)
"cBI" = (
/obj/structure/cable{
d1 = 2;
@@ -69513,8 +65208,7 @@
dir = 4
},
/obj/machinery/door/airlock{
- name = "Unisex Restrooms";
- req_access_txt = "0"
+ name = "Unisex Restrooms"
},
/turf/simulated/floor/plasteel,
/area/crew_quarters/locker/locker_toilet)
@@ -69558,7 +65252,6 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/crew_quarters/locker)
@@ -69571,11 +65264,9 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/crew_quarters/locker)
@@ -69585,7 +65276,6 @@
icon_state = "pipe-c"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/crew_quarters/locker)
@@ -69606,8 +65296,7 @@
"cBV" = (
/obj/structure/chair/office/dark,
/obj/machinery/newscaster{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/turf/simulated/floor/plasteel{
icon_state = "grimy"
@@ -69629,8 +65318,7 @@
"cBY" = (
/obj/machinery/cryopod/right,
/obj/machinery/newscaster{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/turf/simulated/floor/plasteel{
icon_state = "freezerfloor"
@@ -69675,8 +65363,7 @@
"cCe" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/effect/decal/warning_stripes/northwestcorner,
/turf/simulated/floor/plasteel,
@@ -69711,8 +65398,7 @@
/area/engine/engineering)
"cCi" = (
/obj/structure/extinguisher_cabinet{
- pixel_x = -28;
- pixel_y = 0
+ pixel_x = -28
},
/obj/machinery/portable_atmospherics/canister/oxygen,
/obj/effect/decal/warning_stripes/yellow,
@@ -69720,9 +65406,7 @@
/area/maintenance/fpmaint2)
"cCj" = (
/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
- frequency = 1379;
id_tag = "engineering_east_airlock";
- pixel_x = 0;
pixel_y = 25;
req_access_txt = "10;13";
tag_airpump = "engineering_east_pump";
@@ -69731,9 +65415,7 @@
tag_interior_door = "engineering_east_inner"
},
/obj/machinery/airlock_sensor{
- frequency = 1379;
id_tag = "engineering_east_sensor";
- pixel_x = 0;
pixel_y = 33
},
/obj/structure/cable/yellow{
@@ -69809,8 +65491,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -69831,8 +65512,7 @@
/obj/machinery/atmospherics/unary/vent_pump{
dir = 8;
external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
+ on = 1
},
/turf/simulated/floor/plasteel{
icon_state = "yellowfull"
@@ -69840,8 +65520,7 @@
/area/engine/engineering)
"cCq" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
@@ -69853,8 +65532,7 @@
/area/engine/engine_smes)
"cCs" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/door/airlock/maintenance{
@@ -69918,7 +65596,6 @@
/area/maintenance/fpmaint2)
"cCA" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "caution"
},
/area/maintenance/fpmaint2)
@@ -69941,52 +65618,37 @@
icon_state = "dark"
},
/area/ai_monitored/storage/eva)
-"cCD" = (
-/obj/effect/decal/warning_stripes/northwest,
-/turf/simulated/floor/plasteel,
-/area/ai_monitored/storage/eva)
"cCE" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 4
},
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
/area/ai_monitored/storage/eva)
"cCF" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11;
- level = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"cCG" = (
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plasteel,
/area/ai_monitored/storage/eva)
"cCH" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11;
- level = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plasteel,
/area/ai_monitored/storage/eva)
"cCI" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"cCJ" = (
-/obj/effect/decal/warning_stripes/northeast,
-/turf/simulated/floor/plasteel,
/area/ai_monitored/storage/eva)
"cCK" = (
/obj/structure/table/reinforced,
@@ -70006,16 +65668,12 @@
},
/obj/structure/table/wood,
/obj/item/folder/yellow,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
+/turf/simulated/floor/carpet,
/area/assembly/showroom)
"cCM" = (
/obj/structure/table/wood,
/obj/item/storage/photo_album,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
+/turf/simulated/floor/carpet,
/area/assembly/showroom)
"cCN" = (
/obj/item/twohanded/required/kirbyplants,
@@ -70024,17 +65682,13 @@
pixel_y = -24
},
/obj/machinery/light,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
+/turf/simulated/floor/carpet,
/area/assembly/showroom)
"cCO" = (
/obj/structure/chair/comfy/brown{
dir = 1
},
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
+/turf/simulated/floor/carpet,
/area/assembly/showroom)
"cCP" = (
/obj/structure/cable{
@@ -70044,31 +65698,23 @@
tag = ""
},
/obj/machinery/hologram/holopad,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
+/turf/simulated/floor/carpet,
/area/assembly/showroom)
"cCQ" = (
/obj/structure/chair/comfy/black{
dir = 1
},
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
+/turf/simulated/floor/carpet,
/area/assembly/showroom)
"cCR" = (
/obj/item/twohanded/required/kirbyplants,
/obj/machinery/light,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
+/turf/simulated/floor/carpet,
/area/assembly/showroom)
"cCS" = (
/obj/structure/table/wood,
/obj/item/paicard,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
+/turf/simulated/floor/carpet,
/area/assembly/showroom)
"cCT" = (
/obj/structure/cable{
@@ -70080,23 +65726,18 @@
/obj/structure/table/wood,
/obj/item/radio/intercom{
dir = 4;
- name = "station intercom (General)";
pixel_x = 28
},
/obj/item/folder/red,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
+/turf/simulated/floor/carpet,
/area/assembly/showroom)
"cCU" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/structure/sink{
dir = 8;
- icon_state = "sink";
pixel_x = -12;
pixel_y = 2
},
@@ -70106,25 +65747,19 @@
"cCV" = (
/obj/structure/table,
/obj/machinery/recharger,
-/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
/area/gateway)
"cCW" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/table,
/obj/machinery/cell_charger,
/obj/machinery/light_switch{
pixel_x = 8;
pixel_y = -24
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/item/stock_parts/cell/high,
/turf/simulated/floor/plasteel,
/area/gateway)
"cCX" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
/area/gateway)
"cCY" = (
@@ -70145,12 +65780,11 @@
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
/area/gateway)
-"cDb" = (
-/obj/effect/decal/warning_stripes/southwest,
-/turf/simulated/floor/plasteel,
-/area/gateway)
"cDc" = (
/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
/turf/simulated/floor/plasteel,
/area/gateway)
"cDd" = (
@@ -70172,7 +65806,7 @@
/turf/simulated/wall/rust,
/area/crew_quarters/locker/locker_toilet)
"cDf" = (
-/obj/effect/decal/warning_stripes/southeast,
+/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
/area/gateway)
"cDg" = (
@@ -70187,8 +65821,7 @@
/area/crew_quarters/locker/locker_toilet)
"cDh" = (
/obj/machinery/door/airlock{
- name = "Toilet";
- req_access_txt = "0"
+ name = "Toilet"
},
/turf/simulated/floor/plasteel,
/area/crew_quarters/locker/locker_toilet)
@@ -70250,10 +65883,7 @@
/area/crew_quarters/locker)
"cDq" = (
/obj/structure/table/wood,
-/obj/item/folder/blue{
- pixel_x = 0;
- pixel_y = 0
- },
+/obj/item/folder/blue,
/obj/item/lighter/zippo,
/turf/simulated/floor/plasteel{
icon_state = "grimy"
@@ -70268,8 +65898,7 @@
"cDs" = (
/obj/structure/table/reinforced,
/obj/machinery/newscaster{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/item/stack/packageWrap,
/obj/item/hand_labeler,
@@ -70353,8 +65982,7 @@
"cDA" = (
/obj/structure/sign/vacuum,
/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/wall/r_wall,
/area/engine/engineering)
@@ -70369,8 +65997,7 @@
"cDC" = (
/obj/structure/table/reinforced,
/obj/machinery/newscaster{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/item/stack/sheet/plasteel{
amount = 25
@@ -70409,8 +66036,7 @@
/area/engine/engineering)
"cDF" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
@@ -70467,8 +66093,7 @@
},
/obj/machinery/firealarm{
dir = 8;
- pixel_x = -26;
- pixel_y = 0
+ pixel_x = -26
},
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
@@ -70497,8 +66122,9 @@
/obj/machinery/ai_status_display{
pixel_y = -32
},
-/obj/effect/decal/warning_stripes/southwest,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
/area/ai_monitored/storage/eva)
"cDP" = (
/obj/structure/rack,
@@ -70614,17 +66240,9 @@
name = "Station Intercom (General)";
pixel_y = -29
},
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"cEc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"cEd" = (
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
/area/ai_monitored/storage/eva)
"cEe" = (
/obj/effect/spawner/window/reinforced,
@@ -70635,8 +66253,7 @@
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'HIGH VOLTAGE'";
icon_state = "shock";
- name = "HIGH VOLTAGE";
- pixel_y = 0
+ name = "HIGH VOLTAGE"
},
/turf/simulated/wall/r_wall,
/area/assembly/showroom)
@@ -70675,7 +66292,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/sink{
dir = 8;
- icon_state = "sink";
pixel_x = -12;
pixel_y = 2
},
@@ -70683,13 +66299,12 @@
/turf/simulated/floor/plasteel,
/area/crew_quarters/locker/locker_toilet)
"cEk" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/south,
/obj/machinery/door/airlock/command{
name = "Gateway Access";
req_access_txt = "62"
},
-/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
/area/gateway)
"cEl" = (
@@ -70697,7 +66312,6 @@
id = "stationawaygate";
name = "Gateway Shutters Access Control";
pixel_x = -24;
- pixel_y = 0;
req_access_txt = "62"
},
/obj/machinery/door/poddoor/shutters{
@@ -70705,7 +66319,6 @@
id_tag = "stationawaygate";
name = "Gateway Access Shutters"
},
-/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
/area/gateway)
"cEm" = (
@@ -70732,7 +66345,6 @@
id_tag = "stationawaygate";
name = "Gateway Access Shutters"
},
-/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
/area/gateway)
"cEq" = (
@@ -70744,14 +66356,15 @@
/turf/simulated/floor/plasteel,
/area/crew_quarters/locker/locker_toilet)
"cEr" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
/area/ai_monitored/storage/eva)
"cEs" = (
/obj/item/twohanded/required/kirbyplants,
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
/area/ai_monitored/storage/eva)
"cEt" = (
/obj/machinery/door/airlock/glass{
@@ -70869,9 +66482,7 @@
dir = 6
},
/obj/machinery/light/small{
- dir = 4;
- icon_state = "bulb1";
- tag = "icon-bulb1 (EAST)"
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -70880,45 +66491,31 @@
/area/maintenance/fpmaint2)
"cEJ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/wall,
/area/maintenance/fpmaint2)
"cEK" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/effect/landmark{
- name = "lightsout"
- },
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 4;
+ icon_state = "neutralcorner"
},
-/area/hallway/primary/central)
+/area/bridge/meeting_room)
"cEL" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
"cEM" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/item/radio/intercom{
dir = 1;
- name = "station intercom (General)";
pixel_y = 28
},
/turf/simulated/floor/plasteel{
@@ -70930,8 +66527,9 @@
/obj/machinery/status_display{
pixel_y = -32
},
-/obj/effect/decal/warning_stripes/southeast,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
/area/ai_monitored/storage/eva)
"cEO" = (
/obj/structure/table/reinforced,
@@ -70939,14 +66537,15 @@
/turf/simulated/floor/plasteel,
/area/maintenance/fpmaint2)
"cEP" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/decal/warning_stripes/south,
/obj/machinery/door/poddoor/shutters{
dir = 2;
id_tag = "eva-shutters";
name = "E.V.A. Storage Shutters"
},
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
/area/ai_monitored/storage/eva)
"cEQ" = (
/obj/machinery/door/poddoor/shutters{
@@ -70955,15 +66554,11 @@
name = "E.V.A. Storage Shutters"
},
/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
/area/ai_monitored/storage/eva)
"cER" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/poddoor/shutters{
- dir = 2;
- id_tag = "eva-shutters";
- name = "E.V.A. Storage Shutters"
- },
/obj/machinery/door_control{
id = "eva-shutters";
name = "Auxilary E.V.A. Storage";
@@ -70971,13 +66566,16 @@
req_one_access_txt = "18"
},
/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
+/obj/machinery/door/poddoor/shutters{
+ dir = 2;
+ id_tag = "eva-shutters";
+ name = "E.V.A. Storage Shutters"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
/area/ai_monitored/storage/eva)
"cES" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/light{
dir = 1;
in_use = 1
@@ -70988,10 +66586,6 @@
},
/area/hallway/primary/central)
"cET" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/firealarm{
pixel_y = 24
},
@@ -71001,12 +66595,7 @@
},
/area/hallway/primary/central)
"cEU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
pixel_y = 30
},
/turf/simulated/floor/plasteel{
@@ -71021,40 +66610,19 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
"cEW" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutral"
},
/area/hallway/primary/central)
-"cEX" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/central)
"cEY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
pixel_y = 30
},
/turf/simulated/floor/plasteel{
@@ -71063,11 +66631,6 @@
},
/area/hallway/primary/central)
"cEZ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/light{
dir = 1;
in_use = 1
@@ -71081,7 +66644,6 @@
},
/area/hallway/primary/central)
"cFa" = (
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
@@ -71100,17 +66662,13 @@
/area/crew_quarters/locker/locker_toilet)
"cFc" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
/obj/machinery/camera{
c_tag = "Central Ring Hallway East";
dir = 8
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
@@ -71126,10 +66684,6 @@
/turf/simulated/wall,
/area/crew_quarters/locker/locker_toilet)
"cFf" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/effect/decal/warning_stripes/northeastcorner,
/turf/simulated/floor/plasteel{
dir = 1;
@@ -71164,7 +66718,6 @@
/obj/machinery/camera{
c_tag = "Laundry Room";
dir = 4;
- network = list("SS13");
pixel_y = -22
},
/turf/simulated/floor/plasteel{
@@ -71214,10 +66767,6 @@
},
/area/crew_quarters/sleep)
"cFp" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
@@ -71233,8 +66782,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -71255,8 +66803,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -71271,8 +66818,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -71287,8 +66833,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -71303,8 +66848,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/camera{
c_tag = "Dorm Hallway Starboard"
@@ -71322,8 +66866,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -71338,8 +66881,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/door/airlock/glass{
name = "Cabin"
@@ -71354,8 +66896,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -71378,8 +66919,7 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
@@ -71406,8 +66946,7 @@
/area/crew_quarters/fitness)
"cFB" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/window/reinforced{
dir = 4
@@ -71425,8 +66964,7 @@
/area/crew_quarters/fitness)
"cFD" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
@@ -71436,8 +66974,7 @@
/area/crew_quarters/fitness)
"cFE" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/door/airlock/glass{
name = "Holodeck Door"
@@ -71446,8 +66983,7 @@
/area/crew_quarters/fitness)
"cFF" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/light,
/obj/effect/decal/warning_stripes/yellow/hollow,
@@ -71455,8 +66991,7 @@
/area/crew_quarters/fitness)
"cFG" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- level = 1
+ dir = 9
},
/obj/machinery/door/airlock/glass{
name = "Holodeck Door"
@@ -71465,8 +67000,7 @@
/area/crew_quarters/fitness)
"cFH" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/machinery/door/airlock/glass{
name = "Holodeck Door"
@@ -71475,8 +67009,7 @@
/area/crew_quarters/fitness)
"cFI" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/crew_quarters/fitness)
@@ -71484,12 +67017,10 @@
/obj/machinery/atmospherics/unary/vent_pump{
dir = 8;
external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
+ on = 1
},
/obj/machinery/status_display{
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/obj/machinery/camera{
@@ -71509,8 +67040,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/door/airlock/maintenance{
name = "Library Maintenance";
@@ -71520,20 +67050,15 @@
/area/library)
"cFN" = (
/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
- frequency = 1379;
id_tag = "sw_maint_airlock";
- pixel_x = 0;
pixel_y = 25;
- req_access_txt = "0";
tag_airpump = "sw_maint_pump";
tag_chamber_sensor = "sw_maint_sensor";
tag_exterior_door = "sw_maint_outer";
tag_interior_door = "sw_maint_inner"
},
/obj/machinery/airlock_sensor{
- frequency = 1379;
id_tag = "sw_maint_sensor";
- pixel_x = 0;
pixel_y = 33
},
/obj/machinery/atmospherics/unary/vent_pump/high_volume{
@@ -71546,8 +67071,7 @@
/area/maintenance/fpmaint2)
"cFO" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
@@ -71561,8 +67085,7 @@
master_tag = "sw_maint_airlock";
name = "interior access button";
pixel_x = -24;
- pixel_y = 24;
- req_access_txt = "0"
+ pixel_y = 24
},
/obj/machinery/atmospherics/pipe/simple/hidden{
dir = 10;
@@ -71644,8 +67167,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
@@ -71713,8 +67235,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
@@ -71755,8 +67276,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plating,
/area/maintenance/fpmaint2)
@@ -71771,8 +67291,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
@@ -71791,8 +67310,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/light/small{
dir = 1
@@ -71820,8 +67338,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
@@ -71837,8 +67354,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
@@ -71854,8 +67370,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -71878,8 +67393,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
@@ -71895,8 +67409,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -71914,8 +67427,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/light/small{
@@ -71951,8 +67463,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
@@ -71965,8 +67476,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/maintenance/fpmaint2)
@@ -71978,8 +67488,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/landmark{
name = "blobstart"
@@ -72004,8 +67513,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/cleanable/dirt,
@@ -72022,8 +67530,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -72047,8 +67554,7 @@
icon_state = "pipe-c"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
@@ -72064,8 +67570,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- level = 1
+ dir = 9
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
@@ -72077,8 +67582,7 @@
id_tag = "sw_maint_outer";
locked = 1;
name = "West Maintenance External Access";
- req_access = null;
- req_access_txt = "0"
+ req_access = null
},
/turf/simulated/floor/plasteel,
/area/maintenance/fpmaint2)
@@ -72095,9 +67599,9 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralcorner"
@@ -72139,7 +67643,6 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -72169,7 +67672,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/navbeacon{
codes_txt = "patrol;next_patrol=hall9";
location = "hall8"
@@ -72180,20 +67682,13 @@
},
/area/hallway/primary/central)
"cGC" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11;
- level = 1
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralfull"
+ icon_state = "neutralcorner"
},
/area/hallway/primary/central)
"cGD" = (
@@ -72208,9 +67703,7 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/obj/machinery/navbeacon{
codes_txt = "patrol;next_patrol=hall10";
location = "hall9"
@@ -72229,16 +67722,15 @@
},
/obj/structure/disposalpipe/sortjunction{
dir = 1;
- icon_state = "pipe-j1s";
name = "Medbay Junction";
sortType = 13
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8;
+ initialize_directions = 11
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
@@ -72253,8 +67745,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/door/airlock/maintenance,
/turf/simulated/floor/plasteel,
@@ -72270,8 +67761,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plating,
/area/maintenance/starboard)
@@ -72280,8 +67770,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plating,
/area/maintenance/starboard)
@@ -72290,8 +67779,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/girder,
/turf/simulated/floor/plating,
@@ -72301,17 +67789,12 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
/area/maintenance/starboard)
"cGK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel{
dir = 1;
@@ -72319,10 +67802,6 @@
},
/area/hallway/primary/central)
"cGL" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/yellow,
/obj/effect/decal/warning_stripes/northwestcorner,
@@ -72343,15 +67822,13 @@
icon_state = "pipe-c"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
},
/turf/simulated/floor/plating,
/area/maintenance/starboard)
"cGN" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/landmark{
name = "blobstart"
@@ -72442,7 +67919,6 @@
/obj/machinery/camera{
c_tag = "Rec Room Center";
dir = 4;
- network = list("SS13");
pixel_y = -22
},
/turf/simulated/floor/plasteel{
@@ -72451,10 +67927,6 @@
},
/area/crew_quarters/fitness)
"cGY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/camera{
c_tag = "Central Ring Hallway South"
},
@@ -72510,23 +67982,20 @@
/area/maintenance/fpmaint2)
"cHf" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
/area/maintenance/fpmaint2)
"cHg" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plating,
/area/maintenance/fpmaint2)
"cHh" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "neutral"
@@ -72549,16 +68018,14 @@
/area/maintenance/electrical)
"cHj" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
/area/maintenance/fpmaint2)
"cHk" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/light/small,
/turf/simulated/floor/plating,
@@ -72581,8 +68048,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
@@ -72592,8 +68058,7 @@
/area/maintenance/fpmaint2)
"cHm" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/cleanable/dirt,
@@ -72603,16 +68068,14 @@
/area/maintenance/fpmaint2)
"cHn" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/girder,
/turf/simulated/floor/plating,
/area/maintenance/fpmaint2)
"cHo" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/closet/crate,
/obj/effect/spawner/lootdrop/maintenance{
@@ -72625,8 +68088,7 @@
/area/maintenance/fpmaint2)
"cHp" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/rack,
/obj/item/clothing/gloves/color/fyellow,
@@ -72643,8 +68105,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -72654,8 +68115,7 @@
"cHr" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
@@ -72735,8 +68195,7 @@
"cHz" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plating,
/area/maintenance/fpmaint2)
@@ -72752,6 +68211,9 @@
icon_state = "pipe-c"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralcorner"
@@ -72759,30 +68221,19 @@
/area/hallway/primary/central)
"cHC" = (
/obj/structure/disposalpipe/junction{
- dir = 4;
- icon_state = "pipe-j1";
- tag = "icon-pipe-j1 (EAST)"
+ 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 = "neutralcorner"
},
/area/hallway/primary/central)
-"cHD" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/central)
"cHE" = (
/obj/structure/disposalpipe/segment{
dir = 2;
@@ -72791,6 +68242,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralcorner"
@@ -72804,6 +68258,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralcorner"
@@ -72812,12 +68269,15 @@
"cHG" = (
/obj/structure/disposalpipe/sortjunction{
dir = 4;
- icon_state = "pipe-j1s";
name = "Research Junction";
- sortType = 20;
- tag = "icon-pipe-j1s (EAST)"
+ sortType = 20
+ },
+/obj/machinery/atmospherics/pipe/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 = 8;
icon_state = "neutralcorner"
@@ -72833,8 +68293,10 @@
/obj/machinery/light/small,
/obj/machinery/camera{
c_tag = "Central Ring Hallway South";
- dir = 1;
- network = list("SS13")
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -72848,8 +68310,10 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -72858,6 +68322,9 @@
/area/hallway/primary/central)
"cHJ" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "neutral"
},
@@ -72867,12 +68334,13 @@
dir = 4;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "bluecorner"
},
/area/hallway/primary/central)
@@ -72884,20 +68352,10 @@
dir = 4
},
/obj/machinery/light/small,
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "bluecorner"
- },
-/area/hallway/primary/central)
-"cHM" = (
-/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{
- dir = 2;
icon_state = "bluecorner"
},
/area/hallway/primary/central)
@@ -72905,37 +68363,43 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/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 = 2;
icon_state = "bluecorner"
},
/area/hallway/primary/central)
"cHO" = (
/obj/structure/disposalpipe/sortjunction{
dir = 4;
- icon_state = "pipe-j1s";
name = "CMO's Junction";
- sortType = 20;
- tag = "icon-pipe-j1s (EAST)"
+ sortType = 20
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "bluecorner"
},
/area/hallway/primary/central)
"cHP" = (
/obj/structure/disposalpipe/junction{
- dir = 4;
- icon_state = "pipe-j1";
- tag = "icon-pipe-j1 (EAST)"
+ dir = 4
+ },
+/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 = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
@@ -72944,11 +68408,11 @@
dir = 8;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
@@ -73029,8 +68493,7 @@
"cHY" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10;
- initialize_directions = 10;
- level = 1
+ initialize_directions = 10
},
/turf/simulated/floor/plating,
/area/maintenance/starboard)
@@ -73051,8 +68514,7 @@
/area/crew_quarters/sleep)
"cIc" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
+ dir = 5
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -73077,21 +68539,9 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/crew_quarters/sleep)
-"cIf" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/central)
"cIg" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -73128,14 +68578,12 @@
dir = 4
},
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
/obj/machinery/camera{
c_tag = "Dorm Hallway Port";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -73161,7 +68609,6 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/crew_quarters/sleep)
@@ -73174,7 +68621,6 @@
},
/obj/machinery/light,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/crew_quarters/sleep)
@@ -73211,8 +68657,7 @@
},
/obj/structure/disposalpipe/junction{
dir = 1;
- icon_state = "pipe-j2";
- tag = "icon-pipe-j2"
+ icon_state = "pipe-j2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
@@ -73278,8 +68723,7 @@
req_access_txt = "10;13"
},
/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plating,
/area/maintenance/fpmaint2)
@@ -73335,8 +68779,7 @@
/area/maintenance/electrical)
"cIE" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/turf/simulated/floor/plating,
/area/maintenance/fpmaint2)
@@ -73344,8 +68787,7 @@
/obj/machinery/atmospherics/unary/vent_pump{
dir = 8;
external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
+ on = 1
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
@@ -73442,7 +68884,6 @@
/turf/simulated/floor/plating,
/area/maintenance/fpmaint2)
"cIT" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel{
dir = 4;
@@ -73450,10 +68891,6 @@
},
/area/hallway/primary/central)
"cIU" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
- },
/obj/effect/decal/warning_stripes/northwestcorner,
/turf/simulated/floor/plasteel{
dir = 4;
@@ -73607,13 +69044,11 @@
"cJr" = (
/obj/machinery/vending/medical,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/medical/medbay2)
"cJs" = (
/obj/machinery/newscaster{
- pixel_x = 0;
pixel_y = 32
},
/obj/structure/closet/secure_closet/medical3,
@@ -73624,7 +69059,6 @@
"cJt" = (
/obj/item/radio/intercom{
dir = 1;
- name = "station intercom (General)";
pixel_y = 25
},
/obj/structure/closet/secure_closet/medical3,
@@ -73634,7 +69068,6 @@
/area/medical/medbay2)
"cJu" = (
/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
pixel_y = 30
},
/obj/structure/closet/wardrobe/medical_white,
@@ -73666,8 +69099,7 @@
"cJx" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plating,
/area/maintenance/starboard)
@@ -73710,11 +69142,9 @@
"cJD" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/crew_quarters/fitness)
@@ -73791,16 +69221,14 @@
"cJN" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
/area/maintenance/fpmaint2)
"cJO" = (
/obj/machinery/light/small{
- dir = 4;
- pixel_y = 0
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -73817,8 +69245,7 @@
/area/maintenance/fpmaint2)
"cJQ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
@@ -73912,8 +69339,7 @@
"cKd" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plating,
/area/maintenance/fpmaint2)
@@ -74006,8 +69432,7 @@
},
/obj/effect/decal/warning_stripes/north,
/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{
- dir = 8;
- icon_state = "map"
+ dir = 8
},
/turf/simulated/floor/plasteel,
/area/toxins/xenobiology)
@@ -74188,7 +69613,6 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "bluecorner"
},
/area/hallway/primary/aft)
@@ -74198,8 +69622,7 @@
/obj/item/pen,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"cKN" = (
@@ -74209,23 +69632,20 @@
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"cKO" = (
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"cKP" = (
/obj/structure/chair,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"cKQ" = (
@@ -74233,8 +69653,7 @@
/obj/item/stack/medical/bruise_pack/advanced,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"cKR" = (
@@ -74244,8 +69663,7 @@
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
+ icon_state = "whiteblue"
},
/area/medical/medbay)
"cKS" = (
@@ -74253,8 +69671,7 @@
/obj/item/stack/medical/ointment/advanced,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"cKT" = (
@@ -74264,45 +69681,39 @@
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"cKU" = (
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"cKV" = (
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"cKW" = (
/obj/structure/chair,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"cKX" = (
/obj/structure/table,
/obj/item/radio/intercom{
dir = 4;
- name = "station intercom (General)";
pixel_x = 28
},
/obj/item/storage/firstaid/regular,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"cKY" = (
@@ -74334,8 +69745,7 @@
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/obj/machinery/camera{
c_tag = "Medbay Storage Room";
@@ -74365,8 +69775,7 @@
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
+ icon_state = "whiteblue"
},
/area/medical/medbay2)
"cLf" = (
@@ -74381,8 +69790,7 @@
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
+ icon_state = "whiteblue"
},
/area/medical/medbay2)
"cLg" = (
@@ -74455,8 +69863,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
@@ -74469,8 +69876,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
@@ -74482,13 +69888,8 @@
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
},
/obj/machinery/light/small{
dir = 1
@@ -74506,10 +69907,12 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/maintenance/starboard)
"cLn" = (
@@ -74577,7 +69980,6 @@
"cLv" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/crew_quarters/fitness)
@@ -74600,8 +70002,7 @@
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
@@ -74776,8 +70177,7 @@
/area/toxins/xenobiology)
"cLT" = (
/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark";
@@ -74788,8 +70188,7 @@
/area/toxins/xenobiology)
"cLU" = (
/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 9;
- icon_state = "intact"
+ dir = 9
},
/turf/simulated/floor/plasteel{
icon_state = "dark";
@@ -74856,7 +70255,6 @@
/obj/structure/table/reinforced,
/obj/item/radio/intercom{
dir = 1;
- name = "station intercom (General)";
pixel_y = 28
},
/obj/machinery/light{
@@ -74969,14 +70367,12 @@
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"cMp" = (
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
/area/medical/medbay)
"cMq" = (
@@ -74993,16 +70389,14 @@
"cMs" = (
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
/area/medical/medbay)
"cMt" = (
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"cMu" = (
@@ -75015,8 +70409,7 @@
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"cMv" = (
@@ -75024,8 +70417,7 @@
/obj/machinery/iv_drip,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
+ icon_state = "whiteblue"
},
/area/medical/medbay)
"cMw" = (
@@ -75033,8 +70425,7 @@
/obj/machinery/iv_drip,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"cMx" = (
@@ -75049,8 +70440,7 @@
"cMA" = (
/obj/item/twohanded/required/kirbyplants,
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -75091,29 +70481,22 @@
icon_state = "2-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
/area/maintenance/starboard)
"cMF" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/plasticflaps,
/turf/simulated/floor/plasteel,
/area/medical/medbay2)
"cMG" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
@@ -75124,14 +70507,12 @@
"cMH" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
/area/maintenance/starboard)
"cMI" = (
-/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -75144,8 +70525,7 @@
},
/obj/machinery/space_heater,
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
/area/maintenance/starboard)
"cMK" = (
@@ -75155,11 +70535,9 @@
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10;
- initialize_directions = 10;
- level = 1
+ initialize_directions = 10
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -75181,8 +70559,7 @@
"cMN" = (
/obj/structure/table/wood,
/obj/machinery/newscaster{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/item/storage/briefcase,
/obj/item/cane,
@@ -75196,8 +70573,7 @@
/area/crew_quarters/sleep)
"cMP" = (
/obj/machinery/newscaster{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/machinery/cryopod/right,
/turf/simulated/floor/plasteel{
@@ -75218,7 +70594,6 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/crew_quarters/fitness)
@@ -75239,8 +70614,7 @@
/obj/machinery/atmospherics/binary/valve,
/obj/machinery/alarm{
dir = 4;
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel,
@@ -75249,8 +70623,7 @@
/obj/machinery/meter,
/obj/machinery/atmospherics/pipe/manifold/visible{
dir = 4;
- initialize_directions = 11;
- level = 2
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -75265,8 +70638,7 @@
"cMX" = (
/obj/structure/table/reinforced,
/obj/machinery/light/small{
- dir = 4;
- pixel_y = 0
+ dir = 4
},
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
@@ -75288,8 +70660,7 @@
/area/maintenance/electrical)
"cNb" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -75304,8 +70675,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- level = 1
+ dir = 9
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -75314,8 +70684,7 @@
/area/maintenance/electrical)
"cNd" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
+ dir = 5
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -75572,7 +70941,6 @@
/obj/machinery/door/airlock/research/glass{
autoclose = 0;
frequency = null;
- glass = 1;
icon_state = "door_locked";
id_tag = "tox_airlock_exterior";
locked = 1;
@@ -75657,7 +71025,6 @@
},
/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/medical/research)
@@ -75670,59 +71037,49 @@
dir = 6
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/medical/research)
"cNG" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/medical/research)
"cNH" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/landmark{
name = "lightsout"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/medical/research)
"cNI" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/medical/research)
"cNJ" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/medical/research)
"cNK" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "purplefull"
@@ -75730,8 +71087,7 @@
/area/medical/research)
"cNL" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -75740,8 +71096,7 @@
/area/medical/research)
"cNM" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/west,
@@ -75750,8 +71105,7 @@
"cNN" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
@@ -75761,8 +71115,7 @@
/area/hallway/primary/aft)
"cNO" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -75773,14 +71126,12 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "bluecorner"
},
/area/hallway/primary/aft)
"cNQ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/east,
@@ -75788,19 +71139,16 @@
/area/medical/medbay)
"cNR" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"cNS" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -75808,54 +71156,42 @@
/area/medical/medbay)
"cNT" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"cNU" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"cNV" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"cNW" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"cNX" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/medical/glass{
@@ -75865,18 +71201,15 @@
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
+ icon_state = "whiteblue"
},
/area/medical/medbay)
"cNY" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
/area/medical/medbay)
"cNZ" = (
@@ -75919,7 +71252,6 @@
/obj/machinery/recharger,
/obj/item/radio/intercom{
dir = 1;
- name = "station intercom (General)";
pixel_y = 25
},
/turf/simulated/floor/plasteel{
@@ -75957,15 +71289,13 @@
/obj/item/storage/box/masks,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"cOe" = (
/obj/structure/table,
/obj/item/radio/intercom{
dir = 1;
- name = "station intercom (General)";
pixel_y = 25
},
/obj/item/storage/box/gloves{
@@ -75975,16 +71305,14 @@
/obj/item/storage/box/beakers,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
+ icon_state = "whiteblue"
},
/area/medical/medbay)
"cOf" = (
/obj/structure/closet/walllocker/emerglocker/north,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"cOg" = (
@@ -76030,12 +71358,10 @@
"cOk" = (
/obj/structure/table/glass,
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/item/storage/firstaid/toxin{
@@ -76071,8 +71397,7 @@
/area/space/nearstation)
"cOn" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- level = 1
+ dir = 9
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
@@ -76084,15 +71409,13 @@
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
/area/maintenance/starboard)
"cOp" = (
/obj/structure/table/wood,
/obj/machinery/newscaster{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/item/paper_bin,
/obj/item/pen,
@@ -76145,8 +71468,7 @@
"cOw" = (
/obj/machinery/camera{
c_tag = "Holodeck Aft";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/turf/simulated/floor/engine{
name = "Holodeck Projector Floor"
@@ -76170,8 +71492,7 @@
"cOz" = (
/obj/item/twohanded/required/kirbyplants,
/obj/machinery/status_display{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
@@ -76261,9 +71582,7 @@
},
/obj/item/radio/intercom{
dir = 1;
- name = "station intercom (General)";
- pixel_x = 28;
- pixel_y = 0
+ pixel_x = 28
},
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
@@ -76318,8 +71637,6 @@
/obj/machinery/door_control{
id = "xeno6";
name = "Containment Control";
- pixel_x = 0;
- pixel_y = 0;
req_access_txt = "55"
},
/obj/structure/window/reinforced{
@@ -76344,8 +71661,7 @@
"cOU" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10;
- initialize_directions = 10;
- level = 1
+ initialize_directions = 10
},
/obj/item/twohanded/required/kirbyplants,
/obj/effect/decal/warning_stripes/yellow/hollow,
@@ -76417,8 +71733,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
@@ -76426,8 +71741,7 @@
"cPd" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/warning_stripes/east,
/obj/effect/decal/warning_stripes/west,
@@ -76444,8 +71758,7 @@
"cPf" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -76459,8 +71772,7 @@
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -76474,8 +71786,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
@@ -76496,8 +71807,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- level = 1
+ dir = 9
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -76531,9 +71841,7 @@
},
/obj/machinery/computer/security,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "redfull"
},
/area/security/checkpoint/science)
"cPm" = (
@@ -76634,7 +71942,6 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/medical/research)
@@ -76669,7 +71976,6 @@
"cPz" = (
/obj/structure/disposalpipe/sortjunction{
dir = 1;
- icon_state = "pipe-j1s";
name = "Chemistry Junction";
sortType = 13
},
@@ -76678,7 +71984,6 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "bluecorner"
},
/area/hallway/primary/aft)
@@ -76702,8 +72007,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner (WEST)"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"cPC" = (
@@ -76714,8 +72018,7 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
/area/medical/medbay)
"cPD" = (
@@ -76727,8 +72030,7 @@
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"cPE" = (
@@ -76738,8 +72040,7 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"cPF" = (
@@ -76752,8 +72053,7 @@
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"cPG" = (
@@ -76762,8 +72062,7 @@
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"cPH" = (
@@ -76775,8 +72074,7 @@
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"cPI" = (
@@ -76793,8 +72091,7 @@
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"cPJ" = (
@@ -76805,9 +72102,7 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"cPK" = (
@@ -76833,8 +72128,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner (WEST)"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"cPM" = (
@@ -76853,13 +72147,11 @@
"cPN" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"cPO" = (
@@ -76915,13 +72207,11 @@
"cPT" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10;
- initialize_directions = 10;
- level = 1
+ initialize_directions = 10
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"cPU" = (
@@ -76960,9 +72250,7 @@
department = "Medbay";
departmentType = 1;
name = "Medbay Requests Console";
- pixel_x = 30;
- pixel_y = 0;
- pixel_z = 0
+ pixel_x = 30
},
/obj/item/storage/firstaid/o2{
pixel_x = 6;
@@ -76998,8 +72286,7 @@
master_tag = "sw_maint_airlock";
name = "exterior access button";
pixel_x = 24;
- pixel_y = 24;
- req_access_txt = "0"
+ pixel_y = 24
},
/obj/structure/lattice/catwalk,
/turf/space,
@@ -77009,7 +72296,6 @@
/turf/simulated/wall,
/area/medical/medbay3)
"cQa" = (
-/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/airlock/maintenance{
name = "Medbay Maintenance";
@@ -77031,8 +72317,7 @@
req_access_txt = "5"
},
/turf/simulated/floor/plasteel{
- icon_state = "whiteblue";
- tag = "icon-whiteblue"
+ icon_state = "whiteblue"
},
/area/medical/medbay)
"cQc" = (
@@ -77044,7 +72329,6 @@
dir = 4
},
/obj/machinery/newscaster{
- pixel_x = 0;
pixel_y = 32
},
/obj/effect/landmark{
@@ -77108,8 +72392,7 @@
},
/obj/machinery/camera{
c_tag = "Cryodorms Aft";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/turf/simulated/floor/plasteel{
icon_state = "freezerfloor"
@@ -77156,19 +72439,16 @@
dir = 4
},
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/crew_quarters/fitness)
"cQp" = (
/obj/effect/spawner/window/reinforced,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
+ dir = 5
},
/turf/simulated/floor/plating,
/area/crew_quarters/fitness)
@@ -77204,8 +72484,7 @@
"cQu" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
@@ -77237,8 +72516,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/security/glass{
@@ -77325,8 +72603,6 @@
/obj/machinery/door_control{
id = "xeno4";
name = "Containment Control";
- pixel_x = 0;
- pixel_y = 0;
req_access_txt = "55"
},
/obj/structure/window/reinforced{
@@ -77353,8 +72629,7 @@
"cQH" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/toxins/xenobiology)
@@ -77372,15 +72647,13 @@
"cQJ" = (
/obj/structure/table/reinforced,
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/item/stack/sheet/mineral/plasma,
/obj/item/reagent_containers/glass/beaker,
/obj/item/reagent_containers/dropper,
/obj/machinery/newscaster{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel,
@@ -77416,8 +72689,6 @@
/obj/machinery/door_control{
id = "xeno5";
name = "Containment Control";
- pixel_x = 0;
- pixel_y = 0;
req_access_txt = "55"
},
/obj/structure/window/reinforced{
@@ -77428,11 +72699,9 @@
/area/toxins/xenobiology)
"cQM" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitehall"
},
/area/toxins/xenobiology)
@@ -77444,11 +72713,9 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitehall"
},
/area/toxins/xenobiology)
@@ -77459,21 +72726,17 @@
on = 1
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitehall"
},
/area/toxins/xenobiology)
"cQP" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitehall"
},
/area/toxins/xenobiology)
@@ -77491,8 +72754,7 @@
/area/toxins/xenobiology)
"cQR" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 9;
@@ -77507,8 +72769,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -77547,8 +72808,7 @@
/obj/machinery/atmospherics/unary/vent_pump{
dir = 8;
external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
+ on = 1
},
/turf/simulated/floor/plasteel{
icon_state = "purplefull"
@@ -77557,8 +72817,7 @@
"cQX" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -77630,7 +72889,6 @@
"cRg" = (
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/medical/research)
@@ -77640,7 +72898,6 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "bluecorner"
},
/area/hallway/primary/aft)
@@ -77658,8 +72915,7 @@
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner (WEST)"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"cRk" = (
@@ -77676,32 +72932,27 @@
icon_state = "pipe-c"
},
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
/area/medical/medbay)
"cRm" = (
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"cRn" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"cRo" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"cRp" = (
@@ -77808,14 +73059,12 @@
tag = ""
},
/turf/simulated/floor/plasteel{
- icon_state = "whiteblue";
- tag = "icon-whiteblue"
+ icon_state = "whiteblue"
},
/area/medical/medbay2)
"cRv" = (
/turf/simulated/floor/plasteel{
- icon_state = "whiteblue";
- tag = "icon-whiteblue"
+ icon_state = "whiteblue"
},
/area/medical/medbay2)
"cRw" = (
@@ -77834,30 +73083,27 @@
/area/medical/medbay2)
"cRx" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/cleanable/dirt,
/obj/machinery/door/airlock/maintenance{
- name = "Medbay Toilet";
- req_access_txt = "0"
+ name = "Medbay Toilet"
},
/turf/simulated/floor/plasteel,
/area/medical/medbay3)
"cRy" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutral"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel,
/area/maintenance/starboard)
"cRz" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -77872,8 +73118,7 @@
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -77917,8 +73162,7 @@
dir = 8
},
/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 6;
- level = 2
+ dir = 6
},
/obj/effect/decal/warning_stripes/northwest,
/turf/simulated/floor/plasteel,
@@ -78023,7 +73267,6 @@
/obj/machinery/door_control{
id = "xenosecure";
name = "Containment Control";
- pixel_x = 0;
pixel_y = -3;
req_access_txt = "55"
},
@@ -78056,8 +73299,7 @@
"cRT" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
@@ -78065,8 +73307,7 @@
"cRU" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/warning_stripes/west,
/obj/effect/decal/warning_stripes/east,
@@ -78074,8 +73315,7 @@
/area/toxins/xenobiology)
"cRV" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
@@ -78153,9 +73393,7 @@
},
/obj/machinery/atmospherics/unary/vent_pump{
dir = 1;
- external_pressure_bound = 101.325;
- on = 1;
- pressure_checks = 1
+ on = 1
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -78186,8 +73424,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (WEST)"
+ icon_state = "whitepurple"
},
/area/toxins/xenobiology)
"cSe" = (
@@ -78224,8 +73461,7 @@
"cSh" = (
/obj/machinery/computer/camera_advanced/xenobio,
/obj/machinery/status_display{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/turf/simulated/floor/greengrid,
/area/toxins/xenobiology)
@@ -78252,8 +73488,7 @@
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/obj/machinery/door_timer{
dir = 10;
@@ -78280,7 +73515,6 @@
icon_state = "1-8"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "red"
},
/area/security/checkpoint/science)
@@ -78351,7 +73585,6 @@
/obj/item/paper_bin,
/obj/item/pen,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/medical/research)
@@ -78361,20 +73594,17 @@
},
/obj/machinery/disposal,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/medical/research)
"cSt" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/medical/research)
"cSu" = (
/obj/machinery/autolathe,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/medical/research)
@@ -78388,7 +73618,6 @@
},
/obj/item/stack/packageWrap,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/medical/research)
@@ -78396,7 +73625,6 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/aft)
@@ -78407,8 +73635,7 @@
/obj/machinery/light,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner (WEST)"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"cSy" = (
@@ -78416,8 +73643,7 @@
/obj/item/folder/white,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner (WEST)"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"cSz" = (
@@ -78427,15 +73653,13 @@
/obj/machinery/disposal,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner (WEST)"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"cSA" = (
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner (WEST)"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"cSB" = (
@@ -78443,8 +73667,7 @@
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner (WEST)"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"cSC" = (
@@ -78465,8 +73688,7 @@
"cSD" = (
/obj/structure/bed/roller,
/turf/simulated/floor/plasteel{
- icon_state = "whiteblue";
- tag = "icon-whiteblue"
+ icon_state = "whiteblue"
},
/area/medical/medbay)
"cSE" = (
@@ -78481,16 +73703,12 @@
network = list("Medical","SS13")
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"cSF" = (
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"cSG" = (
@@ -78498,9 +73716,7 @@
/obj/item/paper_bin,
/obj/item/pen,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"cSH" = (
@@ -78539,8 +73755,7 @@
/area/security/checkpoint/medical)
"cSK" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -78551,21 +73766,18 @@
/obj/effect/spawner/window/reinforced,
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plating,
/area/security/checkpoint/medical)
"cSM" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"cSN" = (
@@ -78574,8 +73786,7 @@
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"cSO" = (
@@ -78600,14 +73811,12 @@
req_access_txt = "5"
},
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
/area/medical/medbay2)
"cSR" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/urinal{
pixel_y = 28
@@ -78619,11 +73828,9 @@
},
/area/medical/medbay3)
"cSS" = (
-/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -78633,9 +73840,7 @@
"cST" = (
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
- pixel_x = 10;
- pixel_y = 0
+ pixel_x = 10
},
/obj/effect/decal/cleanable/vomit,
/obj/effect/decal/cleanable/dirt,
@@ -78651,7 +73856,6 @@
},
/area/medical/medbay3)
"cSU" = (
-/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/airlock/maintenance{
name = "Medbay Toilet";
@@ -78666,8 +73870,7 @@
req_access_txt = "5"
},
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
/area/medical/medbay2)
"cSW" = (
@@ -78843,8 +74046,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel,
@@ -78857,7 +74059,6 @@
tag = ""
},
/obj/machinery/door/window/brigdoor{
- dir = 4;
id = null;
name = "Creature Pen";
req_access_txt = "47"
@@ -79007,8 +74208,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (WEST)"
+ icon_state = "whitepurple"
},
/area/toxins/xenobiology)
"cTE" = (
@@ -79020,8 +74220,7 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10;
- initialize_directions = 10;
- level = 1
+ initialize_directions = 10
},
/turf/simulated/floor/plasteel{
icon_state = "purplefull"
@@ -79052,8 +74251,6 @@
/obj/machinery/door_control{
id = "xeno2";
name = "Containment Control";
- pixel_x = 0;
- pixel_y = 0;
req_access_txt = "55"
},
/obj/structure/window/reinforced{
@@ -79067,8 +74264,6 @@
/obj/machinery/door_control{
id = "xeno3";
name = "Containment Control";
- pixel_x = 0;
- pixel_y = 0;
req_access_txt = "55"
},
/obj/structure/window/reinforced{
@@ -79080,8 +74275,7 @@
"cTI" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -79120,9 +74314,7 @@
req_access_txt = "150"
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "redfull"
},
/area/security/checkpoint/science)
"cTL" = (
@@ -79197,8 +74389,7 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/obj/structure/sign/poster/official/nanotrasen_logo{
pixel_x = -32
@@ -79215,7 +74406,6 @@
pixel_x = 28
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/aft)
@@ -79306,17 +74496,14 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/alarm{
dir = 4;
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"cUf" = (
@@ -79328,8 +74515,7 @@
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"cUg" = (
@@ -79344,8 +74530,7 @@
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/obj/machinery/camera{
c_tag = "Medbay Security Checkpoint";
@@ -79372,8 +74557,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- level = 1
+ dir = 9
},
/obj/structure/cable{
d1 = 2;
@@ -79387,12 +74571,10 @@
"cUi" = (
/obj/item/twohanded/required/kirbyplants,
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/turf/simulated/floor/plasteel{
@@ -79403,13 +74585,11 @@
"cUj" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"cUk" = (
@@ -79418,8 +74598,7 @@
on = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
/area/medical/medbay)
"cUl" = (
@@ -79441,22 +74620,24 @@
"cUn" = (
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
+ icon_state = "whiteblue"
},
/area/medical/medbay)
"cUo" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutral"
},
/area/medical/medbay3)
"cUp" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutralcorner"
@@ -79488,27 +74669,9 @@
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay3)
-"cUt" = (
-/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/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11;
- level = 1
- },
-/turf/simulated/floor/plating,
-/area/maintenance/starboard)
"cUu" = (
/obj/structure/cable{
d1 = 2;
@@ -79522,17 +74685,17 @@
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
/turf/simulated/floor/plating,
/area/maintenance/starboard)
"cUv" = (
@@ -79546,8 +74709,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -79567,8 +74729,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -79587,8 +74748,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -79607,8 +74767,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -79618,25 +74777,6 @@
icon_state = "neutral"
},
/area/maintenance/starboard)
-"cUz" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/maintenance/starboard)
"cUA" = (
/obj/structure/cable{
d1 = 4;
@@ -79648,13 +74788,11 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plating,
/area/maintenance/starboard)
@@ -79669,8 +74807,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -79688,8 +74825,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -79711,8 +74847,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -79728,13 +74863,10 @@
tag = ""
},
/obj/structure/disposalpipe/junction{
- dir = 4;
- icon_state = "pipe-j1";
- tag = "icon-pipe-j1 (EAST)"
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -79763,8 +74895,7 @@
/area/crew_quarters/fitness)
"cUG" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/structure/chair/stool,
@@ -79775,8 +74906,7 @@
/area/crew_quarters/fitness)
"cUH" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -79789,8 +74919,7 @@
/area/crew_quarters/fitness)
"cUI" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -79805,8 +74934,7 @@
/area/crew_quarters/fitness)
"cUJ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -79831,8 +74959,7 @@
/area/crew_quarters/fitness)
"cUL" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- level = 1
+ dir = 9
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -79847,7 +74974,6 @@
dir = 9
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/crew_quarters/fitness)
@@ -79932,8 +75058,7 @@
/area/toxins/xenobiology)
"cUW" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/turf/simulated/floor/plasteel,
/area/toxins/xenobiology)
@@ -79962,8 +75087,7 @@
"cVa" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
@@ -79980,8 +75104,7 @@
"cVc" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- level = 1
+ dir = 9
},
/obj/effect/decal/warning_stripes/northeast,
/turf/simulated/floor/plasteel,
@@ -80002,8 +75125,7 @@
"cVf" = (
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (WEST)"
+ icon_state = "whitepurple"
},
/area/toxins/xenobiology)
"cVg" = (
@@ -80099,8 +75221,7 @@
"cVm" = (
/obj/machinery/smartfridge/secure/extract,
/obj/machinery/light_switch{
- pixel_x = -26;
- pixel_y = 0
+ pixel_x = -26
},
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
@@ -80127,8 +75248,7 @@
},
/obj/structure/table/reinforced,
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/item/folder/white,
/obj/item/pen,
@@ -80159,8 +75279,7 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel,
@@ -80232,7 +75351,6 @@
/obj/effect/spawner/window/reinforced,
/obj/machinery/door/poddoor/shutters{
density = 0;
- dir = 4;
icon_state = "shutter0";
id_tag = "researchdesk2";
name = "Research Desk Shutters";
@@ -80262,11 +75380,9 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "orangecorner"
},
/area/hallway/primary/aft)
@@ -80306,7 +75422,7 @@
"cVF" = (
/obj/structure/table/glass,
/obj/item/clipboard,
-/obj/item/toy/figure/chemist,
+/obj/item/toy/figure/crew/chemist,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "whitegreencorner"
@@ -80369,8 +75485,7 @@
/obj/machinery/computer/med_data,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"cVN" = (
@@ -80379,8 +75494,7 @@
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"cVO" = (
@@ -80389,8 +75503,7 @@
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"cVP" = (
@@ -80403,8 +75516,7 @@
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"cVQ" = (
@@ -80433,9 +75545,7 @@
req_access_txt = "150"
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "redfull"
},
/area/security/checkpoint/medical)
"cVR" = (
@@ -80455,8 +75565,7 @@
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
+ icon_state = "whiteblue"
},
/area/medical/medbay3)
"cVT" = (
@@ -80473,16 +75582,14 @@
"cVU" = (
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
+ icon_state = "whiteblue"
},
/area/medical/medbay3)
"cVV" = (
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay3)
"cVW" = (
@@ -80490,8 +75597,7 @@
dir = 4
},
/obj/machinery/newscaster{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -80501,14 +75607,14 @@
"cVX" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ 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"
},
@@ -80532,6 +75638,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plating,
/area/maintenance/starboard)
"cWc" = (
@@ -80571,7 +75678,6 @@
/area/crew_quarters/fitness)
"cWh" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/crew_quarters/fitness)
@@ -80610,8 +75716,7 @@
/area/maintenance/fpmaint2)
"cWn" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -80620,8 +75725,7 @@
/area/maintenance/fpmaint2)
"cWo" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/landmark{
name = "blobstart"
@@ -80641,8 +75745,7 @@
/area/maintenance/fpmaint2)
"cWq" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
@@ -80652,8 +75755,7 @@
/area/maintenance/fpmaint2)
"cWr" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/light/small{
dir = 1
@@ -80670,13 +75772,11 @@
icon_state = "0-4"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/obj/effect/decal/cleanable/dirt,
@@ -80690,8 +75790,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -80702,8 +75801,7 @@
/obj/item/twohanded/required/kirbyplants,
/obj/machinery/alarm{
dir = 8;
- pixel_x = 25;
- pixel_y = 0
+ pixel_x = 25
},
/obj/machinery/camera{
c_tag = "Research Security Checkpoint";
@@ -80711,8 +75809,7 @@
network = list("Research","SS13","Security")
},
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 6;
@@ -80727,8 +75824,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -80737,8 +75833,7 @@
/area/maintenance/fpmaint2)
"cWw" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
},
/turf/simulated/floor/plating,
/area/maintenance/fpmaint2)
@@ -80751,8 +75846,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
@@ -80915,11 +76009,9 @@
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
+ dir = 5
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurple"
},
/area/toxins/xenobiology)
@@ -80934,7 +76026,6 @@
dir = 8
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurple"
},
/area/toxins/xenobiology)
@@ -80948,11 +76039,9 @@
/obj/machinery/camera{
c_tag = "Research Lobby";
dir = 1;
- network = list("Research","SS13");
- pixel_x = 0
+ network = list("Research","SS13")
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurple"
},
/area/medical/research)
@@ -80960,8 +76049,7 @@
/obj/structure/table/reinforced,
/obj/machinery/alarm{
dir = 4;
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/obj/item/stock_parts/matter_bin{
pixel_x = 3;
@@ -80989,7 +76077,6 @@
tag = ""
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "red"
},
/area/security/checkpoint/science)
@@ -81014,8 +76101,7 @@
},
/obj/machinery/r_n_d/protolathe,
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/effect/decal/warning_stripes/northeast,
/turf/simulated/floor/plasteel,
@@ -81028,8 +76114,7 @@
/obj/item/storage/bag/bio,
/obj/machinery/firealarm{
dir = 8;
- pixel_x = -26;
- pixel_y = 0
+ pixel_x = -26
},
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
@@ -81111,7 +76196,6 @@
dir = 8
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "orangecorner"
},
/area/hallway/primary/aft)
@@ -81125,8 +76209,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (WEST)"
+ icon_state = "whitegreen"
},
/area/medical/chemistry)
"cXg" = (
@@ -81155,7 +76238,6 @@
/obj/structure/closet/secure_closet/medical1,
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/effect/decal/warning_stripes/southwest,
@@ -81179,21 +76261,18 @@
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay3)
"cXm" = (
/obj/machinery/computer/crew,
/obj/item/radio/intercom{
dir = 8;
- name = "station intercom (General)";
pixel_x = -28
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (WEST)"
+ icon_state = "whiteblue"
},
/area/medical/medbay)
"cXn" = (
@@ -81218,15 +76297,13 @@
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whiteblue"
},
/area/medical/medbay)
"cXq" = (
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay3)
"cXr" = (
@@ -81240,8 +76317,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (WEST)"
+ icon_state = "whiteblue"
},
/area/medical/medbay)
"cXs" = (
@@ -81316,8 +76392,7 @@
tag = ""
},
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
/area/medical/medbay)
"cXy" = (
@@ -81346,20 +76421,17 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
/area/medical/medbay3)
"cXA" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -81384,8 +76456,7 @@
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay3)
"cXC" = (
@@ -81413,6 +76484,7 @@
dir = 6
},
/obj/machinery/hologram/holopad,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
icon_state = "redbluefull"
},
@@ -81420,8 +76492,7 @@
"cXG" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
icon_state = "redbluefull"
@@ -81439,7 +76510,7 @@
/area/medical/medbay3)
"cXI" = (
/turf/simulated/wall/rust,
-/area/medical/surgery1)
+/area/medical/surgery)
"cXJ" = (
/turf/simulated/wall,
/area/medical/surgery1)
@@ -81448,8 +76519,7 @@
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner (WEST)"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay3)
"cXL" = (
@@ -81468,8 +76538,7 @@
/obj/machinery/light,
/obj/machinery/camera{
c_tag = "Rec Room Aft";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/turf/simulated/floor/plasteel{
icon_state = "neutral"
@@ -81478,7 +76547,6 @@
"cXO" = (
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/crew_quarters/fitness)
@@ -81511,8 +76579,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
@@ -81537,8 +76604,7 @@
/area/maintenance/fpmaint2)
"cXW" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
+ dir = 5
},
/turf/simulated/floor/plating,
/area/maintenance/fpmaint2)
@@ -81647,8 +76713,7 @@
"cYg" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
@@ -81662,11 +76727,8 @@
icon_state = "pipe-c"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/closet/wardrobe/yellow{
- icon_state = "yellow"
- },
+/obj/structure/closet/wardrobe/yellow,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/crew_quarters/locker)
@@ -81681,8 +76743,7 @@
/area/toxins/xenobiology)
"cYj" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/machinery/light/small,
/obj/effect/decal/warning_stripes/south,
@@ -81692,8 +76753,7 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/effect/decal/warning_stripes/southeast,
/turf/simulated/floor/plasteel,
@@ -81707,7 +76767,6 @@
/obj/structure/table/reinforced,
/obj/item/radio/intercom{
dir = 8;
- name = "station intercom (General)";
pixel_x = -28
},
/obj/item/stack/cable_coil/random,
@@ -81807,15 +76866,13 @@
"cYx" = (
/turf/simulated/floor/plasteel{
dir = 9;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (NORTHWEST)"
+ icon_state = "whitepurple"
},
/area/toxins/lab)
"cYy" = (
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (SOUTHWEST)"
+ icon_state = "whitepurple"
},
/area/toxins/lab)
"cYz" = (
@@ -81846,7 +76903,6 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "orangecorner"
},
/area/hallway/primary/aft)
@@ -81870,16 +76926,14 @@
"cYF" = (
/turf/simulated/floor/plasteel{
dir = 9;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (NORTHWEST)"
+ icon_state = "whitegreen"
},
/area/medical/chemistry)
"cYG" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (NORTHEAST)"
+ icon_state = "whitegreen"
},
/area/medical/chemistry)
"cYH" = (
@@ -81900,7 +76954,7 @@
/obj/structure/table/glass,
/obj/machinery/light/small,
/obj/item/clipboard,
-/obj/item/toy/figure/md,
+/obj/item/toy/figure/crew/md,
/obj/machinery/camera{
c_tag = "Medbay Front Desk";
dir = 1;
@@ -81908,44 +76962,37 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner (WEST)"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"cYK" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner (WEST)"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"cYL" = (
/obj/structure/chair/office/light,
/turf/simulated/floor/plasteel{
- icon_state = "whiteblue";
- tag = "icon-whiteblue"
+ icon_state = "whiteblue"
},
/area/medical/medbay)
"cYM" = (
/obj/item/twohanded/required/kirbyplants,
/obj/machinery/light/small,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"cYN" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"cYO" = (
@@ -82016,8 +77063,7 @@
"cYU" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -82031,8 +77077,7 @@
tag = ""
},
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
/area/medical/medbay3)
"cYW" = (
@@ -82040,9 +77085,7 @@
pixel_x = 26
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay3)
"cYX" = (
@@ -82079,7 +77122,6 @@
network = list("SS13","Medical")
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/medical/medbay3)
@@ -82089,16 +77131,14 @@
},
/obj/machinery/alarm{
dir = 4;
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/obj/effect/decal/warning_stripes/southeast,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
-/area/medical/surgery1)
+/area/medical/surgery)
"cZc" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/rack,
@@ -82120,6 +77160,7 @@
/obj/structure/sign/examroom{
pixel_x = 32
},
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plating,
/area/maintenance/starboard)
"cZe" = (
@@ -82129,15 +77170,14 @@
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
-/area/medical/surgery1)
+/area/medical/surgery)
"cZf" = (
/obj/machinery/iv_drip,
/obj/structure/bed/roller,
/turf/simulated/floor/plating,
-/area/medical/surgery1)
+/area/medical/surgery)
"cZg" = (
/obj/structure/table/glass,
/obj/structure/sign/nosmoking_2{
@@ -82150,20 +77190,18 @@
/obj/item/stack/medical/ointment,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
+ icon_state = "whiteblue"
},
-/area/medical/surgery1)
+/area/medical/surgery)
"cZh" = (
/obj/machinery/iv_drip,
/obj/structure/bed/roller,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
-/area/medical/surgery1)
+/area/medical/surgery)
"cZi" = (
/obj/structure/mirror{
icon_state = "mirror_broke";
@@ -82172,10 +77210,9 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
-/area/medical/surgery1)
+/area/medical/surgery)
"cZj" = (
/obj/machinery/constructable_frame/machine_frame,
/obj/effect/decal/cleanable/cobweb2,
@@ -82183,10 +77220,9 @@
/obj/effect/decal/warning_stripes/southwest,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
-/area/medical/surgery1)
+/area/medical/surgery)
"cZk" = (
/obj/structure/cable{
d1 = 1;
@@ -82230,8 +77266,7 @@
"cZo" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
@@ -82243,8 +77278,7 @@
/obj/effect/decal/warning_stripes/northeast,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner (WEST)"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay3)
"cZq" = (
@@ -82275,8 +77309,7 @@
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/obj/item/folder/white,
/obj/item/stock_parts/cell/high,
@@ -82291,8 +77324,7 @@
/area/medical/research)
"cZu" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/west,
@@ -82304,16 +77336,12 @@
/area/medical/research)
"cZv" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/table/reinforced,
/obj/item/folder,
/obj/item/pen,
-/obj/machinery/door/window/westleft{
- name = "interior door";
- req_access_txt = "0"
- },
+/obj/machinery/door/window/westleft,
/obj/machinery/door/window/eastleft{
name = "Research Lab Desk";
req_access_txt = "7"
@@ -82363,8 +77391,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (WEST)"
+ icon_state = "whitepurple"
},
/area/toxins/lab)
"cZB" = (
@@ -82379,8 +77406,7 @@
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (EAST)"
+ icon_state = "whitepurple"
},
/area/toxins/lab)
"cZC" = (
@@ -82394,8 +77420,7 @@
department = "Xenobiology";
departmentType = 2;
name = "Xenobiology Requests Console";
- pixel_x = 30;
- pixel_y = 0
+ pixel_x = 30
},
/obj/machinery/reagentgrinder,
/obj/effect/decal/warning_stripes/yellow,
@@ -82403,8 +77428,7 @@
/area/toxins/xenobiology)
"cZD" = (
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/obj/machinery/door_control{
id = "chemdesk2";
@@ -82429,7 +77453,6 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/obj/structure/cable{
@@ -82481,8 +77504,7 @@
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"cZK" = (
@@ -82517,8 +77539,7 @@
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"cZN" = (
@@ -82537,8 +77558,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner (WEST)"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay3)
"cZP" = (
@@ -82551,24 +77571,19 @@
/area/medical/medbay)
"cZQ" = (
/turf/simulated/floor/plasteel{
- icon_state = "whiteblue";
- tag = "icon-whiteblue"
+ icon_state = "whiteblue"
},
/area/medical/medbay3)
"cZR" = (
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay3)
"cZS" = (
/obj/machinery/sleeper,
/obj/effect/decal/warning_stripes/northwest,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay3)
"cZT" = (
@@ -82586,10 +77601,10 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/effect/decal/cleanable/dirt,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutral"
@@ -82605,13 +77620,13 @@
/area/medical/medbay3)
"cZV" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
icon_state = "neutral"
},
/area/medical/medbay3)
"cZW" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/medical/medbay3)
@@ -82620,7 +77635,6 @@
/obj/item/paper_bin,
/obj/item/pen,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/medical/medbay3)
@@ -82628,14 +77642,12 @@
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
-/area/medical/surgery1)
+/area/medical/surgery)
"cZZ" = (
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
/area/medical/medbay3)
"daa" = (
@@ -82646,16 +77658,15 @@
"dab" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
-/area/medical/surgery1)
+/area/medical/surgery)
"dac" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/surgery1)
+/area/medical/surgery)
"dad" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/cleanable/dirt,
@@ -82688,7 +77699,6 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/obj/structure/table/wood,
@@ -82752,8 +77762,7 @@
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/turf/simulated/floor/plating,
/area/maintenance/fpmaint2)
@@ -82765,8 +77774,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "neutral"
@@ -82780,8 +77788,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
@@ -82819,8 +77826,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -82843,8 +77849,7 @@
/area/medical/research)
"daw" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -82855,8 +77860,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -82864,8 +77868,7 @@
/area/medical/chemistry)
"day" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -82881,8 +77884,7 @@
/area/medical/research)
"daA" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -82890,8 +77892,7 @@
/area/medical/research)
"daB" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/sign/poster/official/nanotrasen_logo{
@@ -82905,8 +77906,7 @@
/area/medical/research)
"daC" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -82919,8 +77919,7 @@
"daE" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
@@ -82930,8 +77929,7 @@
/area/medical/research)
"daF" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/light{
dir = 1;
@@ -82960,8 +77958,7 @@
/area/toxins/lab)
"daI" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -82970,8 +77967,7 @@
/area/toxins/lab)
"daJ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- level = 1
+ dir = 9
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -82981,11 +77977,10 @@
"daK" = (
/obj/structure/table,
/obj/item/clipboard,
-/obj/item/toy/figure/scientist,
+/obj/item/toy/figure/crew/scientist,
/turf/simulated/floor/plasteel{
dir = 10;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (SOUTHWEST)"
+ icon_state = "whitepurple"
},
/area/toxins/lab)
"daL" = (
@@ -83007,14 +78002,12 @@
},
/turf/simulated/floor/plasteel{
dir = 6;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (SOUTHWEST)"
+ icon_state = "whitepurple"
},
/area/toxins/lab)
"daM" = (
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/toxins/lab)
@@ -83035,7 +78028,6 @@
pixel_y = 32
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "orangecorner"
},
/area/hallway/primary/aft)
@@ -83046,7 +78038,6 @@
/obj/structure/table/reinforced,
/obj/item/paper_bin,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "orangefull"
},
/area/hallway/primary/aft)
@@ -83069,30 +78060,26 @@
/obj/item/crowbar,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
-/area/medical/surgery1)
+/area/medical/surgery)
"daS" = (
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plating,
-/area/medical/surgery1)
+/area/medical/surgery)
"daT" = (
/turf/simulated/floor/plasteel{
dir = 10;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (SOUTHWEST)"
+ icon_state = "whitegreen"
},
/area/medical/chemistry)
"daU" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
+ dir = 5
},
/turf/simulated/floor/plasteel{
dir = 6;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (SOUTHEAST)"
+ icon_state = "whitegreen"
},
/area/medical/chemistry)
"daV" = (
@@ -83114,7 +78101,6 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitegreencorner"
},
/area/medical/chemistry)
@@ -83151,16 +78137,14 @@
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"dba" = (
/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"dbb" = (
@@ -83169,8 +78153,7 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
/area/medical/medbay)
"dbc" = (
@@ -83180,8 +78163,7 @@
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"dbd" = (
@@ -83194,16 +78176,6 @@
icon_state = "white"
},
/area/medical/chemistry)
-"dbe" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
- },
-/area/medical/medbay)
"dbf" = (
/obj/structure/cable{
d1 = 1;
@@ -83216,28 +78188,24 @@
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"dbg" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
+ icon_state = "whiteblue"
},
/area/medical/medbay)
"dbh" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"dbi" = (
@@ -83262,28 +78230,24 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
/area/medical/medbay)
"dbl" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"dbm" = (
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"dbn" = (
@@ -83293,8 +78257,7 @@
/obj/machinery/vending/medical,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"dbo" = (
@@ -83306,8 +78269,7 @@
"dbp" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plating,
/area/maintenance/starboard)
@@ -83323,6 +78285,7 @@
pixel_x = 32
},
/obj/effect/decal/cleanable/dirt,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutral"
@@ -83347,8 +78310,7 @@
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay3)
"dbu" = (
@@ -83356,8 +78318,7 @@
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
+ icon_state = "whiteblue"
},
/area/medical/medbay3)
"dbv" = (
@@ -83401,18 +78362,16 @@
},
/obj/structure/table/tray,
/turf/simulated/floor/plating,
-/area/medical/surgery1)
+/area/medical/surgery)
"dbB" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plating,
/area/maintenance/gambling_den)
"dbC" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -83431,8 +78390,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plating,
/area/maintenance/gambling_den)
@@ -83444,29 +78402,25 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/maintenance/gambling_den)
"dbF" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11;
- level = 1
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/medical/glass{
+ id_tag = null;
+ name = "Observation Room"
},
-/obj/item/surgicaldrill,
-/obj/item/circular_saw,
-/obj/item/FixOVein,
-/obj/structure/table/tray,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
+ icon_state = "dark"
},
-/area/medical/surgery)
+/area/medical/medbay)
"dbG" = (
/obj/item/twohanded/required/kirbyplants,
/obj/effect/decal/cleanable/dirt,
@@ -83491,8 +78445,7 @@
"dbJ" = (
/obj/item/twohanded/required/kirbyplants,
/obj/structure/sign/poster/contraband/random{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/turf/simulated/floor/plating,
/area/maintenance/gambling_den)
@@ -83520,13 +78473,11 @@
/area/maintenance/fpmaint2)
"dbO" = (
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (WEST)"
+ icon_state = "whitepurple"
},
/area/medical/research)
"dbP" = (
@@ -83582,7 +78533,6 @@
/obj/item/pen,
/obj/machinery/door/poddoor/shutters{
density = 0;
- dir = 4;
icon_state = "shutter0";
id_tag = "researchdesk2";
name = "Research Desk Shutters";
@@ -83623,8 +78573,7 @@
"dbY" = (
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (EAST)"
+ icon_state = "whitepurple"
},
/area/medical/research)
"dbZ" = (
@@ -83665,7 +78614,6 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/toxins/lab)
@@ -83687,7 +78635,6 @@
/area/hallway/primary/aft)
"dcf" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "orangefull"
},
/area/hallway/primary/aft)
@@ -83720,8 +78667,7 @@
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"dcj" = (
@@ -83734,7 +78680,6 @@
/area/medical/chemistry)
"dck" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitegreencorner"
},
/area/medical/chemistry)
@@ -83769,8 +78714,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (WEST)"
+ icon_state = "whitegreen"
},
/area/medical/medbay)
"dcn" = (
@@ -83782,8 +78726,7 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
/area/medical/medbay)
"dco" = (
@@ -83797,31 +78740,6 @@
icon_state = "white"
},
/area/medical/medbay)
-"dcp" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
- },
-/area/medical/medbay)
-"dcq" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
- },
-/area/medical/medbay)
"dcr" = (
/obj/structure/cable{
d1 = 2;
@@ -83840,8 +78758,7 @@
name = "lightsout"
},
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
/area/medical/medbay)
"dcs" = (
@@ -83863,8 +78780,7 @@
icon_state = "1-8"
},
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
/area/medical/medbay)
"dcu" = (
@@ -83895,8 +78811,7 @@
tag = ""
},
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
/area/medical/medbay)
"dcw" = (
@@ -83926,8 +78841,7 @@
dir = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
/area/medical/medbay)
"dcy" = (
@@ -83938,6 +78852,10 @@
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"
},
@@ -83949,17 +78867,18 @@
icon_state = "4-8";
tag = ""
},
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whiteblue"
},
/area/medical/medbay)
"dcA" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -83973,6 +78892,10 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/maintenance/starboard)
"dcC" = (
@@ -83989,6 +78912,10 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/cleanable/dirt,
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutral"
@@ -83999,16 +78926,15 @@
/obj/machinery/door/airlock/medical/glass{
id_tag = "";
name = "Staff Room";
- req_access_txt = "5";
- req_one_access_txt = "0"
+ req_access_txt = "5"
},
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel,
/area/medical/medbay3)
"dcE" = (
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner (WEST)"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay3)
"dcF" = (
@@ -84019,18 +78945,16 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/door/airlock/maintenance{
icon_state = "door_locked";
locked = 1;
- name = "Maintenance Access";
- req_access_txt = "0"
+ name = "Maintenance Access"
},
/obj/structure/barricade/wooden,
/turf/simulated/floor/plasteel,
-/area/medical/surgery1)
+/area/medical/surgery)
"dcG" = (
/obj/structure/cable{
d1 = 2;
@@ -84039,35 +78963,30 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (WEST)"
+ icon_state = "whiteblue"
},
-/area/medical/surgery1)
+/area/medical/surgery)
"dcH" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/surgery1)
+/area/medical/surgery)
"dcI" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
-/area/medical/surgery1)
+/area/medical/surgery)
"dcJ" = (
/obj/structure/dresser,
/obj/effect/decal/cleanable/cobweb,
@@ -84178,8 +79097,7 @@
"dcV" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10;
- initialize_directions = 10;
- level = 1
+ initialize_directions = 10
},
/obj/structure/table/wood/poker,
/turf/simulated/floor/plating,
@@ -84257,8 +79175,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
+ dir = 5
},
/turf/simulated/floor/plating,
/area/maintenance/fpmaint2)
@@ -84274,8 +79191,7 @@
"ddh" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10;
- initialize_directions = 10;
- level = 1
+ initialize_directions = 10
},
/turf/simulated/floor/plasteel,
/area/maintenance/fpmaint2)
@@ -84306,7 +79222,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/public/glass,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
@@ -84319,6 +79234,9 @@
},
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralcorner"
@@ -84373,11 +79291,9 @@
department = "Science";
departmentType = 2;
name = "Research Request Console";
- pixel_x = 30;
- pixel_y = 0
+ pixel_x = 30
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/toxins/lab)
@@ -84398,7 +79314,6 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurple"
},
/area/medical/research)
@@ -84408,7 +79323,6 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/medical/research)
@@ -84418,7 +79332,6 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurple"
},
/area/medical/research)
@@ -84460,7 +79373,6 @@
},
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/medical/research)
@@ -84487,7 +79399,6 @@
dir = 4
},
/obj/machinery/status_display{
- pixel_x = 0;
pixel_y = -32
},
/obj/item/storage/toolbox/mechanical,
@@ -84500,7 +79411,6 @@
"ddF" = (
/obj/structure/table/reinforced,
/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
pixel_y = -30
},
/obj/item/folder/white,
@@ -84522,7 +79432,6 @@
dir = 9
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/toxins/lab)
@@ -84563,7 +79472,6 @@
"ddK" = (
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "orangefull"
},
/area/hallway/primary/aft)
@@ -84615,7 +79523,6 @@
icon_state = "2-4"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitegreencorner"
},
/area/medical/chemistry)
@@ -84626,8 +79533,7 @@
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/item/radio/intercom{
dir = 1;
@@ -84639,11 +79545,9 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitegreencorner"
},
/area/medical/chemistry)
@@ -84655,15 +79559,13 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/light_switch{
pixel_x = 4;
pixel_y = -22
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitegreencorner"
},
/area/medical/chemistry)
@@ -84671,11 +79573,10 @@
/obj/machinery/atmospherics/unary/vent_pump{
dir = 8;
external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
+ on = 1
},
/turf/simulated/floor/plating,
-/area/medical/surgery1)
+/area/medical/surgery)
"ddS" = (
/obj/structure/cable{
d1 = 1;
@@ -84683,8 +79584,7 @@
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -84695,26 +79595,22 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner (WEST)"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"ddU" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner (WEST)"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"ddV" = (
/obj/structure/table/glass,
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/machinery/camera{
c_tag = "Chemistry";
@@ -84732,20 +79628,17 @@
pixel_x = 28
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitegreencorner"
},
/area/medical/chemistry)
"ddW" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner (WEST)"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"ddX" = (
@@ -84757,26 +79650,21 @@
},
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
/area/medical/medbay)
"ddY" = (
/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"ddZ" = (
/obj/machinery/chem_master,
/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
pixel_y = -30
},
/obj/structure/sign/nosmoking_2{
@@ -84790,12 +79678,10 @@
/area/medical/chemistry)
"dea" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "whiteblue";
- tag = "icon-whiteblue"
+ icon_state = "whiteblue"
},
/area/medical/medbay)
"deb" = (
@@ -84823,6 +79709,9 @@
name = "Medbay Maintenance";
req_access_txt = "5"
},
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/medical/medbay)
"ded" = (
@@ -84833,82 +79722,28 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
- },
-/area/medical/medbay)
-"dee" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
- },
-/area/medical/medbay)
-"def" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/status_display{
- pixel_y = -32
- },
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
- },
-/area/medical/medbay)
-"deg" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/light,
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluefull"
},
/area/medical/medbay)
"deh" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
- },
-/area/medical/medbay)
-"dei" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"dej" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/wall,
/area/medical/medbay)
"dek" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/rack,
@@ -84928,17 +79763,15 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plating,
/area/maintenance/starboard)
"dem" = (
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
-/area/medical/surgery1)
+/area/medical/surgery)
"den" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/wall/r_wall,
@@ -84947,25 +79780,23 @@
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/surgery1)
+/area/medical/surgery)
"dep" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whiteblue"
},
-/area/medical/surgery1)
+/area/medical/surgery)
"deq" = (
/obj/machinery/door/airlock/maintenance{
icon_state = "door_locked";
locked = 1;
- name = "Maintenance Access";
- req_access_txt = "0"
+ name = "Maintenance Access"
},
/obj/structure/barricade/wooden,
/turf/simulated/floor/plasteel,
-/area/medical/surgery1)
+/area/medical/surgery)
"der" = (
/obj/structure/cable{
d1 = 1;
@@ -84974,16 +79805,14 @@
tag = ""
},
/obj/machinery/shower{
- dir = 4;
- icon_state = "shower"
+ dir = 4
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner (WEST)"
+ icon_state = "whitebluecorner"
},
-/area/medical/surgery1)
+/area/medical/surgery)
"des" = (
/obj/effect/spawner/random_spawners/wall_rusted_maybe,
/turf/simulated/wall,
@@ -84995,16 +79824,14 @@
/area/maintenance/starboard)
"deu" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/warning_stripes/northwest,
/turf/simulated/floor/plasteel,
/area/maintenance/starboard)
"dev" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/door/airlock/maintenance,
/turf/simulated/floor/plasteel,
@@ -85013,8 +79840,7 @@
/obj/machinery/atmospherics/unary/vent_pump{
dir = 8;
external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
+ on = 1
},
/obj/effect/landmark{
name = "xeno_spawn";
@@ -85063,8 +79889,7 @@
layer = 2.9
},
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/obj/structure/window/reinforced{
dir = 8
@@ -85142,8 +79967,7 @@
},
/obj/structure/grille,
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/obj/structure/window/reinforced{
dir = 1;
@@ -85159,8 +79983,7 @@
"deG" = (
/obj/machinery/alarm{
dir = 8;
- pixel_x = 25;
- pixel_y = 0
+ pixel_x = 25
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -85180,7 +80003,6 @@
"deK" = (
/obj/structure/filingcabinet/chestdrawer,
/obj/machinery/status_display{
- pixel_x = 0;
pixel_y = 32
},
/obj/effect/decal/warning_stripes/yellow/hollow,
@@ -85206,8 +80028,7 @@
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/maintenance/fpmaint2)
@@ -85244,8 +80065,7 @@
/obj/item/crowbar,
/obj/item/clothing/mask/gas,
/obj/machinery/newscaster{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
@@ -85450,7 +80270,6 @@
pixel_x = 28
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/medical/research)
@@ -85470,9 +80289,7 @@
department = "Medbay";
departmentType = 1;
name = "Chemistry Requests Console";
- pixel_x = 0;
- pixel_y = -30;
- pixel_z = 0
+ pixel_y = -30
},
/obj/effect/decal/warning_stripes/southeast,
/turf/simulated/floor/plasteel{
@@ -85481,20 +80298,16 @@
/area/medical/chemistry)
"dfr" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/door/firedoor,
/obj/machinery/ai_status_display{
- pixel_x = 0;
pixel_y = -32
},
/obj/machinery/light,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"dfs" = (
@@ -85507,8 +80320,7 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/research{
name = "Mech Bay";
- req_access_txt = "29";
- req_one_access_txt = "0"
+ req_access_txt = "29"
},
/turf/simulated/floor/plasteel,
/area/assembly/chargebay)
@@ -85536,8 +80348,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/medical/glass{
@@ -85572,16 +80383,32 @@
},
/area/hallway/primary/aft)
"dfC" = (
-/obj/structure/sign/greencross,
-/turf/simulated/wall,
-/area/medical/surgery)
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/machinery/iv_drip,
+/obj/machinery/newscaster{
+ pixel_x = 32
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/medical/medbay)
"dfD" = (
-/turf/simulated/wall,
-/area/medical/surgery)
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/medical/glass{
+ id_tag = null;
+ name = "Patient Room";
+ req_access_txt = "5"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "cmo"
+ },
+/area/medical/medbay)
"dfE" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/status_display{
pixel_y = -32
@@ -85592,9 +80419,18 @@
},
/area/medical/medbay)
"dfF" = (
-/obj/effect/spawner/window/reinforced,
-/turf/simulated/floor/plating,
-/area/medical/surgery)
+/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{
@@ -85664,8 +80500,7 @@
/obj/structure/cable,
/obj/structure/grille,
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/turf/simulated/floor/plating,
/area/maintenance/gambling_den)
@@ -85706,8 +80541,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
@@ -85722,8 +80556,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/cleanable/dirt,
@@ -85772,8 +80605,7 @@
/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (WEST)"
+ icon_state = "whitepurple"
},
/area/toxins/explab)
"dgc" = (
@@ -85806,8 +80638,7 @@
"dgg" = (
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (EAST)"
+ icon_state = "whitepurple"
},
/area/toxins/explab)
"dgh" = (
@@ -85847,8 +80678,7 @@
},
/obj/machinery/firealarm{
dir = 8;
- pixel_x = -26;
- pixel_y = 0
+ pixel_x = -26
},
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
@@ -85856,8 +80686,7 @@
"dgm" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/effect/decal/warning_stripes/northwest,
/turf/simulated/floor/plasteel,
@@ -85865,8 +80694,7 @@
"dgn" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/effect/decal/warning_stripes/northeast,
/turf/simulated/floor/plasteel,
@@ -85891,8 +80719,7 @@
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/obj/machinery/firealarm{
dir = 8;
@@ -85935,13 +80762,11 @@
"dgs" = (
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/obj/structure/table/reinforced,
/obj/item/paicard,
/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
pixel_y = 30
},
/obj/effect/decal/warning_stripes/yellow/hollow,
@@ -85982,7 +80807,6 @@
"dgv" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/medical/research)
@@ -85996,7 +80820,6 @@
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/aft)
@@ -86006,8 +80829,7 @@
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner (WEST)"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"dgy" = (
@@ -86029,15 +80851,12 @@
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"dgA" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
@@ -86061,8 +80880,7 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -86090,8 +80908,7 @@
/obj/machinery/computer/crew,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/paramedic)
"dgG" = (
@@ -86101,15 +80918,13 @@
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
+ icon_state = "whiteblue"
},
/area/medical/paramedic)
"dgH" = (
/obj/structure/cable{
d2 = 2;
- icon_state = "0-2";
- pixel_y = 0
+ icon_state = "0-2"
},
/obj/machinery/power/apc{
dir = 4;
@@ -86117,13 +80932,11 @@
pixel_x = 24
},
/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
pixel_y = 30
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/paramedic)
"dgI" = (
@@ -86159,8 +80972,7 @@
/obj/machinery/dna_scannernew,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/genetics_cloning)
"dgL" = (
@@ -86176,8 +80988,7 @@
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/genetics_cloning)
"dgN" = (
@@ -86201,7 +81012,6 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/obj/structure/table/glass,
@@ -86209,16 +81019,14 @@
/obj/item/book/manual/medical_cloning,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/genetics_cloning)
"dgP" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner (WEST)"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"dgQ" = (
@@ -86240,20 +81048,16 @@
"dgR" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"dgS" = (
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
/area/medical/medbay)
"dgT" = (
@@ -86290,13 +81094,11 @@
"dgW" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner (WEST)"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"dgX" = (
@@ -86309,73 +81111,60 @@
/obj/machinery/atmospherics/unary/vent_pump{
dir = 8;
external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
+ on = 1
},
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/medical/medbay)
-"dgY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+"dgZ" = (
+/obj/machinery/camera{
+ c_tag = "Patient Room West";
+ dir = 4;
+ network = list("Medical","SS13")
+ },
+/obj/structure/closet/wardrobe/pjs,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ dir = 8;
+ icon_state = "cmo"
},
/area/medical/medbay)
-"dgZ" = (
-/obj/item/twohanded/required/kirbyplants,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/medical/surgery)
-"dha" = (
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/medical/surgery)
-"dhb" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/medical/surgery)
"dhc" = (
-/obj/structure/chair,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/medical/surgery)
-"dhd" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/medical/surgery)
-"dhe" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/medical/surgery)
-"dhf" = (
+/obj/structure/bed,
+/obj/item/bedsheet/medical,
/obj/machinery/newscaster{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = -32
},
-/obj/structure/chair,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 8;
+ icon_state = "cmo"
},
-/area/medical/surgery)
+/area/medical/medbay)
+"dhd" = (
+/obj/structure/closet/secure_closet/personal/patient,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "cmo"
+ },
+/area/medical/medbay)
+"dhe" = (
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "cmo"
+ },
+/area/medical/medbay)
+"dhf" = (
+/obj/machinery/camera{
+ c_tag = "Patient Room East";
+ dir = 8;
+ network = list("Medical","SS13")
+ },
+/obj/structure/closet/wardrobe/pjs,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "cmo"
+ },
+/area/medical/medbay)
"dhg" = (
/obj/structure/cable{
d1 = 2;
@@ -86472,8 +81261,7 @@
/obj/machinery/atmospherics/unary/vent_pump{
dir = 8;
external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
+ on = 1
},
/turf/simulated/floor/plating,
/area/maintenance/starboard)
@@ -86487,8 +81275,7 @@
dir = 8
},
/obj/structure/sign/poster/contraband/random{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/turf/simulated/floor/plasteel{
icon_state = "grimy"
@@ -86521,7 +81308,6 @@
/obj/item/stock_parts/scanning_module,
/obj/item/radio/intercom{
dir = 0;
- name = "station intercom (General)";
pixel_x = -28
},
/turf/simulated/floor/plasteel,
@@ -86548,8 +81334,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/door/airlock/maintenance{
name = "Experimentor Maintenance";
@@ -86577,8 +81362,7 @@
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
@@ -86593,9 +81377,7 @@
/obj/machinery/door_control{
id = "maintrobotics";
name = "Decrepit Control";
- pixel_x = 26;
- pixel_y = 0;
- req_access_txt = "0"
+ pixel_x = 26
},
/turf/simulated/floor/plating,
/area/medical/research)
@@ -86612,8 +81394,7 @@
"dhG" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
@@ -86631,8 +81412,7 @@
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/cleanable/dirt,
@@ -86649,8 +81429,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
@@ -86667,8 +81446,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
@@ -86688,8 +81466,7 @@
icon_state = "pipe-c"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -86707,8 +81484,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -86741,11 +81517,9 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/toxins/explab)
@@ -86759,15 +81533,13 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ 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{
- dir = 2;
icon_state = "whitepurple"
},
/area/toxins/explab)
@@ -86801,7 +81573,6 @@
},
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/toxins/explab)
@@ -86810,8 +81581,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
},
/obj/structure/table/reinforced,
/obj/item/clipboard,
@@ -86819,7 +81589,6 @@
/obj/item/pen,
/obj/effect/decal/warning_stripes/northeast,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/toxins/explab)
@@ -86828,8 +81597,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
@@ -86839,8 +81607,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
@@ -86858,8 +81625,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/warning_stripes/west,
@@ -86870,8 +81636,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/landmark{
name = "lightsout"
@@ -86904,8 +81669,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel,
@@ -86919,12 +81683,10 @@
},
/obj/structure/disposalpipe/junction{
dir = 4;
- icon_state = "pipe-j2";
- tag = "icon-pipe-j2 (EAST)"
+ icon_state = "pipe-j2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/warning_stripes/yellow/hollow,
@@ -86975,8 +81737,7 @@
"dih" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -86986,7 +81747,6 @@
"dii" = (
/obj/structure/disposalpipe/sortjunction{
dir = 1;
- icon_state = "pipe-j1s";
name = "Robotics Junction";
sortType = 13
},
@@ -87001,19 +81761,16 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/medical/research)
"dik" = (
/obj/effect/spawner/window/reinforced,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plating,
/area/assembly/chargebay)
@@ -87028,18 +81785,15 @@
"dim" = (
/obj/structure/table,
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/obj/item/radio/intercom{
dir = 1;
- name = "station intercom (General)";
pixel_y = 28
},
/obj/machinery/alarm{
dir = 4;
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/obj/machinery/cell_charger,
/obj/item/stock_parts/cell/high,
@@ -87097,7 +81851,6 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/obj/effect/decal/warning_stripes/northeast,
@@ -87108,8 +81861,7 @@
/obj/item/paper_bin,
/obj/item/pen,
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/structure/sign/nosmoking_2{
pixel_x = 32
@@ -87121,13 +81873,11 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/camera{
c_tag = "Brig Security Equipment Lockers";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -87136,8 +81886,7 @@
/area/hallway/primary/aft)
"div" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/recharge_station,
/obj/effect/decal/warning_stripes/yellow/hollow,
@@ -87147,27 +81896,23 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/aft)
"dix" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/medical{
name = "Paramedic Office";
- req_access_txt = "66";
- req_one_access_txt = "0"
+ req_access_txt = "66"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -87176,13 +81921,11 @@
/area/hallway/primary/aft)
"diy" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
/area/medical/paramedic)
"diz" = (
@@ -87197,8 +81940,7 @@
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/paramedic)
"diA" = (
@@ -87206,8 +81948,7 @@
pixel_x = -27
},
/obj/machinery/shower{
- dir = 4;
- icon_state = "shower"
+ dir = 4
},
/obj/machinery/door/window/eastleft,
/turf/simulated/floor/plasteel{
@@ -87217,8 +81958,7 @@
"diB" = (
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/genetics_cloning)
"diC" = (
@@ -87229,8 +81969,7 @@
"diD" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -87238,8 +81977,7 @@
/area/medical/genetics_cloning)
"diE" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -87252,8 +81990,7 @@
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -87275,8 +82012,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/medical/glass{
@@ -87304,12 +82040,10 @@
},
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
/area/medical/medbay)
"diJ" = (
@@ -87320,8 +82054,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
@@ -87355,31 +82088,35 @@
pixel_x = 28
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"diN" = (
-/obj/machinery/door/airlock/medical/glass{
- id_tag = null;
- name = "Recovery Ward";
- req_access_txt = "0"
- },
+/obj/structure/bed,
+/obj/item/bedsheet/medical,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 8;
+ icon_state = "cmo"
},
-/area/medical/surgery)
+/area/medical/medbay)
"diO" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
+ },
+/obj/structure/table,
+/obj/item/reagent_containers/iv_bag/blood/random,
+/obj/item/reagent_containers/iv_bag/blood/random,
+/obj/item/reagent_containers/iv_bag/blood/random,
+/obj/machinery/vending/wallmed{
+ layer = 3.3;
+ name = "Emergency NanoMed";
+ pixel_x = 28
},
-/obj/structure/chair,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 8;
+ icon_state = "cmo"
},
-/area/medical/surgery)
+/area/medical/medbay)
"diP" = (
/obj/structure/cable{
d1 = 1;
@@ -87426,7 +82163,6 @@
},
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/turf/simulated/floor/plasteel{
@@ -87498,8 +82234,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/door/airlock/maintenance,
/obj/structure/barricade/wooden,
@@ -87514,8 +82249,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/girder,
/obj/structure/grille,
@@ -87542,8 +82276,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
@@ -87556,24 +82289,21 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/warning_stripes/southeast,
/turf/simulated/floor/plasteel,
/area/medical/research)
"djh" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
/area/medical/research)
"dji" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/door/airlock/maintenance,
/obj/structure/barricade/wooden,
@@ -87590,8 +82320,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -87612,8 +82341,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -87634,8 +82362,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
@@ -87643,8 +82370,7 @@
"djn" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/structure/table,
/obj/item/stack/medical/bruise_pack,
@@ -87664,8 +82390,7 @@
"djq" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/effect/decal/warning_stripes/southeast,
/turf/simulated/floor/plasteel,
@@ -87782,13 +82507,11 @@
"djE" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/structure/table/reinforced,
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/obj/machinery/light_switch{
@@ -87873,8 +82596,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
@@ -87931,8 +82653,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
@@ -87949,12 +82670,10 @@
},
/obj/structure/disposalpipe/junction{
dir = 1;
- icon_state = "pipe-j2";
- tag = "icon-pipe-j2"
+ icon_state = "pipe-j2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "purplefull"
@@ -87964,11 +82683,9 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/medical/research)
@@ -87980,8 +82697,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/landmark/start{
name = "Cyborg"
@@ -87993,8 +82709,7 @@
/obj/machinery/atmospherics/unary/vent_pump{
dir = 8;
external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
+ on = 1
},
/obj/effect/decal/warning_stripes/yellow/hollow,
/obj/effect/landmark/start{
@@ -88035,14 +82750,12 @@
/area/hallway/primary/aft)
"djV" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_y = 0;
tag = ""
},
/obj/machinery/door/airlock/maintenance{
@@ -88055,8 +82768,7 @@
"djW" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/structure/cable{
d1 = 1;
@@ -88108,8 +82820,7 @@
"dkc" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -88120,9 +82831,7 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/genetics_cloning)
"dke" = (
@@ -88137,13 +82846,11 @@
"dkf" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner (WEST)"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"dkg" = (
@@ -88161,9 +82868,7 @@
"dkh" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"dki" = (
@@ -88177,8 +82882,7 @@
req_access_txt = "5"
},
/turf/simulated/floor/plasteel{
- icon_state = "whiteblue";
- tag = "icon-whiteblue"
+ icon_state = "whiteblue"
},
/area/medical/genetics_cloning)
"dkj" = (
@@ -88189,8 +82893,7 @@
/area/medical/medbay)
"dkk" = (
/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 6;
- level = 2
+ dir = 6
},
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel{
@@ -88198,15 +82901,10 @@
},
/area/medical/medbay)
"dkl" = (
-/obj/machinery/door/airlock/medical/glass{
- id_tag = null;
- name = "Recovery Ward";
- req_access_txt = "0"
- },
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ icon_state = "dark"
},
-/area/medical/surgery)
+/area/medical/medbay)
"dkm" = (
/obj/structure/rack,
/obj/structure/extinguisher_cabinet{
@@ -88272,8 +82970,7 @@
/obj/structure/cable,
/obj/structure/grille,
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/obj/structure/window/reinforced,
/turf/simulated/floor/plating,
@@ -88288,8 +82985,7 @@
"dkv" = (
/obj/structure/table/wood,
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -88299,7 +82995,6 @@
/obj/structure/table/reinforced,
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/obj/item/stock_parts/matter_bin,
@@ -88341,7 +83036,6 @@
"dkB" = (
/obj/structure/cable,
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
@@ -88357,9 +83051,7 @@
/obj/machinery/door_control{
id = "experimentor";
name = "Experimentor Control";
- pixel_x = -26;
- pixel_y = 0;
- req_access_txt = "0"
+ pixel_x = -26
},
/obj/machinery/door/poddoor{
density = 0;
@@ -88422,9 +83114,7 @@
tag = ""
},
/obj/structure/disposalpipe/junction{
- dir = 4;
- icon_state = "pipe-j1";
- tag = "icon-pipe-j1 (EAST)"
+ dir = 4
},
/obj/structure/cable{
d1 = 2;
@@ -88473,8 +83163,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
@@ -88523,8 +83212,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command{
@@ -88537,8 +83225,7 @@
"dkV" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -88561,24 +83248,20 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/medical/research)
"dkY" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10;
- initialize_directions = 10;
- level = 1
+ initialize_directions = 10
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/paramedic)
"dkZ" = (
@@ -88598,8 +83281,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner (WEST)"
+ icon_state = "whitebluecorner"
},
/area/medical/paramedic)
"dla" = (
@@ -88621,8 +83303,7 @@
"dlc" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -88639,11 +83320,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/alarm{
dir = 8;
- pixel_x = 25;
- pixel_y = 0
+ pixel_x = 25
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/aft)
@@ -88652,8 +83331,7 @@
name = "Paramedic"
},
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
/area/medical/paramedic)
"dlg" = (
@@ -88662,7 +83340,6 @@
},
/obj/item/radio/intercom{
dir = 8;
- name = "station intercom (General)";
pixel_x = -28
},
/turf/simulated/floor/plasteel{
@@ -88671,8 +83348,7 @@
/area/medical/genetics_cloning)
"dlh" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/light,
/obj/machinery/camera{
@@ -88682,8 +83358,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner (WEST)"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"dli" = (
@@ -88696,8 +83371,7 @@
"dlj" = (
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner (WEST)"
+ icon_state = "whitebluecorner"
},
/area/medical/genetics_cloning)
"dlk" = (
@@ -88712,21 +83386,17 @@
"dll" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/genetics_cloning)
"dlm" = (
/obj/machinery/light,
/obj/machinery/camera{
c_tag = "Medbay Psych Office Corridor East";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/obj/machinery/bodyscanner,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/medical/genetics_cloning)
@@ -88746,8 +83416,7 @@
},
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
/area/medical/medbay)
"dlp" = (
@@ -88758,13 +83427,11 @@
id = "medbayfoyer";
name = "Medbay Front Doors";
normaldoorcontrol = 1;
- pixel_x = 25;
- pixel_y = 0
+ pixel_x = 25
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"dlq" = (
@@ -88806,92 +83473,56 @@
/turf/simulated/floor/plasteel,
/area/engine/engine_smes)
"dlu" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11;
- level = 1
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"dlv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/sign/nosmoking_2,
/turf/simulated/wall,
-/area/medical/surgery)
+/area/medical/medbay)
"dlw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/structure/bed/roller,
-/obj/machinery/iv_drip,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
- },
-/area/medical/surgery)
-"dlx" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
- },
-/area/medical/surgery)
+/obj/machinery/door/airlock/maintenance,
+/turf/simulated/floor/plasteel,
+/area/maintenance/starboard)
"dly" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/medical/glass{
+ id_tag = null;
+ name = "Observation Room"
},
-/obj/machinery/newscaster{
- pixel_x = 32;
- pixel_y = 0
- },
-/obj/structure/bed,
-/obj/item/bedsheet/medical,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "dark"
},
-/area/medical/surgery)
+/area/medical/medbay)
"dlz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/wall,
/area/medical/surgery)
"dlA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/table/reinforced,
-/obj/item/clothing/gloves/color/latex/nitrile,
-/obj/item/clothing/mask/surgical,
-/obj/item/reagent_containers/spray/cleaner{
- desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back.";
- name = "Surgery Cleaner"
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "redbluefull"
},
-/area/medical/surgery)
+/area/medical/medbay3)
"dlB" = (
/turf/simulated/floor/plating,
-/area/medical/surgery1)
+/area/medical/surgery)
"dlC" = (
/obj/machinery/light/small{
- dir = 4;
- pixel_y = 0
+ dir = 4
},
/obj/machinery/vending/artvend,
/turf/simulated/floor/plasteel{
@@ -88903,31 +83534,22 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/structure/table/reinforced,
-/obj/item/scalpel,
-/obj/item/cautery,
-/obj/item/bonegel,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
-/area/medical/surgery)
+/area/medical/medbay)
"dlE" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/structure/mirror{
- pixel_x = 32
- },
-/obj/structure/table/reinforced,
-/obj/machinery/computer/med_data/laptop,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
-/area/medical/surgery)
+/area/medical/medbay)
"dlF" = (
/obj/structure/cable{
d1 = 1;
@@ -88935,12 +83557,8 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
/area/maintenance/starboard)
"dlG" = (
@@ -89043,8 +83661,7 @@
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/obj/item/twohanded/required/kirbyplants,
/obj/effect/decal/warning_stripes/yellow/hollow,
@@ -89055,13 +83672,11 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (WEST)"
+ icon_state = "whitegreen"
},
/area/medical/chemistry)
"dlX" = (
@@ -89077,8 +83692,7 @@
"dlY" = (
/obj/machinery/firealarm{
dir = 8;
- pixel_x = -26;
- pixel_y = 0
+ pixel_x = -26
},
/obj/structure/closet/bombcloset,
/obj/effect/decal/warning_stripes/southeast,
@@ -89102,8 +83716,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (WEST)"
+ icon_state = "whitepurple"
},
/area/crew_quarters/hor)
"dmb" = (
@@ -89137,8 +83750,7 @@
/obj/item/stamp/rd,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (EAST)"
+ icon_state = "whitepurple"
},
/area/crew_quarters/hor)
"dmd" = (
@@ -89174,11 +83786,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/item/radio/intercom{
dir = 4;
- name = "station intercom (General)";
pixel_x = 28
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/aft)
@@ -89202,13 +83812,10 @@
},
/obj/machinery/alarm{
dir = 8;
- pixel_x = 25;
- pixel_y = 0
+ pixel_x = 25
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/paramedic)
"dml" = (
@@ -89244,13 +83851,11 @@
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner (WEST)"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"dmq" = (
@@ -89260,13 +83865,10 @@
"dmr" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"dms" = (
@@ -89283,79 +83885,69 @@
"dmv" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner (WEST)"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"dmw" = (
-/obj/structure/bed/roller,
-/obj/machinery/iv_drip,
+/obj/machinery/camera{
+ c_tag = "Medbay Observation Room";
+ dir = 4;
+ network = list("Medical","SS13")
+ },
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/light{
+ dir = 1;
+ on = 1
+ },
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "darkblue"
},
-/area/medical/surgery)
-"dmx" = (
-/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
- },
-/area/medical/surgery)
+/area/medical/surgeryobs)
"dmy" = (
/obj/structure/girder,
/obj/effect/decal/cleanable/fungus,
/turf/simulated/floor/plating,
/area/maintenance/fpmaint2)
"dmz" = (
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -24
+/obj/structure/sign/nosmoking_2{
+ pixel_y = 32
},
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "darkblue"
},
-/area/medical/surgery)
+/area/medical/surgeryobs)
"dmA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
- },
-/obj/effect/landmark/start{
- name = "Medical Doctor"
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ icon_state = "dark"
},
-/area/medical/surgery)
+/area/medical/surgeryobs)
"dmB" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ dir = 1;
+ icon_state = "darkblue"
},
-/area/medical/surgery)
+/area/medical/surgeryobs)
"dmC" = (
-/obj/machinery/alarm{
- dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/light{
+ dir = 1;
+ on = 1
},
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ dir = 5;
+ icon_state = "darkblue"
},
-/area/medical/surgery)
+/area/medical/surgeryobs)
"dmD" = (
/obj/structure/cable{
d1 = 1;
@@ -89372,8 +83964,7 @@
/area/maintenance/starboard)
"dmE" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/door/airlock/maintenance,
/turf/simulated/floor/plasteel,
@@ -89384,15 +83975,13 @@
/area/maintenance/starboard)
"dmG" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plating,
/area/hallway/secondary/construction)
"dmH" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
@@ -89401,16 +83990,14 @@
/obj/machinery/atmospherics/unary/vent_pump{
dir = 8;
external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
+ on = 1
},
/turf/simulated/floor/plating,
/area/hallway/secondary/construction)
"dmJ" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
@@ -89424,8 +84011,7 @@
/area/hallway/secondary/construction)
"dmL" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/hallway/secondary/construction)
@@ -89475,8 +84061,7 @@
/obj/structure/grille,
/obj/structure/window/reinforced,
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/obj/structure/window/reinforced{
dir = 1;
@@ -89570,8 +84155,7 @@
/area/maintenance/fpmaint2)
"dnb" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
+ dir = 5
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -89607,8 +84191,7 @@
/area/toxins/explab)
"dng" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -89618,8 +84201,7 @@
/obj/machinery/atmospherics/unary/vent_pump{
dir = 8;
external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
+ on = 1
},
/obj/effect/landmark{
name = "xeno_spawn";
@@ -89656,8 +84238,7 @@
"dnl" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/obj/structure/sign/securearea{
pixel_x = -32
@@ -89668,8 +84249,7 @@
"dnm" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/turf/simulated/floor/plating,
/area/toxins/misc_lab)
@@ -89705,8 +84285,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/computer/aifixer,
/turf/simulated/floor/plasteel{
@@ -89729,14 +84308,12 @@
name = "Research Director"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/crew_quarters/hor)
"dnr" = (
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/obj/effect/decal/warning_stripes/yellow,
@@ -89761,47 +84338,27 @@
"dnt" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "whitepurplecorner"
},
/area/medical/research)
-"dnu" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/research)
"dnv" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/medical/research)
"dnw" = (
/obj/effect/spawner/window/reinforced,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plating,
/area/assembly/chargebay)
@@ -89832,15 +84389,12 @@
/area/assembly/chargebay)
"dnB" = (
/obj/machinery/door/poddoor/shutters{
- dir = 4;
id_tag = "roboticsshutters";
name = "Mech Bay Shutters"
},
/obj/machinery/door_control{
- dir = 2;
id = "roboticsshutters";
name = "Mech Bay Door Control";
- pixel_x = 0;
pixel_y = 24;
req_access_txt = "29"
},
@@ -89852,8 +84406,7 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel,
@@ -89867,7 +84420,6 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "purplecorner"
},
/area/hallway/primary/aft)
@@ -89875,14 +84427,12 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/research{
name = "Mech Bay";
- req_access_txt = "29";
- req_one_access_txt = "0"
+ req_access_txt = "29"
},
/turf/simulated/floor/plasteel,
/area/assembly/chargebay)
"dnG" = (
/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
pixel_y = 30
},
/turf/simulated/floor/plasteel{
@@ -89908,8 +84458,7 @@
"dnJ" = (
/obj/effect/decal/warning_stripes/northwestsouth,
/obj/vehicle/ambulance{
- dir = 8;
- icon_state = "docwagon2"
+ dir = 8
},
/obj/machinery/camera{
c_tag = "Paramedic's Office";
@@ -89918,8 +84467,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner (WEST)"
+ icon_state = "whitebluecorner"
},
/area/medical/paramedic)
"dnK" = (
@@ -89930,7 +84478,6 @@
/obj/structure/table/reinforced,
/obj/item/radio/intercom{
dir = 1;
- name = "station intercom (General)";
pixel_y = 28
},
/obj/item/storage/box/disks{
@@ -89981,8 +84528,7 @@
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (WEST)"
+ icon_state = "whiteblue"
},
/area/medical/genetics)
"dnP" = (
@@ -90001,14 +84547,11 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
- pixel_x = 12;
- pixel_y = 0
+ pixel_x = 12
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whiteblue"
},
/area/medical/genetics)
"dnR" = (
@@ -90099,12 +84642,10 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
/area/medical/medbay)
"doa" = (
@@ -90125,66 +84666,33 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
+ },
+/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 = "white"
},
/area/medical/medbay)
-"doc" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (WEST)"
- },
-/area/medical/surgery)
-"dod" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
- },
-/obj/effect/landmark/start{
- name = "Medical Doctor"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/surgery)
"doe" = (
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ icon_state = "dark"
},
-/area/medical/surgery)
+/area/medical/surgeryobs)
"dof" = (
/obj/structure/cable{
d1 = 4;
@@ -90193,144 +84701,99 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/obj/machinery/door/airlock/medical/glass{
id_tag = null;
- name = "Recovery Ward";
- req_access_txt = "0"
+ name = "Observation Room"
},
+/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ icon_state = "dark"
},
-/area/medical/surgery)
-"dog" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/door/airlock/medical{
- name = "Operating Theatre";
- req_access_txt = "45"
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (WEST)"
- },
-/area/medical/surgery)
+/area/medical/surgeryobs)
"doh" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
- },
-/obj/machinery/computer/operating,
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ icon_state = "dark"
},
-/area/medical/surgery)
+/area/medical/surgeryobs)
"doi" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4;
+ initialize_directions = 11
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
},
/obj/structure/cable{
d1 = 2;
d2 = 8;
- icon_state = "2-8";
- tag = ""
+ icon_state = "2-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/optable,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "dark"
},
-/area/medical/surgery)
+/area/medical/surgeryobs)
"doj" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ icon_state = "dark"
},
-/area/medical/surgery)
+/area/medical/surgeryobs)
"dok" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/firealarm{
dir = 4;
- level = 1
+ pixel_x = 24;
+ pixel_y = -1
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "dark"
},
-/area/medical/surgery)
+/area/medical/surgeryobs)
"dol" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "dark"
},
-/area/medical/surgery)
+/area/medical/surgeryobs)
"dom" = (
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
/area/hallway/secondary/construction)
"don" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11;
- level = 1
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutral"
+ icon_state = "whitebluefull"
},
-/area/maintenance/starboard)
+/area/medical/medbay)
"doo" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
@@ -90358,8 +84821,7 @@
/obj/machinery/atmospherics/unary/vent_pump{
dir = 8;
external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
+ on = 1
},
/obj/effect/landmark{
name = "xeno_spawn";
@@ -90449,13 +84911,11 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (EAST)"
+ icon_state = "whitegreen"
},
/area/medical/chemistry)
"doD" = (
@@ -90484,8 +84944,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner (WEST)"
+ icon_state = "whitebluecorner"
},
/area/medical/genetics_cloning)
"doG" = (
@@ -90498,8 +84957,7 @@
/area/toxins/mixing)
"doH" = (
/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 6;
- level = 2
+ dir = 6
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -90527,7 +84985,7 @@
pixel_y = -2
},
/obj/item/clipboard,
-/obj/item/toy/figure/rd,
+/obj/item/toy/figure/crew/rd,
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
/area/crew_quarters/hor)
@@ -90568,14 +85026,12 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurple"
},
/area/crew_quarters/hor)
"doN" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/crew_quarters/hor)
@@ -90611,7 +85067,6 @@
/area/toxins/xenobiology)
"doR" = (
/obj/machinery/door/poddoor/shutters{
- dir = 4;
id_tag = "roboticsshutters";
name = "Mech Bay Shutters"
},
@@ -90634,8 +85089,7 @@
/area/assembly/chargebay)
"doU" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/recharge_station,
/obj/effect/decal/warning_stripes/yellow/hollow,
@@ -90649,8 +85103,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/landmark/start{
name = "Cyborg"
@@ -90682,8 +85135,7 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -90702,7 +85154,6 @@
"dpa" = (
/obj/structure/disposalpipe/sortjunction{
dir = 1;
- icon_state = "pipe-j1s";
name = "Genetics Junction";
sortType = 13
},
@@ -90711,7 +85162,6 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "purplecorner"
},
/area/hallway/primary/aft)
@@ -90727,8 +85177,7 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/research{
name = "Mech Bay";
- req_access_txt = "29";
- req_one_access_txt = "0"
+ req_access_txt = "29"
},
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
@@ -90757,8 +85206,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -90767,13 +85215,11 @@
"dpf" = (
/obj/effect/decal/warning_stripes/northeastsouth,
/obj/structure/bed/amb_trolley{
- dir = 4;
- icon_state = "ambulance"
+ dir = 4
},
/obj/machinery/light/small,
/turf/simulated/floor/plasteel{
- icon_state = "whiteblue";
- tag = "icon-whiteblue"
+ icon_state = "whiteblue"
},
/area/medical/paramedic)
"dpg" = (
@@ -90783,9 +85229,7 @@
pixel_x = 24
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/paramedic)
"dph" = (
@@ -90821,8 +85265,7 @@
},
/turf/simulated/floor/plasteel{
dir = 9;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (NORTHWEST)"
+ icon_state = "whitepurple"
},
/area/medical/genetics)
"dpk" = (
@@ -90831,8 +85274,7 @@
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
+ icon_state = "whiteblue"
},
/area/medical/genetics)
"dpl" = (
@@ -90862,13 +85304,11 @@
"dpn" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (EAST)"
+ icon_state = "whitepurple"
},
/area/medical/genetics)
"dpo" = (
@@ -90897,8 +85337,7 @@
"dpq" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -90920,8 +85359,7 @@
},
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -90936,32 +85374,15 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"dpt" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/door/airlock/maintenance{
- name = "Medbay Maintenance";
- req_access_txt = "5"
- },
-/turf/simulated/floor/plasteel,
-/area/medical/surgery)
+/turf/simulated/wall,
+/area/medical/surgeryobs)
"dpu" = (
/obj/structure/cable{
d1 = 4;
@@ -90970,8 +85391,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/medical/cmo)
@@ -91031,8 +85451,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/medical/cmo)
@@ -91059,8 +85478,7 @@
req_access_txt = "40"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/medical/cmo)
@@ -91073,13 +85491,11 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner (WEST)"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"dpB" = (
@@ -91108,99 +85524,71 @@
"dpC" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
-"dpD" = (
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner (WEST)"
- },
-/area/medical/surgery)
-"dpE" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
- },
-/area/medical/surgery)
"dpF" = (
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
- },
-/area/medical/surgery)
-"dpG" = (
-/obj/structure/sink{
- dir = 8;
- icon_state = "sink";
- pixel_x = -12;
- pixel_y = 2
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner (WEST)"
- },
-/area/medical/surgery)
-"dpH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner (WEST)"
+ icon_state = "dark"
},
-/area/medical/surgery)
+/area/medical/surgeryobs)
+"dpG" = (
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/machinery/light,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "darkblue"
+ },
+/area/medical/surgeryobs)
+"dpH" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "darkblue"
+ },
+/area/medical/surgeryobs)
"dpI" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- icon_state = "whiteblue";
- tag = "icon-whiteblue"
+ icon_state = "dark"
},
-/area/medical/surgery)
+/area/medical/surgeryobs)
"dpJ" = (
+/obj/structure/chair,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "darkblue"
},
-/area/medical/surgery)
+/area/medical/surgeryobs)
"dpK" = (
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/obj/item/radio/intercom{
- dir = 4;
- name = "station intercom (General)";
- pixel_x = 28
+/obj/structure/chair,
+/obj/machinery/newscaster{
+ pixel_x = 32
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ dir = 6;
+ icon_state = "darkblue"
},
-/area/medical/surgery)
+/area/medical/surgeryobs)
"dpL" = (
/obj/structure/rack,
/obj/machinery/light/small{
@@ -91233,13 +85621,6 @@
icon_state = "yellowcorner"
},
/area/hallway/secondary/construction)
-"dpO" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plating,
-/area/maintenance/starboard)
"dpP" = (
/obj/machinery/light/small,
/obj/machinery/camera{
@@ -91265,7 +85646,6 @@
},
/obj/item/radio/intercom{
dir = 0;
- name = "station intercom (General)";
pixel_x = -28;
pixel_y = -28
},
@@ -91318,8 +85698,7 @@
dir = 4
},
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/obj/machinery/portable_atmospherics/scrubber,
/obj/structure/sign/nosmoking_2{
@@ -91359,8 +85738,7 @@
"dqc" = (
/obj/machinery/light,
/obj/machinery/status_display{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/machinery/computer/robotics,
/obj/effect/decal/warning_stripes/yellow/hollow,
@@ -91384,8 +85762,7 @@
/area/crew_quarters/hor)
"dqg" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/machinery/atmospherics/unary/portables_connector{
dir = 8
@@ -91426,8 +85803,7 @@
"dqj" = (
/obj/structure/table,
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/obj/structure/extinguisher_cabinet{
pixel_x = -28
@@ -91480,8 +85856,7 @@
/area/assembly/robotics)
"dqq" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/camera{
c_tag = "Research West Hallway";
@@ -91496,12 +85871,10 @@
/obj/structure/table/glass,
/obj/machinery/alarm{
dir = 4;
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/obj/machinery/camera{
c_tag = "Medbay Genetics Office";
@@ -91511,8 +85884,7 @@
/obj/item/storage/box/disks,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (WEST)"
+ icon_state = "whitepurple"
},
/area/medical/genetics)
"dqs" = (
@@ -91566,8 +85938,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/door/airlock/command/glass{
name = "Chief Medical Officer";
@@ -91586,8 +85957,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -91604,13 +85974,11 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (WEST)"
+ icon_state = "whiteblue"
},
/area/medical/genetics)
"dqy" = (
@@ -91624,8 +85992,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -91642,8 +86009,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -91659,8 +86025,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- level = 1
+ dir = 9
},
/obj/machinery/hologram/holopad,
/obj/effect/landmark/start{
@@ -91680,8 +86045,7 @@
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whiteblue"
},
/area/medical/genetics)
"dqC" = (
@@ -91722,8 +86086,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -91748,8 +86111,7 @@
dir = 8
},
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
/area/medical/medbay)
"dqG" = (
@@ -91787,72 +86149,45 @@
"dqK" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "cmo"
},
/area/medical/cmo)
-"dqL" = (
-/obj/structure/table,
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -24
- },
-/obj/machinery/status_display{
- pixel_y = -32
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner (WEST)"
- },
-/area/medical/surgery)
"dqM" = (
-/obj/item/radio/intercom{
- dir = 1;
- name = "station intercom (General)";
- pixel_y = -28
- },
-/obj/machinery/computer/med_data,
-/turf/simulated/floor/plasteel{
- icon_state = "whiteblue";
- tag = "icon-whiteblue"
- },
-/area/medical/surgery)
-"dqN" = (
-/obj/machinery/ai_status_display{
- pixel_x = 0;
- pixel_y = -32
- },
-/obj/machinery/computer/crew,
-/turf/simulated/floor/plasteel{
+/obj/effect/spawner/window/reinforced,
+/obj/machinery/door/poddoor/shutters{
+ density = 0;
dir = 2;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "open";
+ id_tag = "surgeryobs1";
+ name = "Privacy Shutters";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/medical/surgery1)
+"dqN" = (
+/obj/machinery/door/firedoor,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/airlock/medical{
+ name = "Operating Theatre";
+ req_access_txt = "45"
+ },
+/obj/machinery/holosign/surgery{
+ id = "surgery1"
},
-/area/medical/surgery)
-"dqO" = (
-/obj/structure/closet/secure_closet/medical2,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/medical/surgery)
-"dqP" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
- },
-/obj/machinery/status_display{
- pixel_y = -32
- },
-/obj/structure/closet/secure_closet/medical3,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/medical/surgery)
+/area/medical/surgery1)
"dqQ" = (
/obj/machinery/camera{
c_tag = "Singularity SouthEast";
@@ -91862,28 +86197,18 @@
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plating/airless,
/area/engine/engineering)
-"dqR" = (
-/obj/machinery/ai_status_display{
- pixel_x = 0;
- pixel_y = -32
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/medical/surgery)
"dqS" = (
-/obj/machinery/vending/wallmed{
- layer = 3.3;
- name = "Emergency NanoMed";
- pixel_x = 28;
- pixel_y = 0;
- req_access_txt = "0"
+/obj/effect/spawner/window/reinforced,
+/obj/machinery/door/poddoor/shutters{
+ density = 0;
+ dir = 2;
+ icon_state = "open";
+ id_tag = "surgeryobs2";
+ name = "Privacy Shutters";
+ opacity = 0
},
-/obj/machinery/bodyscanner,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/medical/surgery)
+/turf/simulated/floor/plating,
+/area/medical/surgery2)
"dqT" = (
/obj/structure/table,
/obj/machinery/cell_charger,
@@ -91909,7 +86234,6 @@
icon_state = "0-4"
},
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
@@ -91920,28 +86244,15 @@
/area/hallway/secondary/construction)
"dqW" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 2;
+ d1 = 4;
d2 = 8;
- icon_state = "2-8";
+ icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutral"
+ icon_state = "whitebluefull"
},
-/area/maintenance/starboard)
+/area/medical/medbay)
"dqX" = (
/obj/structure/table,
/obj/item/flashlight/lamp,
@@ -91998,7 +86309,6 @@
"drf" = (
/obj/machinery/alarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/turf/simulated/floor/plating,
@@ -92029,8 +86339,7 @@
/area/medical/research)
"drj" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -92063,8 +86372,7 @@
"drn" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plating,
/area/maintenance/fpmaint2)
@@ -92075,8 +86383,7 @@
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
+ dir = 5
},
/turf/simulated/floor/plating,
/area/maintenance/fpmaint2)
@@ -92114,8 +86421,7 @@
/area/toxins/mixing)
"drs" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/cleanable/dirt,
/obj/structure/grille{
@@ -92127,8 +86433,7 @@
"drt" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
icon_state = "purplefull"
@@ -92238,8 +86543,7 @@
/area/assembly/chargebay)
"drF" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/structure/reagent_dispensers/fueltank,
/obj/machinery/firealarm{
@@ -92290,7 +86594,6 @@
/obj/effect/spawner/window/reinforced,
/obj/machinery/door/poddoor/shutters{
density = 0;
- dir = 4;
icon_state = "shutter0";
id_tag = "robodesk";
name = "Robotics Desk Shutters";
@@ -92326,7 +86629,6 @@
pixel_y = 32
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "purplecorner"
},
/area/hallway/primary/aft)
@@ -92365,8 +86667,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -92384,7 +86685,6 @@
"drR" = (
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/medical/genetics)
@@ -92418,8 +86718,7 @@
},
/turf/simulated/floor/plasteel{
dir = 10;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (SOUTHWEST)"
+ icon_state = "whitepurple"
},
/area/medical/genetics)
"drV" = (
@@ -92428,8 +86727,7 @@
on = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "whiteblue";
- tag = "icon-whiteblue"
+ icon_state = "whiteblue"
},
/area/medical/genetics)
"drW" = (
@@ -92447,8 +86745,7 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (EAST)"
+ icon_state = "whitepurple"
},
/area/medical/genetics)
"drZ" = (
@@ -92489,20 +86786,16 @@
network = list("Medical","SS13")
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"dsd" = (
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/obj/machinery/alarm{
dir = 4;
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/obj/structure/bed/dogbed{
name = "kitty basket"
@@ -92557,8 +86850,7 @@
pixel_x = 24
},
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/machinery/camera{
c_tag = "Chief Medical Officer's Office";
@@ -92571,13 +86863,13 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/item/radio/intercom{
dir = 4;
- name = "station intercom (General)";
pixel_x = 28
},
+/obj/machinery/light{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"dsj" = (
@@ -92609,8 +86901,7 @@
"dsm" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
@@ -92622,8 +86913,7 @@
/area/medical/research)
"dso" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
@@ -92637,16 +86927,14 @@
/area/medical/research)
"dsq" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/effect/spawner/lootdrop/maintenance,
/turf/simulated/floor/plating,
/area/maintenance/fpmaint2)
"dsr" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
@@ -92655,8 +86943,7 @@
/area/maintenance/fpmaint2)
"dss" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -92684,7 +86971,6 @@
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/medical/research)
@@ -92755,8 +87041,7 @@
/area/toxins/misc_lab)
"dsD" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -92770,8 +87055,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- level = 1
+ dir = 9
},
/obj/effect/landmark/start{
name = "Research Director"
@@ -92790,19 +87074,16 @@
/area/crew_quarters/hor)
"dsG" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/structure/bed,
/obj/item/bedsheet/rd,
/obj/machinery/status_display{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (EAST)"
+ icon_state = "whitepurple"
},
/area/crew_quarters/hor)
"dsH" = (
@@ -92825,7 +87106,6 @@
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "purplecorner"
},
/area/hallway/primary/aft)
@@ -92947,13 +87227,11 @@
pixel_y = -29
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/medical/genetics)
"dsR" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/medical/genetics)
@@ -92967,9 +87245,7 @@
department = "Medbay";
departmentType = 1;
name = "Genetics Requests Console";
- pixel_x = 0;
- pixel_y = -30;
- pixel_z = 0
+ pixel_y = -30
},
/obj/item/storage/box/bodybags,
/turf/simulated/floor/plasteel{
@@ -92987,8 +87263,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/medical{
@@ -93009,13 +87284,11 @@
/obj/item/twohanded/required/kirbyplants,
/obj/machinery/alarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (WEST)"
+ icon_state = "whiteblue"
},
/area/medical/genetics)
"dsX" = (
@@ -93038,14 +87311,12 @@
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whiteblue"
},
/area/medical/genetics)
"dsZ" = (
/obj/machinery/dna_scannernew,
/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
pixel_y = -30
},
/obj/effect/decal/warning_stripes/northeast,
@@ -93084,8 +87355,7 @@
dir = 6
},
/turf/simulated/floor/plasteel{
- icon_state = "whiteblue";
- tag = "icon-whiteblue"
+ icon_state = "whiteblue"
},
/area/medical/medbay)
"dtd" = (
@@ -93095,9 +87365,7 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"dte" = (
@@ -93106,11 +87374,6 @@
dir = 1;
pixel_y = -25
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- level = 1
- },
/turf/simulated/floor/plasteel,
/area/gateway)
"dtf" = (
@@ -93133,8 +87396,7 @@
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
@@ -93156,8 +87418,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/table/glass,
/obj/item/paper_bin,
@@ -93180,8 +87441,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/structure/table/glass,
/obj/item/folder/white,
@@ -93214,48 +87474,110 @@
/turf/simulated/floor/plating,
/area/medical/cmo)
"dtl" = (
-/obj/structure/closet/secure_closet/personal/patient,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
},
-/area/medical/medbay)
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 9;
+ icon_state = "darkblue"
+ },
+/area/medical/surgery1)
"dtm" = (
-/obj/machinery/iv_drip,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
},
-/area/medical/medbay)
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "darkblue"
+ },
+/area/medical/surgery1)
"dtn" = (
-/obj/structure/bed,
-/obj/item/bedsheet/medical,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/machinery/hologram/holopad,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
-/area/medical/medbay)
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "darkblue"
+ },
+/area/medical/surgery1)
"dto" = (
/obj/structure/sign/science{
icon_state = "xenobio2"
},
/turf/simulated/wall/r_wall,
/area/medical/research)
-"dtp" = (
-/obj/structure/table,
-/obj/machinery/computer/med_data/laptop,
-/obj/machinery/newscaster{
- pixel_x = 32;
- pixel_y = 0
+"dtq" = (
+/obj/machinery/hologram/holopad,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel{
+ dir = 9;
+ icon_state = "darkblue"
+ },
+/area/medical/surgery2)
+"dtr" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/effect/landmark/start{
+ name = "Medical Doctor"
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 1;
+ icon_state = "darkblue"
},
-/area/medical/medbay)
-"dtq" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
+/area/medical/surgery2)
+"dts" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "darkblue"
+ },
+/area/medical/surgery2)
+"dtu" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8;
+ initialize_directions = 11
},
/turf/simulated/floor/plating,
/area/maintenance/starboard)
-"dtr" = (
+"dtv" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -93265,68 +87587,16 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutral"
- },
-/area/maintenance/starboard)
-"dts" = (
/obj/structure/cable{
- d1 = 4;
+ d1 = 2;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutral"
- },
-/area/maintenance/starboard)
-"dtt" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/starboard)
-"dtu" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/starboard)
-"dtv" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "neutral"
},
-/turf/simulated/floor/plating,
/area/maintenance/starboard)
"dtw" = (
/obj/structure/cable{
@@ -93341,19 +87611,16 @@
/turf/simulated/floor/plating,
/area/maintenance/starboard)
"dtx" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutral"
- },
+/turf/simulated/floor/plating,
/area/maintenance/starboard)
"dty" = (
/obj/structure/cable{
@@ -93362,23 +87629,21 @@
icon_state = "4-8";
tag = ""
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
/obj/structure/cable{
d1 = 1;
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "neutral"
},
-/turf/simulated/floor/plating,
/area/maintenance/starboard)
"dtz" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -93400,10 +87665,10 @@
icon_state = "4-8";
tag = ""
},
+/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 9
},
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
/area/maintenance/starboard)
"dtB" = (
@@ -93411,6 +87676,20 @@
/turf/simulated/floor/plasteel,
/area/hallway/secondary/construction)
"dtC" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "whitebluefull"
+ },
+/area/medical/medbay)
+"dtD" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -93418,8 +87697,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/door/airlock/engineering{
name = "Aft Starboard Solar Access";
@@ -93430,20 +87708,6 @@
},
/turf/simulated/floor/plasteel,
/area/maintenance/auxsolarstarboard)
-"dtD" = (
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
- },
-/obj/machinery/power/terminal{
- dir = 1;
- icon_state = "term"
- },
-/obj/effect/landmark{
- name = "blobstart"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/auxsolarstarboard)
"dtE" = (
/obj/structure/cable{
d1 = 2;
@@ -93520,7 +87784,6 @@
/obj/item/clothing/mask/gas,
/obj/item/radio/intercom{
dir = 0;
- name = "station intercom (General)";
pixel_x = -28
},
/turf/simulated/floor/plating,
@@ -93553,14 +87816,12 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (WEST)"
+ icon_state = "whitepurple"
},
/area/toxins/mixing)
"dtS" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/camera{
c_tag = "Research Hallway";
@@ -93575,14 +87836,12 @@
"dtT" = (
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (EAST)"
+ icon_state = "whitepurple"
},
/area/toxins/mixing)
"dtU" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/structure/grille{
density = 0;
@@ -93606,8 +87865,7 @@
/area/toxins/mixing)
"dtW" = (
/obj/machinery/newscaster{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
@@ -93619,7 +87877,6 @@
/area/toxins/misc_lab)
"dtY" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/crew_quarters/hor)
@@ -93630,11 +87887,9 @@
icon_state = "1-4"
},
/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
pixel_y = -30
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/crew_quarters/hor)
@@ -93646,7 +87901,6 @@
tag = ""
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/crew_quarters/hor)
@@ -93657,12 +87911,10 @@
},
/obj/item/radio/intercom{
dir = 4;
- name = "station intercom (General)";
pixel_x = 28
},
/obj/item/flashlight/lamp,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/crew_quarters/hor)
@@ -93670,19 +87922,16 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/medical/research)
"dud" = (
/obj/effect/spawner/window/reinforced,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plating,
/area/assembly/robotics)
@@ -93699,7 +87948,7 @@
"duf" = (
/obj/structure/table/reinforced,
/obj/item/clipboard,
-/obj/item/toy/figure/roboticist,
+/obj/item/toy/figure/crew/roboticist,
/obj/machinery/door_control{
id = "robodesk";
name = "Robotics Desk Shutters";
@@ -93716,8 +87965,7 @@
/obj/machinery/atmospherics/unary/vent_pump{
dir = 8;
external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
+ on = 1
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -93754,8 +88002,7 @@
"duj" = (
/obj/structure/table/reinforced,
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/obj/machinery/firealarm{
dir = 8;
@@ -93785,8 +88032,7 @@
},
/obj/machinery/disposal,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
@@ -93823,18 +88069,16 @@
"dur" = (
/obj/structure/table/glass,
/obj/machinery/status_display{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/item/clipboard,
-/obj/item/toy/figure/cmo,
+/obj/item/toy/figure/crew/cmo,
/turf/simulated/floor/plasteel,
/area/medical/cmo)
"dus" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -93879,8 +88123,7 @@
"duw" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/camera{
c_tag = "Mini Satellite Access";
@@ -93889,21 +88132,14 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner (WEST)"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"dux" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
+/obj/machinery/light,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -93911,104 +88147,104 @@
"duy" = (
/obj/machinery/iv_drip,
/turf/simulated/floor/plating,
-/area/medical/surgery1)
+/area/medical/surgery)
"duz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/alarm{
dir = 4;
- level = 1
+ pixel_x = -23
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "cmo"
+ icon_state = "darkblue"
},
-/area/medical/medbay)
+/area/medical/surgery1)
"duA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/effect/landmark/start{
- name = "Medical Doctor"
+/obj/machinery/computer/operating,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "cmo"
+ dir = 4;
+ icon_state = "darkblue"
},
-/area/medical/medbay)
+/area/medical/surgery1)
"duB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/structure/chair/office/dark{
- dir = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "cmo"
- },
-/area/medical/medbay)
-"duC" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
- },
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
- pixel_x = 12;
- pixel_y = 0
+ pixel_x = 11
},
-/obj/machinery/vending/wallmed{
- layer = 3.3;
- name = "Emergency NanoMed";
- pixel_x = 28;
- pixel_y = 0;
- req_access_txt = "0"
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/item/radio/intercom{
+ pixel_x = 27;
+ pixel_y = 5
+ },
+/obj/machinery/light{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "cmo"
+ icon_state = "whiteblue"
+ },
+/area/medical/surgery1)
+"duD" = (
+/obj/machinery/optable,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/medical/surgery2)
+"duE" = (
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 23
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "darkblue"
+ },
+/area/medical/surgery2)
+"duG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/status_display{
+ pixel_y = -32
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
-"duD" = (
+"duH" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8;
+ initialize_directions = 11
},
/turf/simulated/floor/plating,
/area/maintenance/starboard)
-"duE" = (
+"duJ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/structure/closet/crate,
-/obj/item/flashlight,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/simulated/floor/plasteel{
- icon_state = "neutral"
- },
-/area/maintenance/starboard)
-"duF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/girder,
/turf/simulated/floor/plating,
/area/maintenance/starboard)
-"duG" = (
+"duK" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/closet,
/obj/effect/spawner/lootdrop/maintenance{
@@ -94019,59 +88255,15 @@
icon_state = "neutral"
},
/area/maintenance/starboard)
-"duH" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/turf/simulated/floor/plating,
-/area/maintenance/starboard)
-"duI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "neutral"
- },
-/area/maintenance/starboard)
-"duJ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plasteel{
- icon_state = "neutral"
- },
-/area/maintenance/starboard)
-"duK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plasteel{
- icon_state = "neutral"
- },
-/area/maintenance/starboard)
"duL" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
- },
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plating,
/area/maintenance/starboard)
"duM" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- level = 1
- },
-/turf/simulated/floor/plating,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/plasteel,
/area/maintenance/starboard)
"duN" = (
/obj/structure/cable{
@@ -94080,13 +88272,11 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11;
- level = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "neutral"
},
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
/area/maintenance/starboard)
"duO" = (
/obj/structure/cable{
@@ -94103,8 +88293,7 @@
/obj/machinery/atmospherics/unary/vent_pump{
dir = 8;
external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
+ on = 1
},
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plating,
@@ -94112,8 +88301,7 @@
"duP" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/camera{
c_tag = "Engine Room South";
@@ -94162,7 +88350,6 @@
/obj/machinery/light/small,
/obj/machinery/alarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/turf/simulated/floor/plating,
@@ -94228,11 +88415,9 @@
/area/toxins/mixing)
"dvb" = (
/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 6;
- level = 2
+ dir = 6
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/toxins/mixing)
@@ -94247,8 +88432,7 @@
/area/toxins/misc_lab)
"dve" = (
/obj/machinery/atmospherics/pipe/simple/hidden/purple{
- dir = 10;
- icon_state = "intact"
+ dir = 10
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -94274,16 +88458,13 @@
"dvh" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/obj/item/radio/intercom{
dir = 8;
- name = "station intercom (General)";
pixel_x = -28
},
/turf/simulated/floor/plasteel{
@@ -94316,7 +88497,6 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/medical/research)
@@ -94361,8 +88541,7 @@
"dvo" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -94503,13 +88682,10 @@
/obj/machinery/vending/wallmed{
layer = 3.3;
name = "Emergency NanoMed";
- pixel_x = 0;
- pixel_y = -32;
- req_access_txt = "0"
+ pixel_y = -32
},
/obj/machinery/newscaster{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/machinery/photocopier/faxmachine{
department = "Chief Medical Officer's Office"
@@ -94557,41 +88733,52 @@
department = "Chief Medical Officer's Desk";
departmentType = 5;
name = "Chief Medical Officer Requests Console";
- pixel_x = 30;
- pixel_y = 0
+ pixel_x = 30
},
/turf/simulated/floor/plasteel,
/area/medical/cmo)
"dvK" = (
-/obj/effect/spawner/window/reinforced,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/medical{
+ name = "Operating Theatre Storage";
+ req_access_txt = "45"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/plating,
-/area/medical/medbay)
+/turf/simulated/floor/plasteel{
+ icon_state = "showroomfloor"
+ },
+/area/medical/surgery1)
"dvL" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/light_switch{
+ pixel_x = -23;
+ pixel_y = -5
+ },
+/obj/machinery/holosign_switch{
+ id = "surgery1";
+ pixel_x = -23;
+ pixel_y = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 10;
+ icon_state = "darkblue"
+ },
+/area/medical/surgery1)
+"dvM" = (
+/obj/effect/landmark/start{
+ name = "Medical Doctor"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
},
-/obj/structure/dresser,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "cmo"
+ icon_state = "darkblue"
},
-/area/medical/medbay)
-"dvM" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/obj/structure/mirror{
- pixel_x = 0;
- pixel_y = -32
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "cmo"
- },
-/area/medical/medbay)
+/area/medical/surgery1)
"dvN" = (
/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
@@ -94600,55 +88787,32 @@
},
/turf/simulated/floor/plating,
/area/medical/research)
-"dvO" = (
-/obj/structure/closet/wardrobe/pjs,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "cmo"
- },
-/area/medical/medbay)
-"dvP" = (
-/obj/structure/filingcabinet/chestdrawer,
-/obj/machinery/status_display{
- pixel_x = 32;
- pixel_y = 0
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "cmo"
- },
-/area/medical/medbay)
"dvQ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/landmark{
- name = "blobstart"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
},
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel{
+ dir = 10;
+ icon_state = "darkblue"
+ },
+/area/medical/surgery2)
+"dvR" = (
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutral"
+ icon_state = "cmo"
},
-/area/maintenance/starboard)
-"dvR" = (
+/area/medical/medbay)
+"dvS" = (
/obj/effect/decal/cleanable/fungus,
/turf/simulated/wall,
/area/crew_quarters/theatre)
-"dvS" = (
+"dvT" = (
/obj/structure/barricade/wooden,
/obj/effect/spawner/window/reinforced,
/turf/simulated/floor/plating,
/area/crew_quarters/theatre)
-"dvT" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/airlock/maintenance,
-/obj/structure/barricade/wooden,
-/turf/simulated/floor/plasteel,
-/area/security/detectives_office)
"dvU" = (
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plating/airless,
@@ -94686,8 +88850,7 @@
department = "Science";
departmentType = 2;
name = "Science Requests Console";
- pixel_x = -30;
- pixel_y = 0
+ pixel_x = -30
},
/obj/item/transfer_valve{
pixel_x = -5
@@ -94748,7 +88911,6 @@
dir = 8
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/toxins/mixing)
@@ -94775,8 +88937,7 @@
/area/toxins/misc_lab)
"dwe" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/purple{
- dir = 4;
- icon_state = "map"
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -94786,8 +88947,7 @@
"dwf" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/structure/chair/office/light{
dir = 8
@@ -94821,7 +88981,6 @@
/obj/structure/table,
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/obj/item/clipboard,
@@ -94842,9 +89001,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/atmospherics/unary/thermomachine/freezer/on/server{
- on = 1
- },
+/obj/machinery/atmospherics/unary/thermomachine/freezer/on/server,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -94871,7 +89028,6 @@
/obj/machinery/door/window/eastleft,
/obj/machinery/door/poddoor/shutters{
density = 0;
- dir = 4;
icon_state = "shutter0";
id_tag = "robodesk";
name = "Robotics Desk Shutters";
@@ -94881,20 +89037,26 @@
/turf/simulated/floor/plasteel,
/area/assembly/robotics)
"dwp" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/airlock/medical/glass{
- id_tag = null;
- name = "Recovery Ward";
- req_access_txt = "0"
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/structure/table,
+/obj/item/reagent_containers/iv_bag/blood/random,
+/obj/item/reagent_containers/iv_bag/blood/random,
+/obj/item/reagent_containers/iv_bag/blood/random,
+/obj/machinery/vending/wallmed{
+ layer = 3.3;
+ name = "Emergency NanoMed";
+ pixel_x = -25
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 8;
+ icon_state = "cmo"
},
-/area/medical/surgery)
+/area/medical/medbay)
"dwq" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/table/reinforced,
/obj/item/stack/cable_coil/random,
@@ -94915,8 +89077,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
},
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel,
@@ -94945,15 +89106,13 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/camera{
c_tag = "Mining Dock External";
dir = 8
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/aft)
@@ -95080,20 +89239,54 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/alarm{
dir = 4;
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner (WEST)"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"dwL" = (
+/obj/structure/table/glass,
+/obj/item/hemostat{
+ pixel_x = 6
+ },
+/obj/item/retractor{
+ pixel_x = -6;
+ pixel_y = 6
+ },
+/obj/item/stack/medical/bruise_pack/advanced,
+/obj/item/reagent_containers/iv_bag/salglu,
+/obj/machinery/status_display{
+ layer = 4;
+ pixel_y = -32
+ },
+/obj/machinery/camera{
+ c_tag = "Medbay Surgery East";
+ dir = 1;
+ network = list("Medical","SS13")
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "whiteblue"
+ },
+/area/medical/surgery2)
+"dwN" = (
+/obj/structure/chair/office/dark{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "cmo"
+ },
+/area/medical/medbay)
+"dwO" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -95107,21 +89300,32 @@
icon_state = "neutral"
},
/area/maintenance/starboard)
-"dwM" = (
+"dwP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/effect/landmark/start{
+ name = "Medical Doctor"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "cmo"
+ },
+/area/medical/medbay)
+"dwQ" = (
/obj/structure/table/wood,
/obj/effect/decal/cleanable/cobweb,
/obj/item/clothing/under/maid,
-/obj/item/clothing/head/kitty,
/turf/simulated/floor/plating,
/area/crew_quarters/theatre)
-"dwN" = (
+"dwR" = (
/obj/machinery/vending/autodrobe,
/obj/machinery/light/small{
dir = 1
},
/turf/simulated/floor/plating,
/area/crew_quarters/theatre)
-"dwO" = (
+"dwS" = (
/obj/structure/cable{
d2 = 2;
icon_state = "0-2"
@@ -95129,12 +89333,11 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/turf/simulated/floor/plating,
/area/crew_quarters/theatre)
-"dwP" = (
+"dwT" = (
/obj/machinery/newscaster{
pixel_y = 32
},
@@ -95142,31 +89345,28 @@
icon_state = "wood"
},
/area/crew_quarters/theatre)
-"dwQ" = (
+"dwU" = (
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/crew_quarters/theatre)
-"dwR" = (
+"dwV" = (
/obj/machinery/door/window{
- base_state = "left";
dir = 8;
- icon_state = "left";
- name = "Abandoned Theater";
- req_access_txt = "0"
+ name = "Abandoned Theater"
},
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
/area/crew_quarters/theatre)
-"dwS" = (
+"dwW" = (
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/wood{
broken = 1;
icon_state = "wood-broken"
},
/area/crew_quarters/theatre)
-"dwT" = (
+"dwX" = (
/obj/structure/dresser,
/obj/machinery/light/small{
dir = 1
@@ -95176,7 +89376,7 @@
icon_state = "wood-broken"
},
/area/crew_quarters/theatre)
-"dwU" = (
+"dwY" = (
/obj/effect/decal/cleanable/cobweb2,
/obj/structure/table/wood,
/obj/item/instrument/guitar,
@@ -95185,59 +89385,17 @@
icon_state = "wood-broken"
},
/area/crew_quarters/theatre)
-"dwV" = (
+"dwZ" = (
/obj/effect/decal/cleanable/fungus,
/turf/simulated/wall,
/area/security/detectives_office)
-"dwW" = (
+"dxa" = (
/obj/machinery/photocopier,
/obj/item/newspaper,
/obj/item/newspaper,
/obj/effect/decal/cleanable/cobweb,
/turf/simulated/floor/plating,
/area/security/detectives_office)
-"dwX" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- icon_state = "wood"
- },
-/area/security/detectives_office)
-"dwY" = (
-/obj/machinery/light_switch{
- pixel_x = 0;
- pixel_y = 26
- },
-/turf/simulated/floor/plating,
-/area/security/detectives_office)
-"dwZ" = (
-/turf/simulated/floor/wood{
- broken = 1;
- icon_state = "wood-broken"
- },
-/area/security/detectives_office)
-"dxa" = (
-/obj/structure/table/wood,
-/obj/item/crowbar/red,
-/obj/item/book/manual/security_space_law,
-/obj/item/book/manual/detective,
-/obj/item/camera{
- desc = "A one use - polaroid camera. 30 photos left.";
- name = "detectives camera";
- pictures_left = 30;
- pixel_x = 0;
- pixel_y = 0
- },
-/turf/simulated/floor/wood{
- broken = 1;
- icon_state = "wood-broken"
- },
-/area/security/detectives_office)
"dxb" = (
/obj/structure/chair/office/dark{
dir = 8
@@ -95260,7 +89418,6 @@
/obj/item/clothing/mask/gas,
/obj/machinery/camera{
c_tag = "Research Outpost Temporary Storage";
- dir = 2;
network = list("Research Outpost")
},
/obj/effect/decal/warning_stripes/yellow/hollow,
@@ -95287,11 +89444,9 @@
/obj/machinery/atmospherics/unary/portables_connector,
/obj/machinery/alarm{
dir = 8;
- pixel_x = 25;
- pixel_y = 0
+ pixel_x = 25
},
/obj/machinery/newscaster{
- pixel_x = 0;
pixel_y = 32
},
/obj/effect/decal/warning_stripes/southeast,
@@ -95344,9 +89499,7 @@
dir = 4;
layer = 4;
name = "Test Chamber Telescreen";
- network = list("Toxins");
- pixel_x = 0;
- pixel_y = 0
+ network = list("Toxins")
},
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel,
@@ -95357,7 +89510,6 @@
},
/obj/machinery/meter,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/toxins/mixing)
@@ -95373,7 +89525,6 @@
/obj/machinery/portable_atmospherics/canister/nitrogen,
/obj/item/radio/intercom{
dir = 1;
- name = "station intercom (General)";
pixel_y = 28
},
/obj/effect/decal/warning_stripes/yellow/hollow,
@@ -95411,7 +89562,6 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/obj/machinery/camera{
@@ -95429,8 +89579,7 @@
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/obj/machinery/computer/rdservercontrol,
/turf/simulated/floor/plasteel{
@@ -95466,8 +89615,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden,
/turf/simulated/floor/plasteel{
@@ -95482,8 +89630,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/door/airlock/command{
name = "Server Room";
@@ -95502,8 +89649,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
@@ -95526,8 +89672,7 @@
},
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -95536,11 +89681,9 @@
"dxy" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/medical/research)
@@ -95550,16 +89693,18 @@
/turf/simulated/floor/plasteel,
/area/assembly/robotics)
"dxA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/airlock/medical/glass{
- id_tag = null;
- name = "Recovery Ward";
- req_access_txt = "0"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
},
+/obj/effect/landmark/start{
+ name = "Medical Doctor"
+ },
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 8;
+ icon_state = "cmo"
},
-/area/medical/surgery)
+/area/medical/medbay)
"dxB" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -95603,8 +89748,7 @@
/obj/machinery/atmospherics/unary/vent_pump{
dir = 8;
external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
+ on = 1
},
/obj/machinery/camera{
c_tag = "Research Secure Entrance";
@@ -95620,11 +89764,9 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/aft)
@@ -95653,8 +89795,7 @@
icon_state = "pipe-c"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -95662,8 +89803,7 @@
/area/medical/morgue)
"dxI" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
},
/turf/simulated/floor/plating,
/area/medical/morgue)
@@ -95680,8 +89820,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
@@ -95697,8 +89836,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
@@ -95714,8 +89852,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -95726,10 +89863,9 @@
/obj/machinery/optable,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
-/area/medical/surgery1)
+/area/medical/surgery)
"dxN" = (
/obj/structure/cable{
d1 = 4;
@@ -95751,8 +89887,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -95760,13 +89895,11 @@
/area/medical/morgue)
"dxP" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/effect/decal/warning_stripes/yellow,
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/turf/simulated/floor/plasteel,
@@ -95779,8 +89912,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/medical/morgue)
@@ -95792,8 +89924,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
},
/obj/effect/landmark{
name = "blobstart"
@@ -95809,8 +89940,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/cleanable/dirt,
@@ -95831,8 +89961,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
@@ -95896,15 +90025,27 @@
/obj/machinery/atmospherics/unary/vent_pump{
dir = 8;
external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
+ on = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
/area/medical/medbay)
"dya" = (
+/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"
+ },
+/area/medical/surgery2)
+"dyb" = (
+/turf/simulated/floor/plating,
+/area/crew_quarters/theatre)
+"dyc" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/rack,
/obj/effect/landmark/costume/random,
@@ -95914,15 +90055,29 @@
icon_state = "neutral"
},
/area/maintenance/starboard)
-"dyb" = (
-/turf/simulated/floor/plating,
-/area/crew_quarters/theatre)
-"dyc" = (
-/turf/simulated/floor/plasteel{
- icon_state = "wood"
- },
-/area/crew_quarters/theatre)
"dyd" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plating,
+/area/maintenance/starboard)
+"dye" = (
+/obj/structure/chair/office/dark{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "cmo"
+ },
+/area/medical/medbay)
+"dyg" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -95931,7 +90086,7 @@
},
/turf/simulated/floor/plating,
/area/crew_quarters/theatre)
-"dye" = (
+"dyh" = (
/obj/structure/table/wood,
/obj/item/newspaper,
/obj/item/clothing/head/bowlerhat,
@@ -95939,20 +90094,7 @@
icon_state = "dark"
},
/area/crew_quarters/theatre)
-"dyf" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/crew_quarters/theatre)
-"dyg" = (
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/crew_quarters/theatre)
-"dyh" = (
+"dyj" = (
/obj/structure/table/wood,
/obj/item/tape,
/turf/simulated/floor/wood{
@@ -95960,37 +90102,43 @@
icon_state = "wood-broken"
},
/area/crew_quarters/theatre)
-"dyi" = (
+"dyk" = (
+/obj/machinery/bodyscanner{
+ dir = 4
+ },
+/obj/item/radio/intercom{
+ dir = 1;
+ pixel_y = -28
+ },
+/obj/machinery/status_display{
+ pixel_x = -31
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/medical/medbay)
+"dyl" = (
/obj/item/twohanded/required/kirbyplants,
/obj/machinery/newscaster{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/machinery/light/small{
dir = 8
},
/turf/simulated/floor/plating,
/area/security/detectives_office)
-"dyj" = (
+"dym" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
/area/security/detectives_office)
-"dyk" = (
-/turf/simulated/floor/plating,
-/area/security/detectives_office)
-"dyl" = (
-/obj/structure/closet/secure_closet/personal/cabinet,
-/obj/item/clothing/suit/browntrenchcoat,
-/obj/item/clothing/suit/browntrenchcoat,
-/obj/item/clothing/head/fedora,
-/obj/item/clothing/head/fedora,
-/turf/simulated/floor/plating,
-/area/security/detectives_office)
-"dym" = (
-/obj/effect/spawner/window/reinforced,
-/turf/simulated/floor/plating,
-/area/security/detectives_office)
"dyn" = (
/turf/simulated/wall/r_wall,
/area/toxins/test_area)
@@ -96104,7 +90252,6 @@
dir = 5
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/toxins/mixing)
@@ -96128,8 +90275,7 @@
/obj/machinery/atmospherics/unary/vent_pump{
dir = 8;
external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
+ on = 1
},
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel,
@@ -96199,8 +90345,7 @@
icon_state = "0-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 9;
- icon_state = "intact"
+ dir = 9
},
/turf/simulated/floor/plating,
/area/toxins/server)
@@ -96312,8 +90457,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
+ dir = 5
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -96352,8 +90496,7 @@
"dza" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -96401,8 +90544,7 @@
"dzf" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plating,
/area/medical/morgue)
@@ -96469,12 +90611,10 @@
/obj/structure/bed,
/obj/item/bedsheet/cmo,
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/machinery/status_display{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/effect/landmark/start{
name = "Chief Medical Officer"
@@ -96484,6 +90624,13 @@
},
/area/medical/cmo)
"dzm" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/plasteel{
+ icon_state = "showroomfloor"
+ },
+/area/medical/surgery2)
+"dzo" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/rack,
/obj/effect/spawner/lootdrop/maintenance,
@@ -96494,7 +90641,16 @@
icon_state = "neutral"
},
/area/maintenance/starboard)
-"dzn" = (
+"dzp" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/medical/medbay)
+"dzq" = (
/obj/machinery/light_switch{
pixel_x = -26
},
@@ -96502,24 +90658,7 @@
icon_state = "wood"
},
/area/crew_quarters/theatre)
-"dzo" = (
-/turf/simulated/floor/wood{
- broken = 1;
- icon_state = "wood-broken"
- },
-/area/crew_quarters/theatre)
-"dzp" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/turf/simulated/floor/plasteel{
- icon_state = "wood"
- },
-/area/crew_quarters/theatre)
-"dzq" = (
+"dzr" = (
/obj/structure/chair/wood{
dir = 4
},
@@ -96528,13 +90667,7 @@
icon_state = "dark"
},
/area/crew_quarters/theatre)
-"dzr" = (
-/obj/structure/table/wood,
-/obj/item/storage/fancy/candle_box,
-/obj/item/storage/fancy/candle_box,
-/turf/simulated/floor/plating,
-/area/crew_quarters/theatre)
-"dzs" = (
+"dzu" = (
/obj/structure/cable{
d2 = 4;
icon_state = "0-4"
@@ -96542,34 +90675,10 @@
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/turf/simulated/floor/plating,
/area/security/detectives_office)
-"dzt" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
- },
-/obj/effect/landmark{
- name = "xeno_spawn";
- pixel_x = -1
- },
-/turf/simulated/floor/wood{
- broken = 1;
- icon_state = "wood-broken"
- },
-/area/security/detectives_office)
-"dzu" = (
-/obj/structure/filingcabinet,
-/turf/simulated/floor/plating,
-/area/security/detectives_office)
"dzv" = (
/obj/item/target,
/obj/structure/window/reinforced,
@@ -96577,24 +90686,21 @@
/area/toxins/test_area)
"dzw" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
/area/toxins/mixing)
"dzx" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
/area/toxins/mixing)
"dzy" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/door/airlock/research{
name = "Toxin Test Firing Range";
@@ -96625,8 +90731,7 @@
/area/toxins/mixing)
"dzA" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -96641,8 +90746,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/door/airlock/research{
name = "Toxin Mixing";
@@ -96659,8 +90763,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
@@ -96676,8 +90779,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/light_switch{
pixel_x = -26;
@@ -96705,8 +90807,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
@@ -96745,11 +90846,9 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/toxins/mixing)
@@ -96768,8 +90867,7 @@
"dzJ" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/effect/decal/warning_stripes/southeastcorner,
/obj/effect/decal/warning_stripes/southwestcorner,
@@ -96797,8 +90895,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
@@ -96811,8 +90908,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/research{
@@ -96834,8 +90930,7 @@
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- level = 1
+ dir = 9
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
@@ -96940,7 +91035,6 @@
pixel_x = 24
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/medical/research)
@@ -96956,8 +91050,7 @@
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
@@ -97003,7 +91096,6 @@
pixel_y = -32
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/assembly/robotics)
@@ -97038,7 +91130,6 @@
"dAe" = (
/obj/structure/cable,
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
@@ -97055,26 +91146,18 @@
},
/area/medical/morgue)
"dAg" = (
-/obj/structure/bed,
-/obj/item/bedsheet/medical,
-/obj/machinery/camera{
- c_tag = "Surgery Prep Room";
- dir = 8;
- network = list("SS13","Medical")
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "dark"
},
-/area/medical/surgery)
+/area/medical/surgeryobs)
"dAh" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 1
},
/obj/machinery/alarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/turf/simulated/floor/plating,
@@ -97120,8 +91203,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/centcom{
@@ -97137,7 +91219,6 @@
"dAp" = (
/obj/structure/table/glass,
/obj/machinery/newscaster{
- pixel_x = 0;
pixel_y = -32
},
/obj/machinery/computer/med_data/laptop,
@@ -97147,23 +91228,14 @@
},
/area/medical/cmo)
"dAq" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/item/radio/intercom{
- dir = 1;
- name = "station intercom (General)";
- pixel_y = -28
- },
-/obj/machinery/light,
-/obj/machinery/camera{
- c_tag = "Medbay Exam Room Two";
- dir = 1;
- network = list("Medical","SS13")
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "cmo"
+ dir = 6;
+ icon_state = "darkblue"
},
-/area/medical/medbay)
+/area/medical/surgery1)
"dAr" = (
/obj/machinery/computer/security/telescreen/entertainment{
pixel_y = -32
@@ -97187,19 +91259,57 @@
icon_state = "1-2";
tag = ""
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
- icon_state = "whiteblue";
- tag = "icon-whiteblue"
+ icon_state = "whiteblue"
},
/area/medical/medbay)
"dAu" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/closet/crate,
-/obj/effect/landmark/costume/random,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/simulated/floor/plating,
-/area/maintenance/starboard)
+/obj/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/machinery/camera{
+ c_tag = "Medbay Surgery East Storage";
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "showroomfloor"
+ },
+/area/medical/surgery2)
+"dAw" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/iv_drip,
+/turf/simulated/floor/plasteel{
+ icon_state = "showroomfloor"
+ },
+/area/medical/surgery2)
+"dAx" = (
+/turf/simulated/wall,
+/area/medical/surgery2)
+"dAy" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -97214,15 +91324,14 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutral"
},
/area/maintenance/starboard)
-"dAw" = (
+"dAz" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -97230,8 +91339,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/door/airlock/maintenance,
/obj/structure/barricade/wooden,
@@ -97239,7 +91347,7 @@
icon_state = "wood"
},
/area/crew_quarters/theatre)
-"dAx" = (
+"dAB" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -97247,75 +91355,38 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
/area/crew_quarters/theatre)
-"dAy" = (
+"dAC" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
},
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
/area/crew_quarters/theatre)
-"dAz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "wood"
- },
-/area/crew_quarters/theatre)
-"dAA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/structure/chair/wood{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/crew_quarters/theatre)
-"dAB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/crew_quarters/theatre)
-"dAC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/crew_quarters/theatre)
"dAD" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "wood"
+ },
+/area/crew_quarters/theatre)
+"dAE" = (
/obj/machinery/atmospherics/unary/vent_pump{
dir = 8;
external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
+ on = 1
},
/obj/effect/landmark{
name = "xeno_spawn";
@@ -97323,19 +91394,10 @@
},
/turf/simulated/floor/plating,
/area/crew_quarters/theatre)
-"dAE" = (
-/obj/structure/chair/office/dark,
-/turf/simulated/floor/plasteel{
- icon_state = "wood"
- },
-/area/security/detectives_office)
"dAF" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/turf/simulated/floor/wood{
+ broken = 1;
+ icon_state = "wood-broken"
},
/area/security/detectives_office)
"dAG" = (
@@ -97422,8 +91484,7 @@
"dAP" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/light/small,
/obj/effect/decal/warning_stripes/southeast,
@@ -97452,12 +91513,10 @@
/area/toxins/mixing)
"dAS" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/structure/rack,
/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
pixel_y = -30
},
/obj/item/clothing/suit/fire/firefighter,
@@ -97475,8 +91534,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
@@ -97489,8 +91547,7 @@
},
/obj/machinery/door/window/southright{
name = "Toxins Launcher";
- req_access_txt = "7";
- req_one_access_txt = "0"
+ req_access_txt = "7"
},
/obj/effect/decal/warning_stripes/arrow,
/obj/effect/decal/warning_stripes/yellow/partial,
@@ -97520,7 +91577,7 @@
/obj/structure/computerframe,
/obj/item/circuitboard/operating,
/turf/simulated/floor/plasteel,
-/area/medical/surgery1)
+/area/medical/surgery)
"dAY" = (
/obj/structure/chair,
/obj/effect/decal/warning_stripes/northwest,
@@ -97579,8 +91636,7 @@
"dBd" = (
/obj/machinery/r_n_d/server/core,
/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 5;
- icon_state = "intact"
+ dir = 5
},
/turf/simulated/floor/bluegrid{
icon_state = "gcircuit";
@@ -97604,8 +91660,7 @@
"dBf" = (
/obj/machinery/r_n_d/server/robotics,
/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 9;
- icon_state = "intact"
+ dir = 9
},
/turf/simulated/floor/bluegrid{
icon_state = "gcircuit";
@@ -97667,7 +91722,6 @@
tag = ""
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/aft)
@@ -97710,20 +91764,20 @@
/turf/simulated/floor/plasteel,
/area/medical/medbay)
"dBp" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
},
-/obj/effect/landmark{
- name = "xeno_spawn";
- pixel_x = -1
+/obj/machinery/iv_drip,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/turf/simulated/floor/wood{
- broken = 1;
- icon_state = "wood-broken"
+/area/medical/medbay)
+"dBq" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "wood"
},
/area/crew_quarters/theatre)
-"dBq" = (
+"dBr" = (
/obj/structure/chair/wood{
dir = 4
},
@@ -97731,7 +91785,17 @@
icon_state = "dark"
},
/area/crew_quarters/theatre)
-"dBr" = (
+"dBt" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/medical/medbay)
+"dBu" = (
/obj/structure/table/wood,
/obj/item/clothing/under/jester,
/turf/simulated/floor/wood{
@@ -97739,43 +91803,13 @@
icon_state = "wood-broken"
},
/area/crew_quarters/theatre)
-"dBs" = (
+"dBv" = (
/obj/structure/table/wood,
/obj/item/flashlight/lamp,
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
/area/security/detectives_office)
-"dBt" = (
-/obj/structure/table/wood,
-/obj/item/folder/white,
-/obj/item/folder/red,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/security/detectives_office)
-"dBu" = (
-/obj/structure/table/wood,
-/obj/item/paper_bin,
-/obj/item/pen,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/security/detectives_office)
-"dBv" = (
-/obj/structure/table/wood,
-/obj/machinery/alarm{
- dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
- },
-/obj/item/clothing/gloves/color/black,
-/obj/item/taperecorder,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/security/detectives_office)
"dBw" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 9
@@ -97905,8 +91939,7 @@
"dBM" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
@@ -97920,8 +91953,7 @@
"dBO" = (
/obj/machinery/alarm{
dir = 8;
- pixel_x = 25;
- pixel_y = 0
+ pixel_x = 25
},
/obj/machinery/r_n_d/circuit_imprinter,
/obj/item/reagent_containers/glass/beaker/sulphuric,
@@ -97962,7 +91994,6 @@
tag = ""
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/aft)
@@ -97980,8 +92011,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
@@ -97991,8 +92021,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/centcom{
@@ -98013,8 +92042,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
@@ -98213,8 +92241,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -98262,36 +92289,64 @@
},
/area/maintenance/starboard)
"dCn" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
+/obj/machinery/bodyscanner,
+/obj/item/radio/intercom{
+ dir = 1;
+ pixel_y = -28
},
-/turf/simulated/floor/plating,
-/area/maintenance/starboard)
+/obj/machinery/status_display{
+ pixel_x = 31
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/medical/medbay)
"dCo" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/cleanable/dirt,
+/obj/effect/spawner/window/reinforced,
/turf/simulated/floor/plating,
-/area/maintenance/starboard)
+/area/medical/surgeryobs)
"dCp" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "neutral"
+ },
+/area/maintenance/starboard)
+"dCq" = (
/obj/machinery/light/small{
dir = 8
},
/obj/machinery/status_display{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/turf/simulated/floor/wood{
broken = 1;
icon_state = "wood-broken"
},
/area/crew_quarters/theatre)
-"dCq" = (
+"dCr" = (
+/obj/structure/table/glass,
+/obj/item/circular_saw,
+/obj/item/bonesetter{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/item/surgicaldrill,
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "whiteblue"
+ },
+/area/medical/surgery1)
+"dCs" = (
/obj/structure/table/wood,
/obj/item/clothing/head/papersack/smiley,
/obj/item/pen,
@@ -98299,16 +92354,18 @@
icon_state = "dark"
},
/area/crew_quarters/theatre)
-"dCr" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/item/twohanded/required/kirbyplants,
+"dCt" = (
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
/area/crew_quarters/theatre)
-"dCs" = (
+"dCu" = (
+/turf/simulated/floor/wood{
+ broken = 1;
+ icon_state = "wood-broken"
+ },
+/area/crew_quarters/theatre)
+"dCv" = (
/obj/structure/table/wood,
/obj/item/clothing/suit/cardborg,
/obj/item/clothing/head/cardborg,
@@ -98317,43 +92374,19 @@
},
/turf/simulated/floor/plating,
/area/crew_quarters/theatre)
-"dCt" = (
+"dCw" = (
/obj/structure/computerframe,
/obj/item/circuitboard/secure_data,
/obj/machinery/light/small{
dir = 8
},
/obj/machinery/status_display{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
/area/security/detectives_office)
-"dCu" = (
-/obj/structure/chair/office/dark{
- dir = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/security/detectives_office)
-"dCv" = (
-/obj/structure/table/wood,
-/obj/item/storage/fancy/cigarettes/cigpack_uplift,
-/obj/item/storage/fancy/cigarettes/cigpack_carp,
-/obj/item/lighter/zippo,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/security/detectives_office)
-"dCw" = (
-/obj/structure/rack,
-/obj/item/storage/briefcase,
-/obj/item/storage/secure/briefcase,
-/turf/simulated/floor/plating,
-/area/security/detectives_office)
"dCx" = (
/obj/structure/grille,
/obj/structure/cable/yellow{
@@ -98508,7 +92541,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/item/radio/intercom{
dir = 1;
- name = "station intercom (General)";
pixel_y = 28
},
/turf/simulated/floor/plasteel{
@@ -98557,8 +92589,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plating,
/area/maintenance/fpmaint2)
@@ -98570,8 +92601,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/light/small,
/turf/simulated/floor/plating,
@@ -98584,8 +92614,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/light/small,
/obj/effect/decal/warning_stripes/yellow,
@@ -98599,8 +92628,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
@@ -98608,12 +92636,10 @@
"dCZ" = (
/obj/structure/rack,
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/obj/machinery/newscaster{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/item/storage/toolbox/mechanical,
/obj/item/storage/toolbox/electrical,
@@ -98625,8 +92651,7 @@
/area/assembly/robotics)
"dDa" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/light/small,
/obj/structure/closet/firecloset,
@@ -98642,8 +92667,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
@@ -98658,8 +92682,7 @@
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -98670,7 +92693,6 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/aft)
@@ -98692,38 +92714,33 @@
/area/bridge)
"dDf" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/wall,
/area/hallway/primary/aft)
"dDg" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/maintenance/aft)
"dDh" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plating,
/area/maintenance/aft)
"dDi" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/girder,
/turf/simulated/floor/plating,
/area/maintenance/aft)
"dDj" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/cleanable/dirt,
/obj/machinery/light/small,
@@ -98731,8 +92748,7 @@
/area/maintenance/aft)
"dDk" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "neutral"
@@ -98741,11 +92757,9 @@
"dDl" = (
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
@@ -98753,8 +92767,7 @@
/area/maintenance/aft)
"dDm" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
@@ -98768,8 +92781,7 @@
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "neutral"
@@ -98783,8 +92795,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plating,
/area/maintenance/aft)
@@ -98795,8 +92806,7 @@
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plating,
/area/maintenance/aft)
@@ -98813,8 +92823,7 @@
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
@@ -98827,8 +92836,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/maintenance/aft)
@@ -98840,8 +92848,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/door/airlock/maintenance,
/turf/simulated/floor/plasteel,
@@ -98856,8 +92863,7 @@
/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (WEST)"
+ icon_state = "whitegreen"
},
/area/medical/medbay)
"dDv" = (
@@ -98884,8 +92890,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 1
@@ -98902,31 +92907,14 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (EAST)"
+ icon_state = "whitegreen"
},
/area/medical/medbay)
-"dDx" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "neutral"
- },
-/area/maintenance/starboard)
"dDy" = (
/obj/structure/cable{
d1 = 4;
@@ -98935,13 +92923,12 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
/area/maintenance/starboard)
-"dDz" = (
+"dDC" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -98949,114 +92936,101 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plating,
-/area/maintenance/starboard)
-"dDA" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
icon_state = "neutral"
},
/area/maintenance/starboard)
-"dDB" = (
+"dDD" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/starboard)
+"dDE" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "neutral"
+ },
+/area/maintenance/starboard)
+"dDF" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- level = 1
+ dir = 9
},
/turf/simulated/floor/plasteel{
dir = 6;
icon_state = "neutral"
},
/area/maintenance/starboard)
-"dDC" = (
+"dDG" = (
/turf/simulated/wall/rust,
/area/crew_quarters/theatre)
-"dDD" = (
+"dDH" = (
/obj/structure/dresser,
/turf/simulated/floor/plating,
/area/crew_quarters/theatre)
-"dDE" = (
+"dDI" = (
/obj/structure/table/wood,
/obj/item/wrench,
/obj/item/storage/briefcase,
/obj/item/storage/secure/briefcase,
/turf/simulated/floor/plating,
/area/crew_quarters/theatre)
-"dDF" = (
+"dDJ" = (
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
/area/crew_quarters/theatre)
-"dDG" = (
+"dDK" = (
/obj/item/twohanded/required/kirbyplants,
/obj/machinery/alarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
/area/crew_quarters/theatre)
-"dDH" = (
+"dDL" = (
/obj/machinery/vending/cigarette,
/turf/simulated/floor/plating,
/area/crew_quarters/theatre)
-"dDI" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/piano,
-/turf/simulated/floor/plating,
-/area/crew_quarters/theatre)
-"dDJ" = (
+"dDM" = (
/obj/structure/chair/stool,
/turf/simulated/floor/plating,
/area/crew_quarters/theatre)
-"dDK" = (
-/obj/structure/table/wood,
-/obj/item/lipstick/random,
-/obj/item/lipstick/random,
-/obj/item/lipstick/random,
-/turf/simulated/floor/plating,
-/area/crew_quarters/theatre)
-"dDL" = (
-/obj/structure/table/wood,
-/obj/item/instrument/violin,
-/turf/simulated/floor/plating,
-/area/crew_quarters/theatre)
-"dDM" = (
-/obj/structure/computerframe,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/security/detectives_office)
"dDN" = (
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
/area/security/detectives_office)
"dDO" = (
-/obj/structure/dresser,
-/turf/simulated/floor/plating,
+/obj/structure/computerframe,
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
/area/security/detectives_office)
"dDP" = (
/obj/effect/decal/warning_stripes/east,
@@ -99109,8 +93083,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
+ dir = 5
},
/turf/simulated/floor/plating,
/area/maintenance/fpmaint2)
@@ -99153,8 +93126,7 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10;
- initialize_directions = 10;
- level = 1
+ initialize_directions = 10
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -99217,8 +93189,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
icon_state = "redyellowfull"
@@ -99301,21 +93272,18 @@
"dEr" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (WEST)"
+ icon_state = "whitegreen"
},
/area/medical/medbay)
"dEs" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (EAST)"
+ icon_state = "whitegreen"
},
/area/medical/medbay)
"dEt" = (
@@ -99323,8 +93291,21 @@
/turf/simulated/floor/plating,
/area/crew_quarters/theatre)
"dEu" = (
-/turf/simulated/wall/rust,
-/area/security/detectives_office)
+/obj/item/bonegel{
+ pixel_x = 6;
+ pixel_y = 6
+ },
+/obj/item/cautery,
+/obj/item/FixOVein{
+ pixel_x = -6;
+ pixel_y = 6
+ },
+/obj/structure/table/tray,
+/obj/item/scalpel,
+/turf/simulated/floor/plasteel{
+ icon_state = "whiteblue"
+ },
+/area/medical/surgery1)
"dEv" = (
/obj/effect/decal/warning_stripes/southwestcorner,
/turf/simulated/floor/plating/airless,
@@ -99365,8 +93346,7 @@
id_tag = "sw_maint2_outer";
locked = 1;
name = "West Maintenance External Access";
- req_access = null;
- req_access_txt = "0"
+ req_access = null
},
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel,
@@ -99378,20 +93358,15 @@
id_tag = "sw_maint2_pump"
},
/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
- frequency = 1379;
id_tag = "sw_maint2_airlock";
- pixel_x = 0;
pixel_y = 25;
- req_access_txt = "0";
tag_airpump = "sw_maint2_pump";
tag_chamber_sensor = "sw_maint2_sensor";
tag_exterior_door = "sw_maint2_outer";
tag_interior_door = "sw_maint2_inner"
},
/obj/machinery/airlock_sensor{
- frequency = 1379;
id_tag = "sw_maint2_sensor";
- pixel_x = 0;
pixel_y = 33
},
/obj/effect/decal/warning_stripes/yellow,
@@ -99438,8 +93413,7 @@
master_tag = "sw_maint2_airlock";
name = "interior access button";
pixel_x = -24;
- pixel_y = 24;
- req_access_txt = "0"
+ pixel_y = 24
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
@@ -99452,12 +93426,10 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 9;
- icon_state = "intact"
+ dir = 9
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
@@ -99508,8 +93480,7 @@
/area/toxins/test_area)
"dEL" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/effect/landmark{
name = "blobstart"
@@ -99519,7 +93490,6 @@
},
/obj/structure/sink{
dir = 8;
- icon_state = "sink";
pixel_x = -12;
pixel_y = 2
},
@@ -99527,15 +93497,13 @@
/area/medical/research)
"dEM" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/wall,
/area/medical/research)
"dEN" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -99551,8 +93519,7 @@
},
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
@@ -99561,8 +93528,7 @@
/area/medical/research)
"dEP" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/landmark/start{
@@ -99574,8 +93540,7 @@
/area/medical/research)
"dEQ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/chair/stool,
/turf/simulated/floor/plasteel{
@@ -99605,17 +93570,14 @@
"dET" = (
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/obj/item/twohanded/required/kirbyplants,
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/obj/item/radio/intercom{
dir = 1;
- name = "station intercom (General)";
pixel_y = 28
},
/turf/simulated/floor/plasteel{
@@ -99696,8 +93658,7 @@
/obj/structure/table,
/obj/item/pen,
/obj/machinery/newscaster{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/machinery/light{
dir = 4
@@ -99725,9 +93686,7 @@
tag = ""
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitegreen";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whitegreen"
},
/area/medical/medbay)
"dFe" = (
@@ -99830,8 +93789,7 @@
"dFs" = (
/obj/structure/table/wood,
/obj/machinery/newscaster{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/item/clipboard,
/obj/item/folder,
@@ -99900,8 +93858,7 @@
"dFy" = (
/obj/structure/table/reinforced,
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/machinery/ai_status_display{
pixel_x = 32
@@ -99949,8 +93906,7 @@
/obj/structure/table/glass,
/obj/machinery/cell_charger,
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
/area/medical/medbay)
"dFF" = (
@@ -100085,7 +94041,6 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/turf/simulated/floor/plasteel{
@@ -100112,8 +94067,7 @@
"dFZ" = (
/obj/machinery/light/small,
/obj/machinery/newscaster{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/structure/toilet{
dir = 8
@@ -100132,8 +94086,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plating,
/area/medical/cmo)
@@ -100201,8 +94154,7 @@
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/obj/machinery/computer/card,
/turf/simulated/floor/plasteel{
@@ -100317,7 +94269,20 @@
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
/area/hallway/primary/aft)
-"dGq" = (
+"dGr" = (
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/power/terminal{
+ dir = 1
+ },
+/obj/effect/landmark{
+ name = "blobstart"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/auxsolarstarboard)
+"dGs" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -100331,8 +94296,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 5;
- icon_state = "intact"
+ dir = 5
},
/obj/machinery/access_button{
command = "cycle_interior";
@@ -100346,60 +94310,6 @@
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plating,
/area/maintenance/auxsolarstarboard)
-"dGr" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/door/airlock/external{
- frequency = 1379;
- icon_state = "door_locked";
- id_tag = "solar_xeno_inner";
- locked = 1;
- name = "Engineering External Access";
- req_access = null;
- req_access_txt = "13"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 4
- },
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plating,
-/area/maintenance/auxsolarstarboard)
-"dGs" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/unary/vent_pump/high_volume{
- dir = 8;
- frequency = 1379;
- id_tag = "solar_xeno_pump"
- },
-/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
- frequency = 1379;
- id_tag = "solar_xeno_airlock";
- pixel_x = 0;
- pixel_y = 25;
- req_access_txt = "13";
- tag_airpump = "solar_xeno_pump";
- tag_chamber_sensor = "solar_xeno_sensor";
- tag_exterior_door = "solar_xeno_outer";
- tag_interior_door = "solar_xeno_inner"
- },
-/obj/machinery/airlock_sensor{
- frequency = 1379;
- id_tag = "solar_xeno_sensor";
- pixel_x = 0;
- pixel_y = 32
- },
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plating,
-/area/maintenance/auxsolarstarboard)
"dGt" = (
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
@@ -100433,8 +94343,7 @@
"dGx" = (
/obj/structure/table/glass,
/obj/machinery/newscaster{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/item/radio/intercom{
pixel_y = 28
@@ -100514,7 +94423,6 @@
/obj/structure/table/wood,
/obj/item/paicard,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "carpet"
},
/area/library/abandoned)
@@ -100522,7 +94430,6 @@
/obj/structure/table/wood,
/obj/item/storage/pill_bottle/dice,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "carpet"
},
/area/library/abandoned)
@@ -100573,8 +94480,7 @@
/area/maintenance/fpmaint2)
"dGN" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/grille,
/turf/simulated/floor/plasteel{
@@ -100652,40 +94558,40 @@
pixel_x = 26
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
-/area/medical/surgery1)
+/area/medical/surgery)
"dGX" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8"
+ icon_state = "4-8";
+ tag = ""
},
/obj/machinery/door/airlock/external{
frequency = 1379;
icon_state = "door_locked";
- id_tag = "solar_xeno_outer";
+ id_tag = "solar_xeno_inner";
locked = 1;
name = "Engineering External Access";
req_access = null;
- req_access_txt = "10;13"
+ req_access_txt = "13"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
},
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plating,
/area/maintenance/auxsolarstarboard)
"dGY" = (
/obj/machinery/door/airlock/maintenance{
- name = "Science Toilet";
- req_access_txt = "0"
+ name = "Science Toilet"
},
/turf/simulated/floor/plasteel,
/area/medical/research)
"dGZ" = (
/obj/structure/cable,
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
@@ -100713,7 +94619,6 @@
frequency = 1379;
master_tag = "viro_lab_airlock_control";
name = "Virology Lab Access Button";
- pixel_x = 0;
pixel_y = -24;
req_access_txt = "39"
},
@@ -100854,7 +94759,7 @@
},
/obj/structure/table/glass,
/obj/item/clipboard,
-/obj/item/toy/figure/virologist,
+/obj/item/toy/figure/crew/virologist,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "whitegreencorner"
@@ -100879,8 +94784,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -100944,7 +94848,6 @@
},
/obj/item/radio/intercom{
dir = 4;
- name = "station intercom (General)";
pixel_x = 28
},
/obj/machinery/computer/med_data/laptop,
@@ -100976,11 +94879,9 @@
/obj/structure/table/wood,
/obj/item/deck/cards,
/obj/item/deck/cards{
- pixel_x = 0;
pixel_y = 6
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "carpet"
},
/area/library/abandoned)
@@ -100989,7 +94890,6 @@
/obj/item/clipboard,
/obj/item/folder/red,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "carpet"
},
/area/library/abandoned)
@@ -100999,8 +94899,7 @@
},
/obj/machinery/alarm{
dir = 8;
- pixel_x = 25;
- pixel_y = 0
+ pixel_x = 25
},
/turf/simulated/floor/plating,
/area/library/abandoned)
@@ -101018,8 +94917,7 @@
"dHy" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -101040,12 +94938,10 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
@@ -101058,8 +94954,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -101084,13 +94979,11 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plating,
/area/maintenance/fpmaint2)
@@ -101102,8 +94995,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -101120,8 +95012,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -101137,8 +95028,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -101197,8 +95087,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -101242,8 +95131,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/maintenance/fpmaint2)
@@ -101268,8 +95156,7 @@
/obj/item/radio,
/obj/item/crowbar,
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 10;
@@ -101301,8 +95188,7 @@
/area/bridge)
"dHQ" = (
/obj/machinery/newscaster{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/structure/closet/secure_closet,
/obj/item/storage/secure/briefcase,
@@ -101328,11 +95214,9 @@
"dHS" = (
/obj/structure/disposalpipe/junction{
dir = 2;
- icon_state = "pipe-j2";
- tag = "icon-pipe-j2"
+ icon_state = "pipe-j2"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "escape"
},
/area/hallway/primary/aft)
@@ -101341,7 +95225,6 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "escape"
},
/area/hallway/primary/aft)
@@ -101351,7 +95234,6 @@
},
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "escape"
},
/area/hallway/primary/aft)
@@ -101378,34 +95260,24 @@
},
/obj/structure/sink{
dir = 8;
- icon_state = "sink";
pixel_x = -12;
pixel_y = 2
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/medical/surgery1)
+/area/medical/surgery)
"dHZ" = (
-/obj/structure/chair/office/dark{
- dir = 4
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plating,
-/area/maintenance/auxsolarstarboard)
-"dIa" = (
-/obj/structure/cable,
-/obj/machinery/power/solar_control{
- id = "starboardsolar";
- name = "Aft Starboard Solar Control";
- track = 0
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ icon_state = "whiteblue"
},
-/obj/machinery/alarm{
- dir = 1;
- pixel_y = -25
- },
-/obj/effect/decal/warning_stripes/southeast,
-/turf/simulated/floor/plating,
-/area/maintenance/auxsolarstarboard)
+/area/medical/surgery1)
"dIb" = (
/obj/machinery/atmospherics/unary/portables_connector,
/obj/machinery/light/small{
@@ -101448,8 +95320,7 @@
/area/medical/virology)
"dIf" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/grille,
/turf/simulated/floor/plasteel{
@@ -101492,7 +95363,6 @@
network = list("Research","SS13")
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/medical/research)
@@ -101574,12 +95444,10 @@
/area/medical/virology)
"dIo" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/machinery/status_display{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -101612,8 +95480,7 @@
/area/library/abandoned)
"dIs" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "grimy"
@@ -101628,8 +95495,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
icon_state = "grimy"
@@ -101673,8 +95539,7 @@
/area/maintenance/fpmaint2)
"dIB" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/turf/simulated/floor/plasteel{
icon_state = "neutral"
@@ -101694,8 +95559,7 @@
/area/medical/research)
"dID" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
@@ -101704,16 +95568,14 @@
/area/maintenance/fpmaint2)
"dIE" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/reagent_dispensers/watertank,
/turf/simulated/floor/plating,
/area/maintenance/fpmaint2)
"dIF" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/wall,
@@ -101727,8 +95589,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/door/airlock/maintenance,
/obj/effect/decal/warning_stripes/south,
@@ -101852,8 +95713,7 @@
req_access_txt = "39"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/medical/virology)
@@ -101865,8 +95725,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -101895,8 +95754,7 @@
dir = 1
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -101933,15 +95791,13 @@
/area/medical/virology)
"dJg" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/wall,
/area/medical/virology)
"dJh" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/light_switch{
pixel_x = -26;
@@ -101976,12 +95832,17 @@
},
/area/medical/virology)
"dJk" = (
-/obj/machinery/power/tracker,
-/obj/structure/cable,
-/turf/simulated/floor/plasteel/airless{
- icon_state = "solarpanel"
+/obj/structure/closet/secure_closet/medical3,
+/obj/machinery/door_control{
+ id = "surgeryobs1";
+ name = "Privacy Shutters Control";
+ pixel_y = 25
},
-/area/maintenance/auxsolarstarboard)
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "whitebluecorner"
+ },
+/area/medical/surgery)
"dJl" = (
/obj/structure/cable{
d2 = 4;
@@ -101990,8 +95851,7 @@
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/turf/simulated/floor/wood{
broken = 1;
@@ -102137,7 +95997,6 @@
/area/hallway/secondary/exit)
"dJC" = (
/obj/machinery/newscaster{
- pixel_x = 0;
pixel_y = 32
},
/obj/effect/decal/warning_stripes/north,
@@ -102158,8 +96017,7 @@
},
/obj/item/reagent_containers/dropper,
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
/area/medical/medbay)
"dJF" = (
@@ -102176,28 +96034,30 @@
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
/area/hallway/secondary/exit)
+"dJI" = (
+/obj/effect/decal/warning_stripes/northeast,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel,
+/area/security/securearmoury)
"dJM" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/structure/closet/secure_closet/medical3,
+/obj/machinery/door_control{
+ id = "surgeryobs2";
+ name = "Privacy Shutters Control";
+ pixel_y = 25
},
-/obj/structure/table/reinforced,
-/obj/item/retractor,
-/obj/item/hemostat,
-/obj/item/stack/medical/bruise_pack/advanced,
-/obj/item/bonesetter,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
-/area/medical/surgery)
+/area/medical/surgery2)
"dJO" = (
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner (WEST)"
+ icon_state = "whitebluecorner"
},
-/area/medical/surgery1)
+/area/medical/surgery)
"dJP" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/extinguisher_cabinet{
@@ -102325,8 +96185,7 @@
"dKd" = (
/obj/structure/table,
/obj/machinery/newscaster{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -102336,8 +96195,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/item/twohanded/required/kirbyplants,
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/machinery/firealarm{
dir = 4;
@@ -102409,7 +96267,6 @@
/obj/structure/table/wood,
/obj/item/paper_bin,
/obj/machinery/light_switch{
- pixel_x = 0;
pixel_y = 24
},
/turf/simulated/floor/plasteel{
@@ -102476,19 +96333,29 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8"
+ icon_state = "4-8";
+ tag = ""
},
-/obj/machinery/access_button{
- command = "cycle_exterior";
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 8;
frequency = 1379;
- master_tag = "solar_xeno_airlock";
- name = "exterior access button";
- pixel_x = -25;
- pixel_y = 25;
- req_access_txt = "13"
+ id_tag = "solar_xeno_pump"
},
-/obj/structure/lattice/catwalk,
-/turf/space,
+/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
+ id_tag = "solar_xeno_airlock";
+ pixel_y = 25;
+ req_access_txt = "13";
+ tag_airpump = "solar_xeno_pump";
+ tag_chamber_sensor = "solar_xeno_sensor";
+ tag_exterior_door = "solar_xeno_outer";
+ tag_interior_door = "solar_xeno_inner"
+ },
+/obj/machinery/airlock_sensor{
+ id_tag = "solar_xeno_sensor";
+ pixel_y = 32
+ },
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plating,
/area/maintenance/auxsolarstarboard)
"dKz" = (
/obj/effect/spawner/window/reinforced,
@@ -102530,9 +96397,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/vending/wallmed{
name = "Emergency NanoMed";
- pixel_x = -25;
- pixel_y = 0;
- req_access_txt = "0"
+ pixel_x = -25
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -102546,8 +96411,7 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/machinery/power/apc{
dir = 4;
@@ -102590,8 +96454,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -102601,8 +96464,7 @@
/obj/machinery/atmospherics/unary/vent_pump{
dir = 8;
external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
+ on = 1
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
@@ -102704,8 +96566,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -102755,7 +96616,6 @@
},
/obj/structure/sink{
dir = 8;
- icon_state = "sink";
pixel_x = -12;
pixel_y = 2
},
@@ -102781,10 +96641,7 @@
dir = 8
},
/obj/machinery/shower{
- dir = 8;
- icon_state = "shower";
- pixel_x = 0;
- tag = "icon-shower (WEST)"
+ dir = 8
},
/obj/effect/decal/warning_stripes/southwest,
/turf/simulated/floor/plasteel,
@@ -102795,7 +96652,6 @@
},
/obj/structure/sink{
dir = 8;
- icon_state = "sink";
pixel_x = -12;
pixel_y = 2
},
@@ -102809,8 +96665,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (WEST)"
+ icon_state = "whitegreen"
},
/area/medical/virology)
"dLf" = (
@@ -102831,7 +96686,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/item/radio/intercom{
dir = 4;
- name = "station intercom (General)";
pixel_x = 28
},
/obj/machinery/camera{
@@ -102840,8 +96694,7 @@
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (EAST)"
+ icon_state = "whitegreen"
},
/area/medical/virology)
"dLh" = (
@@ -102919,7 +96772,6 @@
/obj/structure/table,
/obj/item/radio/intercom{
dir = 8;
- name = "station intercom (General)";
pixel_x = -28
},
/turf/simulated/floor/plasteel{
@@ -102958,8 +96810,7 @@
/area/chapel/main)
"dLt" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "grimy"
@@ -102974,8 +96825,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/effect/landmark{
name = "lightsout"
@@ -102987,8 +96837,7 @@
"dLv" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
icon_state = "grimy"
@@ -103153,29 +97002,26 @@
/turf/simulated/floor/plasteel,
/area/hallway/secondary/exit)
"dLP" = (
-/obj/structure/cable,
-/obj/machinery/power/apc{
- dir = 2;
- name = "south bump";
- pixel_y = -24
+/obj/machinery/door/firedoor,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/camera{
- c_tag = "Medbay Surgery";
- dir = 1;
- network = list("SS13","Medical")
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/airlock/medical{
+ name = "Operating Theatre";
+ req_access_txt = "45"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/holosign/surgery{
+ id = "surgery2"
},
-/obj/structure/closet/crate/freezer,
-/obj/item/reagent_containers/iv_bag/blood/AMinus,
-/obj/item/reagent_containers/iv_bag/blood/APlus,
-/obj/item/reagent_containers/iv_bag/blood/BMinus,
-/obj/item/reagent_containers/iv_bag/blood/BPlus,
-/obj/item/reagent_containers/iv_bag/blood/OMinus,
-/obj/item/reagent_containers/iv_bag/blood/OPlus,
-/obj/machinery/iv_drip,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/medical/surgery)
+/area/medical/surgery2)
"dLQ" = (
/obj/structure/cable{
d1 = 1;
@@ -103219,8 +97065,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
+ dir = 5
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -103256,8 +97101,7 @@
"dLW" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -103309,7 +97153,6 @@
"dMc" = (
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/turf/simulated/floor/plasteel{
@@ -103346,22 +97189,18 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/camera{
c_tag = "Chapel Backroom";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/chapel/office)
"dMi" = (
-/obj/structure/table,
-/obj/item/reagent_containers/iv_bag/blood/random,
-/obj/item/reagent_containers/iv_bag/blood/random,
-/obj/item/reagent_containers/iv_bag/blood/random,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 8;
+ icon_state = "whiteblue"
},
-/area/medical/medbay)
+/area/medical/surgery1)
"dMj" = (
/turf/simulated/floor/plasteel{
dir = 4;
@@ -103398,8 +97237,7 @@
"dMo" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
@@ -103445,7 +97283,7 @@
"dMu" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/medical/surgery1)
+/area/medical/surgery)
"dMv" = (
/obj/structure/closet/emcloset,
/obj/effect/decal/warning_stripes/yellow/hollow,
@@ -103460,8 +97298,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (WEST)"
+ icon_state = "whitegreen"
},
/area/medical/virology)
"dMx" = (
@@ -103530,8 +97367,7 @@
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (EAST)"
+ icon_state = "whitegreen"
},
/area/medical/virology)
"dMA" = (
@@ -103567,8 +97403,7 @@
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -103588,8 +97423,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/disposalpipe/segment{
@@ -103613,8 +97447,7 @@
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/disposalpipe/segment{
dir = 2;
@@ -103627,8 +97460,7 @@
"dME" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 5;
@@ -103655,7 +97487,6 @@
department = "Virology";
departmentType = 3;
name = "Virology Requests Console";
- pixel_x = 0;
pixel_y = 30
},
/obj/effect/decal/warning_stripes/south,
@@ -103694,8 +97525,7 @@
/area/library/abandoned)
"dML" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/structure/table/wood,
/obj/item/folder,
@@ -103706,8 +97536,7 @@
/area/library/abandoned)
"dMM" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "wood"
@@ -103715,8 +97544,7 @@
/area/library/abandoned)
"dMN" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/wood{
broken = 1;
@@ -103725,11 +97553,9 @@
/area/library/abandoned)
"dMO" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/door/morgue{
- dir = 2;
name = "Occult Study"
},
/turf/simulated/floor/plasteel{
@@ -103738,8 +97564,7 @@
/area/library/abandoned)
"dMP" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- level = 1
+ dir = 9
},
/obj/effect/spawner/random_spawners/blood_maybe,
/turf/simulated/floor/plasteel{
@@ -103775,17 +97600,14 @@
"dMS" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/alarm{
dir = 8;
- pixel_x = 25;
- pixel_y = 0
+ pixel_x = 25
},
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -103919,9 +97741,7 @@
/area/medical/virology)
"dNl" = (
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitegreen";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whitegreen"
},
/area/medical/virology)
"dNm" = (
@@ -103946,8 +97766,7 @@
"dNo" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -103983,7 +97802,6 @@
"dNs" = (
/obj/structure/sink{
dir = 8;
- icon_state = "sink";
pixel_x = -12;
pixel_y = 2
},
@@ -104013,8 +97831,7 @@
/area/medical/virology)
"dNv" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
+ dir = 5
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -104033,7 +97850,6 @@
},
/obj/item/radio/intercom{
dir = 4;
- name = "station intercom (General)";
pixel_x = 28
},
/turf/simulated/floor/plasteel{
@@ -104121,8 +97937,7 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/newscaster{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -104207,7 +98022,6 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/obj/structure/cable{
@@ -104231,18 +98045,15 @@
"dNZ" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- icon_state = "whiteblue";
- tag = "icon-whiteblue"
+ icon_state = "whiteblue"
},
-/area/medical/surgery1)
+/area/medical/surgery)
"dOb" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
-/area/medical/surgery1)
+/area/medical/surgery)
"dOc" = (
/obj/structure/cable{
d1 = 1;
@@ -104285,8 +98096,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/turf/simulated/floor/plasteel{
dir = 5;
@@ -104301,8 +98111,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/door/airlock/medical{
name = "Virology";
@@ -104324,13 +98133,11 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (WEST)"
+ icon_state = "whitegreen"
},
/area/medical/virology)
"dOi" = (
@@ -104358,8 +98165,7 @@
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/landmark{
name = "blobstart"
@@ -104404,8 +98210,7 @@
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (EAST)"
+ icon_state = "whitegreen"
},
/area/medical/virology)
"dOm" = (
@@ -104453,8 +98258,7 @@
"dOq" = (
/obj/structure/chair/wood,
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -104476,12 +98280,10 @@
"dOt" = (
/obj/structure/chair/wood,
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/machinery/newscaster{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/turf/simulated/floor/plasteel{
icon_state = "chapel"
@@ -104501,8 +98303,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/item/twohanded/required/kirbyplants,
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
@@ -104562,12 +98363,10 @@
"dOG" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -104607,12 +98406,10 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/structure/sink{
dir = 8;
- icon_state = "sink";
pixel_x = -12;
pixel_y = 2
},
@@ -104641,9 +98438,7 @@
pixel_y = -24
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitegreen";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whitegreen"
},
/area/medical/virology)
"dOM" = (
@@ -104665,14 +98460,12 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/structure/table/glass,
/obj/item/paper_bin,
/obj/machinery/newscaster{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/machinery/camera{
c_tag = "Mining Dock External";
@@ -104692,8 +98485,7 @@
/area/maintenance/fpmaint2)
"dOP" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
@@ -104709,8 +98501,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- level = 1
+ dir = 9
},
/turf/simulated/floor/plating,
/area/maintenance/fpmaint2)
@@ -104751,8 +98542,7 @@
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -104797,8 +98587,7 @@
"dOZ" = (
/obj/machinery/alarm{
dir = 8;
- pixel_x = 25;
- pixel_y = 0
+ pixel_x = 25
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -104824,8 +98613,7 @@
/area/hallway/secondary/exit)
"dPc" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -104840,8 +98628,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -104850,8 +98637,7 @@
/area/hallway/secondary/exit)
"dPe" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -104860,8 +98646,7 @@
/area/hallway/secondary/exit)
"dPf" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- level = 1
+ dir = 9
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -104878,8 +98663,7 @@
/area/medical/virology)
"dPj" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
@@ -104896,8 +98680,7 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10;
- initialize_directions = 10;
- level = 1
+ initialize_directions = 10
},
/obj/structure/table,
/obj/item/crowbar,
@@ -104905,9 +98688,7 @@
/obj/item/restraints/handcuffs/cable,
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitegreen";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whitegreen"
},
/area/medical/virology)
"dPl" = (
@@ -104930,13 +98711,17 @@
/area/medical/virology)
"dPn" = (
/obj/structure/cable{
+ d1 = 1;
d2 = 2;
- icon_state = "0-2";
- pixel_y = 0
+ icon_state = "1-2"
},
-/obj/structure/lattice/catwalk,
-/turf/space,
-/area/maintenance/auxsolarstarboard)
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel{
+ icon_state = "whiteblue"
+ },
+/area/medical/surgery2)
"dPo" = (
/obj/structure/bed/roller,
/obj/effect/decal/warning_stripes/yellow/hollow,
@@ -105104,12 +98889,10 @@
/area/maintenance/fpmaint2)
"dPD" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/item/radio/intercom{
dir = 8;
- name = "station intercom (General)";
pixel_x = -28
},
/turf/simulated/floor/plasteel{
@@ -105126,8 +98909,7 @@
/obj/machinery/atmospherics/unary/vent_pump{
dir = 8;
external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
+ on = 1
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/crema_switch{
@@ -105180,8 +98962,7 @@
"dPK" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -105198,8 +98979,7 @@
"dPM" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel,
@@ -105229,8 +99009,7 @@
/obj/item/bedsheet/medical,
/turf/simulated/floor/plasteel{
dir = 9;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (NORTHWEST)"
+ icon_state = "whitegreen"
},
/area/medical/virology)
"dPV" = (
@@ -105240,8 +99019,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (NORTHEAST)"
+ icon_state = "whitegreen"
},
/area/medical/virology)
"dPW" = (
@@ -105251,8 +99029,7 @@
},
/turf/simulated/floor/plasteel{
dir = 9;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (NORTHWEST)"
+ icon_state = "whitegreen"
},
/area/medical/virology)
"dPX" = (
@@ -105261,8 +99038,7 @@
/obj/item/bedsheet/medical,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (NORTHEAST)"
+ icon_state = "whitegreen"
},
/area/medical/virology)
"dPY" = (
@@ -105307,8 +99083,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/landmark/start{
name = "Coroner"
@@ -105352,7 +99127,6 @@
/obj/structure/barricade/wooden,
/obj/machinery/door/airlock/command/glass{
name = "Auxiliary E.V.A.";
- req_access_txt = "0";
req_one_access_txt = "18"
},
/obj/effect/decal/warning_stripes/south,
@@ -105362,7 +99136,6 @@
/obj/structure/morgue,
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/turf/simulated/floor/plasteel{
@@ -105378,13 +99151,11 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/machinery/camera{
c_tag = "Cremator";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -105422,7 +99193,6 @@
/obj/structure/barricade/wooden,
/obj/machinery/door/airlock/command/glass{
name = "Auxiliary E.V.A.";
- req_access_txt = "0";
req_one_access_txt = "18"
},
/obj/effect/decal/warning_stripes/south,
@@ -105472,11 +99242,9 @@
},
/obj/structure/cable{
d2 = 2;
- icon_state = "0-2";
- pixel_y = 0
+ icon_state = "0-2"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/aft)
@@ -105494,13 +99262,21 @@
/turf/simulated/floor/plasteel,
/area/hallway/primary/aft)
"dQu" = (
-/obj/structure/table,
-/obj/item/reagent_containers/iv_bag/blood/random,
-/obj/item/reagent_containers/iv_bag/blood/random,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/item/bonegel{
+ pixel_x = 6;
+ pixel_y = 6
},
-/area/medical/medbay)
+/obj/item/cautery,
+/obj/item/FixOVein{
+ pixel_x = -6;
+ pixel_y = 6
+ },
+/obj/structure/table/tray,
+/obj/item/scalpel,
+/turf/simulated/floor/plasteel{
+ icon_state = "whiteblue"
+ },
+/area/medical/surgery)
"dQv" = (
/obj/structure/cable{
d1 = 4;
@@ -105519,7 +99295,7 @@
icon_state = "2-4";
tag = ""
},
-/obj/machinery/smartfridge/secure/chemistry/virology,
+/obj/machinery/smartfridge/secure/chemistry/virology/preloaded,
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
/area/medical/virology)
@@ -105531,8 +99307,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -105547,8 +99322,7 @@
/obj/machinery/iv_drip,
/turf/simulated/floor/plasteel{
dir = 10;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (SOUTHWEST)"
+ icon_state = "whitegreen"
},
/area/medical/virology)
"dQy" = (
@@ -105558,8 +99332,7 @@
},
/turf/simulated/floor/plasteel{
dir = 6;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (SOUTHEAST)"
+ icon_state = "whitegreen"
},
/area/medical/virology)
"dQz" = (
@@ -105569,8 +99342,7 @@
},
/turf/simulated/floor/plasteel{
dir = 10;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (SOUTHWEST)"
+ icon_state = "whitegreen"
},
/area/medical/virology)
"dQA" = (
@@ -105580,8 +99352,7 @@
/obj/machinery/iv_drip,
/turf/simulated/floor/plasteel{
dir = 6;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (SOUTHEAST)"
+ icon_state = "whitegreen"
},
/area/medical/virology)
"dQB" = (
@@ -105624,9 +99395,7 @@
/obj/effect/decal/warning_stripes/yellow,
/mob/living/carbon/human/monkey,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitegreen";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whitegreen"
},
/area/medical/virology)
"dQH" = (
@@ -105641,8 +99410,7 @@
/obj/item/reagent_containers/dropper,
/obj/machinery/alarm{
dir = 4;
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
@@ -105663,8 +99431,7 @@
icon_state = "0-8"
},
/obj/machinery/power/terminal{
- dir = 1;
- icon_state = "term"
+ dir = 1
},
/obj/effect/landmark{
name = "blobstart"
@@ -105703,9 +99470,7 @@
id_tag = "robotics_solar_pump"
},
/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
- frequency = 1379;
id_tag = "robotics_solar_airlock";
- pixel_x = 0;
pixel_y = -25;
req_access_txt = "13";
tag_airpump = "robotics_solar_pump";
@@ -105714,7 +99479,6 @@
tag_interior_door = "robotics_solar_inner"
},
/obj/machinery/airlock_sensor{
- frequency = 1379;
id_tag = "robotics_solar_sensor";
pixel_x = 12;
pixel_y = -25
@@ -105729,8 +99493,7 @@
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- level = 1
+ dir = 9
},
/turf/simulated/floor/plating,
/area/maintenance/fpmaint2)
@@ -105784,8 +99547,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 9;
- icon_state = "intact"
+ dir = 9
},
/obj/machinery/access_button{
command = "cycle_interior";
@@ -105836,8 +99598,7 @@
/area/chapel/office)
"dQV" = (
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/obj/structure/extinguisher_cabinet{
pixel_x = -28
@@ -105884,8 +99645,7 @@
"dRa" = (
/obj/item/twohanded/required/kirbyplants,
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "chapel"
@@ -105922,8 +99682,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/door/airlock/engineering{
name = "Aft Port Solar Access";
@@ -106001,7 +99760,6 @@
/obj/structure/table/reinforced,
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/obj/item/stack/cable_coil/random,
@@ -106022,8 +99780,7 @@
/obj/structure/cable,
/obj/machinery/power/solar_control{
id = "portsolar";
- name = "Aft Port Solar Control";
- track = 0
+ name = "Aft Port Solar Control"
},
/obj/effect/decal/warning_stripes/southwest,
/turf/simulated/floor/plating,
@@ -106039,7 +99796,6 @@
"dRq" = (
/obj/structure/cable,
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
@@ -106056,8 +99812,7 @@
/obj/item/clothing/suit/storage/hazardvest,
/obj/item/clothing/mask/breath,
/obj/machinery/newscaster{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -106098,18 +99853,20 @@
},
/area/chapel/main)
"dRx" = (
-/obj/machinery/camera{
- c_tag = "Aft Starboard Solars"
+/obj/structure/table/glass,
+/obj/item/circular_saw,
+/obj/item/bonesetter{
+ pixel_x = 5;
+ pixel_y = 5
},
-/obj/machinery/atmospherics/unary/portables_connector,
-/obj/machinery/portable_atmospherics/canister/air,
-/obj/effect/decal/warning_stripes/northeast,
-/turf/simulated/floor/plating,
-/area/maintenance/auxsolarstarboard)
+/obj/item/surgicaldrill,
+/turf/simulated/floor/plasteel{
+ icon_state = "whiteblue"
+ },
+/area/medical/surgery2)
"dRy" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
@@ -106120,8 +99877,7 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -106168,8 +99924,7 @@
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- level = 1
+ dir = 9
},
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
@@ -106229,7 +99984,6 @@
tag = ""
},
/obj/machinery/door/morgue{
- dir = 2;
name = "Chapel Morgue";
req_access_txt = "22"
},
@@ -106239,7 +99993,6 @@
/area/chapel/office)
"dRN" = (
/obj/machinery/door/morgue{
- dir = 2;
name = "Confession Booth"
},
/turf/simulated/floor/plasteel{
@@ -106289,8 +100042,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -106309,8 +100061,7 @@
"dRU" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -106380,20 +100131,9 @@
/turf/simulated/floor/plasteel,
/area/maintenance/fpmaint2)
"dSd" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/door/airlock/medical/glass{
- id_tag = null;
- name = "Patient Room";
- req_access_txt = "5"
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "cmo"
- },
-/area/medical/medbay)
+/obj/structure/sign/greencross,
+/turf/simulated/wall,
+/area/medical/surgery1)
"dSe" = (
/obj/structure/cable{
d1 = 1;
@@ -106411,7 +100151,6 @@
dir = 4
},
/obj/machinery/newscaster{
- pixel_x = 0;
pixel_y = -32
},
/turf/simulated/floor/plasteel{
@@ -106424,7 +100163,6 @@
dir = 8
},
/obj/machinery/newscaster{
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/plasteel{
@@ -106433,7 +100171,6 @@
/area/chapel/office)
"dSh" = (
/obj/machinery/door/morgue{
- dir = 2;
name = "Confession Booth (Chaplain)";
req_access_txt = "22"
},
@@ -106448,8 +100185,7 @@
/area/chapel/office)
"dSj" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/machinery/light{
dir = 1;
@@ -106503,8 +100239,7 @@
/area/maintenance/fpmaint2)
"dSo" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
@@ -106534,16 +100269,14 @@
/area/chapel/office)
"dSs" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/effect/decal/warning_stripes/southwest,
/turf/simulated/floor/plasteel,
/area/hallway/secondary/exit)
"dSt" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
@@ -106556,8 +100289,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/warning_stripes/south,
@@ -106577,8 +100309,7 @@
/area/maintenance/fpmaint2)
"dSB" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
},
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
@@ -106591,20 +100322,15 @@
/obj/machinery/vending/wallmed{
layer = 3.3;
name = "Emergency NanoMed";
- pixel_x = 28;
- pixel_y = 0;
- req_access_txt = "0"
+ pixel_x = 28
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
-/area/medical/surgery1)
+/area/medical/surgery)
"dSD" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/warning_stripes/south,
@@ -106665,9 +100391,7 @@
"dSJ" = (
/obj/item/radio/intercom{
dir = 1;
- name = "station intercom (General)";
- pixel_x = -28;
- pixel_y = 0
+ pixel_x = -28
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -106834,8 +100558,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/research/glass{
@@ -106892,8 +100615,7 @@
/area/security/checkpoint)
"dTj" = (
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/obj/structure/reagent_dispensers/watertank,
/turf/simulated/floor/plating,
@@ -106913,8 +100635,8 @@
},
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/security/glass{
- name = "Security Checkpoint";
- req_access_txt = "1"
+ name = "Holding Area";
+ req_access_txt = "63"
},
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
@@ -106932,7 +100654,6 @@
/obj/item/flashlight/lamp,
/obj/item/radio/intercom{
dir = 8;
- name = "station intercom (General)";
pixel_x = -28
},
/turf/simulated/floor/plasteel{
@@ -106961,7 +100682,6 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/turf/simulated/floor/plasteel{
@@ -106971,8 +100691,7 @@
"dTp" = (
/obj/item/twohanded/required/kirbyplants,
/obj/machinery/camera{
- c_tag = "Chaplain's Quarters";
- network = list("SS13")
+ c_tag = "Chaplain's Quarters"
},
/turf/simulated/floor/plasteel{
icon_state = "grimy"
@@ -107084,7 +100803,6 @@
master_tag = "viro_lab_airlock_control";
name = "Virology Lab Access Button";
pixel_x = -24;
- pixel_y = 0;
req_access_txt = "39"
},
/turf/simulated/floor/plasteel{
@@ -107135,9 +100853,7 @@
},
/obj/item/folder/red,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "redfull"
},
/area/security/checkpoint)
"dTD" = (
@@ -107206,8 +100922,7 @@
},
/obj/structure/cable{
d2 = 2;
- icon_state = "0-2";
- pixel_y = 0
+ icon_state = "0-2"
},
/turf/simulated/floor/plasteel/airless{
icon_state = "solarpanel"
@@ -107248,8 +100963,7 @@
/area/chapel/office)
"dUb" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "grimy"
@@ -107257,8 +100971,7 @@
/area/chapel/office)
"dUc" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -107266,8 +100979,7 @@
/area/chapel/office)
"dUd" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/door/airlock/centcom{
name = "Chapel Office";
@@ -107280,8 +100992,7 @@
/area/chapel/office)
"dUe" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
},
/turf/simulated/floor/plasteel{
icon_state = "grimy"
@@ -107305,8 +101016,7 @@
/area/chapel/office)
"dUh" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/item/paper_bin,
/obj/structure/table/wood,
@@ -107331,14 +101041,12 @@
},
/obj/structure/table/reinforced,
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/obj/item/crowbar,
/obj/item/wrench,
@@ -107617,7 +101325,6 @@
"dUN" = (
/obj/machinery/alarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/obj/machinery/light_switch{
@@ -107632,7 +101339,7 @@
"dUO" = (
/obj/structure/table/wood,
/obj/item/clipboard,
-/obj/item/toy/figure/chaplain,
+/obj/item/toy/figure/crew/chaplain,
/obj/machinery/firealarm{
dir = 4;
pixel_x = -28
@@ -107653,12 +101360,10 @@
"dUQ" = (
/obj/structure/table/wood,
/obj/machinery/newscaster{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/item/storage/fancy/candle_box{
pixel_x = 2;
@@ -107669,8 +101374,7 @@
/area/chapel/office)
"dUR" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- level = 1
+ dir = 9
},
/obj/structure/chair/office/dark{
dir = 1
@@ -107683,8 +101387,7 @@
"dUS" = (
/obj/structure/reagent_dispensers/fueltank,
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/effect/decal/warning_stripes/southeast,
/turf/simulated/floor/plasteel,
@@ -107709,7 +101412,6 @@
},
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "red"
},
/area/security/checkpoint)
@@ -107745,9 +101447,7 @@
},
/obj/machinery/computer/secure_data,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "redfull"
},
/area/security/checkpoint)
"dUX" = (
@@ -107796,7 +101496,6 @@
dir = 1
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "red"
},
/area/security/checkpoint)
@@ -107821,7 +101520,6 @@
/obj/item/restraints/handcuffs,
/obj/item/flash,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "red"
},
/area/security/checkpoint)
@@ -107842,7 +101540,6 @@
dir = 1
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "red"
},
/area/security/checkpoint)
@@ -107894,8 +101591,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/door/airlock/maintenance,
/turf/simulated/floor/plasteel,
@@ -107930,8 +101626,7 @@
/area/security/checkpoint)
"dVv" = (
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/obj/machinery/ai_status_display{
pixel_x = -32
@@ -108037,8 +101732,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/warning_stripes/yellow,
@@ -108073,8 +101767,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/research/glass{
@@ -108113,8 +101806,7 @@
/obj/machinery/atmospherics/unary/vent_pump{
dir = 4;
external_pressure_bound = 101;
- on = 1;
- pressure_checks = 1
+ on = 1
},
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
@@ -108179,8 +101871,6 @@
/obj/machinery/door_control{
id = "xeno1";
name = "Containment Control";
- pixel_x = 0;
- pixel_y = 0;
req_access_txt = "55"
},
/obj/structure/window/reinforced{
@@ -108214,7 +101904,6 @@
},
/obj/machinery/alarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/obj/effect/decal/warning_stripes/yellow,
@@ -108245,8 +101934,7 @@
dir = 8
},
/obj/structure/sign/poster/contraband/random{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/structure/chair/stool/bar,
/turf/simulated/floor/plasteel{
@@ -108278,8 +101966,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden{
dir = 4
@@ -108295,8 +101982,7 @@
id_tag = "arrival_south_inner";
locked = 1;
name = "Arrivals External Access";
- req_access = null;
- req_access_txt = "0"
+ req_access = null
},
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
@@ -108328,21 +102014,16 @@
id_tag = "arrival_south_pump"
},
/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
- frequency = 1379;
id_tag = "arrival_south_airlock";
pixel_x = 25;
- pixel_y = 0;
- req_access_txt = "0";
tag_airpump = "arrival_south_pump";
tag_chamber_sensor = "arrival_south_sensor";
tag_exterior_door = "arrival_south_outer";
tag_interior_door = "arrival_south_inner"
},
/obj/machinery/airlock_sensor{
- frequency = 1379;
id_tag = "engineering_west_sensor";
- pixel_x = -24;
- pixel_y = 0
+ pixel_x = -24
},
/obj/machinery/light/small{
dir = 4;
@@ -108358,8 +102039,7 @@
id_tag = "arrival_south_outer";
locked = 1;
name = "Arrivals External Access";
- req_access = null;
- req_access_txt = "0"
+ req_access = null
},
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
@@ -108404,7 +102084,6 @@
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
@@ -108503,8 +102182,7 @@
icon_state = "pipe-c"
},
/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 9;
- icon_state = "intact"
+ dir = 9
},
/turf/simulated/floor/plating/airless,
/area/medical/virology)
@@ -108544,8 +102222,7 @@
/area/medical/virology)
"dXc" = (
/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
- dir = 10;
- icon_state = "intact"
+ dir = 10
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -108574,7 +102251,6 @@
/obj/item/reagent_containers/dropper,
/obj/item/radio/intercom{
dir = 1;
- name = "station intercom (General)";
pixel_y = -28
},
/obj/effect/decal/warning_stripes/yellow,
@@ -108601,8 +102277,7 @@
/area/medical/virology)
"dXi" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/turf/simulated/floor/plasteel{
dir = 5;
@@ -108623,8 +102298,7 @@
on = 1
},
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/obj/machinery/ai_status_display{
pixel_x = -32
@@ -108671,18 +102345,16 @@
/area/maintenance/fpmaint2)
"dXp" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/camera{
c_tag = "Medbay Hallway East";
dir = 1;
network = list("SS13","Medical")
},
+/obj/machinery/light,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"dXq" = (
@@ -108701,8 +102373,7 @@
"dXr" = (
/obj/item/twohanded/required/kirbyplants,
/obj/structure/noticeboard{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/machinery/camera{
c_tag = "Robotics Lab";
@@ -108724,8 +102395,7 @@
/area/maintenance/fpmaint2)
"dXu" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/machinery/atmospherics/unary/portables_connector{
dir = 8
@@ -108755,29 +102425,22 @@
},
/area/medical/research)
"dXw" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/item/radio/intercom{
- dir = 1;
- name = "station intercom (General)";
- pixel_y = -28
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/machinery/light,
-/obj/machinery/camera{
- c_tag = "Medbay Exam Room One";
- dir = 1;
- network = list("Medical","SS13")
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "cmo"
+ icon_state = "showroomfloor"
},
-/area/medical/medbay)
+/area/medical/surgery1)
"dXx" = (
/obj/item/twohanded/required/kirbyplants,
/obj/machinery/camera{
c_tag = "Chapel West";
dir = 4;
- network = list("SS13");
pixel_y = -22
},
/turf/simulated/floor/plasteel{
@@ -108787,8 +102450,7 @@
/area/chapel/main)
"dXy" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- level = 1
+ dir = 9
},
/obj/structure/table/wood,
/obj/machinery/camera{
@@ -108804,7 +102466,6 @@
"dXz" = (
/obj/item/radio/intercom{
dir = 1;
- name = "station intercom (General)";
pixel_y = -28
},
/obj/machinery/camera{
@@ -108833,7 +102494,6 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/obj/machinery/camera{
@@ -108895,14 +102555,12 @@
/area/maintenance/portsolar)
"dXI" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/machinery/light,
/obj/machinery/camera{
c_tag = "Chapel South";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
@@ -108911,8 +102569,7 @@
/area/chapel/main)
"dXJ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/alarm{
dir = 1;
@@ -108932,8 +102589,7 @@
/obj/machinery/portable_atmospherics/canister/air,
/obj/machinery/firealarm{
dir = 8;
- pixel_x = -26;
- pixel_y = 0
+ pixel_x = -26
},
/obj/machinery/light_switch{
pixel_x = -24;
@@ -108961,7 +102617,6 @@
/obj/machinery/light,
/obj/machinery/firealarm{
dir = 1;
- pixel_x = 0;
pixel_y = -24
},
/obj/machinery/camera{
@@ -108977,13 +102632,12 @@
"dXS" = (
/obj/structure/cable,
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
/obj/structure/closet/secure_closet/medical2,
/turf/simulated/floor/plating,
-/area/medical/surgery1)
+/area/medical/surgery)
"dXT" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/light/small,
@@ -108995,7 +102649,7 @@
/obj/item/reagent_containers/iv_bag/blood/random,
/obj/item/reagent_containers/iv_bag/blood/random,
/turf/simulated/floor/plating,
-/area/medical/surgery1)
+/area/medical/surgery)
"dXU" = (
/obj/structure/table/reinforced,
/obj/item/storage/firstaid/regular,
@@ -109005,7 +102659,7 @@
pixel_y = -32
},
/turf/simulated/floor/plasteel,
-/area/medical/surgery1)
+/area/medical/surgery)
"dXV" = (
/obj/structure/table/wood,
/turf/simulated/floor/plasteel{
@@ -109041,8 +102695,7 @@
master_tag = "sw_maint2_airlock";
name = "exterior access button";
pixel_x = 24;
- pixel_y = 24;
- req_access_txt = "0"
+ pixel_y = 24
},
/obj/structure/lattice/catwalk,
/turf/space,
@@ -109059,22 +102712,22 @@
pixel_y = -32
},
/turf/simulated/floor/plasteel,
-/area/medical/surgery1)
+/area/medical/surgery)
"dXZ" = (
/obj/structure/table/reinforced,
/obj/structure/bedsheetbin,
/obj/item/gun/syringe,
/obj/machinery/light/small,
/turf/simulated/floor/plasteel,
-/area/medical/surgery1)
+/area/medical/surgery)
"dYa" = (
/obj/effect/spawner/random_spawners/wall_rusted_maybe,
/turf/simulated/wall,
-/area/medical/surgery1)
+/area/medical/surgery)
"dYb" = (
/obj/structure/table/glass,
/obj/item/clipboard,
-/obj/item/toy/figure/geneticist,
+/obj/item/toy/figure/crew/geneticist,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "whitepurplecorner"
@@ -109168,14 +102821,12 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (EAST)"
+ icon_state = "whitepurple"
},
/area/medical/genetics)
"dYm" = (
@@ -109314,12 +102965,10 @@
req_access_txt = "39"
},
/obj/effect/decal/warning_stripes/yellow/partial{
- dir = 1;
- icon_state = "3"
+ dir = 1
},
/obj/effect/decal/warning_stripes/arrow{
- dir = 1;
- icon_state = "4"
+ dir = 1
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -109471,8 +103120,7 @@
"dYR" = (
/obj/structure/cable{
d2 = 2;
- icon_state = "0-2";
- pixel_y = 0
+ icon_state = "0-2"
},
/obj/structure/lattice/catwalk,
/turf/space,
@@ -109481,8 +103129,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/structure/lattice/catwalk,
/turf/space,
@@ -109495,8 +103142,7 @@
/obj/item/storage/fancy/crayons,
/obj/machinery/camera{
c_tag = "Chaplain's Office";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/obj/machinery/requests_console{
department = "Chapel";
@@ -109516,37 +103162,6 @@
icon_state = "dark"
},
/area/crew_quarters/chief)
-"dYW" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/table/reinforced,
-/obj/item/folder/red,
-/obj/item/pen,
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/door/window/brigdoor{
- dir = 2;
- name = "Warden's Desk";
- req_access_txt = "3"
- },
-/obj/machinery/door/window/brigdoor{
- dir = 1;
- name = "Warden's Desk";
- req_access_txt = "3"
- },
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
- },
-/area/security/warden)
"dZi" = (
/obj/docking_port/stationary{
dir = 4;
@@ -109579,9 +103194,7 @@
"dZP" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "redfull"
},
/area/maintenance/fsmaint)
"dZQ" = (
@@ -109619,9 +103232,7 @@
/obj/structure/table,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "redfull"
},
/area/maintenance/fsmaint)
"dZV" = (
@@ -109639,15 +103250,414 @@
/obj/machinery/blackbox_recorder,
/turf/simulated/floor/bluegrid,
/area/tcommsat/chamber)
+"eha" = (
+/obj/machinery/iv_drip,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/structure/closet/crate/freezer/iv_storage,
+/turf/simulated/floor/plasteel{
+ icon_state = "showroomfloor"
+ },
+/area/medical/surgery1)
+"ehq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/medical/medbay)
+"ejA" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/plasteel,
+/area/security/warden)
+"ekR" = (
+/obj/structure/table,
+/obj/item/pen,
+/obj/item/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/turf/simulated/floor/plasteel,
+/area/security/permasolitary)
+"emr" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/plating,
+/area/security/prisonershuttle)
+"eqc" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/plasteel,
+/area/security/permasolitary)
+"eqY" = (
+/obj/structure/closet/firecloset,
+/obj/item/crowbar/red,
+/turf/simulated/floor/plating,
+/area/maintenance/starboard)
+"esa" = (
+/obj/structure/cable,
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/machinery/camera{
+ c_tag = "Security Holding Room";
+ dir = 1;
+ network = list("SS13","Security")
+ },
+/obj/structure/chair{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "red"
+ },
+/area/security/prisonershuttle)
+"esj" = (
+/obj/effect/decal/warning_stripes/northwest,
+/turf/simulated/floor/plasteel,
+/area/security/securearmoury)
+"eud" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/plasteel,
+/area/security/permasolitary)
+"ewF" = (
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/structure/lattice/catwalk,
+/turf/space,
+/area/maintenance/auxsolarstarboard)
+"exL" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralcorner"
+ },
+/area/hallway/primary/central)
+"ezR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plasteel{
+ icon_state = "neutral"
+ },
+/area/maintenance/starboard)
+"eCs" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel,
+/area/security/permabrig)
+"eDh" = (
+/obj/structure/rack,
+/obj/item/clothing/suit/armor/riot,
+/obj/item/clothing/suit/armor/riot,
+/obj/item/clothing/suit/armor/riot,
+/obj/item/clothing/head/helmet/riot,
+/obj/item/clothing/head/helmet/riot,
+/obj/item/clothing/head/helmet/riot,
+/obj/item/shield/riot,
+/obj/item/shield/riot,
+/obj/item/shield/riot,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "vault"
+ },
+/area/security/securearmoury)
+"eLI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/security/brig)
+"eNm" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/command/glass{
+ name = "Corporate Lounge";
+ req_one_access_txt = "19"
+ },
+/turf/simulated/floor/carpet,
+/area/assembly/showroom)
+"eNt" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/plasteel,
+/area/security/seceqstorage)
+"eNI" = (
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "barber"
+ },
+/area/security/permabrig)
+"ePS" = (
+/obj/structure/lattice,
+/turf/simulated/wall/r_wall,
+/area/security/securearmoury)
+"eQg" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/machinery/biogenerator,
+/turf/simulated/floor/plasteel,
+/area/security/permabrig)
+"eQh" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "wood"
+ },
+/area/crew_quarters/theatre)
+"eSe" = (
+/obj/machinery/door/airlock/medical{
+ name = "Operating Theatre Storage";
+ req_access_txt = "45"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "showroomfloor"
+ },
+/area/medical/surgery2)
+"eSX" = (
+/obj/item/twohanded/required/kirbyplants,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "redcorner"
+ },
+/area/hallway/primary/starboard)
+"eWX" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel,
+/area/security/warden)
"eYL" = (
/obj/effect/decal/warning_stripes/west,
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry)
+"faB" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8";
+ tag = ""
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/effect/decal/warning_stripes/east,
+/obj/effect/decal/warning_stripes/west,
+/obj/machinery/door/airlock/security{
+ name = "Armory";
+ req_access = null;
+ req_access_txt = "3"
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plasteel,
+/area/security/warden)
+"fcg" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable,
+/turf/simulated/floor/plating,
+/area/security/permabrig)
+"fdI" = (
+/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "redcorner"
+ },
+/area/security/permasolitary)
+"feV" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/hydroponics/constructable,
+/obj/item/seeds/chili,
+/obj/item/seeds/chili,
+/turf/simulated/floor/plasteel,
+/area/security/permabrig)
+"fhF" = (
+/turf/space,
+/area/shuttle/gamma/station)
+"fjJ" = (
+/obj/machinery/camera{
+ c_tag = "Security Armory";
+ dir = 1;
+ network = list("SS13","Security")
+ },
+/obj/effect/decal/warning_stripes/east,
+/turf/simulated/floor/plasteel,
+/area/security/securearmoury)
+"fou" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/unary/vent_pump{
+ dir = 1;
+ on = 1
+ },
+/obj/effect/landmark{
+ name = "xeno_spawn";
+ pixel_x = -1
+ },
+/turf/simulated/floor/wood{
+ broken = 1;
+ icon_state = "wood-broken"
+ },
+/area/security/detectives_office)
+"fox" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/recharger,
+/obj/structure/table/reinforced,
+/obj/item/key/security,
+/obj/machinery/door_control{
+ id = "Secure Armory";
+ name = "Secure Armory Shutter Control";
+ pixel_x = 7;
+ pixel_y = -28;
+ req_access_txt = "3"
+ },
+/obj/effect/decal/warning_stripes/northeast,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel,
+/area/security/securearmoury)
+"frI" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel,
+/area/security/seceqstorage)
+"fzQ" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Secure Gate";
+ name = "Security Blast Door";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/security/brig)
"fBl" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 5
@@ -109657,7 +103667,6 @@
icon_state = "0-4"
},
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
@@ -109665,12 +103674,336 @@
icon_state = "dark"
},
/area/tcommsat/chamber)
+"fDE" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/plating,
+/area/security/warden)
+"fEr" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/effect/decal/warning_stripes/north,
+/turf/simulated/floor/plasteel,
+/area/security/securearmoury)
+"fEF" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/item/grenade/barrier,
+/obj/item/grenade/barrier,
+/obj/item/grenade/barrier,
+/obj/item/grenade/barrier,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "vault"
+ },
+/area/security/securearmoury)
+"fFd" = (
+/obj/structure/chair/stool,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "barber"
+ },
+/area/security/permabrig)
+"fGG" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/access_button{
+ command = "cycle_exterior";
+ frequency = 1379;
+ master_tag = "solar_xeno_airlock";
+ name = "exterior access button";
+ pixel_x = -25;
+ pixel_y = 25;
+ req_access_txt = "13"
+ },
+/obj/structure/lattice/catwalk,
+/turf/space,
+/area/maintenance/auxsolarstarboard)
+"fHe" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/window/brigdoor{
+ dir = 1;
+ name = "Security Checkpoint";
+ req_access_txt = "1"
+ },
+/obj/machinery/door/window/brigdoor{
+ dir = 3;
+ name = "Security Checkpoint";
+ req_access_txt = "1"
+ },
+/obj/item/folder/red,
+/obj/item/folder/red,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Secure Gate";
+ name = "Security Blast Door";
+ opacity = 0
+ },
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "redcorner"
+ },
+/area/security/brig)
+"fJA" = (
+/obj/structure/table/wood,
+/obj/item/storage/fancy/cigarettes/cigpack_uplift,
+/obj/item/storage/fancy/cigarettes/cigpack_carp,
+/obj/item/lighter/zippo,
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/security/detectives_office)
+"fPC" = (
+/obj/structure/table/reinforced,
+/obj/item/flash,
+/obj/item/restraints/handcuffs,
+/obj/machinery/light,
+/obj/item/radio/intercom{
+ dir = 8;
+ pixel_y = -28
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "red"
+ },
+/area/security/seceqstorage)
+"fTZ" = (
+/turf/simulated/wall/rust,
+/area/security/detectives_office)
+"fUG" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Secure Gate";
+ name = "Security Blast Door";
+ opacity = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plating,
+/area/security/brig)
+"fVZ" = (
+/obj/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"
+ },
+/area/medical/surgery1)
+"gcN" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/plating,
+/area/security/prisonershuttle)
+"ggp" = (
+/obj/machinery/vending/coffee,
+/obj/structure/sign/electricshock{
+ pixel_y = 32
+ },
+/turf/simulated/floor/plating,
+/area/security/permabrig)
+"glQ" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/crew_quarters/theatre)
+"glX" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/security/processing)
+"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"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutral"
+ },
+/area/maintenance/starboard)
+"gwn" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/structure/rack,
+/obj/item/gun/energy/gun{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/gun/energy/gun,
+/obj/item/gun/energy/gun{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel,
+/area/security/securearmoury)
+"gwZ" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "red"
+ },
+/area/security/processing)
+"gxd" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/security/processing)
+"gxJ" = (
+/obj/structure/rack,
+/obj/item/clothing/suit/armor/bulletproof,
+/obj/item/clothing/suit/armor/bulletproof,
+/obj/item/clothing/suit/armor/bulletproof,
+/obj/item/clothing/head/helmet/alt,
+/obj/item/clothing/head/helmet/alt,
+/obj/item/clothing/head/helmet/alt,
+/obj/item/storage/secure/safe{
+ pixel_x = 32
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "vault"
+ },
+/area/security/securearmoury)
"gyp" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/warning_stripes/north,
/obj/machinery/light,
/turf/simulated/floor/plasteel,
/area/quartermaster/storage)
+"gyY" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/command/glass{
+ name = "Corporate Lounge";
+ req_one_access_txt = "19"
+ },
+/turf/simulated/floor/carpet,
+/area/assembly/showroom)
+"gBV" = (
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "redcorner"
+ },
+/area/security/permasolitary)
+"gDv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door_timer/cell_1{
+ pixel_x = -32
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "redcorner"
+ },
+/area/security/brig)
+"gGu" = (
+/obj/structure/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)
+"gGJ" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "redcorner"
+ },
+/area/security/permabrig)
"gHn" = (
/obj/machinery/atmospherics/unary/vent_pump/high_volume{
dir = 4;
@@ -109678,17 +104011,13 @@
id_tag = "sol_pump"
},
/obj/machinery/airlock_sensor{
- frequency = 1379;
id_tag = "sol_sensor";
pixel_x = 12;
pixel_y = -25
},
/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
- frequency = 1379;
id_tag = "sol_airlock";
- pixel_x = 0;
pixel_y = -25;
- req_access_txt = "0";
tag_airpump = "sol_pump";
tag_chamber_sensor = "sol_sensor";
tag_exterior_door = "sol_outer";
@@ -109696,6 +104025,62 @@
},
/turf/simulated/floor/plating,
/area/hallway/secondary/entry)
+"gJk" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/hallway/primary/starboard)
+"gKi" = (
+/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 = 8;
+ icon_state = "red"
+ },
+/area/security/brig)
+"gSt" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/turf/simulated/floor/plasteel,
+/area/security/permasolitary)
+"gTw" = (
+/obj/structure/table/wood,
+/obj/item/folder/white,
+/obj/item/folder/red,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/security/detectives_office)
+"gTW" = (
+/turf/simulated/floor/plasteel,
+/area/security/securearmoury)
"gYw" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
@@ -109703,10 +104088,144 @@
icon_state = "arrival"
},
/area/hallway/secondary/entry)
+"haD" = (
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/machinery/camera{
+ c_tag = "Officer Equipment Storage";
+ network = list("SS13","Security")
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/chair/stool,
+/obj/effect/landmark/start{
+ name = "Security Officer"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/security/seceqstorage)
+"hch" = (
+/obj/structure/chair/stool,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/plating,
+/area/security/permabrig)
+"hcQ" = (
+/obj/structure/bed,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plasteel,
+/area/security/permasolitary)
+"hcU" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/security/warden)
+"hdV" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/camera{
+ c_tag = "Perma-Brig Solitary";
+ network = list("SS13","Security")
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/turf/simulated/floor/plasteel,
+/area/security/permasolitary)
+"hfN" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "redcorner"
+ },
+/area/security/brig)
+"hjo" = (
+/obj/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
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "whitebluecorner"
+ },
+/area/medical/medbay)
"hng" = (
/obj/machinery/message_server,
/turf/simulated/floor/bluegrid,
/area/tcommsat/chamber)
+"hos" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/starboard)
+"hzb" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "redcorner"
+ },
+/area/security/permasolitary)
"hDZ" = (
/obj/docking_port/stationary{
dir = 8;
@@ -109725,6 +104244,588 @@
},
/turf/simulated/floor/plasteel,
/area/quartermaster/storage)
+"hHM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/security/brig)
+"hLZ" = (
+/obj/structure/table/glass,
+/obj/item/hemostat{
+ pixel_x = 6
+ },
+/obj/item/retractor{
+ pixel_x = -6;
+ pixel_y = 6
+ },
+/obj/item/stack/medical/bruise_pack/advanced,
+/obj/item/reagent_containers/iv_bag/salglu,
+/obj/machinery/camera{
+ c_tag = "Medbay Surgery West";
+ dir = 1;
+ network = list("Medical","SS13")
+ },
+/obj/machinery/status_display{
+ layer = 4;
+ pixel_y = -32
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "whiteblue"
+ },
+/area/medical/surgery1)
+"hOL" = (
+/turf/simulated/floor/carpet,
+/area/magistrateoffice)
+"hTk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/rack,
+/obj/item/gun/energy/gun/advtaser{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/gun/energy/gun/advtaser,
+/obj/item/gun/energy/gun/advtaser{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/turf/simulated/floor/plasteel,
+/area/security/securearmoury)
+"hTr" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel,
+/area/security/processing)
+"hTV" = (
+/turf/simulated/wall,
+/area/magistrateoffice)
+"hTW" = (
+/obj/machinery/camera{
+ c_tag = "Medbay Surgery East Storage";
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "showroomfloor"
+ },
+/area/medical/surgery1)
+"hZF" = (
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "redcorner"
+ },
+/area/hallway/primary/starboard)
+"ibR" = (
+/obj/effect/decal/warning_stripes/east,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/turf/simulated/floor/plasteel,
+/area/security/securearmoury)
+"idq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel,
+/area/security/securearmoury)
+"ifj" = (
+/obj/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"
+ },
+/area/medical/surgery2)
+"iiM" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/piano,
+/turf/simulated/floor/plating,
+/area/crew_quarters/theatre)
+"ipD" = (
+/obj/structure/closet/wardrobe/pjs,
+/turf/simulated/floor/plating,
+/area/security/permabrig)
+"isz" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/machinery/vending/sustenance,
+/turf/simulated/floor/plasteel,
+/area/security/permabrig)
+"iwQ" = (
+/obj/machinery/light_switch{
+ pixel_y = 26
+ },
+/turf/simulated/floor/plating,
+/area/security/detectives_office)
+"ixB" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "brown"
+ },
+/area/quartermaster/storage)
+"ixV" = (
+/obj/effect/decal/warning_stripes/yellow,
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4";
+ tag = ""
+ },
+/turf/simulated/floor/plasteel,
+/area/security/prisonershuttle)
+"iBK" = (
+/obj/structure/closet,
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 2;
+ name = "2maintenance loot spawner"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "neutral"
+ },
+/area/maintenance/starboard)
+"iDa" = (
+/obj/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{
+ icon_state = "cult"
+ },
+/area/magistrateoffice)
+"iFx" = (
+/obj/structure/sink{
+ dir = 8;
+ pixel_x = -12
+ },
+/obj/item/radio/intercom{
+ pixel_x = -26;
+ pixel_y = -12
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "whiteblue"
+ },
+/area/medical/surgery2)
+"iKj" = (
+/obj/machinery/light_switch{
+ pixel_x = -23;
+ pixel_y = -5
+ },
+/obj/machinery/holosign_switch{
+ id = "surgery2";
+ pixel_x = -23;
+ pixel_y = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "whiteblue"
+ },
+/area/medical/surgery2)
+"iLL" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8";
+ tag = ""
+ },
+/obj/machinery/door/airlock/security/glass{
+ name = "Prison Wing";
+ req_access_txt = "2"
+ },
+/obj/effect/decal/warning_stripes/west,
+/turf/simulated/floor/plasteel,
+/area/security/permabrig)
+"iMM" = (
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/plating,
+/area/maintenance/starboard)
+"iTV" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/effect/decal/warning_stripes/northwestcorner,
+/turf/simulated/floor/plasteel,
+/area/security/securearmoury)
+"iUc" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/item/twohanded/required/kirbyplants,
+/turf/simulated/floor/plasteel,
+/area/security/permabrig)
+"iVO" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
+/area/maintenance/starboard)
+"iVV" = (
+/obj/machinery/door/poddoor/shutters{
+ dir = 2;
+ id_tag = "Secure Armory";
+ name = "Secure Armory Shutters"
+ },
+/obj/effect/decal/warning_stripes/north,
+/obj/effect/decal/warning_stripes/south,
+/turf/simulated/floor/plasteel,
+/area/security/securearmoury)
+"iXX" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/table/reinforced,
+/obj/item/folder/red,
+/obj/item/pen,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/door/window/brigdoor{
+ dir = 2;
+ name = "Warden's Desk";
+ req_access_txt = "3"
+ },
+/obj/machinery/door/window/brigdoor{
+ dir = 1;
+ name = "Warden's Desk";
+ req_access_txt = "3"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/warden)
+"jav" = (
+/obj/machinery/door/airlock{
+ name = "Magistrate's Office";
+ req_access_txt = "74"
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plasteel{
+ icon_state = "cult"
+ },
+/area/magistrateoffice)
+"jgO" = (
+/obj/machinery/door/airlock/security/glass{
+ id_tag = "Brig";
+ name = "Prisoner Processing";
+ req_access_txt = "63"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8";
+ tag = ""
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/processing)
+"jkU" = (
+/obj/structure/disposalpipe/trunk,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/disposal,
+/turf/simulated/floor/plasteel{
+ icon_state = "showroomfloor"
+ },
+/area/medical/surgery1)
+"jqB" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "redcorner"
+ },
+/area/security/permasolitary)
+"jsV" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "redcorner"
+ },
+/area/security/brig)
+"jAm" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/door/airlock/security/glass{
+ id_tag = "Brig";
+ name = "Prisoner Processing";
+ req_access_txt = "63"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/processing)
+"jCt" = (
+/obj/structure/table/reinforced,
+/turf/simulated/floor/plasteel{
+ dir = 10;
+ icon_state = "red"
+ },
+/area/security/warden)
+"jCU" = (
+/obj/structure/sign/poster/official/random{
+ pixel_y = 32
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/structure/filingcabinet,
+/turf/simulated/floor/plasteel{
+ icon_state = "cult"
+ },
+/area/magistrateoffice)
+"jIs" = (
+/turf/simulated/wall/r_wall,
+/area/security/evidence)
+"jIV" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel,
+/area/security/seceqstorage)
+"jQY" = (
+/turf/simulated/wall/r_wall,
+/area/security/seceqstorage)
+"jUC" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ icon_state = "neutralcorner"
+ },
+/area/hallway/primary/central)
+"jUH" = (
+/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
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/security/brig)
+"jYK" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Secure Gate";
+ name = "Security Blast Door";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/security/seceqstorage)
+"khY" = (
+/obj/structure/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)
+"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
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "vault"
+ },
+/area/security/securearmoury)
+"kju" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/door/airlock{
+ name = "Bathroom"
+ },
+/turf/simulated/floor/plasteel,
+/area/security/permabrig)
+"kkM" = (
+/obj/vehicle/secway,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "vault"
+ },
+/area/security/securearmoury)
+"klk" = (
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/obj/item/twohanded/required/kirbyplants,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 28
+ },
+/obj/machinery/light/small,
+/turf/simulated/floor/plasteel{
+ dir = 6;
+ icon_state = "red"
+ },
+/area/security/prisonershuttle)
+"knI" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/security/seceqstorage)
+"koC" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/detectives_office)
"kpH" = (
/obj/machinery/atmospherics/pipe/simple/hidden{
dir = 4
@@ -109735,11 +104836,355 @@
id_tag = "sol_inner";
locked = 1;
name = "Arrivals External Access";
- req_access = null;
- req_access_txt = "0"
+ req_access = null
},
/turf/simulated/floor/plating,
/area/hallway/secondary/entry)
+"kxq" = (
+/obj/structure/table/wood,
+/obj/item/paper_bin,
+/obj/item/pen,
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/security/detectives_office)
+"kyq" = (
+/obj/structure/table/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "vault"
+ },
+/area/security/prisonershuttle)
+"kzg" = (
+/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" = (
+/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 = "neutralcorner"
+ },
+/area/hallway/primary/central)
+"kGF" = (
+/obj/structure/table/reinforced,
+/obj/item/folder/red,
+/obj/item/pen,
+/obj/machinery/door/window/brigdoor{
+ dir = 2;
+ name = "Secure Armory";
+ req_access_txt = "3"
+ },
+/obj/machinery/door/window/brigdoor{
+ dir = 1;
+ name = "Secure Armory";
+ req_access_txt = "3"
+ },
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel,
+/area/security/securearmoury)
+"kOC" = (
+/obj/structure/table,
+/obj/item/storage/fancy/crayons,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/item/clipboard,
+/turf/simulated/floor/plating,
+/area/security/permabrig)
+"kSX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/closet/crate,
+/obj/item/flashlight,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/simulated/floor/plasteel{
+ icon_state = "neutral"
+ },
+/area/maintenance/starboard)
+"kTO" = (
+/obj/structure/dispenser/oxygen,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "vault"
+ },
+/area/security/securearmoury)
+"kVM" = (
+/obj/structure/disposalpipe/trunk,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/disposal,
+/turf/simulated/floor/plasteel{
+ icon_state = "showroomfloor"
+ },
+/area/medical/surgery2)
+"kYe" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/effect/decal/warning_stripes/east,
+/obj/effect/decal/warning_stripes/west,
+/obj/machinery/door/airlock/security{
+ name = "Armory";
+ req_access = null;
+ req_access_txt = "3"
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plasteel,
+/area/security/warden)
+"kYo" = (
+/obj/machinery/power/solar{
+ name = "Aft Starboard Solar Panel"
+ },
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/plasteel/airless{
+ icon_state = "solarpanel"
+ },
+/area/maintenance/auxsolarstarboard)
+"ljZ" = (
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Secure Gate";
+ name = "Security Blast Door";
+ opacity = 0
+ },
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/plating,
+/area/security/brig)
+"llI" = (
+/obj/machinery/door/airlock/security{
+ name = "Security Checkpoint";
+ req_access = null;
+ req_access_txt = "1"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/security/brig)
+"lmR" = (
+/obj/machinery/vending/security,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "red"
+ },
+/area/security/seceqstorage)
+"loP" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/security/brig)
+"lso" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "neutralcorner"
+ },
+/area/hallway/primary/central)
+"ltg" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/chair{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/crew_quarters/courtroom)
+"ltY" = (
+/obj/structure/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,
+/turf/simulated/floor/plasteel,
+/area/maintenance/starboard)
+"luc" = (
+/obj/structure/chair/office/dark{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/security/detectives_office)
+"lzY" = (
+/obj/structure/table/wood,
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/obj/item/clothing/gloves/color/black,
+/obj/item/taperecorder,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/detectives_office)
+"lAG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/airlock/security/glass{
+ id_tag = "BrigEast";
+ name = "Brig";
+ req_access_txt = "63"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Secure Gate";
+ name = "Security Blast Door";
+ opacity = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/security/brig)
+"lBR" = (
+/turf/simulated/wall,
+/area/hallway/primary/starboard)
+"lEr" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/vending/security,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "vault"
+ },
+/area/security/securearmoury)
+"lEt" = (
+/obj/machinery/door/airlock/public/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/crew_quarters/courtroom)
+"lEL" = (
+/obj/structure/sign/electricshock{
+ pixel_x = 32
+ },
+/obj/structure/lattice,
+/turf/space,
+/area/space/nearstation)
+"lFi" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel,
+/area/security/seceqstorage)
+"lIv" = (
+/obj/machinery/suit_storage_unit/clown,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/ai_monitored/storage/eva)
+"lIX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ dir = 10;
+ icon_state = "darkblue"
+ },
+/area/ai_monitored/storage/eva)
+"lJT" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/structure/closet/secure_closet/security,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "red"
+ },
+/area/security/seceqstorage)
"lVO" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/turretid/lethal{
@@ -109751,6 +105196,337 @@
icon_state = "dark"
},
/area/turret_protected/aisat)
+"lZw" = (
+/obj/machinery/ai_status_display{
+ pixel_x = -32
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ icon_state = "redcorner"
+ },
+/area/security/permasolitary)
+"meB" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8;
+ initialize_directions = 11
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/hallway/primary/starboard)
+"meU" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/structure/chair/office/dark{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/interrogation)
+"mft" = (
+/obj/effect/spawner/window/reinforced,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Secure Gate";
+ name = "Security Blast Door";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/security/brig)
+"mfI" = (
+/obj/machinery/light,
+/turf/simulated/floor/plasteel{
+ dir = 6;
+ icon_state = "red"
+ },
+/area/security/seceqstorage)
+"mhu" = (
+/turf/simulated/wall/r_wall,
+/area/security/permasolitary)
+"miL" = (
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/security/seceqstorage)
+"mko" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/plasteel{
+ icon_state = "showroomfloor"
+ },
+/area/medical/surgery1)
+"mkp" = (
+/obj/structure/lattice,
+/turf/simulated/floor/plating,
+/area/space/nearstation)
+"mlJ" = (
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Secure Gate";
+ name = "Security Blast Door";
+ opacity = 0
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
+/area/security/brig)
+"mmw" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/structure/chair/stool,
+/obj/effect/landmark/start{
+ name = "Security Officer"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8";
+ tag = ""
+ },
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/security/seceqstorage)
+"mmJ" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "redcorner"
+ },
+/area/security/permabrig)
+"moa" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/item/twohanded/required/kirbyplants,
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/crew_quarters/theatre)
+"moy" = (
+/obj/machinery/door/airlock/hatch/gamma{
+ locked = 1;
+ req_access_txt = "1";
+ use_power = 0
+ },
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Secure Gate";
+ name = "Security Blast Door";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/security/seceqstorage)
+"mqS" = (
+/obj/structure/table/reinforced,
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/obj/item/storage/box/chemimp,
+/obj/item/storage/box/trackimp,
+/obj/item/storage/lockbox/mindshield,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "vault"
+ },
+/area/security/securearmoury)
+"mtL" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/turf/simulated/floor/plasteel,
+/area/security/permabrig)
+"mtR" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "redcorner"
+ },
+/area/hallway/primary/starboard)
+"muK" = (
+/obj/structure/sink{
+ dir = 8;
+ pixel_x = -12
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "showroomfloor"
+ },
+/area/medical/surgery2)
+"myN" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/security/hos)
+"mzg" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4;
+ initialize_directions = 11
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/starboard)
+"mDm" = (
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
+/area/security/detectives_office)
+"mEk" = (
+/obj/effect/decal/warning_stripes/east,
+/turf/simulated/floor/plasteel,
+/area/security/securearmoury)
+"mEG" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "redcorner"
+ },
+/area/security/brig)
+"mGO" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel,
+/area/security/permasolitary)
+"mHf" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/security/brig)
+"mHP" = (
+/obj/structure/disposalpipe/sortjunction{
+ dir = 1;
+ name = "Security Junction";
+ sortType = 13
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "redcorner"
+ },
+/area/hallway/primary/starboard)
+"mKe" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/security/brig)
+"mQk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/crew_quarters/courtroom)
+"mTx" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/machinery/flasher_button{
+ id = "Cell 3";
+ pixel_y = 25
+ },
+/obj/machinery/door_control{
+ desc = "A remote control-switch to lock down the prison wing's blast doors";
+ id = "cell3lockdown";
+ name = "Cell Lockdown";
+ pixel_y = 32;
+ req_access_txt = "2"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "redcorner"
+ },
+/area/security/permabrig)
"mWj" = (
/obj/machinery/door/airlock/external{
frequency = 1379;
@@ -109758,21 +105534,625 @@
id_tag = "sol_outer";
locked = 1;
name = "Arrivals External Access";
- req_access = null;
- req_access_txt = "0"
+ req_access = null
},
/obj/machinery/access_button{
command = "cycle_exterior";
frequency = 1379;
- layer = 3.3;
master_tag = "sol_airlock";
name = "exterior access button";
pixel_x = -13;
- pixel_y = -23;
- req_access_txt = "0"
+ pixel_y = -23
},
/turf/simulated/floor/plating,
/area/hallway/secondary/entry)
+"nbE" = (
+/obj/machinery/hydroponics/constructable,
+/obj/item/seeds/ambrosia,
+/turf/simulated/floor/plating,
+/area/security/permabrig)
+"ncZ" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8";
+ tag = ""
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "redcorner"
+ },
+/area/security/brig)
+"nfo" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "whiteblue"
+ },
+/area/medical/surgery2)
+"ngg" = (
+/turf/simulated/wall/r_wall,
+/area/security/securearmoury)
+"ngm" = (
+/obj/item/clothing/gloves/botanic_leather,
+/obj/item/reagent_containers/spray/pestspray,
+/obj/item/reagent_containers/spray/pestspray,
+/turf/simulated/floor/plating,
+/area/security/permabrig)
+"nit" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/security/warden)
+"njE" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/machinery/washing_machine,
+/obj/machinery/camera{
+ c_tag = "Perma-Brig General Population East";
+ network = list("SS13","Security")
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "barber"
+ },
+/area/security/permabrig)
+"nkh" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel,
+/area/security/processing)
+"nli" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/sign/poster/official/cleanliness{
+ pixel_y = 32
+ },
+/turf/simulated/wall,
+/area/security/permabrig)
+"nom" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/machinery/computer/security{
+ network = list("SS13","Mining Outpost")
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/warden)
+"npj" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/hydroponics/constructable,
+/obj/item/seeds/orange,
+/obj/item/seeds/orange,
+/turf/simulated/floor/plasteel,
+/area/security/permabrig)
+"nvc" = (
+/obj/structure/table/reinforced,
+/obj/machinery/recharger,
+/obj/machinery/newscaster{
+ pixel_x = -32
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/security/warden)
+"nCz" = (
+/obj/structure/table/wood,
+/obj/item/storage/fancy/candle_box,
+/obj/item/storage/fancy/candle_box,
+/turf/simulated/floor/plating,
+/area/crew_quarters/theatre)
+"nDV" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/structure/chair{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "red"
+ },
+/area/security/prisonershuttle)
+"nFL" = (
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_y = 32
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/machinery/smartfridge/drying_rack,
+/turf/simulated/floor/plating,
+/area/security/permabrig)
+"nFN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "darkblue"
+ },
+/area/ai_monitored/storage/eva)
+"nGL" = (
+/obj/machinery/bodyscanner{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "whiteblue"
+ },
+/area/medical/surgery1)
+"nHs" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/security/permabrig)
+"nJr" = (
+/obj/structure/table/reinforced,
+/obj/item/radio,
+/obj/item/radio,
+/obj/item/radio,
+/obj/machinery/recharger,
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "red"
+ },
+/area/security/seceqstorage)
+"nPe" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ icon_state = "redcorner"
+ },
+/area/security/permasolitary)
+"nQJ" = (
+/obj/effect/spawner/window/reinforced,
+/obj/machinery/door/poddoor/shutters{
+ density = 0;
+ icon_state = "open";
+ id_tag = "magistrate";
+ name = "Magistrate Privacy Shutters";
+ opacity = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/magistrateoffice)
+"nRf" = (
+/obj/machinery/optable,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/medical/surgery1)
+"nYz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "redcorner"
+ },
+/area/security/brig)
+"obL" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "red"
+ },
+/area/security/processing)
+"obN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/starboard)
+"odY" = (
+/obj/machinery/camera{
+ c_tag = "Aft Starboard Solars"
+ },
+/obj/machinery/atmospherics/unary/portables_connector,
+/obj/machinery/portable_atmospherics/canister/air,
+/obj/effect/decal/warning_stripes/northeast,
+/turf/simulated/floor/plating,
+/area/maintenance/auxsolarstarboard)
+"oei" = (
+/obj/machinery/computer/secure_data,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/security/main)
+"ofZ" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/camera{
+ c_tag = "Perma-Brig General Population West";
+ dir = 4;
+ network = list("SS13","Security")
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/simulated/floor/plasteel,
+/area/security/permabrig)
+"ohh" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/turf/simulated/floor/plasteel,
+/area/security/seceqstorage)
+"ojw" = (
+/obj/structure/filingcabinet,
+/turf/simulated/floor/plating,
+/area/security/detectives_office)
+"osS" = (
+/obj/structure/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
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel{
+ icon_state = "neutral"
+ },
+/area/maintenance/fsmaint)
+"oBE" = (
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/item/vending_refill/coffee,
+/turf/simulated/floor/plating,
+/area/maintenance/starboard)
+"oDD" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/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)
+"oEG" = (
+/turf/simulated/floor/plating,
+/area/space/nearstation)
+"oHY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/crew_quarters/courtroom)
+"oSH" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable,
+/turf/simulated/floor/plating,
+/area/security/processing)
+"oTo" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8";
+ tag = ""
+ },
+/turf/simulated/floor/plasteel,
+/area/maintenance/starboard)
+"oVe" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/security/permabrig)
+"oXm" = (
+/obj/effect/decal/warning_stripes/yellow,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/turf/simulated/floor/plasteel,
+/area/security/brig)
+"pcv" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel{
+ icon_state = "redcorner"
+ },
+/area/security/permasolitary)
+"pgF" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/security/glass{
+ id_tag = "BrigWest";
+ name = "Brig";
+ req_access_txt = "63"
+ },
+/obj/effect/decal/warning_stripes/west,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Secure Gate";
+ name = "Security Blast Door";
+ opacity = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel,
+/area/security/brig)
+"phv" = (
+/obj/structure/rack,
+/obj/item/storage/briefcase,
+/obj/item/storage/secure/briefcase,
+/turf/simulated/floor/plating,
+/area/security/detectives_office)
+"phF" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8";
+ tag = ""
+ },
+/obj/structure/chair/stool,
+/obj/effect/landmark/start{
+ name = "Security Officer"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/security/seceqstorage)
+"ppj" = (
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "redcorner"
+ },
+/area/security/permasolitary)
+"pvv" = (
+/obj/structure/closet/secure_closet/security,
+/obj/machinery/camera{
+ c_tag = "Security Equipment Storage";
+ dir = 8
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/seceqstorage)
+"pBz" = (
+/obj/structure/closet/secure_closet/personal/cabinet,
+/obj/item/clothing/suit/browntrenchcoat,
+/obj/item/clothing/suit/browntrenchcoat,
+/obj/item/clothing/head/fedora,
+/obj/item/clothing/head/fedora,
+/turf/simulated/floor/plating,
+/area/security/detectives_office)
+"pOB" = (
+/obj/effect/decal/warning_stripes/east,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel,
+/area/security/securearmoury)
+"pPC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/crew_quarters/theatre)
+"pRg" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/machinery/door_control{
+ id = "Secure Gate";
+ name = "Brig Lockdown";
+ pixel_x = 3;
+ pixel_y = -28;
+ req_access_txt = "2"
+ },
+/obj/machinery/door_control{
+ desc = "A remote control-switch to lock down the prison wing's blast doors";
+ id = "Prison Gate";
+ name = "Prison Wing Lockdown";
+ pixel_x = -7;
+ pixel_y = -28;
+ req_access_txt = "2"
+ },
+/obj/machinery/door_control{
+ id = "Secure Armory";
+ name = "Secure Armory Shutter Control";
+ pixel_x = -2;
+ pixel_y = -36;
+ req_access_txt = "3"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/security/warden)
+"pSA" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Secure Gate";
+ name = "Security Blast Door";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/security/seceqstorage)
+"pUv" = (
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
+/area/hallway/primary/starboard)
+"pWQ" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Prison Gate";
+ name = "Prison Lockdown Blast Doors";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/security/permabrig)
+"pXX" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/camera{
+ c_tag = "Perma-Brig Solitary";
+ network = list("SS13","Security")
+ },
+/turf/simulated/floor/plasteel,
+/area/security/permasolitary)
+"pZf" = (
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Prison Gate";
+ name = "Prison Lockdown Blast Doors";
+ opacity = 0
+ },
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/plating,
+/area/security/permasolitary)
"qcA" = (
/obj/docking_port/stationary{
dwidth = 4;
@@ -109783,9 +106163,71 @@
},
/turf/space,
/area/space)
+"qeU" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/door/airlock{
+ name = "Bathroom"
+ },
+/turf/simulated/floor/plating,
+/area/security/permabrig)
+"qgr" = (
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "whiteblue"
+ },
+/area/medical/surgery1)
+"qli" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4";
+ tag = ""
+ },
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Prison Gate";
+ name = "Prison Lockdown Blast Doors";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/security/permabrig)
+"qmW" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/crew_quarters/courtroom)
+"qqW" = (
+/obj/structure/table,
+/obj/machinery/kitchen_machine/microwave,
+/turf/simulated/floor/plating,
+/area/security/permabrig)
"qrT" = (
/turf/simulated/wall/r_wall,
/area/tcommsat/chamber)
+"qzr" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1;
+ initialize_directions = 11
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "neutralcorner"
+ },
+/area/bridge/meeting_room)
"qHs" = (
/obj/machinery/atmospherics/pipe/simple/hidden{
dir = 10;
@@ -109794,40 +106236,1237 @@
/obj/machinery/access_button{
command = "cycle_interior";
frequency = 1379;
- layer = 3.3;
master_tag = "sol_airlock";
name = "interior access button";
pixel_x = -25;
- pixel_y = -25;
- req_access_txt = "0"
+ pixel_y = -25
},
/turf/simulated/floor/plasteel{
dir = 9;
icon_state = "arrival"
},
/area/hallway/secondary/entry)
+"qJC" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Prison Gate";
+ name = "Prison Lockdown Blast Doors";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/security/permabrig)
+"qRT" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/external{
+ frequency = 1379;
+ 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)
+"qVp" = (
+/obj/structure/table/reinforced,
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -23
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/item/clipboard,
+/obj/item/toy/figure/crew/warden,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/security/warden)
+"qXF" = (
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8";
+ tag = ""
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "redcorner"
+ },
+/area/security/permasolitary)
+"qYC" = (
+/obj/machinery/flasher/portable,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "vault"
+ },
+/area/security/securearmoury)
+"qZt" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/hallway/primary/central)
+"qZI" = (
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/simulated/floor/plating,
+/area/maintenance/starboard)
+"raK" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/structure/closet/wardrobe/red,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/security/seceqstorage)
+"rbw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/security/permabrig)
+"reo" = (
+/obj/structure/sign/electricshock{
+ pixel_y = 32
+ },
+/obj/machinery/hydroponics/constructable,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/item/seeds/carrot,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "redcorner"
+ },
+/area/security/permabrig)
+"reH" = (
+/obj/machinery/newscaster{
+ pixel_x = 32
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/camera{
+ c_tag = "Security Hallway North";
+ dir = 8;
+ network = list("SS13","Security")
+ },
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/security/brig)
+"rje" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24;
+ pixel_y = -4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 6;
+ icon_state = "darkblue"
+ },
+/area/medical/surgery2)
+"rjr" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8;
+ initialize_directions = 11
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "neutralcorner"
+ },
+/area/hallway/primary/central)
+"rkB" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4";
+ tag = ""
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel,
+/area/security/warden)
+"rnO" = (
+/obj/machinery/power/tracker,
+/obj/structure/cable,
+/turf/simulated/floor/plasteel/airless{
+ icon_state = "solarpanel"
+ },
+/area/maintenance/auxsolarstarboard)
+"rsF" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "darkblue"
+ },
+/area/medical/surgery2)
+"rDp" = (
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Secure Gate";
+ name = "Security Blast Door";
+ opacity = 0
+ },
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
+/area/security/brig)
+"rNi" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel,
+/area/security/securearmoury)
+"rOn" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "redcorner"
+ },
+/area/hallway/primary/starboard)
+"rOH" = (
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
+/area/security/prisonershuttle)
+"rSe" = (
+/obj/machinery/suit_storage_unit/security,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "vault"
+ },
+/area/security/securearmoury)
"rSI" = (
/turf/simulated/floor/bluegrid,
/area/tcommsat/chamber)
+"rTc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/security/detectives_office)
+"rTE" = (
+/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/south,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8";
+ tag = ""
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "redcorner"
+ },
+/area/security/permasolitary)
+"rTL" = (
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4";
+ tag = ""
+ },
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Secure Gate";
+ name = "Security Blast Door";
+ opacity = 0
+ },
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
+/area/security/brig)
+"rZK" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8";
+ tag = ""
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4";
+ tag = ""
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/plasteel,
+/area/security/permabrig)
+"shi" = (
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2";
+ pixel_y = 1
+ },
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Secure Gate";
+ name = "Security Blast Door";
+ opacity = 0
+ },
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
+/area/security/brig)
+"shS" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "darkblue"
+ },
+/area/ai_monitored/storage/eva)
"siv" = (
/obj/effect/spawner/window/reinforced,
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'.";
- name = "KEEP CLEAR: DOCKING AREA";
- pixel_y = 0
+ name = "KEEP CLEAR: DOCKING AREA"
},
/turf/simulated/floor/plating,
/area/hallway/secondary/entry)
+"soN" = (
+/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"
+ },
+/area/medical/surgery2)
+"spP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/security/seceqstorage)
+"ssp" = (
+/obj/machinery/door/airlock/security/glass{
+ name = "Solitary Confinement";
+ req_access_txt = "2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/turf/simulated/floor/plasteel,
+/area/security/permasolitary)
+"swV" = (
+/obj/machinery/hydroponics/constructable,
+/obj/item/seeds/glowshroom,
+/turf/simulated/floor/plasteel,
+/area/security/permabrig)
+"sAW" = (
+/obj/structure/closet/secure_closet/medical2,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "whitebluecorner"
+ },
+/area/medical/surgery1)
+"sCu" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/security/processing)
+"sEN" = (
+/obj/structure/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/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/security/brig)
+"sPS" = (
+/obj/structure/cable,
+/obj/machinery/power/solar_control{
+ id = "starboardsolar";
+ name = "Aft Starboard Solar Control"
+ },
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -25
+ },
+/obj/effect/decal/warning_stripes/southeast,
+/turf/simulated/floor/plating,
+/area/maintenance/auxsolarstarboard)
+"sTz" = (
+/obj/structure/closet/secure_closet/security,
+/turf/simulated/floor/plasteel{
+ dir = 10;
+ icon_state = "red"
+ },
+/area/security/seceqstorage)
+"sWi" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/airlock/security{
+ name = "Security-Storage Backroom";
+ req_access = null;
+ req_access_txt = "63"
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/evidence)
+"sYo" = (
+/obj/machinery/camera{
+ c_tag = "Brig Cell 4"
+ },
+/obj/structure/closet/secure_closet/brig{
+ id = "Cell 4";
+ name = "Cell 4 Locker"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "redcorner"
+ },
+/area/security/brig)
+"sYQ" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/security/detectives_office)
+"sZT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "neutral"
+ },
+/area/maintenance/starboard)
+"tah" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/machinery/disposal,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/security/warden)
+"tdA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel,
+/area/security/seceqstorage)
+"tge" = (
+/obj/structure/sign/electricshock{
+ pixel_y = 32
+ },
+/obj/machinery/hydroponics/constructable,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/cobweb2,
+/obj/item/seeds/tower,
+/obj/item/seeds/amanita,
+/turf/simulated/floor/plating,
+/area/security/permabrig)
+"tgs" = (
+/obj/structure/chair/office/dark,
+/turf/simulated/floor/plasteel{
+ icon_state = "wood"
+ },
+/area/security/detectives_office)
+"tgE" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/starboard)
+"tiS" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "redcorner"
+ },
+/area/security/permabrig)
+"tks" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "wood"
+ },
+/area/security/detectives_office)
+"tmo" = (
+/obj/structure/closet/secure_closet/security,
+/turf/simulated/floor/plasteel{
+ icon_state = "red"
+ },
+/area/security/seceqstorage)
+"tpo" = (
+/obj/machinery/light/small,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/plasteel,
+/area/security/permasolitary)
+"tvq" = (
+/obj/structure/table,
+/obj/item/toy/figure/crew/syndie,
+/obj/item/paper_bin,
+/turf/simulated/floor/plating,
+/area/security/permabrig)
+"tFw" = (
+/obj/effect/spawner/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/security/processing)
+"tFK" = (
+/obj/item/soap/nanotrasen,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/structure/curtain/open/shower,
+/obj/machinery/shower{
+ pixel_y = 22
+ },
+/turf/simulated/floor/plasteel,
+/area/security/permabrig)
+"tFO" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8";
+ tag = ""
+ },
+/obj/machinery/door/airlock/security/glass{
+ name = "Warden's Office";
+ req_access_txt = "3"
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plasteel,
+/area/security/warden)
+"tHf" = (
+/obj/structure/table/wood,
+/obj/item/lipstick/random,
+/obj/item/lipstick/random,
+/obj/item/lipstick/random,
+/turf/simulated/floor/plating,
+/area/crew_quarters/theatre)
+"tJH" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Secure Gate";
+ name = "Security Blast Door";
+ opacity = 0
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/security/brig)
+"tNO" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8";
+ tag = ""
+ },
+/obj/machinery/firealarm{
+ pixel_y = 26
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/security/warden)
+"tOM" = (
+/obj/machinery/door/airlock/security/glass{
+ name = "Solitary Confinement";
+ req_access_txt = "2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/turf/simulated/floor/plasteel,
+/area/security/permasolitary)
+"tQg" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "redcorner"
+ },
+/area/security/brig)
+"tRM" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/security/brig)
+"tSS" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/chair/wood{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/crew_quarters/theatre)
+"tVa" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8;
+ initialize_directions = 11
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8;
+ initialize_directions = 11
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralcorner"
+ },
+/area/hallway/primary/central)
+"tVO" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/security/range)
+"uiw" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/door_timer/cell_3{
+ pixel_y = -32
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "red"
+ },
+/area/security/brig)
+"ujH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plasteel{
+ icon_state = "neutral"
+ },
+/area/maintenance/starboard)
+"ukv" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/plating,
+/area/security/range)
+"ukK" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/plasteel{
+ icon_state = "bluecorner"
+ },
+/area/hallway/primary/central)
+"ulE" = (
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Secure Gate";
+ name = "Security Blast Door";
+ opacity = 0
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
+/area/security/brig)
+"uod" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "redcorner"
+ },
+/area/security/brig)
+"uoV" = (
+/obj/structure/table,
+/obj/item/flashlight/lamp,
+/turf/simulated/floor/plasteel{
+ dir = 9;
+ icon_state = "red"
+ },
+/area/security/processing)
+"upW" = (
+/obj/structure/rack,
+/obj/item/storage/box/handcuffs,
+/obj/item/storage/box/flashbangs,
+/obj/item/clothing/mask/gas/sechailer,
+/obj/item/clothing/mask/gas/sechailer,
+/obj/item/flashlight/seclite,
+/obj/item/flashlight/seclite,
+/obj/item/radio/intercom{
+ dir = 1;
+ pixel_x = 28
+ },
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "red"
+ },
+/area/security/warden)
+"usl" = (
+/obj/structure/chair/office/dark{
+ dir = 8
+ },
+/obj/machinery/computer/security/telescreen{
+ desc = "Used for watching interrogations.";
+ name = "Interrogation Monitor";
+ network = list("Interrogation");
+ pixel_y = 30
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/interrogation)
+"uAP" = (
+/obj/structure/chair/office/dark{
+ dir = 4
+ },
+/obj/effect/decal/warning_stripes/south,
+/turf/simulated/floor/plating,
+/area/maintenance/auxsolarstarboard)
+"uCE" = (
+/obj/machinery/status_display,
+/turf/simulated/wall/r_wall,
+/area/security/permasolitary)
+"uJk" = (
+/obj/structure/rack,
+/obj/item/gun/energy/ionrifle,
+/obj/item/clothing/suit/armor/laserproof,
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8";
+ tag = ""
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "vault"
+ },
+/area/security/securearmoury)
+"uQK" = (
+/obj/machinery/bodyscanner,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "whiteblue"
+ },
+/area/crew_quarters/theatre)
+"uSJ" = (
+/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" = (
+/obj/effect/decal/cleanable/cobweb,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/toilet{
+ pixel_y = 8
+ },
+/obj/item/bikehorn/rubberducky,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/item/seeds/ambrosia,
+/turf/simulated/floor/plating,
+/area/security/permabrig)
+"uVQ" = (
+/obj/machinery/atmospherics/unary/vent_pump{
+ dir = 1;
+ on = 1
+ },
+/obj/effect/landmark{
+ name = "xeno_spawn";
+ pixel_x = -1
+ },
+/turf/simulated/floor/wood{
+ broken = 1;
+ icon_state = "wood-broken"
+ },
+/area/crew_quarters/theatre)
+"uYc" = (
+/obj/structure/closet/secure_closet/brig{
+ id = "Cell 3";
+ name = "Cell 3 Locker"
+ },
+/obj/machinery/camera{
+ c_tag = "Brig Cell 2"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "redcorner"
+ },
+/area/security/brig)
+"uYW" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ icon_state = "redcorner"
+ },
+/area/security/permasolitary)
+"vbN" = (
+/obj/machinery/camera{
+ c_tag = "Exterior Armory";
+ dir = 4;
+ network = list("Security","SS13");
+ pixel_y = -22
+ },
+/turf/space,
+/area/security/securearmoury)
+"vbZ" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/closet/crate/freezer/iv_storage,
+/turf/simulated/floor/plasteel{
+ icon_state = "showroomfloor"
+ },
+/area/medical/surgery2)
+"vce" = (
+/obj/structure/chair/stool,
+/obj/effect/landmark/start{
+ name = "Security Officer"
+ },
+/obj/machinery/recharger/wallcharger{
+ pixel_y = 25
+ },
+/obj/machinery/recharger/wallcharger{
+ pixel_y = 35
+ },
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "red"
+ },
+/area/security/seceqstorage)
+"vhT" = (
+/obj/structure/chair/office/dark{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/machinery/computer/security/telescreen{
+ desc = "Used for watching interrogations.";
+ name = "Interrogation Monitor";
+ network = list("Interrogation");
+ pixel_y = -30
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/interrogation)
+"vif" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/turf/simulated/floor/plasteel,
+/area/security/permabrig)
+"vmw" = (
+/obj/structure/fans/tiny,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4";
+ tag = ""
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/machinery/door/airlock/external{
+ id_tag = "laborcamp_home";
+ locked = 1;
+ name = "Labor Camp Airlock";
+ req_access_txt = "2"
+ },
+/turf/simulated/floor/plasteel,
+/area/security/prisonershuttle)
+"vnm" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/effect/decal/warning_stripes/southwest,
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -25
+ },
+/turf/simulated/floor/plasteel{
+ dir = 10;
+ icon_state = "red"
+ },
+/area/security/prisonershuttle)
+"voo" = (
+/obj/structure/table,
+/obj/item/clothing/shoes/orange,
+/obj/item/clothing/under/color/orange/prison,
+/turf/simulated/floor/plating,
+/area/maintenance/starboard)
+"vrB" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/medical{
+ name = "Operating Theatre Storage";
+ req_access_txt = "45"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "showroomfloor"
+ },
+/area/medical/surgery1)
+"vsy" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "redcorner"
+ },
+/area/security/permasolitary)
+"vvQ" = (
+/obj/machinery/door_timer/cell_4{
+ pixel_y = -32
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "red"
+ },
+/area/security/brig)
"vzz" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 8
},
/turf/simulated/floor/bluegrid,
/area/tcommsat/chamber)
+"vCk" = (
+/obj/structure/chair/office/dark{
+ dir = 8
+ },
+/obj/effect/landmark/start{
+ name = "Warden"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/security/warden)
"vDg" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -109837,18 +107476,567 @@
},
/obj/machinery/alarm{
dir = 1;
- icon_state = "alarm0";
- pixel_x = 0;
pixel_y = -22
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/tcommsat/chamber)
+"vEh" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/turf/simulated/floor/plasteel{
+ dir = 9;
+ icon_state = "red"
+ },
+/area/security/seceqstorage)
+"vFf" = (
+/obj/structure/table/wood,
+/obj/item/crowbar/red,
+/obj/item/book/manual/security_space_law,
+/obj/item/book/manual/detective,
+/obj/item/camera{
+ desc = "A one use - polaroid camera. 30 photos left.";
+ name = "detectives camera";
+ pictures_left = 30
+ },
+/turf/simulated/floor/wood{
+ broken = 1;
+ icon_state = "wood-broken"
+ },
+/area/security/detectives_office)
+"vGw" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8;
+ initialize_directions = 11
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8;
+ initialize_directions = 11
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "red"
+ },
+/area/security/warden)
+"vJK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/rack,
+/obj/item/gun/energy/laser{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/gun/energy/laser,
+/obj/item/gun/energy/laser{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/turf/simulated/floor/plasteel,
+/area/security/securearmoury)
+"vLN" = (
+/obj/structure/table/wood,
+/obj/item/instrument/violin,
+/turf/simulated/floor/plating,
+/area/crew_quarters/theatre)
+"vMI" = (
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "neutral"
+ },
+/area/maintenance/starboard)
+"vOc" = (
+/obj/structure/table,
+/obj/item/taperecorder,
+/obj/item/restraints/handcuffs,
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -23
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/security/processing)
+"vXX" = (
+/turf/space,
+/area/space/nearstation)
+"wdH" = (
+/obj/effect/spawner/window/reinforced,
+/obj/machinery/door/poddoor/shutters{
+ density = 0;
+ icon_state = "open";
+ id_tag = "magistrate";
+ name = "Magistrate Privacy Shutters";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/magistrateoffice)
+"weF" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "red"
+ },
+/area/security/seceqstorage)
+"wgn" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/plasteel,
+/area/security/permasolitary)
+"wmQ" = (
+/obj/item/radio/intercom{
+ pixel_y = 28
+ },
+/obj/machinery/suit_storage_unit/security,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "vault"
+ },
+/area/security/securearmoury)
+"wpr" = (
+/obj/structure/table,
+/obj/item/storage/box/evidence,
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "red"
+ },
+/area/security/processing)
+"wtK" = (
+/obj/structure/lattice,
+/obj/structure/sign/electricshock{
+ pixel_x = 32
+ },
+/turf/space,
+/area/space/nearstation)
"wvH" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry)
+"wAE" = (
+/obj/structure/dresser,
+/turf/simulated/floor/plating,
+/area/security/detectives_office)
+"wIT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/rack,
+/obj/item/gun/projectile/shotgun/riot{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/gun/projectile/shotgun/riot,
+/obj/item/gun/projectile/shotgun/riot{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/turf/simulated/floor/plasteel,
+/area/security/securearmoury)
+"wMd" = (
+/obj/structure/table/reinforced,
+/obj/structure/reagent_dispensers/peppertank{
+ pixel_x = 32
+ },
+/obj/item/clothing/mask/gas/sechailer,
+/obj/item/clothing/mask/gas/sechailer,
+/obj/item/clothing/mask/gas/sechailer,
+/obj/item/flashlight/seclite,
+/obj/item/flashlight/seclite,
+/obj/item/flashlight/seclite,
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/structure/cable,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "vault"
+ },
+/area/security/securearmoury)
+"wVr" = (
+/obj/effect/spawner/window/reinforced,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Prison Gate";
+ name = "Prison Lockdown Blast Doors";
+ opacity = 0
+ },
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable,
+/turf/simulated/floor/plating,
+/area/security/permasolitary)
+"wVz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/hallway/primary/starboard)
+"wWy" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8";
+ tag = ""
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel,
+/area/security/warden)
+"wXI" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/wall,
+/area/quartermaster/storage)
+"xbS" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plasteel,
+/area/security/permabrig)
+"xda" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/item/cultivator,
+/obj/item/reagent_containers/glass/bottle/nutrient/ez,
+/obj/machinery/firealarm{
+ pixel_y = 26
+ },
+/turf/simulated/floor/plating,
+/area/security/permabrig)
+"xgm" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/structure/chair/office/dark,
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=Armory_North";
+ location = "Armory_South"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/plasteel,
+/area/security/securearmoury)
+"xgR" = (
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "whiteblue"
+ },
+/area/medical/surgery2)
+"xlS" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/airlock/maintenance,
+/obj/structure/barricade/wooden,
+/turf/simulated/floor/plasteel,
+/area/security/detectives_office)
+"xom" = (
+/obj/effect/decal/warning_stripes/north,
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=Armory_South";
+ location = "Armory_North"
+ },
+/mob/living/simple_animal/bot/secbot/armsky{
+ auto_patrol = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/plasteel,
+/area/security/securearmoury)
+"xqH" = (
+/obj/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 = "neutralcorner"
+ },
+/area/hallway/primary/central)
+"xuC" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8";
+ tag = ""
+ },
+/obj/effect/landmark/start{
+ name = "Warden"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/plasteel,
+/area/security/warden)
+"xwk" = (
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 11
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "showroomfloor"
+ },
+/area/medical/surgery1)
+"xDn" = (
+/obj/structure/sign/electricshock{
+ pixel_y = 32
+ },
+/turf/simulated/wall,
+/area/security/permabrig)
+"xGi" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/closet/secure_closet/warden,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 6;
+ icon_state = "red"
+ },
+/area/security/warden)
+"xHj" = (
+/obj/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"
+ },
+/area/medical/surgery1)
+"xIo" = (
+/obj/structure/bed,
+/obj/item/radio/intercom{
+ dir = 8;
+ pixel_y = -28
+ },
+/turf/simulated/floor/plating,
+/area/security/brig)
+"xKG" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/lattice/catwalk,
+/turf/space,
+/area/maintenance/auxsolarstarboard)
+"xKW" = (
+/obj/structure/closet/secure_closet/medical2,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "whitebluecorner"
+ },
+/area/medical/surgery2)
+"xLe" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/hallway/primary/starboard)
+"xQW" = (
+/obj/structure/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
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/starboard)
+"xUI" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/box/teargas,
+/obj/item/storage/box/handcuffs,
+/obj/item/storage/box/flashbangs,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "vault"
+ },
+/area/security/securearmoury)
+"xWD" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
+/area/maintenance/starboard)
+"xXw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/airlock/security{
+ name = "Interrogation";
+ req_access = null;
+ req_one_access_txt = "1;4"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/interrogation)
+"yds" = (
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Secure Gate";
+ name = "Security Blast Door";
+ opacity = 0
+ },
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4";
+ tag = ""
+ },
+/turf/simulated/floor/plating,
+/area/security/brig)
+"yez" = (
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "1"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/starboard)
+"ygp" = (
+/obj/structure/bed,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plasteel,
+/area/security/permasolitary)
+"ygv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "neutralcorner"
+ },
+/area/bridge/meeting_room)
+"ygH" = (
+/turf/simulated/wall/r_wall,
+/area/security/permabrig)
+"yiO" = (
+/turf/simulated/floor/plating,
+/area/security/detectives_office)
+"ykx" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel,
+/area/security/warden)
(1,1,1) = {"
aaa
@@ -129704,9 +127892,9 @@ aaa
abi
abj
apF
-asU
-asU
-asU
+aEc
+aEc
+aEc
atc
atZ
atZ
@@ -132816,21 +131004,21 @@ aOb
aOg
aOg
aOg
-aXf
+bmN
aOb
baj
aYO
-aXf
+bmN
aOb
baj
aYO
-aXf
+bmN
aOb
baj
aOg
baj
aOb
-aXf
+bmN
aOg
aOg
bwP
@@ -138215,11 +136403,11 @@ aUi
aOb
aUi
aYO
-aXf
+bmN
aOb
baj
aYO
-aXf
+bmN
aOb
baj
aOg
@@ -141597,7 +139785,7 @@ cki
bZM
bZM
bZM
-cpI
+ciw
bZM
csG
bZM
@@ -142303,7 +140491,7 @@ apH
apG
apG
apG
-atN
+aKd
alI
alI
aqp
@@ -143588,7 +141776,7 @@ asq
atp
alI
auR
-atN
+aKd
alI
ayh
aze
@@ -144102,7 +142290,7 @@ asr
aoT
aoo
alZ
-atN
+aKd
awZ
awZ
aoH
@@ -144142,7 +142330,7 @@ btD
buS
bwb
baF
-atN
+aKd
bAn
bCg
bDS
@@ -144651,18 +142839,18 @@ blb
bmW
bol
bqm
-bqm
+buU
bSg
buU
buU
bxl
byO
bAq
-bqm
-bDR
+bEa
bDR
+bEp
bHg
-cus
+bJd
bDR
bDR
bOD
@@ -144670,28 +142858,28 @@ bSg
byO
bUK
bWL
-buZ
+bOW
bZT
-buZ
-buZ
-buZ
+cbV
+bOW
+bOW
chc
bWL
-buZ
-buZ
-buZ
-coE
-buZ
-bwm
-buZ
-buZ
+bOW
+bOW
+bOW
+cGC
+tVa
+bOW
+bOW
+bOW
cvs
-buZ
-buZ
-buZ
-buZ
-buZ
-buZ
+bOW
+bOW
+bOW
+bOW
+bOW
+bOW
chc
cGx
cHB
@@ -144908,7 +143096,7 @@ blc
bmX
bom
bqn
-bse
+buV
btE
buV
buV
@@ -144929,10 +143117,10 @@ bUL
bva
bva
bZU
+cfR
bva
bva
bva
-bEp
bva
bva
bva
@@ -144949,9 +143137,9 @@ bva
bva
bva
bva
-cEK
+cDd
cGy
-bso
+xqH
ddm
cKv
cMb
@@ -145171,7 +143359,7 @@ buW
buW
buW
byQ
-buW
+chB
bDG
chB
bFt
@@ -145197,15 +143385,15 @@ bIX
bSz
cpO
crr
-bqA
+cEL
ctQ
-bqA
+cEL
cwQ
-bqA
-bqA
-bqA
-bqA
-bqA
+cEL
+cEL
+cEL
+cEL
+cEL
cEL
bqu
cHC
@@ -145428,7 +143616,7 @@ bvV
bxi
bxi
bwf
-aot
+bwn
bCh
bDT
bFu
@@ -145679,7 +143867,7 @@ blf
aYZ
boo
bqp
-bsh
+bqv
bsv
btH
btH
@@ -145687,7 +143875,7 @@ btH
bwf
bAr
bCi
-bDU
+byU
bFv
bHj
bIY
@@ -145709,8 +143897,8 @@ ckn
clI
cno
bSE
-cpQ
-crt
+cpT
+cry
csK
ctR
cvt
@@ -145722,7 +143910,7 @@ cCC
csK
cEM
bqu
-bso
+xqH
cIW
cKw
cMd
@@ -145936,7 +144124,7 @@ blg
aYZ
boo
bqp
-bsh
+bqv
btH
aaa
abj
@@ -145948,9 +144136,9 @@ bDV
bFw
bHj
bIZ
-bKG
+bKN
bMN
-bKG
+bKN
bQF
bSE
bSE
@@ -145966,18 +144154,18 @@ cko
clJ
cnp
bSE
-cpQ
-crt
+cpT
+cry
csK
cBi
-cvA
-cye
-cye
-cye
-cCD
+cEr
+cEr
+cEr
+cEr
+cEr
cDO
csK
-boy
+cEL
bqu
cHE
cIX
@@ -146193,7 +144381,7 @@ blh
aYZ
boo
bqp
-bsh
+bqv
btH
aaa
abj
@@ -146205,11 +144393,11 @@ bDW
asz
bHj
bJa
-bKI
+bOG
bMP
bOG
bQG
-bSE
+ciB
caQ
bWQ
bYq
@@ -146223,8 +144411,8 @@ ciB
clK
ciB
bSE
-cpQ
-cru
+qzr
+cua
ctX
cvv
cwS
@@ -146258,7 +144446,7 @@ dii
djM
dkW
dme
-dnu
+dvi
doP
drN
doP
@@ -146450,7 +144638,7 @@ blj
aYZ
bop
bqp
-bsh
+bqv
btH
aaa
abj
@@ -146466,7 +144654,7 @@ bKH
bMO
bOF
bKN
-bSE
+ciB
bUQ
bWR
bYr
@@ -146480,19 +144668,19 @@ ckp
clL
bUT
bSE
-cpQ
-crt
+cpT
+cry
csK
-cvw
+cEs
cwT
cyq
-cyq
-cyq
+nFN
+lIX
cCF
-cEc
+cEr
cEP
-cHD
-bqv
+cIT
+bqu
cHG
cIY
cKy
@@ -146723,14 +144911,14 @@ bKK
bMR
bOI
bQH
-bSE
+ciB
bUR
-bWS
-bYs
bZY
bYs
bZY
bYs
+cnv
+bYs
chh
ciD
ckq
@@ -146745,12 +144933,12 @@ cwU
cwV
cBj
cBl
-cCG
-cEd
+cEr
+cEr
cEQ
-cIf
+cIT
bqu
-bso
+xqH
cIW
cKz
cMh
@@ -146964,7 +145152,7 @@ bll
bmZ
boo
bqp
-bsh
+bqv
btH
aaa
abj
@@ -146975,39 +145163,39 @@ bCm
bDY
bFz
bHk
-bJd
-bKJ
+bKN
+bKH
bMQ
-bOH
-bQI
-bSF
+bOF
+bKN
+ciB
bUS
bWT
-bYt
-bZZ
+cbT
+chi
cbT
cdF
-bYt
+cbT
+chi
chi
-bZZ
ckr
clN
cnr
bSE
-cpQ
+cpT
crw
csK
-cvw
+cEs
cwW
czI
-czI
-czI
+shS
+aMp
cCH
cEr
cER
cIT
bqu
-bso
+xqH
cIW
cKA
cMi
@@ -147194,7 +145382,7 @@ aBu
aCw
aCu
aDH
-atN
+aKd
aFA
aGA
aHN
@@ -147221,7 +145409,7 @@ blm
bmZ
boq
bqq
-bsh
+bqv
btH
aaa
abj
@@ -147237,17 +145425,17 @@ bKL
bMS
bOJ
bQJ
-bSE
-bUT
-bWU
-bWU
-bWU
+bOH
+bOL
+clO
+bOY
+bSG
cbU
cdG
-bWU
-bWU
-bWU
-bWU
+bOY
+bSG
+bSG
+cru
clO
cns
coB
@@ -147263,8 +145451,8 @@ cCI
cEs
csK
cIU
-bqx
-bso
+qZt
+exL
cIZ
cKB
cMj
@@ -147451,7 +145639,7 @@ aAA
axe
axe
aDH
-atN
+aKd
aFA
aGB
aHN
@@ -147478,28 +145666,28 @@ blo
bmZ
boo
bqp
-bsh
+bqv
btH
aaa
abj
aaa
bwg
bAw
-bCo
-bEa
+bCx
+byU
bFB
-bHm
-bJf
-bKM
+bHk
+bKN
+bKN
bMT
bOK
bKM
-bSG
+ciB
bUU
bWV
bYu
caa
-cbV
+ciB
cdH
cfE
chj
@@ -147507,21 +145695,21 @@ ciE
cks
clP
cnt
-bSG
+bSE
cpT
cry
csK
cvz
cxQ
-cBf
+cEr
cBk
-cBf
-cCJ
+cEr
+cEr
cEN
csK
cES
bqu
-bso
+xqH
cIW
cKC
cMk
@@ -147743,24 +145931,24 @@ abj
bwe
bAx
bCp
-bEb
+byW
bFC
bHk
bJg
bKN
bMU
-bOL
-bHj
-bSE
-bSE
-bSE
-bSE
-bSE
-bSE
-bSE
-bSE
-bSE
-bSE
+bKN
+bHk
+ciB
+ciB
+ciB
+ciB
+ciB
+ciB
+ciB
+ciB
+ciB
+ciB
bSE
bSE
bSE
@@ -147772,13 +145960,13 @@ cDs
cvB
cwY
cyg
-cwY
+lIv
cBm
cCK
csK
cET
bqu
-bso
+xqH
cIW
cKD
cMl
@@ -147992,26 +146180,26 @@ bnc
bmZ
boo
bqp
-bsh
+bqv
btH
aaa
bwc
-asz
+bqy
bwf
-bAy
+aos
bCl
-bDU
+byU
bFD
bHk
-bHj
+bHk
bKO
bMV
bOM
-bHj
+bHk
aaa
abj
aaa
-bYv
+bOZ
cab
cbW
cdI
@@ -148021,9 +146209,9 @@ ciF
bYv
aaa
aaa
-bHj
+bHk
cpV
-crt
+cry
csK
csK
cvC
@@ -148249,7 +146437,7 @@ bne
bmZ
boo
bqp
-bsh
+bqv
btH
aaa
bwd
@@ -148257,18 +146445,18 @@ bxm
byR
byU
bCl
-bDU
+byU
bFy
bHn
-bJh
-bJh
-bJh
-bON
-bJh
-bJh
-bJh
+bOT
+bOT
+bOT
+bOT
+bOT
+bOT
+bOT
aaa
-bYv
+bOZ
cac
cbY
cdK
@@ -148290,9 +146478,9 @@ czJ
cBn
cCL
cEe
-boy
+cEL
bqu
-bso
+xqH
cJa
cKF
cMl
@@ -148506,7 +146694,7 @@ bQy
bmZ
boo
bqp
-bsh
+bqv
btH
aaa
bwd
@@ -148514,18 +146702,18 @@ bxn
byS
byU
bCl
-bEc
-bFE
+byU
+bFy
bHo
-bJh
+bOT
bKP
bMW
bOO
bQK
bSH
-bJh
+bOT
abj
-bYv
+bOZ
cad
cbX
cdJ
@@ -148533,9 +146721,9 @@ cfG
chl
ciH
bYv
-bHj
-bHj
-bHj
+bHk
+bHk
+bHk
cpX
crB
bHj
@@ -148547,9 +146735,9 @@ czK
cBo
cCM
cEf
-boy
+cEL
bqu
-bso
+xqH
cIW
cKG
cMm
@@ -148763,7 +146951,7 @@ bQy
aYZ
boo
bqp
-bsh
+bqv
btH
aaa
bwe
@@ -148774,15 +146962,15 @@ bCq
bEd
bFF
bHp
-bJh
+bOT
bMY
bMX
bOP
bMY
bSI
-bJh
+bOT
aaa
-bYv
+bOZ
cae
cbZ
cdL
@@ -148791,7 +146979,7 @@ chm
ciI
cku
clQ
-cnu
+coD
coD
cpY
crC
@@ -148801,12 +146989,12 @@ cvD
cxb
cyj
czL
-cyj
-cyj
-cxb
+cyk
+cyk
+gyY
cEV
cGz
-bsp
+xqH
cIW
cKH
cMn
@@ -149031,27 +147219,27 @@ bCr
bEe
bFG
bHq
-bJh
+bOT
bKR
bMX
+bKG
bMX
bMX
-bMX
-bJh
+bOT
aaa
-bYv
-bYv
-bYv
-bYv
-bYv
+bOZ
+bOZ
+bOZ
+bOZ
+bOZ
bYv
ciJ
bYv
-clR
-cnv
+clS
ckv
-cpZ
-crD
+ckv
+cqc
+cuf
csP
cub
cvE
@@ -149061,7 +147249,7 @@ czM
cBp
cCN
cxa
-boy
+cEL
bqu
cHH
cJb
@@ -149277,7 +147465,7 @@ aBC
byN
bos
bqs
-bsk
+bsm
btH
aaa
bwg
@@ -149288,13 +147476,13 @@ bCs
bEf
bFI
bHs
-bJh
+bOT
bKS
bMY
-bMY
+bKI
bQL
bSJ
-bJh
+bOT
aaa
bYw
caf
@@ -149302,12 +147490,12 @@ cca
cdM
cfJ
chn
-ciK
-ciK
+cpT
+csW
clS
-cnw
-ciK
-cqa
+ckv
+ckv
+cqc
crE
csQ
cuc
@@ -149318,7 +147506,7 @@ czO
cBr
cCO
cEg
-boy
+cEL
bqu
cHI
dEj
@@ -149540,7 +147728,7 @@ aaa
bwh
bxr
byW
-byW
+bAy
bCt
bEg
bFH
@@ -149551,7 +147739,7 @@ bMZ
bOQ
bQM
bSK
-bJh
+bOT
abj
bYw
cag
@@ -149560,17 +147748,17 @@ cdN
cfK
cho
ciL
-ciL
+cnx
clT
cnx
-ciL
+cnx
cqb
crF
csR
cud
cvF
cxa
-cym
+cBo
czN
cBq
cCP
@@ -149798,17 +147986,17 @@ bwi
bxs
byV
byU
-bCr
+bEb
bEh
bFJ
bHt
-bJh
+bOT
bKU
bMY
-bMY
+bKJ
bQL
bSL
-bJh
+bOT
aaa
bYw
cah
@@ -149817,9 +148005,9 @@ cdO
cfL
chp
ciM
+czY
+cEK
ckv
-clR
-cnv
ckv
cqc
crG
@@ -149832,7 +148020,7 @@ czQ
cBt
cCQ
cEi
-boq
+cFa
cGB
cHK
dEm
@@ -150053,30 +148241,30 @@ bsv
abj
bwf
bxt
-byU
+bse
byU
bCr
bEi
bFK
bHu
-bJh
+bOT
bKV
bMX
+bKY
bMX
bMX
-bMX
-bJh
+bOT
aaa
-bYx
-bYx
-bYx
-bYx
-bYx
+bQI
+bQI
+bQI
+bQI
+bQI
bYx
ciN
bYx
clU
-cnv
+ckv
ckv
cqc
crH
@@ -150089,7 +148277,7 @@ czP
cBs
cCR
cxa
-boo
+cFa
bqu
cHL
cJf
@@ -150305,7 +148493,7 @@ bls
bfq
bov
bqu
-bso
+ckH
btH
aaa
bwj
@@ -150316,15 +148504,15 @@ bCu
bEj
bFL
bHv
-bJh
+bOT
bMY
bMX
bOR
bMY
bSM
-bJh
+bOT
aaa
-bYx
+bQI
cai
ccd
cdP
@@ -150334,7 +148522,7 @@ ciO
ckw
clV
cny
-coD
+cny
cqd
crI
csU
@@ -150343,12 +148531,12 @@ cvH
cxc
cyo
czR
-cyo
-cyo
-cxc
-cEX
+cBo
+cBo
+eNm
+cFa
bqu
-cHM
+cHN
cJg
cKM
cMo
@@ -150562,7 +148750,7 @@ blt
bfq
bov
bqu
-bso
+ckH
btH
aaa
bwk
@@ -150570,18 +148758,18 @@ bxv
byX
byU
bCl
-bEk
-bFM
+byU
+bFy
bHw
-bJh
+bOT
bKP
bNa
bOS
bQN
bSN
-bJh
+bOT
abj
-bYx
+bQI
caj
cce
cdQ
@@ -150589,9 +148777,9 @@ cfN
chr
ciP
bYx
-bHj
-bHj
-bHj
+bHk
+bHk
+bHk
cqe
crJ
bHj
@@ -150603,9 +148791,9 @@ czS
cBo
cCS
cEf
-boo
+cFa
bqu
-cHM
+cHN
cJg
cKN
cMp
@@ -150819,7 +149007,7 @@ blu
bhU
bov
bqu
-bso
+ckH
btH
aaa
bwk
@@ -150827,18 +149015,18 @@ bxw
byY
bAB
bCv
-bDU
+byU
bFy
bHn
-bJh
-bJh
-bJh
bOT
-bJh
-bJh
-bJh
+bOT
+bOT
+bOT
+bOT
+bOT
+bOT
aaa
-bYx
+bQI
cak
ccf
cdR
@@ -150860,9 +149048,9 @@ czT
cBu
cCT
cEe
-boo
+cFa
bqu
-cHM
+cHN
cJh
cKO
cMq
@@ -151075,27 +149263,27 @@ bjE
blv
bhV
bow
-bqv
-bsp
+bqu
+ckH
btH
aaa
bwl
-asz
+bqy
bwf
bAC
bCl
-bDU
+byU
bFy
-bHx
-bHx
+bWX
+bWX
bKX
bNb
bOU
-bHx
+bWX
aaa
abj
aaa
-bYx
+bQI
cal
ccg
cdS
@@ -151105,9 +149293,9 @@ ciR
bYx
aaa
aaa
-bHj
+bHk
cqg
-crL
+crP
csV
csV
cvI
@@ -151119,7 +149307,7 @@ csV
csV
cEY
bqu
-cHM
+cHN
cJh
cKO
cMp
@@ -151341,30 +149529,30 @@ abj
byZ
bAD
bCw
-bEa
+byU
bFN
-bHy
+bWX
bJj
-bKY
-bKY
+bLc
+bLc
bOV
-bHx
-bHx
-bHx
-bHx
-bST
-bST
-bST
-bST
-bST
+bWX
+bWX
+bWX
+bWX
+bYD
+bYD
+ciT
+bYD
+bYD
+ciS
+ciS
cht
cht
cht
cht
-cht
-cht
-cqc
-crL
+ygv
+crP
csV
cuk
cvK
@@ -151374,9 +149562,9 @@ czW
cBw
cCV
csV
-boo
+cFa
bqu
-cHM
+cHN
cJg
cKP
cMq
@@ -151590,7 +149778,7 @@ blx
bhX
bou
bqu
-bso
+ckH
btH
aaa
abj
@@ -151598,41 +149786,41 @@ aaa
bwi
bAE
bCx
-bDU
+byU
bFO
-bHx
+bWX
bJk
bKZ
-bLb
-bOW
+bLc
+bLc
bQO
bSO
bUV
-bHx
+bWX
bYy
cam
cch
cdT
-bST
+bYD
cgQ
cgQ
cky
clW
cmX
cht
-cqc
-crM
-csW
+ygv
+crP
+csV
cul
-cvL
-cxg
+cxh
+cCX
cyt
-cyt
-cBx
+cCX
+cCX
cCW
-csW
+csV
cEZ
-bqv
+bqu
cHN
cJg
cKQ
@@ -151847,7 +150035,7 @@ blu
bhU
box
bqx
-bso
+ckH
btH
aaa
abj
@@ -151870,7 +150058,7 @@ bYz
can
cci
cdU
-bST
+bYD
cgQ
cgQ
ckz
@@ -151889,8 +150077,8 @@ cBy
cCX
cEk
cFa
-bqx
-cHM
+qZt
+ukK
cJi
cKR
cMr
@@ -152104,7 +150292,7 @@ bly
bfq
bov
bqu
-bso
+ckH
btH
aaa
abj
@@ -152114,20 +150302,20 @@ bAF
bCz
bEm
bFy
-bHx
+bWX
bJm
bLb
-bNd
-bOY
+bNe
+bLc
bQP
bSP
bUW
-bHx
+bWX
bYA
cao
ccj
cdV
-bST
+bYD
chv
ciS
ckA
@@ -152135,19 +150323,19 @@ clY
cnA
cht
cqj
-crL
+crP
csV
cuX
-cvN
+cCX
cxh
cyu
-czX
-cBz
+cCX
+cBC
dte
csV
-boo
+cFa
bqu
-cHM
+cHN
cJg
cKS
cMp
@@ -152369,13 +150557,13 @@ abj
bwf
bAG
bCl
-bDU
+byU
bFQ
-bHx
+bWX
bJn
-bLc
+bJf
bNe
-bOZ
+bLc
bQR
bSR
bUY
@@ -152398,13 +150586,13 @@ cvJ
cvY
cxJ
cyI
-czZ
-cBB
+cCX
+cBC
cDa
csV
-boo
+cFa
bqu
-cHM
+cHN
cJg
cKT
cMq
@@ -152618,7 +150806,7 @@ blA
bdU
boy
bqu
-bso
+ckH
btH
aaa
abj
@@ -152626,9 +150814,9 @@ aaa
bwf
bAt
bCl
-bDU
+byU
bFx
-bHx
+bWX
bJo
bLd
bNf
@@ -152636,17 +150824,17 @@ bLc
bQS
bSS
bUZ
-bHx
+bWX
cfa
caq
ccl
cdX
-cfR
+bYD
chx
-ciT
+ciS
ckC
cma
-cnC
+cnB
coG
cql
crP
@@ -152655,7 +150843,7 @@ csV
cvO
cxi
cyv
-czY
+cvO
cBA
cCZ
csV
@@ -152875,7 +151063,7 @@ bbe
bbe
boz
bqu
-bso
+ckH
btH
aaa
abj
@@ -152883,22 +151071,22 @@ aaa
bwf
aot
bCA
-bDT
+bEk
asz
bHx
bJp
bLe
bNg
bPa
-bHx
-bST
-bST
-bST
+bWX
+bYD
+bYD
+bYD
bYD
car
ccm
cdY
-bST
+bYD
chy
ciU
cjY
@@ -152906,19 +151094,19 @@ cmb
cnD
cht
cre
-crL
+crP
csZ
csV
cvP
cxj
cyw
-cAa
+cBv
cBC
-cDb
+cDf
cEl
cGK
bqu
-cHM
+cHN
cJh
cKV
cMq
@@ -153094,7 +151282,7 @@ aqn
are
arW
asJ
-atN
+aKd
aux
arW
alI
@@ -153132,7 +151320,7 @@ blB
bbe
boy
bqu
-bso
+ckH
btH
aaa
abj
@@ -153140,7 +151328,7 @@ aaa
bwf
bAs
bCB
-bEn
+bAs
bAs
bHx
bJq
@@ -153148,22 +151336,22 @@ bLf
bLf
bLc
bQT
-bST
+bYD
bVa
bWY
bYE
cas
ccn
cdZ
-bST
+bYD
chz
ciS
ckD
cmc
cnE
coH
-cqc
-crL
+ygv
+crP
cta
csV
cvQ
@@ -153175,7 +151363,7 @@ cDc
cEp
cGK
bqu
-cHM
+cHN
cJg
cKW
cMp
@@ -153189,7 +151377,7 @@ cMq
cSF
cJg
cPG
-dcp
+dqW
ddU
dfz
dgN
@@ -153389,7 +151577,7 @@ blN
bbi
bov
bqu
-bso
+ckH
bsv
btH
btH
@@ -153397,7 +151585,7 @@ btH
bwf
bAr
bCl
-bDU
+byU
bFR
bHx
bJr
@@ -153405,34 +151593,34 @@ bLg
bNh
bPb
bQU
-bST
+bYD
bVb
bWZ
-bYF
+bYD
cat
cco
cea
-bST
+bYD
chA
ciS
ckF
cmd
cnG
cht
-cqc
-crL
+ygv
+crP
ctk
csV
cvR
cxl
cyy
cBv
-cBH
+cCX
cDf
cEp
cGK
bqu
-cHM
+cHN
cJg
cKX
cMt
@@ -153645,17 +151833,17 @@ bfy
bnf
bNB
boA
-bqv
+bqu
bsr
bsv
btI
btI
btJ
bwf
-aot
-bCA
-bDT
-asz
+bDU
+bEc
+bEn
+bFE
bHx
bHx
bHx
@@ -153689,7 +151877,7 @@ csV
csV
cGL
dxV
-dWO
+lso
cJk
cKY
cJg
@@ -153902,50 +152090,50 @@ bjI
bnh
bbi
bov
-bqy
-bss
+bqu
+ckH
coE
-buZ
bwm
-buZ
+bwm
+bwm
bza
-bAH
+bEo
bCC
bEo
-bAH
+bEo
bHA
-buZ
-buZ
-buZ
-buZ
+bwm
+bwm
+bwm
+bwm
coE
bwm
bVc
-buZ
-buZ
bwm
-buZ
-buZ
-buZ
-buZ
+bwm
+bwm
+bwm
+bwm
+bwm
+bwm
ciV
ckH
-buZ
-buZ
+bwm
+bwm
coE
cqn
crR
-buU
+cFa
cun
-bqm
+cFa
cxm
cyz
-buU
-buU
-buU
-buU
-bos
-cGC
+cFa
+cFa
+cFa
+cFa
+cFa
+bqu
cHP
dWP
cKY
@@ -153960,7 +152148,7 @@ cYU
cYN
cZJ
dba
-dcq
+don
ddW
dgx
dgP
@@ -154125,7 +152313,7 @@ asL
atQ
alZ
avp
-ayS
+are
axv
ayE
azK
@@ -154163,29 +152351,29 @@ bqz
bst
bSi
bva
-bwn
+bva
btK
bva
bva
bCD
-bEp
-bFs
+bva
+bFM
bHB
bva
bva
bva
bva
bSi
-bwn
+bva
bVd
bva
bva
-bZU
+bYF
+bva
bva
bva
bva
bva
-bwn
ckI
bva
bva
@@ -154194,16 +152382,16 @@ cqo
crS
bva
bva
-bwn
+bva
bva
bva
bva
bva
cDd
bva
-bEp
+bva
cGD
-bsh
+kCi
dWQ
cKY
cMv
@@ -154382,10 +152570,10 @@ asM
atR
asK
arW
-awy
-axw
-ayD
-azL
+ayS
+osS
+wXI
+ixB
aFO
aBS
aCN
@@ -154419,45 +152607,45 @@ boC
bqA
bsu
bSV
-bvb
+bEq
bwo
bxz
bzb
-bvb
+bEq
bCE
bEq
-bEq
+bHm
bHC
-bvb
-bvb
-bvb
+bEq
+bEq
+bEq
bPc
bSV
bSU
bVe
bXa
-buW
+bSF
cau
-buW
-buW
+bSF
+bSF
cfS
-chB
-ciW
+cnw
+cnC
ckJ
cme
-buW
-cqm
+bSF
+jUC
cqp
crT
ctb
cuo
-bsf
-buW
+rjr
+bSF
cyA
-buW
-buW
-buW
-buW
+bSF
+bSF
+bSF
+bSF
cFc
cGE
cHQ
@@ -154698,8 +152886,8 @@ bYH
bYH
bYH
bYH
-cfT
-cui
+bYK
+bZi
bYK
bYH
bYH
@@ -154955,8 +153143,8 @@ cav
ccp
ceb
cay
-chC
-ciY
+cax
+cax
cax
cmf
cvu
@@ -154973,7 +153161,7 @@ cBE
cDe
cEm
cFd
-ckW
+hos
cmt
cJn
cKZ
@@ -154987,7 +153175,7 @@ cPO
cXt
cYQ
cPO
-dbe
+dlD
dco
cNT
cJg
@@ -155206,21 +153394,21 @@ bPe
bQW
bSX
bVg
-bXd
-bYI
-caw
-caw
-cec
-cec
-chD
-ciZ
-caw
-caw
-caw
-caw
-cec
-bYI
-cte
+bXc
+bYK
+cax
+cax
+cax
+cax
+cax
+cax
+cax
+cax
+cax
+cax
+cax
+bYK
+ctd
cuq
bsh
cxn
@@ -155462,23 +153650,23 @@ bNk
bPf
bQX
bSY
-bVg
+xLe
bXc
bZi
cax
ccq
ced
-ced
-cax
+ltg
+caw
cja
ckK
-ccq
-cax
-cax
+qmW
+mQk
+mQk
chC
-bZi
+lEt
ctf
-cur
+cus
cvT
cxn
cyD
@@ -155626,7 +153814,7 @@ aaa
abj
aaa
aaa
-abW
+kYo
ace
aco
aaa
@@ -155717,25 +153905,25 @@ bng
bLl
bNl
bPg
-bQY
-bSZ
-bVh
-bXe
+bQW
+bSX
+bVg
+bXc
bYK
cay
ccq
cee
-ced
+ccq
cax
cjb
ckL
-cmg
-cnI
-coJ
+ccq
+cay
+cax
cqr
-crU
+bYK
ctg
-cus
+cur
cvU
cxn
cyE
@@ -155759,7 +153947,7 @@ cXw
cYT
cMx
cPG
-dcp
+dqW
ddU
cKY
diG
@@ -155879,15 +154067,15 @@ aaa
aaa
abj
aaa
-abW
+kYo
ace
aco
aaa
-abW
+kYo
acf
aco
aaa
-abW
+kYo
ace
aco
aaa
@@ -155975,23 +154163,23 @@ bLm
bTd
bPh
bLh
-bTa
+bSX
bVg
bXc
bYH
ccO
ccq
ccq
-ced
+ccq
cax
-cja
+oHY
ccq
ccq
ccq
coK
-chC
+cqr
bYH
-cth
+ctg
cuq
bsh
cxn
@@ -156136,15 +154324,15 @@ aaa
aaa
abi
aaa
-abW
+kYo
acf
aco
aaa
-abW
+kYo
acf
aco
aaa
-abW
+kYo
acf
aco
aaa
@@ -156239,7 +154427,7 @@ bYH
bYK
bYK
bYK
-cfT
+bYK
cgK
cjc
bYK
@@ -156248,7 +154436,7 @@ bYK
bYH
cqs
bYH
-cth
+ctg
cuq
bsh
cxo
@@ -156393,15 +154581,15 @@ aaa
aaa
abi
abj
-abW
+kYo
acf
aco
abj
-abW
+kYo
acf
aco
abj
-abW
+kYo
acf
aco
abj
@@ -156496,14 +154684,14 @@ bYH
caA
ccr
cef
-cfU
+chF
chF
cjd
ckM
cmh
cnJ
coL
-chC
+cqr
bYH
cnO
cti
@@ -156515,7 +154703,7 @@ cBJ
cxn
cxn
cxn
-ckV
+xQW
cmt
boG
boG
@@ -156650,15 +154838,15 @@ aaa
aaa
abj
aaa
-abW
+kYo
acf
aco
aaa
-abW
+kYo
acf
aco
aaa
-abW
+kYo
acf
aco
aaa
@@ -156753,7 +154941,7 @@ bYH
caB
ccs
ceg
-cfV
+cml
cgL
cje
ckN
@@ -156762,7 +154950,7 @@ cnK
coM
cqt
bYH
-cth
+ctg
cuq
bso
cxn
@@ -156772,7 +154960,7 @@ cBK
cDh
cEo
cxn
-ckW
+hos
cHX
cJq
cJq
@@ -156800,11 +154988,11 @@ dpB
cXx
cVT
cXx
-dux
+cVT
cXx
cVT
dxZ
-dux
+cVT
dAt
dBo
dCi
@@ -156907,7 +155095,7 @@ abj
abi
abi
abj
-abW
+kYo
acf
aco
aaa
@@ -156915,7 +155103,7 @@ aaa
acE
aaa
aaa
-abW
+kYo
acf
aco
aaa
@@ -156990,7 +155178,7 @@ aaa
aaa
aaa
abj
-aaa
+aaZ
abj
aaa
abj
@@ -157010,7 +155198,7 @@ bYH
caC
cct
ceh
-cfW
+chH
chH
cjf
ckO
@@ -157019,7 +155207,7 @@ cnL
coN
cqt
bYH
-cth
+ctg
cuq
bso
cxn
@@ -157029,7 +155217,7 @@ cBK
cxn
cxn
cxn
-ckW
+hos
cHX
cJr
cLd
@@ -157044,25 +155232,25 @@ dcE
cZp
cUr
dcA
-dcq
+don
dgA
dil
-dgY
-diM
-dgY
dlu
-dgY
+diM
+dlu
+dlu
+dlu
dob
dpC
-dgY
+dlu
dsi
-dgY
-dgA
dlu
-dgY
-dgY
-dgA
+ehq
dlu
+diM
+dlu
+ehq
+hmC
cOl
dCj
dDw
@@ -157257,7 +155445,7 @@ bFT
bHK
bJw
bLp
-bNp
+bLp
bPl
bFS
bTb
@@ -157271,7 +155459,7 @@ cfX
chI
cjg
ckP
-cmk
+cml
cnM
coO
cqt
@@ -157286,7 +155474,7 @@ cBL
cDh
cEq
cDe
-ckW
+hos
cHX
cJs
cLe
@@ -157302,25 +155490,25 @@ cZO
dbt
deb
dcw
-cNS
-dfC
-dfD
-dfD
-dfD
+dux
+cJk
+cKY
+cKY
+cKY
dlv
-dfF
+dCo
dof
-dfF
-dfD
-dfD
-cJg
+dCo
+cXJ
+cXJ
+cXJ
+cXJ
+cXJ
+cXJ
+cXJ
dSd
dvK
-cKY
-cJg
-dSd
-dvK
-cKY
+cXJ
dbo
dDt
cKY
@@ -157419,9 +155607,9 @@ aaa
abj
abj
abv
-abG
-abG
-abG
+xKG
+xKG
+xKG
ach
acp
acp
@@ -157514,14 +155702,14 @@ bFU
bHL
bJx
bLq
-bNq
+dDN
bPm
-bQZ
-bTe
+bFV
+bTb
bVk
bXh
bVF
-caE
+ceh
ccv
cej
cfY
@@ -157533,7 +155721,7 @@ cnM
coM
cqt
bYH
-cth
+ctg
cuq
bso
cxn
@@ -157543,7 +155731,7 @@ cBM
cxn
cxn
cDe
-ckW
+hos
cHX
cJt
cLf
@@ -157557,29 +155745,29 @@ cXz
daa
cZQ
dbu
-dbe
+dlD
dco
-cNT
-dfD
+duG
+cKY
dgZ
-dha
-dfF
-dlw
+dwp
+dyk
+cKY
dmw
-doc
-dpD
-dqL
-dfD
+doh
+dpJ
+dqM
+dCr
dtl
duz
dvL
-cKY
-dtl
-duz
-dvL
-cKY
+nGL
+cXJ
+jkU
+fVZ
+cXJ
dCk
-dDx
+dDE
bng
aaa
aaa
@@ -157741,12 +155929,12 @@ aaa
aaa
aaa
abj
-aSf
-aSf
-aSf
-aSf
-aSf
-aSf
+abj
+abj
+abj
+abj
+abj
+abj
abj
aaa
bes
@@ -157770,17 +155958,17 @@ aaa
bFS
bHM
bJy
-bLr
+bNr
bNr
bPn
bRa
bTf
bVl
-bXe
+bXc
bYH
caF
ccw
-cek
+chJ
cfZ
ctV
cji
@@ -157790,7 +155978,7 @@ cnN
coP
cqu
bYH
-cth
+ctg
cuv
cvX
cxn
@@ -157800,7 +155988,7 @@ cBK
cDh
cFb
cFg
-cLm
+ltY
cHX
cJu
cLf
@@ -157814,27 +156002,27 @@ cXA
cZZ
cZR
cXl
-dbe
-dcp
-def
-dfD
-dha
-dha
+dlD
+dqW
+cNT
+cJg
+dhe
+dwN
dkl
-dlx
-dmx
-dod
-dpE
+cJg
+dmB
+doh
+dpJ
dqM
-dfD
+dEu
dtm
-duz
+nRf
dvM
-cKY
-dtm
-duz
-dvM
-cKY
+hLZ
+cXJ
+eha
+hTW
+cXJ
dCl
dDy
cqJ
@@ -157935,7 +156123,7 @@ abi
abi
abi
abj
-abW
+kYo
acj
aco
aaa
@@ -157943,7 +156131,7 @@ aaa
acG
aaa
aaa
-abW
+kYo
acj
aco
abj
@@ -157998,12 +156186,12 @@ aaa
aaa
aaa
abj
-aSg
-aSg
-aSf
-aSf
-aSg
-aSg
+aaa
+aaa
+abj
+abj
+aaa
+aaa
abj
aaa
aaa
@@ -158026,7 +156214,7 @@ aaa
aaa
bFV
bHN
-bJx
+sYQ
bLs
bNs
bPo
@@ -158037,7 +156225,7 @@ bXi
bYM
bYM
bXg
-cel
+bYM
bYM
bYM
bYM
@@ -158071,29 +156259,29 @@ cXB
cYW
cZS
dbv
-dbe
+dlD
dco
cNT
dfD
-dhb
-dha
-dfF
+dhe
+dwP
+dzp
dly
dAg
doe
dpF
dqN
-dfD
+dHZ
dtn
duA
dAq
-cKY
-dtn
-duA
+qgr
+vrB
+mko
dXw
-cKY
+cXJ
cmt
-dDx
+dDE
bng
aaa
aaa
@@ -158192,15 +156380,15 @@ aaa
aaa
abi
aaa
-abW
+kYo
acj
aco
aaa
-abW
+kYo
acj
aco
aaa
-abW
+kYo
acj
aco
aaa
@@ -158255,12 +156443,12 @@ aaa
aaa
aaa
abj
-aSg
-aSg
-aSg
-aSg
-aSg
-aSg
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
abj
aaa
aaa
@@ -158314,7 +156502,7 @@ cBO
cDi
cnP
cFh
-cLm
+ltY
cHX
cJq
cLh
@@ -158330,27 +156518,27 @@ cWd
cWd
dbl
dcx
-deg
-dfD
-dfD
+cNT
+cJg
+dhd
diN
dfC
-dlz
-dfD
-dog
-dfD
-dfD
-dfD
+cJg
+dmB
+doh
+dpH
+cXJ
+dJk
dMi
duB
-dvO
-cKY
-dQu
-duB
-dvO
-cKY
+dMi
+sAW
+cXJ
+xwk
+xHj
+cXJ
dCm
-dDz
+dDD
bng
aaa
dFG
@@ -158449,15 +156637,15 @@ aaa
aaa
abj
abj
-abW
+kYo
acj
aco
abj
-abW
+kYo
acj
aco
abj
-abW
+kYo
acj
aco
abj
@@ -158512,12 +156700,12 @@ aaa
aaa
aaa
abj
-aSg
-aSg
-aSf
-aSf
-aSg
-aSg
+aaa
+aaa
+abj
+abj
+aaa
+aaa
abj
aaa
aaa
@@ -158540,7 +156728,7 @@ aaa
aaa
bFS
bHP
-bJA
+dDN
bLu
bNu
bPq
@@ -158585,29 +156773,29 @@ cXC
cYX
cYX
cWd
-dbe
+dlD
dco
dXp
-dfD
-dhc
-dhc
-dfF
-dlA
+cKY
+cKY
+cKY
+cKY
+cKY
dmz
dol
dpG
-dqO
-dfD
-dtp
-duC
-dvP
-cKY
-dtp
-duC
-dvP
-cKY
+dAx
+dAx
+dAx
+dAx
+dAx
+dAx
+dAx
+dAx
+eSe
+dAx
dCl
-dDA
+dDC
bng
abj
dFG
@@ -158706,15 +156894,15 @@ aaa
aaa
abi
aaa
-abW
+kYo
acj
aco
aaa
-abW
+kYo
acj
aco
aaa
-abW
+kYo
acj
aco
aaa
@@ -158776,9 +156964,7 @@ aaa
abj
abj
abj
-aaa
-aaa
-aaa
+abj
aaa
aaa
aaa
@@ -158795,14 +156981,16 @@ bzf
aaa
aaa
aaa
-bFS
-bFS
-bJB
-bLv
-bFS
-bFS
-bFS
-bTh
+aaa
+aaa
+bLA
+bLA
+bLA
+bLA
+bLA
+bLA
+bLA
+rOn
bVo
bXl
bYO
@@ -158811,9 +156999,9 @@ ccA
ceo
cgc
chN
-cjj
+bYM
ckT
-cmp
+cjn
cnP
coR
cqw
@@ -158843,28 +157031,28 @@ cYY
cZU
dbw
dbm
-dcq
-dee
-dwp
+dqW
+cNT
+cJg
dhd
dhc
-dfF
-dJM
-dmx
+dBp
+cJg
+dmB
doh
dpH
-dqP
-dfD
-cKY
-cKY
-cKY
-cKY
-cKY
-cKY
-cKY
-cKY
+dAx
+dJM
+xgR
+iFx
+iKj
+xKW
+dAx
+muK
+ifj
+dAx
cmt
-dDx
+dDE
cqJ
aaa
dFH
@@ -158963,15 +157151,15 @@ aaa
aaa
abi
aaa
-abW
+kYo
acj
aco
aaa
-abW
+kYo
acj
aco
aaa
-abW
+kYo
acj
aco
aaa
@@ -159033,6 +157221,7 @@ abj
abj
aaa
aaa
+abj
aaa
aaa
aaa
@@ -159040,10 +157229,7 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
-aaa
-bsA
+rOH
btS
bsA
aaa
@@ -159052,14 +157238,16 @@ btS
bsA
aaa
aaa
-bFS
+aaa
+aaa
+bLA
bHQ
bJC
bLw
bNv
bPr
-bFS
-bTi
+mft
+rOn
bVg
bXk
bYN
@@ -159096,32 +157284,32 @@ cWd
cUo
cVY
cXF
-cVZ
+dlA
cZV
dcD
-dbc
+dlE
dcy
deh
dfF
-dha
-dhc
-dfF
+dvR
+dxA
+dBt
dbF
dmA
doi
dpI
dLP
-dfD
+dPn
dtq
-dko
+soN
dvQ
-ctu
+nfo
dya
dzm
dAu
-cWa
-dCn
-dDx
+dAx
+dCk
+dDE
bng
abj
dFG
@@ -159224,7 +157412,7 @@ aaa
abj
aaa
aaa
-abW
+kYo
acj
aco
aaa
@@ -159282,41 +157470,41 @@ aaa
aaa
aaa
aaa
-abi
+abj
abj
abj
aaa
aaa
abj
-aaa
-aaa
-acF
-acF
-acF
-acF
-acF
-acF
-aaa
abj
+aaa
+acF
+acF
+acF
+acF
+acF
+acF
abj
-bqI
+wtK
bsB
btT
bsB
aaa
bsB
-btT
-bsB
-bCI
+ixV
+emr
+lEL
abj
-bFS
+abj
+abj
+bLA
bHR
-bJD
+bxQ
bLx
-bNw
+bxQ
bPs
-bFS
-bTb
+fHe
+rOn
bVg
caz
bYM
@@ -159356,30 +157544,30 @@ cXG
cYZ
cZW
cUr
-dbe
-dcp
-dei
-dxA
-dhe
-dhc
-dfF
dlD
+dtC
+cNT
+cJg
+dhe
+dye
+dkl
+cJg
dmB
doj
dpJ
-dqR
-dfD
+dqS
+dQu
dtr
duD
-cWb
+rsF
dwL
-cWb
-dfH
+dAx
+vbZ
dAv
-dfH
-dCo
-dDB
-bqC
+dAx
+dCk
+dDE
+bng
aaa
dFG
dGw
@@ -159536,52 +157724,52 @@ abj
aaa
aaa
aaa
+aaZ
aaa
-aaa
-aaa
-abi
+mhu
+mhu
+pZf
+mhu
+pZf
+mhu
+mhu
+abj
aaa
abj
aaa
aaa
abj
aaa
-aaa
+aaZ
abj
-aaa
-aaa
-abj
-aaa
-aaa
-abj
-bnl
-boJ
bno
bsB
btS
bsB
bno
-bsB
-btS
-bsB
-bCJ
-bCJ
-bFS
-bFS
-bFS
-bFS
-bFS
-bFS
-bFS
+gcN
+vmw
+bno
+lBR
+pUv
+pUv
+lBR
+bLA
+bLA
+llI
+bLA
+mft
+mft
+bLA
bQz
bVB
bVD
bYM
-caL
-caL
-caL
-caL
-caL
+bYM
+bYM
+bYM
+bYM
+bYM
bYM
ckW
cmr
@@ -159602,7 +157790,7 @@ cFl
cGP
cIb
aFx
-cLm
+cRy
cMJ
des
cST
@@ -159616,27 +157804,27 @@ cWd
dbn
dcz
cNT
-dfD
+cKY
dhf
diO
-dfF
-dlE
+dCn
+cKY
dmC
dok
dpK
dqS
-dfD
+dRx
dts
duE
-aOx
-aOx
-dvS
-aOx
+rje
+uQK
+dAx
+kVM
dAw
-aOx
-aOx
-dDC
+dAx
+dCl
dDC
+bng
abj
dFG
dGx
@@ -159791,13 +157979,17 @@ abj
abj
abj
abj
-abj
-abj
-abj
-abj
-abj
abi
-aaa
+abi
+abi
+abj
+mhu
+ekR
+hcQ
+mhu
+ygp
+ekR
+mhu
abj
abj
abj
@@ -159807,41 +157999,37 @@ abj
abj
abj
abj
-abj
-abj
-abj
-abj
-bnm
+bsA
boW
bqL
bsZ
btV
bxJ
+vnm
bno
-bzi
-btV
-bsZ
+eSX
+hZF
bEw
bEr
bFX
bMc
-bJE
+bFX
bLy
-bJE
-bJE
+bFX
+bFX
bRd
bTj
-bVh
+bVg
bXn
bYP
-bhf
+bXW
ccD
cer
cgf
-bLA
+hTV
cHu
ckX
-cms
+cqI
cnP
coS
cqz
@@ -159859,7 +158047,7 @@ cFm
cGQ
cIc
aFx
-cGF
+dlw
cHR
cWd
cWc
@@ -159873,27 +158061,27 @@ cWd
dbo
dec
dej
-dfD
-dfD
-dfD
-dfD
-dlz
-dfD
+cKY
+cKY
+cKY
+cKY
+cKY
+dpt
+dpt
dpt
-dfD
-dfD
-dfD
-dtt
-duF
-aOx
-dwM
-dyb
-dzn
dAx
-dyc
+dAx
+dAx
+dAx
+dAx
+dAx
+dAx
+dAx
+dAx
+dAx
dCp
dDD
-dDC
+cqJ
aaa
dFI
dGy
@@ -160050,15 +158238,15 @@ abj
aaa
aaa
abj
-aaZ
aaa
aaa
-abi
-aaa
-abj
-aaa
-aaa
-abj
+mhu
+wgn
+eud
+wVr
+eqc
+tpo
+mhu
aaa
aaa
aaa
@@ -160077,16 +158265,16 @@ bvm
bwy
bxK
bzg
-bAM
+bzg
bCL
-bEs
-bFY
+bJF
+bJF
bHT
-bJF
-bJF
+wVz
+wVz
bNx
-bJF
-bJF
+gJk
+meB
bTk
bVp
bXB
@@ -160095,7 +158283,7 @@ caM
ccE
ces
chK
-bLA
+hTV
cjm
ckW
cmr
@@ -160120,9 +158308,9 @@ cME
cMK
cOo
cOo
-cRy
-cRy
-cUt
+diP
+diP
+dtu
cWa
cXD
cZc
@@ -160136,21 +158324,21 @@ diP
diP
dlF
dmD
-dqW
+diP
diP
diP
dsj
dtu
-duG
-aOx
-dwN
+dko
+gpX
+ctu
dyc
dzo
-dAx
-dyc
-dyb
+hjo
+cWa
+obN
dDE
-dEt
+bng
aaa
dFJ
dGz
@@ -160305,17 +158493,17 @@ abj
aaa
abj
aaa
-aaa
-abj
-aaa
-aaa
-aaa
-abi
-aaa
-abi
-aaa
-aaa
-abj
+tgE
+tgE
+tgE
+tgE
+mhu
+hdV
+mGO
+uCE
+pXX
+gSt
+mhu
aaa
aaa
aaa
@@ -160336,15 +158524,15 @@ bxL
bHS
bAN
bCM
-bEt
-bFZ
+bHU
+bHU
bHU
bHU
bLz
bHU
-bHU
-bHU
-bTl
+mtR
+mHP
+bLz
bVq
bXp
bYR
@@ -160352,10 +158540,10 @@ bhf
ccF
cet
cgh
-bLA
+hTV
cjn
ckW
-cms
+cqI
cnP
coT
cqB
@@ -160393,21 +158581,21 @@ cSW
dby
dby
dmJ
-don
+dby
dby
cSW
cSW
dtv
duH
-aOx
+dyd
dwO
dyd
-dzp
+dfH
dAy
-dBp
-dyc
+dfH
+iVO
dDF
-dEt
+bqC
abj
dFG
dGA
@@ -160562,20 +158750,20 @@ abj
abj
abj
abj
-abj
-abj
-abj
-abj
-abj
-abi
-aaa
-abi
-aaa
-aaa
-aGT
-aGV
+tgE
+iMM
+voo
+qZI
+mhu
+ssp
+mhu
+mhu
+mhu
+tOM
+mhu
+aml
bbn
-aGT
+ygH
bex
bfR
bhb
@@ -160585,34 +158773,34 @@ blS
bno
boN
bqN
-bsE
+kyq
btX
-bvo
+bqK
+esa
bno
-bzt
bCK
-bAN
-bId
-bno
-bGa
-bGa
-bGa
+bCK
+bCK
+bLA
+bCK
+bCK
+bCK
bLA
bGa
-bGa
-bGa
-bLA
-bWe
-bGa
-bYS
-bLA
-bLA
-bGd
+rDp
+pgF
+hTV
+hTV
+hTV
+hTV
+iDa
+hOL
+hOL
cgi
-bLA
+hTV
cjo
ckY
-cmt
+boG
cnP
cnP
cnP
@@ -160638,12 +158826,12 @@ aFx
cSX
cUv
cXI
-cXJ
-cXJ
+dlz
+dlz
dcF
-cXJ
-cXJ
-cXJ
+dlz
+dlz
+dlz
dfI
dhi
dfI
@@ -160654,17 +158842,17 @@ dfI
dfJ
dfJ
dfI
-dtw
-duI
+gmN
+duL
+aOx
+aOx
+dvT
aOx
-dwP
-dyb
-dyb
dAz
-dyc
-dyb
-dDG
aOx
+aOx
+dDG
+dDG
abj
dFG
dGw
@@ -160819,24 +159007,24 @@ acF
aaa
abj
aaa
-aaa
-abj
-aaa
-aaa
-aaa
-abj
-aaa
-abi
-abj
-abj
-aGT
+tgE
+boG
+boG
+boG
+mhu
+qXF
+nPe
+lZw
+uYW
+rTE
+pcv
aZE
bbo
bcU
bex
bhc
blp
-bqw
+blp
bka
blT
bno
@@ -160844,39 +159032,39 @@ boO
bru
bsF
bvl
-bvp
-boJ
+bqK
+nDV
bCN
bzh
bAO
bCO
-bno
+bLB
bGb
-bHV
+bAO
bJG
bLB
bNy
bHV
bRe
-bLB
+hTV
bWr
bXV
-bYT
-bLB
+hTV
+jCU
+ccG
ccG
-ceu
cgj
-bLA
+hTV
cjp
ckW
-cmu
-cnQ
+boH
+bng
coU
-cqC
+cJn
ctc
-ctu
-cuE
-cwg
+cqI
+boH
+cqI
aFx
cyT
aFv
@@ -160912,16 +159100,16 @@ dpL
dqT
dfI
dtx
-duI
-dvR
+duL
+aOx
dwQ
-dye
+dyb
dzq
-dAA
+dAB
dBq
dCq
dDH
-aOx
+dDG
abj
abj
dFG
@@ -161076,17 +159264,17 @@ acF
abj
abj
abj
-abi
-abi
-abi
-abj
-abj
-abj
-abj
-abj
-aaa
-aaa
-aGT
+tgE
+oBE
+eqY
+boG
+mhu
+vsy
+gBV
+hzb
+jqB
+fdI
+ppj
aZF
bbp
bcV
@@ -161101,39 +159289,39 @@ boP
bqO
bsG
btY
-bvq
+bqO
+klk
bno
-bxO
bzj
bAP
bCP
-bno
+mft
bGc
-bHW
-bJH
-bCS
-bNz
-blX
-bRf
+bAP
+bCP
bLB
+bNz
+oXm
+bRf
+hTV
bWs
bXW
bYU
-bLB
-ccH
-cev
+bXW
+bXW
+bXW
cgk
-bLA
+hTV
cjq
ckZ
-cmv
+gGu
cnR
-coV
+gGu
cqD
coV
-ctv
+khY
cuF
-cms
+cqI
aFx
cyU
aFv
@@ -161151,7 +159339,7 @@ cQe
aFx
cSZ
cUw
-cXJ
+dlz
cZe
dab
dcH
@@ -161168,17 +159356,17 @@ diS
diS
doo
dsk
-dts
-cqE
-dvR
-dwR
-dyf
-dyf
-dAB
-dyf
-dCr
-dDI
+dtw
+kSX
aOx
+dwR
+dBq
+dCu
+dAB
+dBq
+dyb
+dDI
+dEt
abj
abj
dFH
@@ -161333,29 +159521,29 @@ acF
aaa
aaa
abj
-aaa
-abj
-aaa
-aaa
-abj
-aGT
-aGT
-aGT
-aGT
-aGT
-aGT
+ygH
+ygH
+aqq
+yez
+mhu
+mhu
+mhu
+mhu
+mhu
+mhu
+mhu
aZG
bbq
-aGT
-aGT
-aGT
+ygH
+ygH
+ygH
bex
-bit
+bha
bkc
bjY
bno
-boQ
-bqP
+bno
+bno
bsH
btZ
boJ
@@ -161363,34 +159551,34 @@ bno
bno
bzk
bAQ
-bno
-bno
-bGd
+fzQ
+bLB
+bzk
bHX
-bJI
+fzQ
bLB
bGd
bPt
bRg
-bLB
-bWe
-bXs
-bYS
-bLB
-bhf
-cew
-bRg
-bLA
+hTV
+hTV
+hTV
+hTV
+jav
+wdH
+wdH
+nQJ
+hTV
cjr
cla
-cmw
+cjr
cjr
cjn
cqE
bqC
bqB
ckV
-cwh
+boH
aFx
cyV
cAn
@@ -161408,7 +159596,7 @@ cQf
aFx
boG
cUx
-cXJ
+dlz
cZf
dac
dcI
@@ -161425,15 +159613,15 @@ diT
diS
dtB
dmK
-dts
+dtz
duJ
dvS
dwS
dyg
-dyg
+eQh
dAC
-dyg
-dyg
+uVQ
+dBq
dDJ
dEt
aaa
@@ -161588,14 +159776,14 @@ aaa
aaa
acF
abj
-abj
abi
aaa
-abj
-abj
-abj
-abj
-aGT
+aqq
+tFK
+qeU
+abQ
+aKS
+ygH
aSh
aTF
aVk
@@ -161614,30 +159802,30 @@ bnp
boR
bqQ
bsI
-bua
-boR
-boR
+bnp
+gKi
+lAG
bxP
-bzl
+gKi
bAR
bCQ
bEu
bGe
bHY
-bEu
+gDv
bLC
-bNA
-bHY
+bEu
+hfN
bRh
bTm
-bVu
bEu
+nYz
bYV
caN
-ccI
-cex
+bEu
+bEu
cgl
-bGa
+fUG
cjs
clb
cmy
@@ -161647,7 +159835,7 @@ cqE
csd
cjn
ckW
-cwh
+boH
aFx
aFx
aFx
@@ -161682,17 +159870,17 @@ diS
diR
dqV
dfI
-dtt
+oDD
duK
dvS
dwT
dyb
-dzo
-dAD
dyb
-dzo
+dAD
+dBq
+dyb
dDK
-dEt
+aOx
aaa
abj
dFG
@@ -161845,53 +160033,53 @@ aaa
aaa
aaa
aaa
-aaa
abi
abj
-abj
-aGT
-aGU
-aGU
-aGT
+ygH
+aJx
+nli
+abQ
+aKS
+ygH
aSi
aTG
-aTG
-aTG
+nHs
+rbw
aYl
aZI
bbs
-aGV
+aml
beA
bfW
-bhf
+bLB
biv
bke
blW
-bnq
+blW
boS
bqR
-bsJ
-bub
-bub
+bHZ
bub
+loP
+tJH
bub
bzm
bAS
-bCR
-bEv
-bGf
-bHZ
-bJJ
+bub
+bub
+bub
+jUH
+bub
bub
bNH
-bHZ
+sEN
bRi
-bub
-bVv
+mKe
+blW
blW
bnq
caO
-ccJ
+blW
cey
cgm
chQ
@@ -161904,7 +160092,7 @@ cqF
cse
bng
cuG
-cwi
+cjm
aFx
aKh
cAo
@@ -161922,7 +160110,7 @@ cQg
aFx
cTa
cUv
-cXJ
+dlz
cZh
dac
dem
@@ -161940,16 +160128,16 @@ diR
dtE
dsl
dty
-dpO
+sZT
aOx
dwU
dyh
dzr
-dyb
+tSS
dBr
dCs
dDL
-dDC
+aOx
abj
abj
abj
@@ -162102,55 +160290,55 @@ aaa
aaa
aaa
aaa
-aaa
abi
aaa
-abj
-aGT
-aNC
-aOT
-aGT
+ygH
+uUu
+kju
+abQ
+aKU
+ygH
aSj
aTH
aVl
aWL
-aYm
+aYk
aZJ
bbt
bdi
beB
-bfX
+bfW
bkg
biw
-bkf
+bHW
+blX
blX
-bnr
bkf
bqS
-bsK
-bkf
-bkf
+blX
+reH
+hHM
bwA
bxQ
bnr
bAT
-bCS
-bEB
-bGg
+bxQ
+bxQ
+bxQ
bNm
-bJK
-bLD
-bLD
+bxQ
+bxQ
bLD
+mEG
bRj
-bLD
-bVw
+bxQ
+bxQ
bXt
bYW
-cge
-bGg
+bNm
+bxQ
cez
-bRj
+bxQ
chR
cju
cld
@@ -162161,7 +160349,7 @@ cqG
csf
bqC
cuH
-cwj
+cjn
aFx
cyW
cAp
@@ -162196,17 +160384,17 @@ diR
dpM
dqX
dfI
-dtx
-dpO
-bLn
+xWD
+ezR
+aOx
dwV
-bLn
-bLn
-bLn
-bLn
-bLn
-bLn
-bLn
+glQ
+glQ
+pPC
+glQ
+moa
+iiM
+aOx
abj
abi
abi
@@ -162361,57 +160549,57 @@ aaa
aaa
aaa
abj
-aaa
-abj
-aGT
-aMq
+ygH
+xDn
+aJx
+iUc
aOX
-aGT
-aGT
-aGT
-aGU
-aGT
-aGT
+ygH
+ygH
+ygH
+aqq
+ygH
+ygH
aZN
-bbu
-aGT
-aGT
+bbt
+ygH
+ygH
bfY
bhh
bhh
-bhi
+bwE
blY
-bns
-bhi
+bhh
+uSJ
bqT
bsL
buc
-bhh
-bhh
-bxR
+xXw
+bsL
+biv
bzn
-bAU
-bhh
-bEx
-bGh
-bEx
-bEx
-bJL
+bLB
+bLB
+yds
+fzQ
+bLB
+goP
+goP
bNI
-bJL
-bEx
-bEx
-bVx
+jgO
+jAm
+oSH
+goP
bXu
bYX
-bEx
-ccK
+jIs
+jIs
ceA
-bLA
-bLA
+jIs
+jIs
cjv
cle
-cmA
+cjv
cjr
boH
bHF
@@ -162435,7 +160623,7 @@ cLp
cQh
aFx
cTb
-cUz
+ckW
cXJ
cZj
daS
@@ -162454,16 +160642,16 @@ dpN
dqY
dfI
dtw
-duI
-bLn
+duL
+dvT
dwW
-dyi
-dzs
-dwZ
-dBs
+dCt
+dCt
+rTc
+dCt
dCt
dDM
-bLn
+dEt
abj
aaa
aaa
@@ -162612,28 +160800,28 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
abi
abi
-abj
-abj
+aaa
aaa
abj
-aGT
+abj
+aml
+kOC
+ofZ
aND
-aOV
+abQ
aQx
-aSk
-aMq
+aQB
+aJx
aVm
aWM
-aYn
+aJx
aZL
-bbu
-aGT
+bbt
+ygH
bfU
-bhe
+aZX
bhh
bix
bmO
@@ -162641,34 +160829,34 @@ blZ
bnt
boT
bqU
-bsM
+bsL
bkj
bvr
-bhh
-bmf
-bnB
+bsL
+biv
+uiw
bAV
-bhh
+uYc
bEy
bGi
-bIb
-bJL
-bLE
+bLB
+uoV
+vOc
bND
-bPu
+glX
bRk
bTn
-bVy
-bXv
-bYY
-bJL
+goP
+bXu
+bYX
+jIs
ccL
ceB
-cgn
-bLA
+ccL
+jIs
cjw
-clf
-cmB
+tVO
+cjz
cjr
coZ
csb
@@ -162693,12 +160881,12 @@ aFx
aFx
cjn
cUv
-cXJ
-cXJ
+dlz
+dlz
dbr
deq
-cXJ
-cXJ
+dlz
+dlz
dYa
dfI
dfI
@@ -162714,13 +160902,13 @@ dtz
duL
dvT
dwX
-dwX
-dzt
-dAE
-dBt
+dyb
dCu
-dDN
-dym
+dAE
+dyb
+dCu
+tHf
+dEt
abj
abj
abi
@@ -162869,15 +161057,15 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
abi
abj
-abj
-abj
-abj
-abj
-aGV
+ygH
+ygH
+qJC
+ygH
+ygH
+ipD
+abQ
aNE
aPb
aQy
@@ -162888,7 +161076,7 @@ baP
aYo
aZM
bbv
-aGT
+ygH
beC
bfZ
bhi
@@ -162898,33 +161086,33 @@ bma
bnu
boU
bqV
-bsN
+bsL
bud
bvs
-bhh
-bxS
+bsL
+biv
bzo
bAW
-bhh
+tQg
bEz
bGj
-bIc
+bLB
bJM
bLF
bNE
bPv
bRl
-bNE
+obL
csM
-bXw
-bYZ
-dYW
+bXu
+bYX
+jIs
ccM
ceC
cgo
-bLA
+jIs
cjx
-clf
+tVO
cut
cjr
cpa
@@ -162968,16 +161156,16 @@ doq
ctu
dbx
dtA
-duI
-bLn
+ujH
+aOx
dwY
dyj
-dwZ
-dAE
+nCz
+dyb
dBu
dCv
-dDN
-dym
+vLN
+dDG
abj
abj
aaa
@@ -163126,62 +161314,62 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
abi
abj
+aqq
+reo
aGT
-aGT
-aJw
-aGT
-aGT
+swV
+ygH
+nFL
+aKU
aNF
-aPc
-aQz
+aKS
+abQ
aSm
-aMq
+aJx
aVo
aWO
-aMq
+aJx
aZK
-bbu
-aGU
-aGT
-aJC
+bbt
+aqq
+ygH
+aJA
bhh
biz
bki
bmb
-bnv
+bkl
boV
bqW
-bsO
+bsL
bue
bvt
bwB
-bxS
+biv
bzp
-bAX
-bhh
-bEy
+bLB
+shi
+rTL
bGk
-bEy
+bLB
bGp
bLG
-bNF
+nkh
bPw
-bWh
-bTo
+hTr
+gwZ
bVA
-bXx
+bXu
bZa
-bGp
+sWi
ccN
ceD
cgp
-bLA
+jIs
cjy
-clg
+ukv
cmD
cjr
bng
@@ -163189,7 +161377,7 @@ cqJ
bng
bng
cuH
-cms
+cqI
aFx
cyZ
cAr
@@ -163228,13 +161416,13 @@ duN
duM
bLn
dwZ
-dyk
-dyj
-dyj
-dyj
-dwZ
-dyj
-dym
+bLn
+bLn
+bLn
+bLn
+bLn
+bLn
+bLn
abj
abi
aaa
@@ -163384,59 +161572,59 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
abj
+ygH
+xda
aGU
aIl
aJx
aKR
aMq
aNG
-aOV
+abQ
aSn
aWN
-aMq
-aMq
-aMq
-aMq
+aJx
+aJx
+aJx
+aJx
ble
bbw
bcY
-aGT
+ygH
aaa
bhh
biA
bki
bmc
-bnw
+bkl
bmd
bqX
-bsP
-bue
+bsL
+meU
bvu
-bhh
-bxT
+bsL
+biv
bzq
bAY
-bhh
-bEy
+uod
+ncZ
bGl
-bNV
+bLB
bJN
-bJN
-bNG
+bLG
+nkh
bPx
-bJN
+bRl
bNG
bXb
-bXX
-bZb
-bJN
+bXu
+bYX
+jIs
cgg
ceE
cgq
-bLA
+jIs
cjz
clg
cmE
@@ -163479,11 +161667,11 @@ cqJ
dfK
bng
dev
-aeB
-aeB
-dtC
-aeB
-aeB
+bng
+vMI
+bHF
+sZT
+bLn
dxa
dyl
dzu
@@ -163491,7 +161679,7 @@ dAF
dBv
dCw
dDO
-dEu
+bLn
abj
abi
abj
@@ -163642,21 +161830,21 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
+aml
+feV
aGV
aIm
aJJ
aKS
-aMr
-aNH
+aKU
+aNF
aOY
aQB
-aSo
-aMq
+aPe
+aJx
aVm
aWP
-aYn
+aJx
aZO
bbx
bcZ
@@ -163664,36 +161852,36 @@ beD
abj
bhh
biB
-bkj
-bmd
-bnx
+bkl
+bkl
+bkl
bqJ
bqY
-bsQ
+bsL
buf
bxN
-bhh
-bxS
-bxS
-bAV
-bhh
-bEA
+bsL
+biv
+vvQ
+ljZ
+sYo
+jsV
bGn
-bIe
-bJN
-bLH
-bLH
+bLB
+wpr
bLH
+gxd
+sCu
bRn
bTp
-bXo
-bXz
+goP
+bXu
bZc
-bJN
+jIs
ccP
ceF
-cgr
-bJI
+ccP
+jIs
cjB
clh
cmH
@@ -163703,7 +161891,7 @@ abj
csi
csi
cuI
-cwl
+csi
aFx
aFx
bmW
@@ -163735,20 +161923,20 @@ dfK
abj
bng
diW
-dpO
-aeB
-dtF
-duO
-dGZ
-aeB
-bLn
+duL
+bng
+iBK
+oTo
+mzg
+xlS
dym
-bLn
-bLn
-bLn
dym
-bLn
-bLn
+fou
+tgs
+gTw
+luc
+dDN
+mDm
abj
abi
abj
@@ -163899,17 +162087,17 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
-aGT
+ygH
+blR
+rZK
aIn
aKT
aSp
-aMs
+aSp
aNI
aOZ
aQC
-aSp
+xbS
aTJ
aVp
aWQ
@@ -163917,40 +162105,40 @@ aYp
aZP
bbv
bfT
-aGT
+ygH
aaa
bhi
biC
-bkk
+bkl
bme
bny
boX
-bqZ
-bsR
+bqY
+bsL
bug
bvw
-bhh
+bsL
+biv
bwC
-bwC
-bAZ
-bhh
+bLB
+shi
bGm
-bIf
-bLY
-bJN
-bLI
-bNJ
+bGk
+bLB
+goP
+goP
+bNI
bQn
-bQn
-bQn
-bXq
-bXz
-bZd
-caR
-ccP
-ceE
-cgs
-bLA
+tFw
+goP
+goP
+bXu
+bYX
+jIs
+jIs
+jIs
+jIs
+jIs
cjz
cli
cmG
@@ -163960,7 +162148,7 @@ aaa
csi
ctw
cuK
-cwm
+ctx
ctx
czb
cAt
@@ -163994,18 +162182,18 @@ cqJ
dmF
dor
aeB
-dtG
+aeB
dtD
-dHZ
-aeC
-abj
-abj
-abj
-abj
-abj
-abj
-abj
-abj
+aeB
+aeB
+iwQ
+tks
+dAF
+tgs
+kxq
+fJA
+dDN
+mDm
abj
aaa
aaa
@@ -164156,58 +162344,58 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
-aGV
+aml
+npj
+eCs
aIo
aJA
aKU
-aMt
+aKS
aNJ
aPa
aQD
-aQE
-aMq
+aKU
+aJx
aVq
aWO
-aMq
+aJx
aZQ
bby
-aMq
-aGT
+aJx
+ygH
abj
bhh
biD
bkl
-bkl
+oei
bnz
boY
-bra
-bsS
-bkl
-bvt
-bwC
-bxU
+bqY
+bsL
+usl
+vhT
+bsL
+biv
bzr
bBa
-bhh
-bEC
-bGo
-bEC
-bJN
-bLJ
+bBa
+bBa
+bBa
+bBa
+bBa
+bBa
bPy
bPz
bRo
-bTq
-bVE
-bXA
+bBa
+bBa
+bXt
bZe
caS
ccQ
ceG
cgr
-bJI
+bLA
ckE
clf
cnF
@@ -164251,18 +162439,18 @@ cqJ
dot
dos
aeB
-dRx
-dGq
-dIa
+dtF
+duO
+dGZ
aeB
-abj
-abi
-abi
-abi
-abj
-abi
-abi
-abi
+dAF
+yiO
+tks
+tks
+tks
+dAF
+tks
+mDm
abj
abj
abj
@@ -164412,58 +162600,58 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
abj
-aGT
+ygH
+ngm
+mtL
aIp
-aJB
+aJx
aKV
-aMq
+fFd
aNK
-aOV
-aQE
+abQ
+aKU
aTb
-aMq
-aMq
-aMq
-aMq
+aJx
+aJx
+aJx
+aJx
bOc
-bbu
+bbt
bdb
-aGT
+ygH
aaa
bhh
biE
bkm
bkm
-bnA
+bkm
boZ
brb
bsT
buh
bvx
bwD
-bxV
-bzs
-bBb
-bhh
-bEx
-bGp
-bEx
-bJN
+biw
+blX
+blX
+blX
+blX
+blX
+mHf
+tRM
bLK
bPA
bQo
-bQo
-bQo
-bXr
-bYC
+eLI
+blX
+blX
+blX
caP
-bJN
+mlJ
ccR
ceH
-cgo
+xIo
bLA
cjr
clj
@@ -164507,19 +162695,19 @@ aaa
cqJ
cqJ
bng
-aeC
-aeC
+aeB
+dtG
dGr
-aeC
-aeC
-abj
-aaa
-aaa
-abj
-aaa
-aaa
-abj
-abj
+uAP
+aeB
+vFf
+pBz
+ojw
+koC
+lzY
+phv
+wAE
+fTZ
aaa
abj
aaa
@@ -164668,58 +162856,58 @@ aaa
aaa
aaa
aaZ
-aaa
-aaa
abi
abj
-aGT
-aGT
-aJC
-aGT
-aGU
+ygH
+tge
+eQg
+nbE
+aqq
+njE
+eNI
aNL
-aPc
-aNO
+aKS
+aKS
aSr
-aMq
+aJx
aVr
aZr
-aYn
+aJx
aZR
-bbs
-bdc
+tiS
+bcZ
beD
abj
bhh
biF
bkn
bmf
-bnB
+bxS
bpa
brc
-bsU
+bsL
bui
bsU
-bwE
-bmf
-bIa
+bsL
+bEx
+bJL
bBc
-bhh
-abj
-aaa
-abj
-bJN
-bLL
-bNK
+bJL
+bEx
+bEx
+kzg
+tFO
+bIe
+bEx
bPB
bRp
bTr
-bVG
+jQY
bNK
bZg
-bJN
-ccS
-bHW
+bLA
+shi
+ulE
ccS
bLA
aaa
@@ -164764,19 +162952,19 @@ abj
abj
abj
abj
-abj
-aeC
+aeB
+odY
dGs
-aeC
-abj
-aaa
-aaa
-abi
-abi
-abj
-abi
-abi
-abi
+sPS
+aeB
+bLn
+mDm
+bLn
+bLn
+bLn
+mDm
+bLn
+bLn
abi
abj
aaa
@@ -164925,27 +163113,27 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
abi
abj
-abj
-abj
-aaa
-abj
-aGT
+ygH
+ygH
+pWQ
+ygH
+ygH
+tvq
+aKU
aNM
-aQA
-aQF
-aQF
+aKS
+aPe
+aPe
aTK
aVs
baS
aYq
-aZS
+aZM
bbv
bdd
-aGU
+aqq
aaa
bhh
biG
@@ -164954,31 +163142,31 @@ bmg
bnC
bpb
brd
-bro
-biG
-biG
-bhh
-bhh
-bhh
-bhh
-bhh
-abj
+bsL
+bsL
+bsL
+bsL
+bEx
+bLE
+vCk
+bPu
+qVp
+nvc
+tah
+pRg
+jCt
+bJL
+vEh
+spP
+sTz
+jQY
aaa
abj
-bJN
-bJN
-bJN
-bJN
-bJN
-bJN
-bJN
-bJN
-bJN
-bJN
-bLA
-ceI
-bLA
-bLA
+aaa
+aaa
+abj
+aaa
+aaa
aaa
abj
abj
@@ -165021,19 +163209,19 @@ abi
aaa
abi
abi
-abj
+aeC
aeC
dGX
aeC
+aeC
+abj
+abj
+abj
+abj
+abj
abj
abj
-abi
-abi
-aaa
-aaa
abj
-aaa
-aaa
abj
abj
abi
@@ -165185,24 +163373,24 @@ aaa
aaa
aaa
aaa
+abj
aaa
-aaa
-abj
-abj
-abj
+qli
+isz
+vif
aMu
aNN
aPd
aQG
aSs
-aMq
+aJx
aVt
aWO
-aMq
-aZK
+aJx
+mTx
bbz
-aGT
-aGT
+ygH
+ygH
abj
abj
biG
@@ -165215,20 +163403,20 @@ bsV
buj
biG
aaa
-aaa
-abj
-aaa
-aaa
-abj
-aaa
-abj
-abj
-abj
-abj
-abj
+bEx
+tNO
+ejA
+wWy
+eWX
+ykx
+rkB
+xuC
+vGw
+iXX
+knI
bWC
-abj
-aaa
+nJr
+jQY
aaa
abj
aaa
@@ -165279,18 +163467,18 @@ aaa
aaa
aaa
abj
-aaa
+aeC
dKx
+aeC
abj
abj
-aaa
+abi
+abi
+abi
abj
-aaa
-aaa
-abW
-acf
-aco
-aaa
+abi
+abi
+abi
aaa
abj
aaa
@@ -165442,11 +163630,11 @@ aaa
aaa
aaa
aaa
-aaa
abi
-abj
aaa
-abj
+pWQ
+qqW
+aKU
aJC
aNO
aPe
@@ -165455,10 +163643,10 @@ aPj
aMv
aMv
aMv
-aGT
-aZK
-bbu
-aJw
+aMv
+bOc
+bbt
+qJC
aaa
abj
aaa
@@ -165472,28 +163660,28 @@ bmh
buk
biH
abj
-abi
-abi
+bEx
+upW
+bNF
+nom
+bWh
+bTo
+nit
+bXx
+xGi
+bEx
+mmw
+tdA
+lmR
+pSA
abj
-abi
-abi
-abi
-abi
+alW
abj
-abi
-abi
-abi
-abi
abj
-abi
-abi
-abi
-abi
-abi
+alW
abj
-abi
-abi
abj
+alW
abj
abi
abi
@@ -165535,22 +163723,22 @@ aaa
aaa
aaa
aaa
+abj
+aeC
+qRT
+aeC
+abj
+abj
abi
abj
-acg
+aaa
+aaa
abj
aaa
-abW
-ace
-aco
aaa
-abW
-acf
-aco
aaa
-abW
-acf
-aco
+abj
+aaa
aaa
abj
aaa
@@ -165699,12 +163887,12 @@ aaa
aaa
aaa
aaa
-aaa
abi
-abj
-abj
-abj
-aGT
+aaa
+ygH
+ggp
+aKU
+hch
aNP
aPf
aQI
@@ -165712,9 +163900,9 @@ aMv
aTL
aVu
aWS
-aGT
+aMv
aZT
-bbs
+mmJ
bde
abj
abj
@@ -165729,20 +163917,20 @@ bsW
bul
bvy
aaa
-abj
-aaa
-aaa
-abj
-abj
-aaa
-abj
-abj
-abj
-aaa
-abj
-abj
-aaa
-abj
+bEx
+bEx
+bEA
+fDE
+bEx
+bEA
+faB
+kYe
+hcU
+bEx
+haD
+lFi
+fPC
+jQY
aaa
abj
aaa
@@ -165794,20 +163982,20 @@ aaa
aaa
abj
aaa
-acp
+fGG
abj
abj
-abW
+aaa
+abj
+aaa
+aaa
+kYo
acf
aco
aaa
-abW
-acf
-aco
aaa
-abW
-acf
-aco
+abj
+aaa
aaa
abi
aaa
@@ -165956,11 +164144,11 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
abj
-aaa
-aKW
+abj
+ygH
+ygH
+aMv
aMv
aMv
aMv
@@ -165971,44 +164159,44 @@ aVv
aWT
aYr
aZP
-bbv
-aJC
+gGJ
+pWQ
aaa
abj
aaa
biJ
bkr
bmh
-bnG
+brn
bpf
brh
bmh
bum
biJ
abj
-abj
-abi
-abi
-abi
+ngg
+qYC
+qYC
+qYC
+kiL
+kkM
+fEr
+gTW
+fox
+ngg
+phF
+jIV
+tmo
+jQY
abj
abj
abj
abj
abj
abj
-abi
-abi
-abi
-abi
abj
abj
abj
-abi
-abi
-abi
-abi
-abj
-abi
abj
abj
abi
@@ -166051,21 +164239,21 @@ aaa
aaa
abi
abj
-acp
+acg
abj
aaa
-abW
+kYo
+ace
+aco
+aaa
+kYo
acf
aco
-abj
-abW
+aaa
+kYo
acf
aco
-abj
-abW
-acf
-aco
-abj
+aaa
abj
aaa
aaa
@@ -166226,42 +164414,42 @@ aSt
aTN
aVw
aWU
-aYs
-aZU
+aMv
+bOc
bbA
-aGT
+ygH
abj
abj
abj
biG
bks
bmh
-bnH
+bmh
bpg
bri
bsX
bun
biG
aaa
-abj
+ePS
+wmQ
+esj
+kii
+kii
+kii
+iTV
+gTW
+rNi
+iVV
+miL
+frI
+tmo
+jQY
aaa
abj
aaa
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
+abj
aaa
aaa
aaa
@@ -166306,20 +164494,20 @@ aaa
aaa
aaa
aaa
-abi
+abj
aaa
acp
abj
abj
-abW
+kYo
acf
aco
aaa
-abW
+kYo
acf
aco
aaa
-abW
+kYo
acf
aco
aaa
@@ -166483,10 +164671,10 @@ aSu
aTO
aVx
aWV
-aGT
+aMv
aZW
bbB
-aGT
+ygH
abj
aaa
abj
@@ -166500,25 +164688,25 @@ bsY
biG
biG
aaa
+ePS
+mqS
+xom
+wIT
+vJK
+hTk
+gwn
+idq
+xgm
+kGF
+miL
+eNt
+lJT
+pSA
+aaa
abj
+aaa
+aaa
abj
-abi
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
aaa
aaa
aaa
@@ -166568,22 +164756,22 @@ abj
acp
abj
aaa
-abW
+kYo
acf
aco
-aaa
abj
-acg
-abj
-aaa
-abW
+kYo
acf
aco
-aaa
-abi
abj
-abi
-abi
+kYo
+acf
+aco
+abj
+abj
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -166735,47 +164923,47 @@ abj
aIO
aNS
aPi
-aQL
-aSv
+aQJ
+aSt
aTP
aVy
aWW
-aGT
+aMv
aZX
bbD
-aGT
+ygH
abj
aaa
abj
aaa
biG
bmk
-bnJ
+bmg
bpi
brk
bmk
biG
aaa
aaa
+ePS
+rSe
+dJI
+mEk
+mEk
+mEk
+ibR
+pOB
+fjJ
+ngg
+vce
+ohh
+weF
+jQY
+aaa
abj
aaa
-abi
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaZ
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
aaa
+abj
aaa
aaa
aaa
@@ -166820,25 +165008,22 @@ aaa
aaa
aaa
aaa
-abj
+abi
aaa
acp
abj
+abj
+kYo
+acf
+aco
aaa
-abj
-acg
-abj
-abj
-abj
-acp
-abj
-abj
-abj
-acg
-abj
+kYo
+acf
+aco
aaa
-aaa
-abj
+kYo
+acf
+aco
aaa
abi
aaa
@@ -166903,6 +165088,9 @@ aaa
aaa
aaa
aaa
+aaa
+aaa
+aaa
"}
(223,1,1) = {"
aaa
@@ -166997,42 +165185,42 @@ aMv
aTQ
aVz
aWX
-aGT
+aMv
bad
bbH
-aGU
+aqq
abj
aaa
abj
aaa
biG
bml
-bnH
+bmh
bpj
brl
bta
biG
abj
abj
+ePS
+xUI
+fEF
+kTO
+gxJ
+eDh
+uJk
+lEr
+wMd
+ngg
+pvv
+raK
+mfI
+jQY
+abj
+abj
+abj
+abj
abj
-aaa
-abi
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
aaa
aaa
aaa
@@ -167080,23 +165268,23 @@ aaa
abi
abj
acp
-dPn
-abG
-abG
-abG
-abG
-abG
-abG
-ach
-acp
-acp
-acp
-dPn
-abG
-abG
-abG
-dJk
abj
+aaa
+kYo
+acf
+aco
+aaa
+abj
+acg
+abj
+aaa
+kYo
+acf
+aco
+aaa
+abi
+abj
+abi
abi
aaa
aaa
@@ -167254,24 +165442,37 @@ aMv
aTR
aVA
aWY
-aGT
-aZW
-bbB
-aGT
-aMq
+aMv
+iLL
+oVe
+ygH
+aJx
abj
abj
abj
biG
bmm
bnK
-bpj
+myN
brm
btb
biG
aaa
abj
-aaa
+ngg
+ngg
+ngg
+ngg
+ngg
+ngg
+ngg
+ngg
+ngg
+ngg
+jQY
+jYK
+moy
+jQY
abj
abj
aaa
@@ -167288,19 +165489,6 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
abj
csj
aaa
@@ -167334,13 +165522,13 @@ aaa
aaa
aaa
aaa
-abi
-aaa
+abj
aaa
+acp
abj
aaa
abj
-aci
+acg
abj
abj
abj
@@ -167348,13 +165536,13 @@ acp
abj
abj
abj
-aci
+acg
abj
aaa
aaa
abj
aaa
-abj
+abi
aaa
aaa
aaa
@@ -167511,11 +165699,11 @@ aMv
aMv
aPj
aPj
-aGT
+aMv
bda
bbE
bdf
-aMq
+aJx
aaa
abj
aaa
@@ -167530,22 +165718,22 @@ abj
abj
aaa
abj
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
+abj
+abj
+abj
+vbN
+abj
+abj
+fhF
+fhF
+fhF
+fhF
+fhF
+fhF
+fhF
+abj
+abj
+abj
aaa
aaa
aaa
@@ -167592,24 +165780,24 @@ aaa
aaa
aaa
abi
-abi
abj
-abj
-aaa
-abW
-acj
-aco
-aaa
-abj
-aci
-abj
-aaa
-abW
-acj
-aco
-aaa
-abi
-abi
+acp
+ewF
+xKG
+xKG
+xKG
+xKG
+xKG
+xKG
+ach
+acp
+acp
+acp
+ewF
+xKG
+xKG
+xKG
+rnO
abj
abi
aaa
@@ -167772,7 +165960,7 @@ aZV
brz
bvB
bdg
-beD
+fcg
aaa
abj
aaa
@@ -167786,23 +165974,23 @@ biG
aaa
abj
abj
+abj
+abi
+abi
+abi
+abi
+abj
+abi
+fhF
+fhF
+fhF
+fhF
+fhF
+fhF
+fhF
+abj
+abj
abi
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
aaa
aaa
aaa
@@ -167848,27 +166036,27 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
-aaa
-abj
-abj
-abW
-acj
-aco
-aaa
-abW
-acj
-aco
-aaa
-abW
-acj
-aco
-aaa
abi
aaa
aaa
+abj
aaa
+abj
+aci
+abj
+abj
+abj
+acp
+abj
+abj
+abj
+aci
+abj
+aaa
+aaa
+abj
+aaa
+abj
aaa
aaa
aaa
@@ -168023,13 +166211,13 @@ aaZ
aaa
aaa
abj
-aMq
-aMq
-aMq
+aJx
+aJx
+aJx
bfS
-bbG
+abQ
bdh
-aMq
+aJx
aaa
abj
aaa
@@ -168043,23 +166231,23 @@ aaa
aaa
abj
aaa
+abj
+abj
+aaa
+abj
+abj
+aaa
abi
+fhF
+fhF
+fhF
+fhF
+fhF
+fhF
+fhF
+abj
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
+abi
aaa
aaa
aaa
@@ -168105,22 +166293,25 @@ aaa
aaa
aaa
aaa
+abi
+abi
+abj
+abj
aaa
+kYo
+acj
+aco
aaa
+abj
+aci
+abj
+aaa
+kYo
+acj
+aco
aaa
abi
-aaa
-abW
-acj
-aco
-abj
-abW
-acj
-aco
-abj
-abW
-acj
-aco
+abi
abj
abi
aaa
@@ -168185,9 +166376,6 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
-aaa
"}
(228,1,1) = {"
aaa
@@ -168282,11 +166470,11 @@ aaa
aaa
aaa
abj
-aMq
+aJx
bab
bcW
bab
-aMq
+aJx
abj
abi
abi
@@ -168300,23 +166488,23 @@ abi
abi
abj
aaa
+abj
+abj
+abj
abi
+abi
+abi
+abj
+fhF
+fhF
+fhF
+fhF
+fhF
+fhF
+fhF
+abj
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
+abi
aaa
aaa
aaa
@@ -168365,21 +166553,21 @@ aaa
aaa
aaa
aaa
+abj
+abj
+kYo
+acj
+aco
+aaa
+kYo
+acj
+aco
+aaa
+kYo
+acj
+aco
+aaa
abi
-abj
-abW
-acj
-aco
-aaa
-abW
-acj
-aco
-aaa
-abW
-acj
-aco
-aaa
-abj
aaa
aaa
aaa
@@ -168539,11 +166727,11 @@ aaa
aaa
abi
abj
-aMq
+aJx
bac
-bbG
-bbG
-aMq
+abQ
+abQ
+aJx
aaa
aaa
aaa
@@ -168558,22 +166746,22 @@ aaa
aaa
aaa
abj
+abj
aaa
aaa
aaa
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
+mkp
+fhF
+fhF
+fhF
+fhF
+fhF
+fhF
+fhF
+mkp
+abj
+abi
aaa
aaa
aaa
@@ -168621,21 +166809,21 @@ aaa
aaa
aaa
aaa
-aaa
+vXX
abi
aaa
-abW
+kYo
acj
aco
-aaa
-abW
+abj
+kYo
acj
aco
-aaa
-abW
+abj
+kYo
acj
aco
-aaa
+abj
abi
aaa
aaa
@@ -168796,11 +166984,11 @@ aaa
aaa
abi
abj
-aMq
+aJx
bpr
bbI
bpr
-aMq
+aJx
abj
abj
abi
@@ -168814,23 +167002,23 @@ abi
abj
aaa
aaa
+abj
aaa
aaa
aaa
aaa
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
+oEG
+fhF
+fhF
+fhF
+fhF
+fhF
+fhF
+fhF
+oEG
+abj
+abj
aaa
aaa
aaa
@@ -168878,22 +167066,22 @@ aaa
aaa
aaa
aaa
-aaa
+vXX
abi
-aaa
-aaa
-aaa
-aaa
-aaa
-abW
+abj
+kYo
acj
aco
aaa
+kYo
+acj
+aco
aaa
+kYo
+acj
+aco
aaa
-aaa
-aaa
-abi
+abj
aaa
aaa
aaa
@@ -169053,21 +167241,11 @@ aaa
aaa
aaa
abj
-aMq
+aJx
bae
bbJ
bae
-aMq
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
+aJx
aaa
aaa
aaa
@@ -169081,11 +167259,21 @@ aaa
aaa
aaa
aaa
+abi
aaa
aaa
aaa
aaa
aaa
+bPS
+oEG
+mkp
+abj
+abj
+abj
+mkp
+oEG
+bPS
aaa
aaa
aaa
@@ -169137,20 +167325,20 @@ aaa
aaa
aaa
abi
-abi
-abj
-abi
-abi
-aaa
aaa
+kYo
+acj
+aco
aaa
+kYo
+acj
+aco
aaa
+kYo
+acj
+aco
aaa
abi
-abj
-abi
-abj
-abj
aaa
aaa
aaa
@@ -169310,15 +167498,11 @@ aaa
aaa
aaa
aaa
-aGT
+ygH
bae
bbK
bae
-aGT
-aaa
-aaa
-aaa
-aaa
+ygH
aaa
aaa
aaa
@@ -169332,6 +167516,7 @@ aaa
aaa
aaa
aaa
+abi
aaa
aaa
aaa
@@ -169339,8 +167524,11 @@ aaa
aaa
aaa
aaa
+abj
aaa
+abj
aaa
+abj
aaa
aaa
aaa
@@ -169393,22 +167581,22 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
-aaa
-aaa
-abi
-abi
-abj
-abi
-abi
-abj
abi
aaa
aaa
aaa
aaa
aaa
+kYo
+acj
+aco
+aaa
+aaa
+aaa
+aaa
+aaa
+abi
+aaa
aaa
aaa
aaa
@@ -169585,6 +167773,7 @@ aaa
aaa
aaa
aaa
+abi
aaa
aaa
aaa
@@ -169592,12 +167781,11 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
+abi
+abi
+abi
+abi
+abi
aaa
aaa
aaa
@@ -169650,21 +167838,21 @@ aaa
aaa
aaa
aaa
+abi
+abi
+abj
+abi
+abi
aaa
aaa
aaa
aaa
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
+abi
+abj
+abi
+abj
+abj
aaa
aaa
aaa
@@ -169842,7 +168030,7 @@ aaa
aaa
aaa
aaa
-aaa
+abj
aaa
aaa
aaa
@@ -169911,13 +168099,13 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
+abi
+abi
+abj
+abi
+abi
+abj
+abi
aaa
aaa
aaa
diff --git a/_maps/map_files/MetaStation/MetaStation.dmm b/_maps/map_files/MetaStation/MetaStation.dmm
index cfbf6b0b87e..d72b8a9dfa6 100644
--- a/_maps/map_files/MetaStation/MetaStation.dmm
+++ b/_maps/map_files/MetaStation/MetaStation.dmm
@@ -257,8 +257,7 @@
},
/obj/item/twohanded/required/kirbyplants{
icon_state = "applebush";
- layer = 4.1;
- tag = "icon-applebush"
+ layer = 4.1
},
/turf/simulated/floor/plasteel{
icon_state = "floorgrime"
@@ -548,8 +547,7 @@
icon_state = "4-8"
},
/obj/item/twohanded/required/kirbyplants{
- icon_state = "plant-13";
- tag = "icon-plant-13"
+ icon_state = "plant-13"
},
/turf/simulated/floor/plasteel{
icon_state = "floorgrime"
@@ -670,8 +668,7 @@
},
/turf/simulated/floor/plasteel{
dir = 9;
- icon_state = "warndark";
- tag = "icon-warndark (NORTHWEST)"
+ icon_state = "warndark"
},
/area/security/permabrig)
"add" = (
@@ -680,8 +677,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "warndark";
- tag = "icon-warndark (NORTHEAST)"
+ icon_state = "warndark"
},
/area/security/permabrig)
"ade" = (
@@ -690,8 +686,7 @@
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "warndark";
- tag = "icon-warndark (NORTH)"
+ icon_state = "warndark"
},
/area/security/permabrig)
"adf" = (
@@ -872,8 +867,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "warndark";
- tag = "icon-warndark (WEST)"
+ icon_state = "warndark"
},
/area/security/permabrig)
"ady" = (
@@ -887,8 +881,7 @@
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "warndark";
- tag = "icon-warndark (EAST)"
+ icon_state = "warndark"
},
/area/security/permabrig)
"adz" = (
@@ -1108,8 +1101,7 @@
"aea" = (
/turf/simulated/floor/plasteel{
dir = 10;
- icon_state = "warndark";
- tag = "icon-warndark (SOUTHWEST)"
+ icon_state = "warndark"
},
/area/security/permabrig)
"aeb" = (
@@ -1118,16 +1110,14 @@
},
/turf/simulated/floor/plasteel{
dir = 6;
- icon_state = "warndark";
- tag = "icon-warndark (SOUTHEAST)"
+ icon_state = "warndark"
},
/area/security/permabrig)
"aec" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- icon_state = "warndark";
- tag = "icon-warndark"
+ icon_state = "warndark"
},
/area/security/permabrig)
"aed" = (
@@ -1249,8 +1239,7 @@
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "darkredfull";
- tag = "icon-whitehall (WEST)"
+ icon_state = "darkredfull"
},
/area/security/permabrig)
"aey" = (
@@ -1295,8 +1284,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "darkredfull";
- tag = "icon-whitehall (WEST)"
+ icon_state = "darkredfull"
},
/area/security/permabrig)
"aeA" = (
@@ -2231,7 +2219,7 @@
pixel_x = 27;
pixel_y = 29
},
-/obj/machinery/suit_storage_unit/security/secure,
+/obj/machinery/suit_storage_unit/security/hos,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -2448,8 +2436,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/security/armoury)
"agZ" = (
@@ -2522,8 +2509,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/security/armoury)
"ahf" = (
@@ -2539,8 +2525,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/security/armoury)
"ahg" = (
@@ -2557,8 +2542,7 @@
},
/obj/machinery/portable_atmospherics/canister/sleeping_agent,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/security/permabrig)
"ahk" = (
@@ -2630,8 +2614,7 @@
},
/obj/machinery/space_heater,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/security/permabrig)
"ahA" = (
@@ -2656,8 +2639,7 @@
/obj/machinery/atmospherics/pipe/manifold/visible,
/obj/item/wrench,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/security/permabrig)
"ahB" = (
@@ -2960,8 +2942,7 @@
},
/obj/item/twohanded/required/kirbyplants{
icon_state = "plant-16";
- layer = 4.1;
- tag = "icon-plant-16"
+ layer = 4.1
},
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'WARNING: Criminally Insane Inmates', describing the possible hazards of those contained within.";
@@ -3111,8 +3092,7 @@
/area/security/podbay)
"aig" = (
/obj/machinery/shower{
- dir = 4;
- tag = "icon-shower (EAST)"
+ dir = 4
},
/obj/machinery/door/window/eastright{
base_state = "left";
@@ -3129,8 +3109,7 @@
"aih" = (
/obj/structure/reagent_dispensers/water_cooler,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/crew_quarters/fitness{
name = "\improper Recreation Area"
@@ -3155,8 +3134,7 @@
pixel_y = 3
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/crew_quarters/fitness{
name = "\improper Recreation Area"
@@ -3175,8 +3153,7 @@
"ail" = (
/obj/structure/closet/athletic_mixed,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/crew_quarters/fitness{
name = "\improper Recreation Area"
@@ -3184,8 +3161,7 @@
"aim" = (
/obj/structure/closet/boxinggloves,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/crew_quarters/fitness{
name = "\improper Recreation Area"
@@ -3196,16 +3172,14 @@
pixel_y = 30
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/crew_quarters/fitness{
name = "\improper Recreation Area"
})
"aio" = (
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/crew_quarters/fitness{
name = "\improper Recreation Area"
@@ -3220,8 +3194,7 @@
/obj/item/grenade/barrier,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/security/armoury)
"aiq" = (
@@ -3270,8 +3243,7 @@
"aix" = (
/obj/item/twohanded/required/kirbyplants{
icon_state = "applebush";
- layer = 4.1;
- tag = "icon-applebush"
+ layer = 4.1
},
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 1
@@ -3341,8 +3313,7 @@
},
/obj/machinery/light,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/security/permabrig)
"aiF" = (
@@ -3423,8 +3394,7 @@
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "vault";
- tag = "icon-vault (NORTH)"
+ icon_state = "vault"
},
/area/security/armoury)
"aiO" = (
@@ -3441,8 +3411,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "vault";
- tag = "icon-vault (EAST)"
+ icon_state = "vault"
},
/area/security/armoury)
"aiP" = (
@@ -3476,8 +3445,7 @@
pixel_y = -24
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/security/permabrig)
"aiT" = (
@@ -3492,8 +3460,7 @@
},
/obj/item/storage/box/prisoner,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/security/permabrig)
"aiU" = (
@@ -3506,8 +3473,7 @@
icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/security/permabrig)
"aiV" = (
@@ -3577,8 +3543,7 @@
"ajb" = (
/obj/structure/closet/firecloset,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/crew_quarters/fitness{
name = "\improper Recreation Area"
@@ -3602,8 +3567,7 @@
pixel_y = -30
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/security/permabrig)
"aje" = (
@@ -3614,8 +3578,7 @@
icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/security/permabrig)
"ajf" = (
@@ -3643,8 +3606,7 @@
/obj/item/storage/fancy,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "vault";
- tag = "icon-vault (NORTH)"
+ icon_state = "vault"
},
/area/security/armoury)
"aji" = (
@@ -3727,8 +3689,7 @@
/obj/item/storage/box/masks,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitered";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whitered"
},
/area/security/brig)
"ajv" = (
@@ -3773,8 +3734,7 @@
pixel_y = -30
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/security/hos)
"ajy" = (
@@ -3806,8 +3766,7 @@
pixel_y = -32
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/security/hos)
"ajA" = (
@@ -3910,8 +3869,7 @@
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "vault";
- tag = "icon-vault (NORTH)"
+ icon_state = "vault"
},
/area/security/armoury)
"ajL" = (
@@ -3928,16 +3886,14 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "vault";
- tag = "icon-vault (EAST)"
+ icon_state = "vault"
},
/area/security/armoury)
"ajM" = (
/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/security/armoury)
"ajN" = (
@@ -3981,8 +3937,7 @@
/obj/structure/dispenser/oxygen,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/security/permabrig)
"ajS" = (
@@ -4016,8 +3971,7 @@
/obj/item/storage/box/teargas,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "vault";
- tag = "icon-vault (NORTH)"
+ icon_state = "vault"
},
/area/security/armoury)
"ajX" = (
@@ -4045,8 +3999,7 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/security/armoury)
"aka" = (
@@ -4077,8 +4030,7 @@
},
/turf/simulated/floor/plasteel{
dir = 6;
- icon_state = "vault";
- tag = "icon-vault (SOUTHEAST)"
+ icon_state = "vault"
},
/area/security/armoury)
"akd" = (
@@ -4092,8 +4044,7 @@
dir = 10
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/security/armoury)
"ake" = (
@@ -4133,8 +4084,7 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/security/armoury)
"akh" = (
@@ -4238,8 +4188,7 @@
/obj/item/clothing/head/helmet/riot,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/security/armoury)
"akv" = (
@@ -4302,8 +4251,7 @@
"akA" = (
/turf/simulated/floor/plasteel{
dir = 10;
- icon_state = "vault";
- tag = "icon-vault (SOUTHWEST)"
+ icon_state = "vault"
},
/area/security/armoury)
"akB" = (
@@ -4346,8 +4294,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/security/permabrig)
"akF" = (
@@ -4363,8 +4310,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/security/permabrig)
"akG" = (
@@ -4409,8 +4355,7 @@
pixel_y = 30
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/security/main)
"akK" = (
@@ -4453,8 +4398,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/security/armoury)
"akO" = (
@@ -4490,8 +4434,7 @@
icon_state = "1-4"
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/security/hos)
"akR" = (
@@ -4548,8 +4491,7 @@
icon_state = "1-8"
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/security/hos)
"akV" = (
@@ -5508,8 +5450,7 @@
icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/security/main)
"amN" = (
@@ -5536,8 +5477,7 @@
"amQ" = (
/obj/structure/closet/secure_closet/security,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/security/main)
"amR" = (
@@ -5548,8 +5488,7 @@
},
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/security/main)
"amU" = (
@@ -5559,8 +5498,7 @@
pixel_y = 6
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/security/main)
"amV" = (
@@ -6133,8 +6071,7 @@
/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/security/evidence)
"aok" = (
@@ -6165,8 +6102,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/security/armoury)
"aoo" = (
@@ -6188,8 +6124,7 @@
/obj/machinery/disposal,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/security/brig)
"aoq" = (
@@ -6233,8 +6168,7 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/security/evidence)
"aou" = (
@@ -6257,8 +6191,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/security/evidence)
"aow" = (
@@ -6271,8 +6204,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/security/evidence)
"aox" = (
@@ -6600,15 +6532,13 @@
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "vault";
- tag = "icon-vault (NORTH)"
+ icon_state = "vault"
},
/area/security/warden)
"app" = (
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/security/warden)
"apq" = (
@@ -6619,8 +6549,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/security/brig)
"apr" = (
@@ -6643,8 +6572,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/security/brig)
"apt" = (
@@ -6660,8 +6588,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/security/evidence)
"apv" = (
@@ -6670,8 +6597,7 @@
/obj/item/storage/box/evidence,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/security/evidence)
"apx" = (
@@ -6860,8 +6786,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitered";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whitered"
},
/area/security/brig)
"apR" = (
@@ -7001,8 +6926,7 @@
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitered";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whitered"
},
/area/security/brig)
"aqq" = (
@@ -7079,8 +7003,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/security/warden)
"aqy" = (
@@ -7164,8 +7087,7 @@
/obj/machinery/recharger,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/security/warden)
"aqJ" = (
@@ -7178,8 +7100,7 @@
/obj/structure/table,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/security/brig)
"aqM" = (
@@ -7200,8 +7121,7 @@
"aqN" = (
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/security/brig)
"aqO" = (
@@ -7254,8 +7174,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/security/evidence)
"aqR" = (
@@ -7272,8 +7191,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/security/evidence)
"aqS" = (
@@ -7300,8 +7218,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/security/evidence)
"aqU" = (
@@ -7434,8 +7351,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/security/evidence)
"arh" = (
@@ -7462,8 +7378,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitered";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whitered"
},
/area/security/brig)
"arj" = (
@@ -7633,8 +7548,7 @@
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitered";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whitered"
},
/area/security/brig)
"arO" = (
@@ -7678,8 +7592,7 @@
/obj/item/hand_labeler,
/turf/simulated/floor/plasteel{
dir = 6;
- icon_state = "vault";
- tag = "icon-vault (SOUTHEAST)"
+ icon_state = "vault"
},
/area/security/warden)
"arR" = (
@@ -7701,8 +7614,7 @@
},
/turf/simulated/floor/plasteel{
dir = 10;
- icon_state = "vault";
- tag = "icon-vault (SOUTHWEST)"
+ icon_state = "vault"
},
/area/security/warden)
"arT" = (
@@ -7729,8 +7641,7 @@
})
"arV" = (
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/security/warden)
"arW" = (
@@ -7753,8 +7664,7 @@
/obj/item/storage/fancy/donut_box,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/security/brig)
"arY" = (
@@ -7804,8 +7714,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/security/evidence)
"asf" = (
@@ -7819,8 +7728,7 @@
/obj/structure/cable/yellow,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/security/evidence)
"asg" = (
@@ -7954,8 +7862,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitered";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whitered"
},
/area/security/brig)
"asr" = (
@@ -7987,8 +7894,7 @@
},
/obj/structure/disposalpipe/sortjunction{
dir = 4;
- sortType = 21;
- tag = "icon-pipe-j1s (EAST)"
+ sortType = 21
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
@@ -8239,8 +8145,7 @@
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitered";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whitered"
},
/area/security/brig)
"asS" = (
@@ -8499,8 +8404,7 @@
/obj/item/storage/box/cups,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/security/brig)
"atv" = (
@@ -8667,8 +8571,7 @@
"atN" = (
/obj/structure/closet/lasertag/red,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/crew_quarters/fitness{
name = "\improper Recreation Area"
@@ -8680,8 +8583,7 @@
/obj/item/clothing/accessory/red,
/obj/item/clothing/head/soft/red,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/crew_quarters/fitness{
name = "\improper Recreation Area"
@@ -8693,8 +8595,7 @@
/obj/item/clothing/accessory/blue,
/obj/item/clothing/head/soft/blue,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/crew_quarters/fitness{
name = "\improper Recreation Area"
@@ -8702,8 +8603,7 @@
"atQ" = (
/obj/structure/closet/lasertag/blue,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/crew_quarters/fitness{
name = "\improper Recreation Area"
@@ -8764,8 +8664,7 @@
/obj/machinery/light,
/obj/machinery/vending/cola,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/crew_quarters/fitness{
name = "\improper Recreation Area"
@@ -9044,8 +8943,7 @@
pixel_y = -28
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/crew_quarters/fitness{
name = "\improper Recreation Area"
@@ -9132,8 +9030,7 @@
dir = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/crew_quarters/fitness{
name = "\improper Recreation Area"
@@ -9187,8 +9084,7 @@
/obj/machinery/vending/cigarette,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/security/brig)
"auV" = (
@@ -9207,8 +9103,7 @@
/obj/structure/reagent_dispensers/water_cooler,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/security/brig)
"auX" = (
@@ -9270,8 +9165,7 @@
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/security/warden)
"avc" = (
@@ -9349,8 +9243,7 @@
/area/security/brig)
"avj" = (
/obj/machinery/light/small{
- dir = 4;
- tag = "icon-bulb1 (EAST)"
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "showroomfloor"
@@ -9573,8 +9466,7 @@
pixel_x = 27
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/crew_quarters/fitness{
name = "\improper Recreation Area"
@@ -11382,8 +11274,7 @@
dir = 6
},
/turf/simulated/floor/plasteel{
- icon_state = "stage_stairs";
- tag = "icon-stage_stairs"
+ icon_state = "stage_stairs"
},
/area/security/podbay)
"azu" = (
@@ -12183,11 +12074,6 @@
c_tag = "Brig - Hallway - Port";
dir = 1
},
-/obj/machinery/door_timer{
- id = "Cell 1";
- name = "Cell 1";
- pixel_y = -32
- },
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
},
@@ -12196,22 +12082,20 @@
},
/area/security/brig)
"aBl" = (
-/obj/machinery/door_timer{
- id = "Cell 2";
- name = "Cell 2";
- pixel_y = -32
+/obj/machinery/door_timer/cell_4{
+ pixel_y = 32
},
/turf/simulated/floor/plasteel{
- icon_state = "red"
+ dir = 4;
+ icon_state = "redcorner"
},
/area/security/brig)
"aBn" = (
-/obj/machinery/door_timer{
- id = "Cell 3";
- name = "Cell 3";
- pixel_y = -32
+/obj/machinery/door_timer/cell_5{
+ pixel_y = 32
},
/turf/simulated/floor/plasteel{
+ dir = 4;
icon_state = "redcorner"
},
/area/security/brig)
@@ -13733,8 +13617,7 @@
},
/obj/structure/disposalpipe/junction{
dir = 4;
- icon_state = "pipe-j2";
- tag = "icon-pipe-j1 (WEST)"
+ icon_state = "pipe-j2"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8
@@ -15289,8 +15172,7 @@
/obj/item/twohanded/required/kirbyplants{
icon_state = "plant-20";
layer = 4.1;
- pixel_y = 3;
- tag = "icon-plant-20"
+ pixel_y = 3
},
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
@@ -15982,8 +15864,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "vault";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "vault"
},
/area/construction/Storage{
name = "Storage Wing"
@@ -16142,13 +16023,13 @@
codes_txt = "patrol;next_patrol=1-BrigCells";
location = "0-SecurityDesk"
},
-/mob/living/simple_animal/bot/secbot/beepsky,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 10
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 9
},
+/mob/living/simple_animal/bot/secbot/beepsky,
/turf/simulated/floor/plasteel,
/area/hallway/primary/fore)
"aJn" = (
@@ -16214,8 +16095,7 @@
/area/security/detectives_office)
"aJt" = (
/obj/machinery/atmospherics/pipe/manifold/visible/green{
- dir = 1;
- tag = "icon-manifold-g (NORTH)"
+ dir = 1
},
/obj/machinery/light{
dir = 1;
@@ -16589,8 +16469,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "vault";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "vault"
},
/area/construction/Storage{
name = "Storage Wing"
@@ -17474,7 +17353,6 @@
"aMc" = (
/obj/structure/disposalpipe/segment,
/obj/effect/decal/cleanable/dirt,
-/mob/living/simple_animal/mouse,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -17484,6 +17362,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/mob/living/simple_animal/mouse,
/turf/simulated/floor/plating,
/area/maintenance/fore)
"aMd" = (
@@ -17639,8 +17518,7 @@
/obj/structure/closet/secure_closet/personal,
/obj/item/clothing/under/assistantformal,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/crew_quarters/sleep)
"aMx" = (
@@ -17650,8 +17528,7 @@
"aMy" = (
/obj/structure/closet/wardrobe/pjs,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/crew_quarters/sleep)
"aMz" = (
@@ -18322,8 +18199,7 @@
},
/obj/item/twohanded/required/kirbyplants{
icon_state = "plant-21";
- layer = 4.1;
- tag = "icon-plant-21"
+ layer = 4.1
},
/turf/simulated/floor/wood,
/area/lawoffice)
@@ -18723,8 +18599,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/crew_quarters/courtroom)
"aOS" = (
@@ -18888,12 +18763,6 @@
/turf/simulated/floor/plating,
/area/storage/secure)
"aPm" = (
-/obj/machinery/door_timer{
- dir = 1;
- id = "Cell 4";
- name = "Cell 4";
- pixel_y = 32
- },
/obj/machinery/light{
dir = 1
},
@@ -19313,8 +19182,7 @@
/area/storage/primary)
"aQd" = (
/obj/machinery/shower{
- dir = 4;
- tag = "icon-shower (EAST)"
+ dir = 4
},
/obj/structure/curtain/open/shower,
/turf/simulated/floor/plasteel{
@@ -19396,8 +19264,7 @@
/area/lawoffice)
"aQv" = (
/obj/machinery/shower{
- dir = 8;
- tag = "icon-shower (WEST)"
+ dir = 8
},
/obj/effect/landmark/start{
name = "Civilian"
@@ -19430,8 +19297,7 @@
/obj/structure/closet/secure_closet/personal,
/obj/item/clothing/under/assistantformal,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/crew_quarters/locker)
"aQA" = (
@@ -19446,8 +19312,7 @@
pixel_y = 32
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/crew_quarters/locker)
"aQB" = (
@@ -19459,8 +19324,7 @@
pixel_y = 32
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/crew_quarters/locker)
"aQC" = (
@@ -19518,8 +19382,7 @@
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/crew_quarters/locker)
"aQJ" = (
@@ -19769,8 +19632,7 @@
/obj/machinery/portable_atmospherics/pump,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/crew_quarters/locker)
"aRo" = (
@@ -19792,8 +19654,7 @@
pixel_x = -28
},
/obj/machinery/shower{
- dir = 4;
- tag = "icon-shower (EAST)"
+ dir = 4
},
/obj/structure/curtain/open/shower,
/turf/simulated/floor/plasteel{
@@ -19810,8 +19671,7 @@
pixel_x = 28
},
/obj/machinery/shower{
- dir = 8;
- tag = "icon-shower (WEST)"
+ dir = 8
},
/obj/structure/curtain/open/shower,
/turf/simulated/floor/plasteel{
@@ -20016,10 +19876,10 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/mob/living/simple_animal/mouse,
/obj/machinery/atmospherics/pipe/simple/insulated{
dir = 8
},
+/mob/living/simple_animal/mouse,
/turf/simulated/floor/plasteel{
icon_state = "floorgrime"
},
@@ -20059,8 +19919,7 @@
"aRV" = (
/obj/structure/disposalpipe/junction{
dir = 4;
- icon_state = "pipe-j2";
- tag = "icon-pipe-j1 (WEST)"
+ icon_state = "pipe-j2"
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -20568,8 +20427,7 @@
})
"aTh" = (
/obj/machinery/shower{
- dir = 8;
- tag = "icon-shower (WEST)"
+ dir = 8
},
/obj/structure/curtain/open/shower,
/turf/simulated/floor/plasteel{
@@ -21011,8 +20869,7 @@
/obj/structure/chair/stool,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/quartermaster/office)
"aUf" = (
@@ -21068,7 +20925,7 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/item/aiModule/quarantine,
+/obj/item/aiModule/crewsimov,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -21126,7 +20983,7 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/item/aiModule/freeform,
+/obj/item/aiModule/nanotrasen,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -21238,15 +21095,11 @@
},
/area/storage/primary)
"aUx" = (
-/obj/machinery/door_timer{
- dir = 1;
- id = "Cell 5";
- name = "Cell 5";
- pixel_y = 32
+/obj/machinery/door_timer/cell_1{
+ pixel_y = -32
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "red"
+ icon_state = "redcorner"
},
/area/security/brig)
"aUy" = (
@@ -21340,8 +21193,7 @@
pixel_y = 32
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/engine/engineering)
"aUN" = (
@@ -21551,8 +21403,7 @@
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/crew_quarters/locker)
"aVn" = (
@@ -21571,8 +21422,7 @@
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/crew_quarters/locker)
"aVq" = (
@@ -21597,8 +21447,7 @@
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/crew_quarters/locker)
"aVs" = (
@@ -21655,23 +21504,11 @@
/turf/simulated/floor/plasteel,
/area/quartermaster/storage)
"aVw" = (
-/obj/structure/table,
-/obj/item/aiModule/asimov,
-/obj/item/aiModule/freeformcore,
-/obj/machinery/door/window{
- base_state = "right";
- icon_state = "right";
- name = "Core Modules";
- req_access_txt = "20"
- },
-/obj/structure/window/reinforced,
-/obj/item/aiModule/corp,
-/obj/item/aiModule/paladin,
-/obj/item/aiModule/robocop,
/obj/machinery/flasher{
id = "AI";
pixel_y = 24
},
+/obj/machinery/smartfridge/secure/circuits/aiupload/experimental,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -21725,21 +21562,11 @@
/turf/simulated/floor/bluegrid,
/area/turret_protected/ai_upload)
"aVA" = (
-/obj/structure/table,
-/obj/machinery/door/window{
- dir = 8;
- name = "High-Risk Modules";
- req_access_txt = "20"
- },
-/obj/structure/window/reinforced,
/obj/machinery/flasher{
id = "AI";
pixel_y = 24
},
-/obj/item/aiModule/antimov,
-/obj/item/aiModule/oxygen,
-/obj/item/aiModule/oneCrewMember,
-/obj/item/aiModule/purge,
+/obj/machinery/smartfridge/secure/circuits/aiupload/highrisk,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -22048,8 +21875,7 @@
/obj/structure/table/glass,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/quartermaster/office)
"aWk" = (
@@ -22313,8 +22139,7 @@
pixel_x = -26
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/engine/engineering)
"aWO" = (
@@ -22418,8 +22243,7 @@
c_tag = "Engineering - Power Monitoring"
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/engine/engineering)
"aWY" = (
@@ -22678,7 +22502,7 @@
id = "AI";
pixel_y = -24
},
-/obj/item/aiModule/protectStation,
+/obj/item/aiModule/corp,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -22842,8 +22666,7 @@
},
/obj/item/twohanded/required/kirbyplants{
icon_state = "plant-03";
- layer = 4.1;
- tag = "icon-plant-03"
+ layer = 4.1
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -22930,8 +22753,7 @@
/obj/structure/chair/stool,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/quartermaster/office)
"aYo" = (
@@ -23250,8 +23072,7 @@
},
/obj/machinery/power/smes/engineering,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/engine/engineering)
"aYV" = (
@@ -23264,8 +23085,7 @@
},
/obj/machinery/power/smes/engineering,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/engine/engineering)
"aYW" = (
@@ -23346,8 +23166,7 @@
},
/obj/structure/disposalpipe/junction{
dir = 4;
- icon_state = "pipe-j2";
- tag = "icon-pipe-j1 (WEST)"
+ icon_state = "pipe-j2"
},
/obj/structure/cable/yellow{
d1 = 1;
@@ -23524,8 +23343,7 @@
/obj/item/flag/cargo,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/quartermaster/office)
"aZA" = (
@@ -23664,8 +23482,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/turret_protected/ai_upload_foyer)
"aZO" = (
@@ -23676,8 +23493,7 @@
},
/obj/effect/decal/warning_stripes/north,
/obj/machinery/atmospherics/pipe/manifold/visible/green{
- dir = 1;
- tag = "icon-manifold-g (NORTH)"
+ dir = 1
},
/obj/machinery/meter,
/turf/simulated/floor/engine,
@@ -23801,49 +23617,42 @@
"baa" = (
/obj/structure/closet/wardrobe/black,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/crew_quarters/locker)
"bab" = (
/obj/structure/closet/wardrobe/grey,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/crew_quarters/locker)
"bac" = (
/obj/structure/closet/wardrobe/white,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/crew_quarters/locker)
"bad" = (
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/crew_quarters/locker)
"bae" = (
/obj/structure/closet/wardrobe/green,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/crew_quarters/locker)
"baf" = (
/obj/machinery/vending/clothing,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/crew_quarters/locker)
"bag" = (
/obj/structure/closet/wardrobe/mixed,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/crew_quarters/locker)
"bah" = (
@@ -23915,8 +23724,7 @@
"bao" = (
/obj/machinery/atmospherics/pipe/simple/visible/green{
dir = 5;
- initialize_directions = 12;
- tag = "icon-intact-g (NORTHEAST)"
+ initialize_directions = 12
},
/obj/structure/cable{
d1 = 1;
@@ -24225,8 +24033,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/quartermaster/office)
"baZ" = (
@@ -24240,8 +24047,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/quartermaster/office)
"bba" = (
@@ -24250,8 +24056,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/quartermaster/office)
"bbb" = (
@@ -24265,8 +24070,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/quartermaster/office)
"bbe" = (
@@ -24311,8 +24115,7 @@
"bbg" = (
/obj/structure/closet/firecloset,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/hallway/primary/central)
"bbh" = (
@@ -24323,15 +24126,13 @@
},
/obj/structure/closet/emcloset,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/hallway/primary/central)
"bbi" = (
/obj/structure/closet/emcloset,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/hallway/primary/central)
"bbj" = (
@@ -24356,8 +24157,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/turret_protected/ai_upload_foyer)
"bbm" = (
@@ -24366,8 +24166,7 @@
},
/obj/item/twohanded/required/kirbyplants{
icon_state = "applebush";
- layer = 4.1;
- tag = "icon-applebush"
+ layer = 4.1
},
/turf/simulated/floor/plasteel{
dir = 9;
@@ -24466,8 +24265,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/storage/tech)
"bby" = (
@@ -24496,8 +24294,7 @@
"bbB" = (
/obj/machinery/vending/snack,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/hallway/primary/central)
"bbC" = (
@@ -24522,8 +24319,7 @@
icon_state = "2-4"
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/hallway/primary/central)
"bbE" = (
@@ -24560,8 +24356,7 @@
},
/obj/machinery/computer/station_alert,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/engine/chiefs_office)
"bbL" = (
@@ -24594,11 +24389,10 @@
pixel_x = 4;
pixel_y = 4
},
-/obj/item/toy/figure/cargotech,
+/obj/item/toy/figure/crew/cargotech,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/quartermaster/office)
"bbQ" = (
@@ -24626,8 +24420,7 @@
/obj/machinery/vending/cola,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/quartermaster/office)
"bbV" = (
@@ -24717,9 +24510,7 @@
"bcc" = (
/obj/effect/spawner/window/reinforced,
/turf/simulated/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
+/area/maintenance/maintcentral)
"bcd" = (
/obj/machinery/light_switch{
pixel_x = 28
@@ -24857,8 +24648,7 @@
},
/turf/simulated/floor/plasteel{
dir = 6;
- icon_state = "vault";
- tag = "icon-vault (SOUTHEAST)"
+ icon_state = "vault"
},
/area/turret_protected/ai_upload_foyer)
"bcn" = (
@@ -24896,8 +24686,7 @@
},
/turf/simulated/floor/plasteel{
dir = 10;
- icon_state = "vault";
- tag = "icon-vault (SOUTHWEST)"
+ icon_state = "vault"
},
/area/turret_protected/ai_upload_foyer)
"bcq" = (
@@ -24952,16 +24741,14 @@
/obj/machinery/vending/coffee,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/quartermaster/office)
"bcA" = (
/obj/machinery/vending/cigarette,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/quartermaster/office)
"bcD" = (
@@ -25419,8 +25206,7 @@
},
/obj/machinery/computer/card/minor/ce,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/engine/chiefs_office)
"bdF" = (
@@ -25670,8 +25456,7 @@
icon_state = "1-2"
},
/obj/structure/disposalpipe/junction{
- dir = 1;
- tag = "icon-pipe-j1 (EAST)"
+ dir = 1
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8
@@ -25941,8 +25726,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/storage/tech)
"beG" = (
@@ -25954,8 +25738,7 @@
/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/storage/tech)
"beH" = (
@@ -26046,8 +25829,7 @@
"beP" = (
/obj/item/twohanded/required/kirbyplants{
icon_state = "plant-05";
- layer = 4.1;
- tag = "icon-plant-05"
+ layer = 4.1
},
/obj/effect/decal/warning_stripes/southwest,
/turf/simulated/floor/plasteel,
@@ -26073,8 +25855,7 @@
},
/obj/item/twohanded/required/kirbyplants{
icon_state = "plant-16";
- layer = 4.1;
- tag = "icon-plant-16"
+ layer = 4.1
},
/turf/simulated/floor/plasteel{
dir = 5;
@@ -26088,8 +25869,7 @@
/obj/machinery/disposal,
/obj/structure/disposalpipe/trunk,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/hallway/primary/central)
"beT" = (
@@ -26180,8 +25960,7 @@
},
/obj/machinery/computer/atmos_alert,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/engine/chiefs_office)
"bff" = (
@@ -26331,8 +26110,7 @@
/area/engine/engineering)
"bfs" = (
/obj/machinery/shower{
- dir = 8;
- tag = "icon-shower (WEST)"
+ dir = 8
},
/obj/effect/decal/warning_stripes/northeast,
/obj/machinery/atmospherics/unary/vent_scrubber/on{
@@ -26382,8 +26160,7 @@
/area/engine/engineering)
"bfz" = (
/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
- dir = 6;
- tag = "icon-intact (SOUTHEAST)"
+ dir = 6
},
/obj/structure/lattice,
/turf/space,
@@ -26795,8 +26572,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/storage/tech)
"bgt" = (
@@ -27141,9 +26917,7 @@
icon_state = "4-8"
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"bha" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -27324,9 +27098,7 @@
/area/janitor)
"bht" = (
/turf/simulated/wall,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
+/area/maintenance/maintcentral)
"bhu" = (
/obj/machinery/door/airlock{
name = "Central Emergency Storage"
@@ -27338,9 +27110,7 @@
icon_state = "1-2"
},
/turf/simulated/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
+/area/maintenance/maintcentral)
"bhv" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -27439,15 +27209,13 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/storage/tech)
"bhJ" = (
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/storage/tech)
"bhK" = (
@@ -27460,8 +27228,7 @@
/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/storage/tech)
"bhM" = (
@@ -27471,8 +27238,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/storage/tech)
"bhQ" = (
@@ -27484,8 +27250,7 @@
/obj/item/multitool,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/storage/tech)
"bhR" = (
@@ -27577,8 +27342,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/storage/tech)
"bib" = (
@@ -27590,9 +27354,7 @@
/obj/item/wrench,
/obj/effect/spawner/lootdrop/maintenance,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"bic" = (
/obj/structure/window/reinforced{
dir = 8
@@ -27641,8 +27403,7 @@
/area/turret_protected/ai)
"big" = (
/obj/machinery/shower{
- dir = 4;
- tag = "icon-shower (EAST)"
+ dir = 4
},
/obj/structure/extinguisher_cabinet{
pixel_x = -27
@@ -28056,9 +27817,7 @@
"bjc" = (
/obj/structure/closet/firecloset,
/turf/simulated/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
+/area/maintenance/maintcentral)
"bjd" = (
/obj/structure/rack,
/obj/item/stack/packageWrap{
@@ -28092,9 +27851,7 @@
/area/quartermaster/storage)
"bje" = (
/turf/simulated/wall/r_wall,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
+/area/maintenance/maintcentral)
"bjf" = (
/obj/item/stamp{
pixel_x = -3;
@@ -28351,8 +28108,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/storage/tech)
"bjC" = (
@@ -28982,9 +28738,7 @@
icon_state = "4-8"
},
/turf/simulated/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
+/area/maintenance/maintcentral)
"bkQ" = (
/obj/item/flashlight{
pixel_x = 1;
@@ -29005,9 +28759,7 @@
icon_state = "1-2"
},
/turf/simulated/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
+/area/maintenance/maintcentral)
"bkS" = (
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
@@ -29073,8 +28825,7 @@
name = "Captain"
},
/obj/structure/chair/comfy/brown{
- dir = 8;
- tag = "icon-comfychair (WEST)"
+ dir = 8
},
/turf/simulated/floor/carpet,
/area/crew_quarters/captain{
@@ -29159,8 +28910,7 @@
pixel_y = 32
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/hallway/primary/starboard)
"blm" = (
@@ -29171,8 +28921,7 @@
},
/obj/structure/closet/firecloset,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/hallway/primary/starboard)
"bln" = (
@@ -29204,8 +28953,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/storage/tech)
"blr" = (
@@ -29456,8 +29204,7 @@
/area/shuttle/arrival/station)
"blU" = (
/obj/structure/shuttle/engine/heater{
- dir = 4;
- tag = "icon-heater (EAST)"
+ dir = 4
},
/obj/structure/window/reinforced{
dir = 8
@@ -29467,8 +29214,7 @@
"blV" = (
/obj/structure/shuttle/engine/propulsion{
dir = 4;
- icon_state = "burst_r";
- tag = "icon-burst_r (WEST)"
+ icon_state = "burst_r"
},
/turf/simulated/floor/plating/airless,
/area/shuttle/arrival/station)
@@ -29595,8 +29341,7 @@
"bmf" = (
/obj/structure/disposalpipe/junction{
dir = 4;
- icon_state = "pipe-j2";
- tag = "icon-pipe-j1 (WEST)"
+ icon_state = "pipe-j2"
},
/turf/simulated/wall,
/area/quartermaster/office)
@@ -29879,13 +29624,13 @@
d2 = 8;
icon_state = "4-8"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
/mob/living/simple_animal/lizard{
name = "Wags-His-Tail";
real_name = "Wags-His-Tail"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
/turf/simulated/floor/plasteel{
icon_state = "floorgrime"
},
@@ -29930,9 +29675,7 @@
"bmF" = (
/obj/item/tank/internals/air,
/turf/simulated/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
+/area/maintenance/maintcentral)
"bmG" = (
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -30027,9 +29770,7 @@
},
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
+/area/maintenance/maintcentral)
"bmP" = (
/obj/machinery/light_switch{
pixel_x = 27
@@ -30369,8 +30110,7 @@
},
/obj/structure/disposalpipe/junction{
dir = 2;
- icon_state = "pipe-j2";
- tag = "icon-pipe-j2"
+ icon_state = "pipe-j2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
@@ -30431,8 +30171,7 @@
})
"bnF" = (
/obj/structure/shuttle/engine/propulsion{
- dir = 4;
- tag = "icon-propulsion (WEST)"
+ dir = 4
},
/turf/simulated/floor/plating/airless,
/area/shuttle/arrival/station)
@@ -30487,7 +30226,7 @@
})
"bnL" = (
/obj/structure/table,
-/obj/item/toy/figure/clown,
+/obj/item/toy/figure/crew/clown,
/obj/item/reagent_containers/food/snacks/baguette,
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -30844,15 +30583,11 @@
"boy" = (
/obj/item/storage/box/lights/mixed,
/turf/simulated/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
+/area/maintenance/maintcentral)
"boz" = (
/obj/item/clothing/mask/gas,
/turf/simulated/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
+/area/maintenance/maintcentral)
"boB" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -31161,8 +30896,7 @@
icon_state = "4-8"
},
/obj/structure/disposalpipe/junction{
- dir = 2;
- tag = "icon-pipe-j1 (EAST)"
+ dir = 2
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -31666,9 +31400,7 @@
},
/obj/structure/cable/yellow,
/turf/simulated/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
+/area/maintenance/maintcentral)
"bpV" = (
/obj/machinery/computer/crew,
/turf/simulated/floor/plasteel{
@@ -31749,9 +31481,7 @@
"bqe" = (
/obj/item/extinguisher,
/turf/simulated/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
+/area/maintenance/maintcentral)
"bqf" = (
/obj/machinery/computer/station_alert,
/turf/simulated/floor/plasteel{
@@ -31828,8 +31558,7 @@
pixel_x = -1
},
/obj/machinery/shower{
- dir = 4;
- tag = "icon-shower (EAST)"
+ dir = 4
},
/obj/machinery/door/window/westright{
dir = 4
@@ -32144,8 +31873,7 @@
},
/obj/item/pen/multi,
/obj/machinery/light/small{
- dir = 8;
- tag = "icon-bulb1 (WEST)"
+ dir = 8
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -32153,8 +31881,7 @@
/area/turret_protected/ai)
"bqY" = (
/obj/structure/transit_tube{
- icon_state = "D-SE";
- tag = "icon-D-SE"
+ icon_state = "D-SE"
},
/turf/space,
/area/space/nearstation)
@@ -32177,8 +31904,7 @@
},
/obj/item/pen/multi,
/obj/machinery/light/small{
- dir = 4;
- tag = "icon-bulb1 (EAST)"
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -32211,8 +31937,7 @@
})
"brd" = (
/obj/structure/transit_tube{
- icon_state = "D-SW";
- tag = "icon-D-SW"
+ icon_state = "D-SW"
},
/obj/structure/window/reinforced,
/turf/space,
@@ -32319,8 +32044,7 @@
"bru" = (
/obj/structure/shuttle/engine/propulsion{
dir = 4;
- icon_state = "burst_l";
- tag = "icon-burst_l (WEST)"
+ icon_state = "burst_l"
},
/turf/simulated/floor/plating/airless,
/area/shuttle/arrival/station)
@@ -32646,18 +32370,14 @@
"brS" = (
/obj/structure/reagent_dispensers/watertank,
/turf/simulated/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
+/area/maintenance/maintcentral)
"brT" = (
/obj/machinery/atmospherics/unary/portables_connector{
dir = 1
},
/obj/machinery/portable_atmospherics/canister/air,
/turf/simulated/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
+/area/maintenance/maintcentral)
"brU" = (
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/west,
@@ -33029,8 +32749,7 @@
})
"bsI" = (
/obj/structure/transit_tube{
- icon_state = "E-SW";
- tag = "icon-E-SW"
+ icon_state = "E-SW"
},
/obj/structure/window/reinforced{
dir = 8
@@ -33045,16 +32764,14 @@
/area/space/nearstation)
"bsK" = (
/obj/structure/transit_tube{
- icon_state = "W-SE";
- tag = "icon-W-SE"
+ icon_state = "W-SE"
},
/obj/structure/lattice,
/turf/space,
/area/space/nearstation)
"bsL" = (
/obj/structure/transit_tube{
- icon_state = "D-SW";
- tag = "icon-D-SW"
+ icon_state = "D-SW"
},
/turf/space,
/area/space/nearstation)
@@ -33065,8 +32782,7 @@
})
"bsN" = (
/obj/structure/transit_tube{
- icon_state = "D-NW";
- tag = "icon-D-NW"
+ icon_state = "D-NW"
},
/obj/structure/lattice,
/obj/machinery/atmospherics/pipe/simple/visible/yellow,
@@ -33102,8 +32818,7 @@
/area/crew_quarters/heads)
"bsP" = (
/obj/structure/transit_tube{
- icon_state = "D-SE";
- tag = "icon-D-SW"
+ icon_state = "D-SE"
},
/obj/structure/lattice,
/turf/space,
@@ -33118,8 +32833,7 @@
/area/space/nearstation)
"bsR" = (
/obj/structure/transit_tube{
- icon_state = "E-SW";
- tag = "icon-E-NW"
+ icon_state = "E-SW"
},
/obj/structure/lattice,
/turf/space,
@@ -33156,8 +32870,7 @@
/obj/machinery/computer/teleporter,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "vault";
- tag = "icon-vault (EAST)"
+ icon_state = "vault"
},
/area/turret_protected/tcomfoyer{
name = "\improper MiniSat Teleporter Foyer"
@@ -33166,8 +32879,7 @@
/obj/machinery/teleport/hub,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "vault";
- tag = "icon-vault (EAST)"
+ icon_state = "vault"
},
/area/turret_protected/tcomfoyer{
name = "\improper MiniSat Teleporter Foyer"
@@ -33392,8 +33104,7 @@
icon_state = "1-2"
},
/obj/structure/disposalpipe/junction{
- dir = 1;
- tag = "icon-pipe-j1 (EAST)"
+ dir = 1
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -33589,9 +33300,7 @@
/obj/structure/reagent_dispensers/fueltank,
/obj/machinery/atmospherics/pipe/simple/hidden/universal,
/turf/simulated/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
+/area/maintenance/maintcentral)
"btQ" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
@@ -34027,9 +33736,7 @@
/obj/item/radio/off,
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
+/area/maintenance/maintcentral)
"buC" = (
/obj/effect/decal/cleanable/fungus,
/turf/simulated/wall,
@@ -34138,17 +33845,9 @@
},
/turf/simulated/floor/plasteel,
/area/engine/break_room)
-"buL" = (
-/obj/structure/transit_tube{
- icon_state = "D-SE";
- tag = "icon-D-SW"
- },
-/turf/space,
-/area/space/nearstation)
"buM" = (
/obj/structure/transit_tube{
- icon_state = "D-NW";
- tag = "icon-D-NE"
+ icon_state = "D-NW"
},
/turf/space,
/area/space/nearstation)
@@ -34171,8 +33870,7 @@
})
"buO" = (
/obj/structure/transit_tube{
- icon_state = "D-NE";
- tag = "icon-D-NE"
+ icon_state = "D-NE"
},
/obj/structure/window/reinforced{
dir = 4
@@ -34279,8 +33977,7 @@
/obj/machinery/teleport/station,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "vault";
- tag = "icon-vault (EAST)"
+ icon_state = "vault"
},
/area/turret_protected/tcomfoyer{
name = "\improper MiniSat Teleporter Foyer"
@@ -34295,8 +33992,7 @@
})
"buY" = (
/obj/machinery/light/small{
- dir = 8;
- tag = "icon-bulb1 (WEST)"
+ dir = 8
},
/obj/machinery/light_switch{
pixel_x = -23
@@ -34338,8 +34034,7 @@
pixel_x = 25
},
/obj/machinery/light/small{
- dir = 4;
- tag = "icon-bulb1 (EAST)"
+ dir = 4
},
/obj/structure/cable/yellow{
d2 = 2;
@@ -34460,8 +34155,7 @@
/area/maintenance/starboard)
"bvk" = (
/obj/structure/transit_tube{
- icon_state = "S-NE";
- tag = "icon-S-NE"
+ icon_state = "S-NE"
},
/obj/structure/window/reinforced{
dir = 4
@@ -34520,9 +34214,7 @@
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
+/area/maintenance/maintcentral)
"bvo" = (
/obj/machinery/status_display{
layer = 4;
@@ -34623,8 +34315,7 @@
/area/engine/break_room)
"bvv" = (
/obj/structure/transit_tube{
- icon_state = "D-SE";
- tag = "icon-D-SE"
+ icon_state = "D-SE"
},
/obj/structure/window/reinforced{
dir = 4
@@ -35224,8 +34915,7 @@
})
"bwr" = (
/obj/structure/transit_tube{
- icon_state = "D-NW";
- tag = "icon-D-NW"
+ icon_state = "D-NW"
},
/obj/structure/window/reinforced{
dir = 8
@@ -35277,12 +34967,10 @@
/area/space/nearstation)
"bwy" = (
/obj/structure/transit_tube{
- icon_state = "D-SE";
- tag = "icon-D-SE"
+ icon_state = "D-SE"
},
/obj/structure/transit_tube{
- icon_state = "D-NE";
- tag = "icon-D-NE"
+ icon_state = "D-NE"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -35345,8 +35033,7 @@
/area/crew_quarters/bar)
"bwF" = (
/obj/structure/transit_tube{
- icon_state = "E-SW-NW";
- tag = "icon-E-SW-NW"
+ icon_state = "E-SW-NW"
},
/obj/machinery/atmospherics/pipe/simple/visible/yellow,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -35393,8 +35080,7 @@
/area/space/nearstation)
"bwM" = (
/obj/structure/transit_tube{
- icon_state = "E-W-Pass";
- tag = "icon-E-W-Pass"
+ icon_state = "E-W-Pass"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -35472,8 +35158,7 @@
/obj/machinery/vending/coffee,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/engine/break_room)
"bwW" = (
@@ -35491,12 +35176,10 @@
/area/space/nearstation)
"bwX" = (
/obj/structure/transit_tube{
- icon_state = "D-SW";
- tag = "icon-D-SW"
+ icon_state = "D-SW"
},
/obj/structure/transit_tube{
- icon_state = "D-NW";
- tag = "icon-D-NE"
+ icon_state = "D-NW"
},
/obj/structure/lattice/catwalk,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -35545,8 +35228,7 @@
dir = 8
},
/obj/structure/transit_tube/station{
- dir = 4;
- tag = "icon-closed (EAST)"
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -35620,16 +35302,14 @@
})
"bxj" = (
/obj/structure/transit_tube{
- icon_state = "S-NE";
- tag = "icon-S-NE"
+ icon_state = "S-NE"
},
/obj/structure/lattice,
/turf/space,
/area/space/nearstation)
"bxk" = (
/obj/structure/transit_tube{
- icon_state = "D-NE";
- tag = "icon-D-NE"
+ icon_state = "D-NE"
},
/turf/space,
/area/space/nearstation)
@@ -36221,7 +35901,7 @@
/obj/item/reagent_containers/food/drinks/bottle/absinthe/premium,
/obj/item/lighter/zippo/nt_rep,
/obj/item/storage/fancy/cigarettes/cigpack_robustgold,
-/obj/item/toy/figure/captain,
+/obj/item/toy/figure/crew/captain,
/turf/simulated/floor/carpet,
/area/crew_quarters/captain{
name = "\improper Captain's Quarters"
@@ -36474,9 +36154,7 @@
req_one_access_txt = "20;12"
},
/turf/simulated/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
+/area/maintenance/maintcentral)
"byF" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -36699,8 +36377,7 @@
/area/hallway/primary/starboard)
"bzc" = (
/obj/structure/transit_tube{
- icon_state = "D-SW";
- tag = "icon-D-SW"
+ icon_state = "D-SW"
},
/obj/structure/window/reinforced{
dir = 8
@@ -36710,8 +36387,7 @@
/area/space/nearstation)
"bzd" = (
/obj/structure/transit_tube{
- icon_state = "N-SW";
- tag = "icon-N-SW"
+ icon_state = "N-SW"
},
/obj/structure/lattice,
/turf/space,
@@ -36730,9 +36406,9 @@
d2 = 4;
icon_state = "2-4"
},
-/mob/living/simple_animal/bot/secbot/pingsky,
/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/mob/living/simple_animal/bot/secbot/pingsky,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -36939,8 +36615,7 @@
/obj/machinery/vending/cigarette,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/engine/break_room)
"bzs" = (
@@ -37000,8 +36675,7 @@
"bzA" = (
/obj/item/twohanded/required/kirbyplants{
icon_state = "plant-18";
- layer = 4.1;
- tag = "icon-plant-18"
+ layer = 4.1
},
/obj/effect/decal/warning_stripes/northwest,
/turf/simulated/floor/plasteel,
@@ -37011,8 +36685,7 @@
"bzB" = (
/obj/item/twohanded/required/kirbyplants{
icon_state = "plant-10";
- layer = 4.1;
- tag = "icon-plant-10"
+ layer = 4.1
},
/turf/simulated/floor/plasteel{
icon_state = "grimy"
@@ -37068,15 +36741,13 @@
"bzG" = (
/obj/structure/closet/firecloset,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/hallway/primary/port)
"bzH" = (
/obj/structure/closet/emcloset,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/hallway/primary/port)
"bzJ" = (
@@ -37314,8 +36985,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/bridge)
"bAi" = (
@@ -37355,8 +37025,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/carpet{
- icon_state = "carpet6-2";
- tag = "icon-carpet6-2"
+ icon_state = "carpet6-2"
},
/area/crew_quarters/captain{
name = "\improper Captain's Quarters"
@@ -37368,16 +37037,14 @@
icon_state = "1-2"
},
/turf/simulated/floor/carpet{
- icon_state = "carpet14-10";
- tag = "icon-carpet14-10"
+ icon_state = "carpet14-10"
},
/area/crew_quarters/captain{
name = "\improper Captain's Quarters"
})
"bAo" = (
/turf/simulated/floor/carpet{
- icon_state = "carpet14-10";
- tag = "icon-carpet14-10"
+ icon_state = "carpet14-10"
},
/area/crew_quarters/captain{
name = "\improper Captain's Quarters"
@@ -37385,8 +37052,7 @@
"bAp" = (
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/carpet{
- icon_state = "carpet14-10";
- tag = "icon-carpet14-10"
+ icon_state = "carpet14-10"
},
/area/crew_quarters/captain{
name = "\improper Captain's Quarters"
@@ -37397,8 +37063,7 @@
dir = 8
},
/turf/simulated/floor/carpet{
- icon_state = "carpet10-8";
- tag = "icon-carpet10-8"
+ icon_state = "carpet10-8"
},
/area/crew_quarters/captain{
name = "\improper Captain's Quarters"
@@ -37411,8 +37076,7 @@
/obj/structure/table/glass,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/engine/break_room)
"bAs" = (
@@ -37426,14 +37090,12 @@
/obj/structure/table/glass,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/engine/break_room)
"bAt" = (
/obj/structure/transit_tube/station{
- dir = 8;
- tag = "icon-closed (EAST)"
+ dir = 8
},
/obj/structure/window/reinforced{
dir = 4
@@ -37498,8 +37160,7 @@
pixel_x = -25
},
/obj/machinery/light/small{
- dir = 8;
- tag = "icon-bulb1 (WEST)"
+ dir = 8
},
/mob/living/simple_animal/bot/cleanbot{
on = 0
@@ -37644,8 +37305,7 @@
})
"bAX" = (
/obj/structure/transit_tube{
- icon_state = "E-NW";
- tag = "icon-E-NW"
+ icon_state = "E-NW"
},
/obj/structure/window/reinforced{
dir = 8
@@ -37655,8 +37315,7 @@
/area/space/nearstation)
"bAY" = (
/obj/structure/transit_tube{
- icon_state = "W-NE";
- tag = "icon-W-NE"
+ icon_state = "W-NE"
},
/obj/structure/lattice,
/turf/space,
@@ -37664,22 +37323,19 @@
"bAZ" = (
/obj/structure/lattice,
/obj/structure/transit_tube{
- icon_state = "D-NW";
- tag = "icon-D-NW"
+ icon_state = "D-NW"
},
/turf/space,
/area/space/nearstation)
"bBa" = (
/obj/structure/transit_tube{
- icon_state = "E-NW";
- tag = "icon-E-NW"
+ icon_state = "E-NW"
},
/turf/space,
/area/space/nearstation)
"bBb" = (
/obj/structure/transit_tube{
- icon_state = "D-SE";
- tag = "icon-D-SW"
+ icon_state = "D-SE"
},
/obj/structure/window/reinforced{
dir = 4
@@ -37864,8 +37520,7 @@
"bBr" = (
/obj/item/twohanded/required/kirbyplants{
icon_state = "plant-20";
- layer = 4.1;
- tag = "icon-plant-20"
+ layer = 4.1
},
/obj/effect/decal/warning_stripes/northwest,
/turf/simulated/floor/plasteel,
@@ -38051,8 +37706,7 @@
pixel_y = 30
},
/turf/simulated/floor/plasteel{
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "cult"
},
/area/library)
"bBU" = (
@@ -38203,8 +37857,7 @@
"bCi" = (
/obj/structure/disposalpipe/junction{
dir = 8;
- icon_state = "pipe-j2";
- tag = "icon-pipe-j1 (WEST)"
+ icon_state = "pipe-j2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -38270,8 +37923,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/carpet{
- icon_state = "carpet7-3";
- tag = "icon-carpet7-3"
+ icon_state = "carpet7-3"
},
/area/crew_quarters/captain{
name = "\improper Captain's Quarters"
@@ -38283,8 +37935,7 @@
icon_state = "1-4"
},
/obj/structure/chair/comfy/brown{
- dir = 4;
- tag = "icon-comfychair (EAST)"
+ dir = 4
},
/turf/simulated/floor/carpet,
/area/crew_quarters/captain{
@@ -38313,8 +37964,7 @@
icon_state = "pipe-c"
},
/obj/structure/chair/comfy/brown{
- dir = 8;
- tag = "icon-comfychair (WEST)"
+ dir = 8
},
/turf/simulated/floor/carpet,
/area/crew_quarters/captain{
@@ -38330,8 +37980,7 @@
dir = 4
},
/turf/simulated/floor/carpet{
- icon_state = "carpet11-12";
- tag = "icon-carpet11-12"
+ icon_state = "carpet11-12"
},
/area/crew_quarters/captain{
name = "\improper Captain's Quarters"
@@ -38356,8 +38005,7 @@
/area/crew_quarters/bar)
"bCw" = (
/obj/structure/transit_tube{
- icon_state = "N-SE";
- tag = "icon-N-SE"
+ icon_state = "N-SE"
},
/obj/structure/window/reinforced{
dir = 4
@@ -38546,8 +38194,7 @@
})
"bCY" = (
/obj/structure/transit_tube{
- icon_state = "D-NE";
- tag = "icon-D-NE"
+ icon_state = "D-NE"
},
/obj/structure/window/reinforced{
dir = 4
@@ -38667,8 +38314,7 @@
/area/tcommsat/computer)
"bDi" = (
/obj/machinery/light/small{
- dir = 4;
- tag = "icon-bulb1 (EAST)"
+ dir = 4
},
/mob/living/simple_animal/bot/floorbot{
on = 0
@@ -38706,9 +38352,7 @@
},
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
+/area/maintenance/maintcentral)
"bDl" = (
/obj/machinery/door/airlock/command{
name = "Emergency Escape";
@@ -38831,8 +38475,7 @@
pixel_x = 30
},
/turf/simulated/floor/plasteel{
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "cult"
},
/area/library)
"bDx" = (
@@ -39056,8 +38699,7 @@
/area/library)
"bDO" = (
/turf/simulated/floor/plasteel{
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "cult"
},
/area/library)
"bDP" = (
@@ -39065,8 +38707,7 @@
dir = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "cult"
},
/area/library)
"bDQ" = (
@@ -39205,8 +38846,7 @@
dir = 4
},
/turf/simulated/floor/carpet{
- icon_state = "carpet6-2";
- tag = "icon-carpet6-2"
+ icon_state = "carpet6-2"
},
/area/crew_quarters/captain{
name = "\improper Captain's Quarters"
@@ -39219,16 +38859,14 @@
dir = 8
},
/turf/simulated/floor/carpet{
- icon_state = "carpet15-11";
- tag = "icon-carpet15-11"
+ icon_state = "carpet15-11"
},
/area/crew_quarters/captain{
name = "\improper Captain's Quarters"
})
"bEk" = (
/obj/structure/chair/comfy/brown{
- dir = 4;
- tag = "icon-comfychair (EAST)"
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -39249,8 +38887,7 @@
})
"bEm" = (
/obj/structure/chair/comfy/brown{
- dir = 8;
- tag = "icon-comfychair (WEST)"
+ dir = 8
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -39271,8 +38908,7 @@
dir = 8
},
/turf/simulated/floor/carpet{
- icon_state = "carpet11-12";
- tag = "icon-carpet11-12"
+ icon_state = "carpet11-12"
},
/area/crew_quarters/captain{
name = "\improper Captain's Quarters"
@@ -39632,8 +39268,7 @@
/area/atmos)
"bEX" = (
/obj/machinery/atmospherics/pipe/manifold/visible/purple{
- dir = 1;
- tag = "icon-map (NORTH)"
+ dir = 1
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -39894,8 +39529,7 @@
name = "Study #1"
},
/turf/simulated/floor/plasteel{
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "cult"
},
/area/library)
"bFz" = (
@@ -39903,8 +39537,7 @@
name = "Study #2"
},
/turf/simulated/floor/plasteel{
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "cult"
},
/area/library)
"bFA" = (
@@ -40023,8 +39656,7 @@
/area/bridge)
"bFM" = (
/obj/structure/chair/comfy/teal{
- dir = 4;
- tag = "icon-comfychair (EAST)"
+ dir = 4
},
/obj/structure/chair/comfy/black{
dir = 4
@@ -40100,8 +39732,7 @@
pixel_x = -24
},
/turf/simulated/floor/carpet{
- icon_state = "carpet5-1";
- tag = "icon-carpet5-1"
+ icon_state = "carpet5-1"
},
/area/crew_quarters/captain{
name = "\improper Captain's Quarters"
@@ -40122,8 +39753,7 @@
/area/hallway/primary/port)
"bFX" = (
/turf/simulated/floor/carpet{
- icon_state = "carpetside";
- tag = "icon-carpetside"
+ icon_state = "carpetside"
},
/area/crew_quarters/captain{
name = "\improper Captain's Quarters"
@@ -40487,8 +40117,7 @@
/area/atmos)
"bGM" = (
/obj/structure/transit_tube{
- icon_state = "D-NW";
- tag = "icon-D-NE"
+ icon_state = "D-NW"
},
/obj/structure/window/reinforced{
dir = 1
@@ -40541,8 +40170,7 @@
/obj/effect/decal/warning_stripes/yellow/hollow,
/obj/item/twohanded/required/kirbyplants{
icon_state = "plant-16";
- layer = 4.1;
- tag = "icon-plant-16"
+ layer = 4.1
},
/turf/simulated/floor/plasteel,
/area/toxins/mixing{
@@ -40807,8 +40435,7 @@
})
"bHx" = (
/obj/item/twohanded/required/kirbyplants{
- icon_state = "plant-22";
- tag = "icon-plant-22"
+ icon_state = "plant-22"
},
/turf/simulated/floor/wood,
/area/library)
@@ -40835,8 +40462,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/carpet{
- icon_state = "carpetside";
- tag = "icon-carpetside"
+ icon_state = "carpetside"
},
/area/crew_quarters/captain{
name = "\improper Captain's Quarters"
@@ -40848,8 +40474,7 @@
"bHB" = (
/obj/machinery/vending/cola,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/bridge/meeting_room{
name = "\improper Command Hallway"
@@ -40864,8 +40489,7 @@
},
/mob/living/simple_animal/pet/dog/fox/Renault,
/turf/simulated/floor/carpet{
- icon_state = "carpetside";
- tag = "icon-carpetside"
+ icon_state = "carpetside"
},
/area/crew_quarters/captain{
name = "\improper Captain's Quarters"
@@ -40902,8 +40526,7 @@
pixel_x = 27
},
/turf/simulated/floor/carpet{
- icon_state = "carpet9-4";
- tag = "icon-carpet9-4"
+ icon_state = "carpet9-4"
},
/area/crew_quarters/captain{
name = "\improper Captain's Quarters"
@@ -40939,9 +40562,7 @@
req_one_access_txt = "20;12"
},
/turf/simulated/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
+/area/maintenance/maintcentral)
"bHL" = (
/obj/machinery/light{
dir = 8
@@ -41090,8 +40711,7 @@
/area/atmos)
"bIf" = (
/obj/machinery/atmospherics/pipe/simple/visible/purple{
- dir = 10;
- tag = "icon-intact (SOUTHWEST)"
+ dir = 10
},
/turf/simulated/floor/plasteel{
icon_state = "neutralcorner"
@@ -41253,8 +40873,7 @@
pixel_y = -26
},
/turf/simulated/floor/carpet{
- icon_state = "carpetside";
- tag = "icon-carpetside"
+ icon_state = "carpetside"
},
/area/crew_quarters/captain{
name = "\improper Captain's Quarters"
@@ -41269,8 +40888,7 @@
/area/tcommsat/computer)
"bIA" = (
/obj/item/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- tag = "icon-plant-21"
+ icon_state = "plant-21"
},
/turf/simulated/floor/plasteel{
icon_state = "grimy"
@@ -41440,8 +41058,7 @@
icon_state = "1-2"
},
/obj/structure/disposalpipe/junction{
- dir = 1;
- tag = "icon-pipe-j1 (EAST)"
+ dir = 1
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8
@@ -42065,8 +41682,7 @@
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/visible/purple{
- dir = 10;
- tag = "icon-intact (SOUTHWEST)"
+ dir = 10
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 1
@@ -42104,29 +41720,25 @@
/area/atmos)
"bKc" = (
/obj/machinery/atmospherics/pipe/manifold/visible/yellow{
- dir = 4;
- tag = "icon-manifold-y (EAST)"
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/atmos)
"bKd" = (
/obj/machinery/atmospherics/pipe/simple/visible/green{
- dir = 6;
- tag = "icon-intact-g (SOUTHEAST)"
+ dir = 6
},
/turf/simulated/floor/plasteel,
/area/atmos)
"bKe" = (
/obj/machinery/atmospherics/pipe/manifold/visible/green{
- dir = 1;
- tag = "icon-manifold-g (NORTH)"
+ dir = 1
},
/turf/simulated/floor/plasteel,
/area/atmos)
"bKf" = (
/obj/machinery/atmospherics/pipe/manifold/visible/green{
- dir = 4;
- tag = "icon-manifold-g (EAST)"
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/atmos)
@@ -42255,8 +41867,7 @@
dir = 1
},
/obj/machinery/light/small{
- dir = 4;
- tag = "icon-bulb1 (EAST)"
+ dir = 4
},
/obj/machinery/camera/motion{
c_tag = "AI Satellite Exterior South West";
@@ -42300,9 +41911,7 @@
},
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
+/area/maintenance/maintcentral)
"bKw" = (
/obj/item/flashlight/lamp/green{
pixel_x = 1;
@@ -42690,8 +42299,7 @@
},
/obj/structure/disposalpipe/junction{
dir = 8;
- icon_state = "pipe-j2";
- tag = "icon-pipe-j1 (WEST)"
+ icon_state = "pipe-j2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -43129,8 +42737,7 @@
/area/atmos)
"bMd" = (
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 9;
- tag = "icon-intact-y (NORTHWEST)"
+ dir = 9
},
/turf/simulated/floor/plasteel,
/area/atmos)
@@ -43144,8 +42751,7 @@
"bMf" = (
/obj/machinery/atmospherics/pipe/simple/visible/green{
dir = 5;
- initialize_directions = 12;
- tag = "icon-intact-g (NORTHEAST)"
+ initialize_directions = 12
},
/turf/simulated/floor/plasteel,
/area/atmos)
@@ -43634,8 +43240,7 @@
"bNl" = (
/obj/machinery/vending/coffee,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/bridge/meeting_room{
name = "\improper Command Hallway"
@@ -43674,8 +43279,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
"bNo" = (
@@ -43688,9 +43292,7 @@
icon_state = "1-2"
},
/turf/simulated/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
+/area/maintenance/maintcentral)
"bNp" = (
/turf/simulated/floor/plasteel{
dir = 1;
@@ -43716,8 +43318,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
"bNz" = (
@@ -43733,8 +43334,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
"bNA" = (
@@ -43928,8 +43528,7 @@
/obj/machinery/computer/card/minor/rd,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/hor)
"bNP" = (
@@ -44122,8 +43721,7 @@
/area/security/vacantoffice)
"bOk" = (
/obj/machinery/shower{
- dir = 4;
- tag = "icon-shower (EAST)"
+ dir = 4
},
/obj/effect/decal/cleanable/blood,
/obj/effect/decal/cleanable/blood/gibs/limb,
@@ -44268,8 +43866,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/ai_monitored/storage/eva{
name = "E.V.A. Storage"
@@ -44491,8 +44088,7 @@
/area/hallway/primary/central)
"bOX" = (
/obj/machinery/shower{
- dir = 4;
- tag = "icon-shower (EAST)"
+ dir = 4
},
/obj/machinery/door_control{
id = "AuxShower";
@@ -44514,8 +44110,7 @@
pixel_y = -29
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/bridge/meeting_room{
name = "\improper Command Hallway"
@@ -44614,8 +44209,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/ai_monitored/storage/eva{
name = "E.V.A. Storage"
@@ -44996,8 +44590,7 @@
/obj/machinery/suit_storage_unit/standard_unit,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/ai_monitored/storage/eva{
name = "E.V.A. Storage"
@@ -45035,9 +44628,7 @@
},
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
+/area/maintenance/maintcentral)
"bQh" = (
/obj/machinery/suit_storage_unit/standard_unit,
/obj/machinery/firealarm{
@@ -45046,8 +44637,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/ai_monitored/storage/eva{
name = "E.V.A. Storage"
@@ -45167,8 +44757,7 @@
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "vault";
- tag = "icon-vault (NORTH)"
+ icon_state = "vault"
},
/area/gateway)
"bQC" = (
@@ -45191,8 +44780,7 @@
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "vault";
- tag = "icon-vault (EAST)"
+ icon_state = "vault"
},
/area/gateway)
"bQE" = (
@@ -45241,8 +44829,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
"bQK" = (
@@ -45261,8 +44848,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
"bQL" = (
@@ -45390,8 +44976,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/hor)
"bQX" = (
@@ -45783,8 +45368,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/gateway)
"bRQ" = (
@@ -45820,8 +45404,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/ai_monitored/storage/eva{
name = "E.V.A. Storage"
@@ -45871,8 +45454,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
"bRV" = (
@@ -46023,8 +45605,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/gateway)
"bSn" = (
@@ -46039,8 +45620,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/gateway)
"bSp" = (
@@ -46051,9 +45631,7 @@
},
/obj/item/cigbutt,
/turf/simulated/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
+/area/maintenance/maintcentral)
"bSq" = (
/obj/machinery/alarm{
dir = 4;
@@ -46102,8 +45680,7 @@
"bSt" = (
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
"bSv" = (
@@ -46116,8 +45693,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
"bSw" = (
@@ -46126,8 +45702,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
"bSx" = (
@@ -46145,8 +45720,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
"bSy" = (
@@ -46157,8 +45731,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
"bSz" = (
@@ -46248,8 +45821,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/ai_monitored/storage/eva{
name = "E.V.A. Storage"
@@ -46474,9 +46046,7 @@
dir = 4
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"bTd" = (
/obj/structure/chair/wood/wings{
dir = 1
@@ -46592,8 +46162,7 @@
},
/obj/item/twohanded/required/kirbyplants{
icon_state = "plant-03";
- layer = 4.1;
- tag = "icon-plant-03"
+ layer = 4.1
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 9
@@ -46749,8 +46318,7 @@
"bTB" = (
/obj/structure/closet/emcloset,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/library)
"bTC" = (
@@ -46908,8 +46476,7 @@
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "vault";
- tag = "icon-vault (EAST)"
+ icon_state = "vault"
},
/area/gateway)
"bTT" = (
@@ -46920,8 +46487,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/gateway)
"bTU" = (
@@ -46930,8 +46496,7 @@
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "vault";
- tag = "icon-vault (NORTH)"
+ icon_state = "vault"
},
/area/gateway)
"bTV" = (
@@ -46941,9 +46506,7 @@
icon_state = "1-2"
},
/turf/simulated/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
+/area/maintenance/maintcentral)
"bTW" = (
/obj/item/radio/intercom{
dir = 8;
@@ -46975,8 +46538,7 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
"bUf" = (
@@ -47042,7 +46604,7 @@
/turf/simulated/floor/plasteel,
/area/atmos)
"bUp" = (
-/obj/item/toy/figure/mime,
+/obj/item/toy/figure/crew/mime,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -47123,9 +46685,7 @@
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"bUz" = (
/obj/structure/cable/yellow{
d1 = 2;
@@ -47135,9 +46695,7 @@
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"bUA" = (
/obj/structure/window/reinforced{
dir = 4
@@ -47151,8 +46709,7 @@
req_access_txt = "13;75"
},
/obj/machinery/light/small{
- dir = 4;
- tag = "icon-bulb1 (EAST)"
+ dir = 4
},
/obj/machinery/camera/motion{
c_tag = "AI Satellite Exterior South East 2";
@@ -47238,8 +46795,7 @@
req_access_txt = "37"
},
/turf/simulated/floor/plasteel{
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "cult"
},
/area/library)
"bUM" = (
@@ -47272,8 +46828,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/ai_monitored/storage/eva{
name = "E.V.A. Storage"
@@ -47318,9 +46873,7 @@
"bUR" = (
/obj/machinery/door/airlock/welded,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"bUS" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -47436,8 +46989,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/ai_monitored/storage/eva{
name = "E.V.A. Storage"
@@ -47544,9 +47096,7 @@
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"bVk" = (
/obj/machinery/power/apc{
cell_type = 10000;
@@ -47565,15 +47115,11 @@
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"bVl" = (
/obj/structure/reagent_dispensers/watertank,
/turf/simulated/floor/plating,
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"bVm" = (
/obj/machinery/door/firedoor,
/obj/structure/cable/yellow{
@@ -47637,9 +47183,7 @@
/obj/structure/disposalpipe/segment,
/obj/item/cigbutt,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"bVs" = (
/obj/structure/table,
/obj/machinery/door_control{
@@ -47662,8 +47206,7 @@
/obj/machinery/kitchen_machine/candy_maker,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
"bVu" = (
@@ -47676,8 +47219,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
"bVv" = (
@@ -47756,9 +47298,7 @@
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"bVD" = (
/obj/structure/disposalpipe/segment{
dir = 4;
@@ -47795,9 +47335,7 @@
"bVG" = (
/obj/structure/reagent_dispensers/fueltank,
/turf/simulated/floor/plating,
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"bVI" = (
/obj/effect/decal/cleanable/blood/old,
/obj/machinery/light{
@@ -47805,9 +47343,7 @@
in_use = 1
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"bVL" = (
/obj/machinery/atmospherics/unary/portables_connector{
dir = 4
@@ -47906,8 +47442,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/ai_monitored/storage/eva{
name = "E.V.A. Storage"
@@ -47941,9 +47476,7 @@
/obj/effect/decal/cleanable/cobweb2,
/obj/item/trash/tapetrash,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"bVY" = (
/obj/structure/window/reinforced{
dir = 4
@@ -47983,15 +47516,11 @@
/obj/item/clothing/suit/storage/labcoat/mad,
/obj/item/clothing/glasses/science,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"bWa" = (
/obj/effect/decal/cleanable/blood/old,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"bWb" = (
/obj/machinery/keycard_auth{
pixel_x = -24
@@ -48064,9 +47593,7 @@
})
"bWl" = (
/turf/simulated/wall/rust,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"bWm" = (
/obj/structure/rack,
/obj/item/storage/box,
@@ -48138,8 +47665,7 @@
"bWx" = (
/obj/structure/chair/comfy/brown,
/turf/simulated/floor/plasteel{
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "cult"
},
/area/library)
"bWy" = (
@@ -48152,9 +47678,7 @@
icon_state = "1-2"
},
/turf/simulated/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
+/area/maintenance/maintcentral)
"bWz" = (
/obj/machinery/alarm{
dir = 8;
@@ -48199,8 +47723,7 @@
/obj/structure/cable/yellow,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "vault";
- tag = "icon-vault (EAST)"
+ icon_state = "vault"
},
/area/teleporter{
name = "\improper Teleporter Room"
@@ -48209,8 +47732,7 @@
/obj/item/radio/beacon,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/teleporter{
name = "\improper Teleporter Room"
@@ -48227,8 +47749,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/teleporter{
name = "\improper Teleporter Room"
@@ -48238,8 +47759,7 @@
/obj/machinery/shieldwallgen,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "vault";
- tag = "icon-vault (EAST)"
+ icon_state = "vault"
},
/area/teleporter{
name = "\improper Teleporter Room"
@@ -48453,8 +47973,7 @@
/obj/structure/closet/secure_closet/freezer/fridge,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
"bXc" = (
@@ -48468,8 +47987,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
"bXi" = (
@@ -48571,7 +48089,7 @@
/area/crew_quarters/theatre)
"bXq" = (
/obj/machinery/light/small,
-/obj/item/toy/prize/honk{
+/obj/item/toy/figure/mech/honk{
pixel_y = 12
},
/obj/structure/table/wood,
@@ -48644,8 +48162,7 @@
},
/obj/item/clothing/under/suit_jacket/red,
/turf/simulated/floor/plasteel{
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "cult"
},
/area/library)
"bXz" = (
@@ -48668,38 +48185,29 @@
"bXC" = (
/obj/structure/computerframe,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"bXD" = (
/obj/structure/chair/office/dark{
dir = 8
},
/obj/effect/decal/cleanable/blood/old,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"bXE" = (
/obj/structure/table,
/obj/item/reagent_containers/syringe,
/obj/item/storage/pill_bottle/random_drug_bottle,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"bXF" = (
/obj/item/twohanded/required/kirbyplants{
icon_state = "plant-14";
- layer = 4.1;
- tag = "icon-plant-14"
+ layer = 4.1
},
/turf/simulated/floor/plasteel{
icon_state = "whitepurple"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"bXG" = (
/obj/item/reagent_containers/iv_bag,
/obj/item/reagent_containers/iv_bag/salglu,
@@ -48707,9 +48215,7 @@
/obj/item/reagent_containers/iv_bag/blood/random,
/obj/machinery/iv_drip,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"bXH" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -48765,8 +48271,7 @@
pixel_x = 30
},
/turf/simulated/floor/plasteel{
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "cult"
},
/area/library)
"bXN" = (
@@ -48802,8 +48307,7 @@
"bXQ" = (
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/crew_quarters/locker)
"bXR" = (
@@ -48814,8 +48318,7 @@
},
/obj/structure/table/wood,
/turf/simulated/floor/plasteel{
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "cult"
},
/area/library)
"bXS" = (
@@ -48823,8 +48326,7 @@
name = "Forbidden Knowledge"
},
/turf/simulated/floor/plasteel{
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "cult"
},
/area/library)
"bXT" = (
@@ -49033,15 +48535,11 @@
},
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
+/area/maintenance/maintcentral)
"bYq" = (
/obj/item/mounted/frame/apc_frame,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"bYr" = (
/obj/machinery/firealarm{
dir = 8;
@@ -49068,8 +48566,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
"bYt" = (
@@ -49084,8 +48581,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
"bYu" = (
@@ -49096,8 +48592,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
"bYv" = (
@@ -49120,8 +48615,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/ai_monitored/storage/eva{
name = "E.V.A. Storage"
@@ -49307,9 +48801,7 @@
/obj/structure/bed,
/obj/effect/decal/cleanable/blood/old,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"bYR" = (
/obj/effect/decal/warning_stripes/south,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -49515,8 +49007,7 @@
/obj/machinery/kitchen_machine/oven,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
"bZk" = (
@@ -49579,9 +49070,7 @@
req_one_access_txt = "12;17"
},
/turf/simulated/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
+/area/maintenance/maintcentral)
"bZt" = (
/turf/simulated/floor/plasteel{
icon_state = "greencorner"
@@ -49759,9 +49248,7 @@
"bZO" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/wall,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"bZP" = (
/turf/simulated/wall,
/area/maintenance/portsolar)
@@ -49792,9 +49279,7 @@
/area/maintenance/portsolar)
"bZU" = (
/turf/simulated/wall,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"bZW" = (
/obj/machinery/newscaster{
pixel_x = -32
@@ -49903,8 +49388,7 @@
},
/obj/machinery/shower{
dir = 8;
- name = "emergency shower";
- tag = "icon-shower (WEST)"
+ name = "emergency shower"
},
/obj/machinery/atmospherics/pipe/simple/visible/purple,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -50274,9 +49758,7 @@
},
/obj/item/clothing/accessory/stethoscope,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"caX" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -50464,9 +49946,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cbs" = (
/obj/structure/rack,
/obj/item/weldingtool,
@@ -50475,9 +49955,7 @@
},
/obj/effect/spawner/lootdrop/maintenance,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cbt" = (
/obj/machinery/reagentgrinder,
/obj/structure/table/glass,
@@ -50487,9 +49965,7 @@
"cbu" = (
/obj/machinery/recharge_station,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cbv" = (
/obj/machinery/chem_master/condimaster{
name = "BrewMaster 4000";
@@ -50508,9 +49984,7 @@
/obj/item/wirecutters,
/obj/effect/spawner/lootdrop/maintenance,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cbx" = (
/obj/machinery/disposal,
/obj/structure/disposalpipe/trunk,
@@ -50674,8 +50148,7 @@
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "greenfull";
- tag = "icon-whitehall (WEST)"
+ icon_state = "greenfull"
},
/area/hydroponics)
"cbN" = (
@@ -50797,8 +50270,7 @@
pixel_y = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/atmos)
"cch" = (
@@ -50836,8 +50308,7 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/gateway)
"ccm" = (
@@ -50848,8 +50319,7 @@
name = "JoinLateGateway"
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/gateway)
"ccn" = (
@@ -50945,9 +50415,7 @@
},
/obj/effect/spawner/lootdrop/maintenance,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"ccu" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -50981,9 +50449,7 @@
name = "blobstart"
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"ccz" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable/yellow{
@@ -51064,8 +50530,7 @@
icon_state = "pipe-j2"
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/hallway/primary/central)
"ccE" = (
@@ -51158,8 +50623,7 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/atmos)
"ccU" = (
@@ -51194,8 +50658,7 @@
/obj/item/folder/white,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "greenfull";
- tag = "icon-whitehall (WEST)"
+ icon_state = "greenfull"
},
/area/hydroponics)
"ccZ" = (
@@ -51454,8 +50917,7 @@
dir = 10
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/gateway)
"cdC" = (
@@ -51510,9 +50972,7 @@
/obj/structure/closet,
/obj/item/flashlight,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cdI" = (
/obj/structure/closet/secure_closet/hydroponics,
/obj/structure/extinguisher_cabinet{
@@ -51527,15 +50987,11 @@
/obj/structure/table,
/obj/item/flashlight/lamp,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cdK" = (
/obj/structure/chair/stool,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cdM" = (
/obj/effect/spawner/window/reinforced,
/obj/machinery/door/poddoor{
@@ -51552,16 +51008,12 @@
"cdN" = (
/obj/structure/reagent_dispensers/fueltank,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cdO" = (
/obj/structure/girder,
/obj/structure/grille,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cdP" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/public/glass{
@@ -51582,8 +51034,7 @@
},
/obj/structure/window/reinforced,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/atmos)
"cdR" = (
@@ -51708,8 +51159,7 @@
},
/obj/item/twohanded/required/kirbyplants{
icon_state = "plant-10";
- layer = 4.1;
- tag = "icon-plant-10"
+ layer = 4.1
},
/turf/simulated/floor/plasteel{
icon_state = "purplecorner"
@@ -51724,8 +51174,7 @@
pixel_y = -29
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/hallway/primary/central)
"cek" = (
@@ -51733,9 +51182,7 @@
req_one_access_txt = "12;7;35;8;47"
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cel" = (
/obj/machinery/door/airlock/medical{
name = "Paramedic"
@@ -51753,9 +51200,7 @@
"cem" = (
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cen" = (
/obj/machinery/camera/autoname{
dir = 4
@@ -51827,9 +51272,7 @@
"ceu" = (
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cev" = (
/obj/structure/closet/secure_closet/hydroponics,
/obj/item/storage/backpack/satchel_hyd,
@@ -51866,8 +51309,7 @@
},
/obj/structure/disposalpipe/junction{
dir = 2;
- icon_state = "pipe-j2";
- tag = "icon-pipe-j2"
+ icon_state = "pipe-j2"
},
/turf/simulated/floor/plating,
/area/maintenance/starboard)
@@ -51908,15 +51350,11 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"ceE" = (
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"ceF" = (
/obj/machinery/atmospherics/pipe/simple/visible/purple,
/turf/simulated/floor/plasteel{
@@ -51981,9 +51419,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"ceO" = (
/obj/structure/table,
/obj/item/paper_bin{
@@ -51992,9 +51428,7 @@
},
/obj/item/poster/random_contraband,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"ceP" = (
/obj/machinery/seed_extractor,
/obj/effect/decal/warning_stripes/northwest,
@@ -52047,14 +51481,10 @@
icon_state = "0-2"
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"ceU" = (
/turf/simulated/floor/mech_bay_recharge_floor,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"ceV" = (
/obj/machinery/computer/mech_bay_power_console,
/obj/structure/cable/yellow{
@@ -52062,9 +51492,7 @@
icon_state = "0-2"
},
/turf/simulated/floor/bluegrid,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"ceW" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
@@ -52116,9 +51544,7 @@
req_one_access_txt = "12;5;39;25;28"
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cfa" = (
/obj/machinery/vending/medical,
/turf/simulated/floor/plasteel{
@@ -52138,15 +51564,11 @@
/obj/item/clothing/mask/surgical,
/obj/item/clothing/mask/breath/medical,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cfc" = (
/obj/item/cigbutt,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cfd" = (
/obj/structure/table/reinforced,
/obj/item/paper_bin{
@@ -52220,8 +51642,7 @@
},
/obj/item/twohanded/required/kirbyplants{
icon_state = "applebush";
- layer = 4.1;
- tag = "icon-applebush"
+ layer = 4.1
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -52290,9 +51711,7 @@
},
/obj/effect/spawner/lootdrop/maintenance,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cfn" = (
/obj/structure/table/wood,
/obj/item/paper_bin{
@@ -52340,9 +51759,7 @@
pixel_y = 6
},
/turf/simulated/wall,
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cfs" = (
/obj/structure/closet/secure_closet/medical3,
/obj/structure/sign/nosmoking_2{
@@ -52358,18 +51775,13 @@
"cft" = (
/obj/structure/sign/science,
/turf/simulated/wall,
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cfu" = (
/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
- icon_state = "whitehall";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whitehall"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cfv" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -52379,17 +51791,12 @@
/obj/machinery/door/firedoor,
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- icon_state = "whitehall";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whitehall"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cfw" = (
/turf/simulated/wall,
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cfx" = (
/obj/effect/landmark/start{
name = "Paramedic"
@@ -52469,9 +51876,7 @@
"cfE" = (
/obj/machinery/constructable_frame,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cfF" = (
/obj/structure/extinguisher_cabinet{
pixel_x = -27
@@ -52613,9 +52018,7 @@
req_access_txt = "12"
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cfV" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -52623,14 +52026,10 @@
icon_state = "1-2"
},
/turf/simulated/floor/bluegrid,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cfW" = (
/turf/simulated/floor/bluegrid,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cfX" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -52640,21 +52039,15 @@
/obj/structure/disposalpipe/segment,
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cfY" = (
/obj/structure/closet/firecloset,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cfZ" = (
/obj/machinery/space_heater,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cga" = (
/obj/machinery/light/small{
dir = 1
@@ -52662,17 +52055,13 @@
/obj/structure/mopbucket,
/obj/item/mop,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cgb" = (
/obj/item/storage/toolbox/emergency,
/obj/item/hand_labeler,
/obj/effect/spawner/lootdrop/maintenance,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cgc" = (
/obj/machinery/atmospherics/trinary/mixer{
node1_concentration = 0.8;
@@ -52732,9 +52121,7 @@
icon_state = "2-4"
},
/turf/simulated/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
+/area/maintenance/maintcentral)
"cgi" = (
/obj/structure/window/reinforced{
dir = 4
@@ -52833,8 +52220,7 @@
},
/obj/item/pen/invisible,
/turf/simulated/floor/plasteel{
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "cult"
},
/area/library)
"cgu" = (
@@ -52866,9 +52252,7 @@
dir = 1;
icon_state = "whitepurple"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cgv" = (
/obj/structure/table/wood,
/obj/item/folder,
@@ -52908,9 +52292,7 @@
dir = 1;
icon_state = "whitepurple"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cgA" = (
/obj/structure/table,
/obj/item/paper/pamphlet,
@@ -52918,9 +52300,7 @@
dir = 1;
icon_state = "whitepurple"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cgB" = (
/obj/structure/chair,
/obj/effect/landmark/start{
@@ -52930,18 +52310,14 @@
dir = 1;
icon_state = "whitepurple"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cgE" = (
/obj/structure/chair,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "whitepurple"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cgF" = (
/obj/structure/table,
/obj/item/stack/cable_coil,
@@ -52959,9 +52335,7 @@
dir = 1;
icon_state = "whitepurple"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cgG" = (
/obj/structure/table,
/obj/item/stack/sheet/glass,
@@ -52974,9 +52348,7 @@
dir = 1;
icon_state = "whitepurple"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cgH" = (
/obj/structure/girder,
/obj/structure/grille,
@@ -53238,8 +52610,7 @@
/area/atmos)
"chh" = (
/obj/machinery/atmospherics/pipe/simple/visible/purple{
- dir = 10;
- tag = "icon-intact (SOUTHWEST)"
+ dir = 10
},
/turf/simulated/floor/plasteel,
/area/atmos)
@@ -53263,12 +52634,6 @@
},
/turf/simulated/floor/plasteel,
/area/atmos)
-"chl" = (
-/obj/machinery/atmospherics/pipe/manifold/visible/yellow{
- dir = 4
- },
-/turf/simulated/floor/plasteel,
-/area/atmos)
"chm" = (
/obj/machinery/light,
/obj/machinery/power/apc{
@@ -53379,32 +52744,24 @@
/obj/structure/disposalpipe/segment,
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"chx" = (
/obj/structure/closet,
/obj/item/clothing/accessory/stethoscope,
/obj/item/hemostat,
/obj/effect/spawner/lootdrop/maintenance,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"chy" = (
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"chz" = (
/obj/structure/closet/crate,
/obj/item/coin/silver,
/obj/item/flashlight,
/obj/effect/spawner/lootdrop/maintenance,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"chA" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -53416,9 +52773,7 @@
sortType = 9
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"chB" = (
/obj/item/cigbutt,
/obj/structure/disposalpipe/segment{
@@ -53427,9 +52782,7 @@
},
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"chC" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -53438,9 +52791,7 @@
req_one_access_txt = "12;5"
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"chD" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -53546,9 +52897,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"chQ" = (
/obj/machinery/light{
dir = 1
@@ -53583,9 +52932,7 @@
},
/obj/machinery/light_construct,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"chT" = (
/obj/structure/noticeboard{
pixel_y = 32
@@ -53678,19 +53025,14 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitehall";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whitehall"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cic" = (
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cie" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -53698,9 +53040,7 @@
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cig" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -53712,9 +53052,7 @@
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cij" = (
/obj/effect/spawner/window/reinforced,
/obj/machinery/atmospherics/pipe/simple/visible/cyan,
@@ -53760,16 +53098,13 @@
name = "maint grille or trash spawner"
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cio" = (
/obj/machinery/vending/hydroseeds{
slogan_delay = 700
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/hallway/primary/central)
"cip" = (
@@ -53785,15 +53120,13 @@
pixel_y = -25
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/hallway/primary/central)
"ciq" = (
/obj/machinery/vending/hydronutrients,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/hallway/primary/central)
"cir" = (
@@ -53851,9 +53184,7 @@
},
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"ciy" = (
/obj/item/stack/sheet/cardboard,
/obj/effect/decal/cleanable/dirt,
@@ -53873,9 +53204,7 @@
},
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"ciA" = (
/obj/machinery/navbeacon{
codes_txt = "delivery";
@@ -54008,9 +53337,7 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"ciL" = (
/obj/structure/window/reinforced,
/obj/machinery/atmospherics/pipe/simple/visible/purple{
@@ -54183,14 +53510,11 @@
},
/area/atmos)
"ciX" = (
-/obj/structure/closet/crate/freezer,
-/obj/item/reagent_containers/iv_bag,
-/obj/item/reagent_containers/iv_bag,
-/obj/item/reagent_containers/iv_bag,
/obj/machinery/light{
dir = 1;
on = 1
},
+/obj/structure/closet/crate/freezer/iv_storage,
/turf/simulated/floor/plasteel{
dir = 9;
icon_state = "whiteblue"
@@ -54257,14 +53581,11 @@
icon_state = "4-8"
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cjh" = (
/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
- icon_state = "whitehall";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whitehall"
},
/area/medical/reception)
"cji" = (
@@ -54272,9 +53593,7 @@
dir = 4
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cjj" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -54283,8 +53602,7 @@
},
/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
- icon_state = "whitehall";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whitehall"
},
/area/medical/reception)
"cjk" = (
@@ -54294,9 +53612,7 @@
},
/obj/effect/spawner/lootdrop/maintenance,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cjl" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -54305,9 +53621,7 @@
},
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cjm" = (
/obj/structure/sign/directions/evac{
pixel_y = 6
@@ -54317,18 +53631,14 @@
"cjn" = (
/obj/structure/reagent_dispensers/watertank,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cjo" = (
/obj/machinery/atmospherics/unary/portables_connector{
dir = 1
},
/obj/machinery/portable_atmospherics/canister/air,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cjp" = (
/obj/effect/landmark{
name = "xeno_spawn";
@@ -54336,9 +53646,7 @@
},
/obj/structure/closet/firecloset,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cjq" = (
/obj/machinery/atmospherics/unary/portables_connector{
dir = 8;
@@ -54365,9 +53673,7 @@
icon_state = "4-8"
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cjs" = (
/obj/structure/cable/yellow{
d1 = 2;
@@ -54380,9 +53686,7 @@
icon_state = "1-2"
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cjt" = (
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -54401,9 +53705,7 @@
dir = 1
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cjv" = (
/obj/effect/landmark/start{
name = "Cargo Technician"
@@ -54585,9 +53887,7 @@
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cjM" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -54604,9 +53904,7 @@
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cjN" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -54622,9 +53920,7 @@
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cjO" = (
/turf/simulated/floor/plasteel{
icon_state = "whiteblue"
@@ -54856,12 +54152,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitepurplefull";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whitepurplefull"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"ckt" = (
/obj/machinery/camera{
c_tag = "Medbay Break Room";
@@ -54895,9 +54188,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"ckw" = (
/obj/structure/girder,
/obj/structure/grille,
@@ -54907,9 +54198,7 @@
icon_state = "4-8"
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"ckx" = (
/obj/structure/table,
/obj/item/stack/medical/bruise_pack,
@@ -54946,9 +54235,7 @@
},
/obj/effect/spawner/lootdrop/maintenance,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"ckB" = (
/obj/structure/disposalpipe/trunk,
/obj/machinery/disposal,
@@ -54968,15 +54255,11 @@
name = "maint grille or trash spawner"
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"ckD" = (
/obj/structure/grille,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"ckE" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -54989,9 +54272,7 @@
/turf/simulated/floor/plasteel{
icon_state = "whitepurple"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"ckF" = (
/obj/item/storage/firstaid/regular{
pixel_x = 3;
@@ -55025,9 +54306,7 @@
dir = 8
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"ckI" = (
/obj/machinery/door/airlock/medical/glass{
id_tag = null;
@@ -55048,9 +54327,7 @@
icon_state = "1-2"
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"ckK" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
@@ -55139,9 +54416,7 @@
"ckP" = (
/obj/item/healthanalyzer,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"ckQ" = (
/obj/structure/chair{
dir = 4
@@ -55192,9 +54467,7 @@
/turf/simulated/floor/plasteel{
icon_state = "whitepurple"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"ckY" = (
/obj/structure/table,
/obj/item/paicard,
@@ -55205,9 +54478,7 @@
/turf/simulated/floor/plasteel{
icon_state = "whitepurple"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"ckZ" = (
/obj/structure/table,
/obj/item/stock_parts/cell/potato,
@@ -55215,9 +54486,7 @@
/turf/simulated/floor/plasteel{
icon_state = "whitepurple"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cla" = (
/obj/machinery/disposal,
/obj/structure/disposalpipe/trunk{
@@ -55226,9 +54495,7 @@
/turf/simulated/floor/plasteel{
icon_state = "whitepurple"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"clb" = (
/obj/structure/disposalpipe/junction{
dir = 4;
@@ -55237,9 +54504,7 @@
/turf/simulated/floor/plasteel{
icon_state = "whitepurple"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"clc" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -55257,9 +54522,7 @@
/turf/simulated/floor/plasteel{
icon_state = "whitepurple"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cld" = (
/obj/structure/disposalpipe/segment{
dir = 2;
@@ -55270,9 +54533,7 @@
/turf/simulated/floor/plasteel{
icon_state = "whitepurple"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cle" = (
/obj/structure/cable{
d1 = 1;
@@ -55351,9 +54612,7 @@
dir = 4
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cll" = (
/obj/item/wrench,
/obj/item/clothing/suit/apron,
@@ -55378,20 +54637,15 @@
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitepurplefull";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whitepurplefull"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cln" = (
/obj/structure/closet,
/obj/item/flashlight,
/obj/effect/decal/cleanable/cobweb,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"clo" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -55406,9 +54660,7 @@
name = "maint grille or trash spawner"
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"clp" = (
/obj/structure/cable/yellow,
/obj/effect/spawner/window/reinforced,
@@ -55480,9 +54732,7 @@
},
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cly" = (
/turf/simulated/floor/plasteel{
icon_state = "floorgrime"
@@ -55546,9 +54796,7 @@
icon_state = "1-4"
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"clH" = (
/obj/structure/window/reinforced{
dir = 4
@@ -55576,9 +54824,7 @@
req_access_txt = "13"
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"clK" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 10
@@ -55599,16 +54845,13 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitehall";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whitehall"
},
/area/medical/reception)
"clN" = (
/obj/item/storage/box,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"clO" = (
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
@@ -55618,9 +54861,7 @@
"clP" = (
/obj/structure/closet/emcloset,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"clQ" = (
/obj/effect/landmark/start{
name = "Coroner"
@@ -55651,9 +54892,7 @@
icon_state = "1-8"
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"clU" = (
/obj/structure/table,
/obj/item/folder/white,
@@ -55663,9 +54902,7 @@
pixel_y = 5
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"clV" = (
/obj/structure/window/reinforced{
dir = 4
@@ -55779,8 +55016,7 @@
},
/obj/machinery/shower{
dir = 4;
- name = "emergency shower";
- tag = "icon-shower (WEST)"
+ name = "emergency shower"
},
/obj/machinery/alarm{
dir = 4;
@@ -55793,9 +55029,7 @@
"cmi" = (
/obj/effect/spawner/window/reinforced,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cmj" = (
/obj/structure/table/reinforced,
/obj/item/folder/white,
@@ -55808,8 +55042,7 @@
/obj/item/folder/white,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whiteyellowfull";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whiteyellowfull"
},
/area/medical/chemistry)
"cmm" = (
@@ -55842,8 +55075,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitehall";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whitehall"
},
/area/medical/reception)
"cmt" = (
@@ -55908,23 +55140,17 @@
pixel_y = 28
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cmz" = (
/turf/simulated/wall/r_wall,
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cmA" = (
/obj/machinery/door/airlock/maintenance{
name = "Research Maintenance";
req_access_txt = "7"
},
/turf/simulated/floor/plating,
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cmB" = (
/turf/simulated/wall/r_wall,
/area/toxins/explab)
@@ -55952,8 +55178,7 @@
/obj/item/reagent_containers/dropper,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitepurplefull";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whitepurplefull"
},
/area/toxins/xenobiology{
name = "\improper Secure Lab"
@@ -55985,8 +55210,7 @@
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitepurplefull";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whitepurplefull"
},
/area/toxins/xenobiology{
name = "\improper Secure Lab"
@@ -56019,9 +55243,7 @@
dir = 6
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cmK" = (
/obj/structure/lattice,
/obj/machinery/atmospherics/pipe/simple/visible/green,
@@ -56084,9 +55306,7 @@
dir = 1;
icon_state = "whitepurple"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cmS" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -56098,9 +55318,7 @@
},
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cmT" = (
/obj/structure/disposalpipe/segment{
dir = 1;
@@ -56128,9 +55346,7 @@
dir = 4
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cmZ" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -56142,9 +55358,7 @@
},
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cna" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -56229,12 +55443,9 @@
/obj/structure/table/glass,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cnj" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -56298,8 +55509,7 @@
/area/medical/reception)
"cno" = (
/obj/item/twohanded/required/kirbyplants{
- icon_state = "plant-11";
- tag = "icon-plant-11"
+ icon_state = "plant-11"
},
/turf/simulated/floor/plasteel{
icon_state = "whiteblue"
@@ -56309,8 +55519,7 @@
/obj/machinery/chem_dispenser,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whiteyellowfull";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whiteyellowfull"
},
/area/medical/chemistry)
"cnq" = (
@@ -56322,8 +55531,7 @@
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whiteyellowfull";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whiteyellowfull"
},
/area/medical/chemistry)
"cnr" = (
@@ -56411,12 +55619,9 @@
/mob/living/simple_animal/pet/dog/corgi/borgi,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cnz" = (
/obj/structure/chair/office/light{
dir = 1;
@@ -56430,8 +55635,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "whitepurple";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whitepurple"
},
/area/toxins/lab)
"cnA" = (
@@ -56451,9 +55655,7 @@
dir = 1;
icon_state = "whitepurple"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cnB" = (
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel{
@@ -56490,9 +55692,7 @@
dir = 4;
icon_state = "whitehall"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cnG" = (
/obj/structure/sign/double/map/right{
desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown).";
@@ -56506,12 +55706,9 @@
/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cnH" = (
/obj/item/storage/toolbox/emergency,
/obj/item/radio/intercom{
@@ -56526,12 +55723,9 @@
"cnI" = (
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cnJ" = (
/obj/machinery/light/small,
/obj/machinery/computer/security/telescreen{
@@ -56587,9 +55781,7 @@
},
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cnP" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -56632,8 +55824,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "whitepurple";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whitepurple"
},
/area/toxins/xenobiology{
name = "\improper Secure Lab"
@@ -56725,9 +55916,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"coe" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -56742,9 +55931,7 @@
dir = 4
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cof" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -56759,9 +55946,7 @@
dir = 5
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cog" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -56772,9 +55957,7 @@
icon_state = "4-8"
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"coh" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -56786,9 +55969,7 @@
icon_state = "pipe-c"
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"coi" = (
/obj/machinery/bodyscanner,
/turf/simulated/floor/plasteel{
@@ -56901,8 +56082,7 @@
dir = 4
},
/obj/structure/morgue{
- dir = 8;
- tag = "icon-morgue1 (WEST)"
+ dir = 8
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -56977,9 +56157,7 @@
pixel_y = 32
},
/turf/simulated/floor/wood,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cox" = (
/obj/structure/table,
/obj/machinery/door/window/northright{
@@ -57054,9 +56232,7 @@
"coD" = (
/obj/structure/girder,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"coE" = (
/turf/simulated/floor/plasteel{
dir = 8;
@@ -57181,22 +56357,16 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"coU" = (
/obj/item/cigbutt,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"coV" = (
/obj/machinery/alarm{
dir = 8;
@@ -57207,9 +56377,7 @@
dir = 4;
icon_state = "whitehall"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"coW" = (
/mob/living/simple_animal/pet/dog/pug{
name = "Pugley IV";
@@ -57414,9 +56582,7 @@
"cpu" = (
/obj/machinery/vending/boozeomat,
/turf/simulated/floor/wood,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cpv" = (
/obj/structure/sink/kitchen{
desc = "A sink used for washing one's hands and face. It looks rusty and home-made";
@@ -57424,12 +56590,9 @@
pixel_y = 28
},
/turf/simulated/floor/wood{
- icon_state = "wood-broken3";
- tag = "icon-wood-broken3"
+ icon_state = "wood-broken3"
},
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cpw" = (
/obj/structure/rack,
/obj/item/reagent_containers/food/drinks/bottle/vodka{
@@ -57442,9 +56605,7 @@
},
/obj/item/reagent_containers/food/drinks/bottle/whiskey,
/turf/simulated/floor/wood,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cpx" = (
/obj/machinery/door_control{
desc = "A remote control switch for the medbay foyer.";
@@ -57461,9 +56622,7 @@
"cpy" = (
/obj/structure/chair/stool,
/turf/simulated/floor/wood,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cpz" = (
/obj/machinery/door_control{
id = "acutesep";
@@ -57480,9 +56639,7 @@
"cpA" = (
/obj/machinery/computer/arcade,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cpB" = (
/obj/machinery/door/poddoor/shutters{
density = 0;
@@ -57695,9 +56852,7 @@
pixel_y = 2
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cpT" = (
/obj/structure/chair/stool,
/obj/machinery/newscaster{
@@ -57705,12 +56860,9 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cpU" = (
/obj/structure/closet/secure_closet/medical2,
/turf/simulated/floor/plasteel{
@@ -57851,17 +57003,14 @@
"cqi" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/shower{
- dir = 4;
- tag = "icon-shower (EAST)"
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cqj" = (
/obj/machinery/door/window/northleft{
dir = 4;
@@ -57911,9 +57060,7 @@
/obj/item/storage/toolbox/emergency,
/obj/item/clothing/mask/gas,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cqp" = (
/obj/machinery/light/small,
/obj/item/stock_parts/cell/high{
@@ -57921,9 +57068,7 @@
maxcharge = 15000
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cqq" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -57933,9 +57078,7 @@
/obj/structure/disposalpipe/segment,
/obj/item/flashlight,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cqr" = (
/obj/machinery/atmospherics/binary/pump{
on = 1
@@ -57969,12 +57112,9 @@
/obj/item/cigbutt,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cqv" = (
/obj/machinery/computer/rdconsole/core,
/obj/machinery/alarm{
@@ -57994,9 +57134,7 @@
dir = 4;
icon_state = "whitehall"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cqB" = (
/obj/machinery/light{
dir = 4
@@ -58010,24 +57148,18 @@
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cqC" = (
/obj/structure/table,
/obj/effect/decal/cleanable/cobweb,
/obj/item/shard,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cqE" = (
/obj/structure/table,
/obj/item/storage/toolbox/emergency,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cqF" = (
/obj/structure/sink/kitchen{
desc = "A sink used for washing one's hands and face. It looks rusty and home-made";
@@ -58037,9 +57169,7 @@
/obj/effect/decal/cleanable/blood,
/obj/effect/decal/cleanable/blood/gibs/limb,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cqG" = (
/obj/item/reagent_containers/glass/bottle/toxin{
pixel_x = 4;
@@ -58051,9 +57181,7 @@
pixel_y = 4
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cqH" = (
/obj/structure/table,
/obj/item/reagent_containers/food/drinks/drinkingglass{
@@ -58073,9 +57201,7 @@
/obj/item/reagent_containers/syringe,
/obj/item/reagent_containers/syringe,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cqI" = (
/obj/machinery/atmospherics/binary/pump{
dir = 1;
@@ -58230,40 +57356,27 @@
req_access_txt = "25"
},
/turf/simulated/floor/wood,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cqZ" = (
/turf/simulated/floor/wood,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cra" = (
/turf/simulated/floor/wood{
- icon_state = "wood-broken7";
- tag = "icon-wood-broken7"
+ icon_state = "wood-broken7"
},
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"crb" = (
/obj/item/reagent_containers/glass/rag,
/obj/structure/table/wood,
/turf/simulated/floor/wood{
- icon_state = "wood-broken4";
- tag = "icon-wood-broken4"
+ icon_state = "wood-broken4"
},
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"crc" = (
/turf/simulated/floor/wood{
- icon_state = "wood-broken5";
- tag = "icon-wood-broken5"
+ icon_state = "wood-broken5"
},
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"crd" = (
/obj/machinery/sleeper,
/turf/simulated/floor/plasteel{
@@ -58280,8 +57393,7 @@
},
/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
/area/medical/exam_room)
"crh" = (
@@ -58301,8 +57413,7 @@
opacity = 0
},
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
/area/medical/exam_room)
"crj" = (
@@ -58390,9 +57501,7 @@
pixel_x = 30
},
/turf/simulated/floor/wood,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"crz" = (
/obj/machinery/recharger/wallcharger{
pixel_x = -22
@@ -58465,9 +57574,7 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"crG" = (
/obj/structure/closet/secure_closet/medical3,
/turf/simulated/floor/plasteel{
@@ -58509,9 +57616,7 @@
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"crK" = (
/obj/machinery/hologram/holopad,
/obj/effect/decal/warning_stripes/east,
@@ -58549,9 +57654,7 @@
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"crP" = (
/obj/structure/sign/chemistry{
pixel_y = -32
@@ -58569,18 +57672,14 @@
},
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"crR" = (
/obj/structure/closet/crate,
/obj/item/assembly/infra,
/obj/effect/spawner/lootdrop/maintenance,
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"crS" = (
/obj/structure/plasticflaps{
opacity = 1
@@ -58591,9 +57690,7 @@
},
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"crT" = (
/obj/machinery/camera{
c_tag = "Research and Development";
@@ -58618,9 +57715,7 @@
/area/toxins/lab)
"crU" = (
/turf/simulated/wall/r_wall,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"crV" = (
/obj/item/retractor,
/obj/item/cautery,
@@ -58652,12 +57747,9 @@
/obj/structure/table/glass,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"crY" = (
/obj/structure/disposalpipe/segment{
dir = 4;
@@ -58669,12 +57761,9 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"crZ" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -58684,12 +57773,9 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"csa" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -58708,12 +57794,9 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"csb" = (
/obj/machinery/disposal,
/obj/structure/disposalpipe/trunk{
@@ -58723,9 +57806,7 @@
dir = 4;
icon_state = "whitehall"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"csc" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'HIGH VOLTAGE'";
@@ -58810,9 +57891,7 @@
dir = 6
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"csh" = (
/obj/machinery/door/airlock/maintenance{
icon_state = "door_closed";
@@ -58826,9 +57905,7 @@
dir = 4
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"csi" = (
/obj/item/stack/sheet/glass{
amount = 50;
@@ -58856,26 +57933,20 @@
dir = 10
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"csk" = (
/obj/structure/rack,
/obj/item/clothing/suit/apron,
/obj/item/clothing/mask/surgical,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"csl" = (
/obj/machinery/chem_master/condimaster{
name = "CondiMaster Neo";
pixel_x = -4
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"csm" = (
/obj/effect/spawner/window/reinforced,
/obj/structure/cable/yellow,
@@ -58898,9 +57969,7 @@
/obj/item/stack/packageWrap,
/obj/machinery/atmospherics/pipe/simple/hidden/universal,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cso" = (
/obj/structure/lattice,
/obj/structure/disposalpipe/segment,
@@ -58946,15 +58015,11 @@
},
/obj/item/reagent_containers/dropper,
/turf/simulated/floor/wood,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"csw" = (
/obj/structure/table/wood,
/turf/simulated/floor/wood,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"csx" = (
/obj/machinery/light,
/obj/machinery/door_control{
@@ -58982,9 +58047,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"csz" = (
/obj/machinery/door/airlock/maintenance{
name = "Experimentation Lab Maintenance";
@@ -59164,8 +58227,7 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
/area/medical/exam_room)
"csJ" = (
@@ -59287,8 +58349,7 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
/area/medical/exam_room)
"csQ" = (
@@ -59394,9 +58455,7 @@
/turf/simulated/floor/plasteel{
icon_state = "whitepurple"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"csZ" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -59413,9 +58472,7 @@
/turf/simulated/floor/plasteel{
icon_state = "whitepurple"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cta" = (
/obj/machinery/door/window/westleft{
dir = 2;
@@ -59424,9 +58481,7 @@
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"ctb" = (
/obj/machinery/door/airlock{
name = "Research Emergency Storage";
@@ -59439,9 +58494,7 @@
},
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plating,
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"ctc" = (
/obj/machinery/door/firedoor,
/obj/structure/disposalpipe/segment,
@@ -59454,12 +58507,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cte" = (
/turf/simulated/wall,
/area/toxins/explab)
@@ -59473,9 +58523,7 @@
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"ctg" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -59503,9 +58551,7 @@
/obj/item/storage/box/lights/mixed,
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"ctl" = (
/obj/effect/decal/warning_stripes/west,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -59515,9 +58561,7 @@
dir = 4
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"ctm" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -59531,9 +58575,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"ctn" = (
/obj/machinery/door/airlock/public/glass{
autoclose = 0;
@@ -59572,15 +58614,11 @@
/obj/item/clothing/mask/surgical,
/obj/item/clothing/mask/surgical,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"ctr" = (
/obj/machinery/chem_heater,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cts" = (
/obj/structure/lattice,
/obj/structure/disposalpipe/segment{
@@ -59613,34 +58651,25 @@
/obj/item/reagent_containers/food/drinks/cans/beer,
/obj/structure/table/wood,
/turf/simulated/floor/wood,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cty" = (
/turf/simulated/floor/wood{
- icon_state = "wood-broken";
- tag = "icon-wood-broken"
+ icon_state = "wood-broken"
},
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"ctz" = (
/obj/structure/mineral_door/wood{
name = "The Gobbetting Barmaid"
},
/turf/simulated/floor/wood,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"ctE" = (
/obj/machinery/portable_atmospherics/canister/air,
/obj/machinery/atmospherics/unary/portables_connector{
dir = 1
},
/turf/simulated/floor/plating,
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"ctH" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -59671,8 +58700,7 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
/area/medical/reception)
"ctK" = (
@@ -59763,14 +58791,10 @@
/turf/simulated/floor/plasteel,
/area/toxins/explab)
"ctT" = (
-/obj/structure/closet/crate/freezer,
-/obj/item/reagent_containers/iv_bag,
-/obj/item/reagent_containers/iv_bag,
-/obj/item/reagent_containers/iv_bag,
-/obj/item/reagent_containers/iv_bag,
/obj/item/radio/intercom{
pixel_x = -28
},
+/obj/structure/closet/crate/freezer/iv_storage,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -59893,9 +58917,7 @@
dir = 9;
icon_state = "whitepurple"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cum" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -59909,9 +58931,7 @@
dir = 1;
icon_state = "whitepurple"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cun" = (
/obj/structure/disposalpipe/segment{
dir = 2;
@@ -59921,9 +58941,7 @@
dir = 1;
icon_state = "whitepurplecorner"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cuo" = (
/obj/structure/sign/nosmoking_2{
pixel_y = 32
@@ -59935,9 +58953,7 @@
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cup" = (
/obj/machinery/light{
dir = 1
@@ -59945,9 +58961,7 @@
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cuq" = (
/obj/structure/table,
/obj/structure/disposalpipe/segment,
@@ -59973,17 +58987,13 @@
/turf/simulated/floor/plasteel{
icon_state = "whitehall"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cus" = (
/turf/simulated/floor/plasteel{
dir = 6;
icon_state = "whitehall"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cut" = (
/obj/item/radio/intercom{
name = "Station Intercom (General)";
@@ -59993,9 +59003,7 @@
dir = 4;
icon_state = "whitepurplecorner"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cuu" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -60004,29 +59012,22 @@
dir = 1;
icon_state = "whitepurple"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cuv" = (
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "whitepurplecorner"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cuw" = (
/obj/item/twohanded/required/kirbyplants{
icon_state = "plant-10";
- layer = 4.1;
- tag = "icon-plant-10"
+ layer = 4.1
},
/turf/simulated/floor/plasteel{
icon_state = "whitepurplecorner"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cux" = (
/obj/structure/extinguisher_cabinet{
pixel_x = -27
@@ -60107,9 +59108,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cuF" = (
/obj/machinery/vending/medical,
/turf/simulated/floor/plasteel{
@@ -60131,32 +59130,23 @@
pixel_y = -3
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cuH" = (
/obj/effect/decal/cleanable/blood,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cuI" = (
/obj/structure/bed,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cuJ" = (
/obj/structure/mineral_door/wood{
name = "The Gobbetting Barmaid"
},
/turf/simulated/floor/wood{
- icon_state = "wood-broken6";
- tag = "icon-wood-broken6"
+ icon_state = "wood-broken6"
},
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cuL" = (
/turf/simulated/floor/plasteel{
dir = 8;
@@ -60245,9 +59235,7 @@
"cuV" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cuX" = (
/obj/machinery/iv_drip,
/turf/simulated/floor/plasteel{
@@ -60288,8 +59276,7 @@
req_access_txt = "5"
},
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
/area/medical/exam_room)
"cvd" = (
@@ -60303,8 +59290,7 @@
opacity = 0
},
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
/area/medical/exam_room)
"cvf" = (
@@ -60314,8 +59300,7 @@
req_access_txt = "5"
},
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
/area/medical/exam_room)
"cvg" = (
@@ -60487,8 +59472,7 @@
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitepurplefull";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whitepurplefull"
},
/area/toxins/lab)
"cvv" = (
@@ -60503,9 +59487,7 @@
dir = 8;
icon_state = "whitepurple"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cvw" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -60526,9 +59508,7 @@
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cvx" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -60545,9 +59525,7 @@
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cvy" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -60568,9 +59546,7 @@
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cvz" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -60586,9 +59562,7 @@
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cvA" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -60609,9 +59583,7 @@
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cvC" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -60625,8 +59597,7 @@
},
/obj/structure/disposalpipe/junction{
dir = 2;
- icon_state = "pipe-j2";
- tag = "icon-pipe-j2"
+ icon_state = "pipe-j2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -60637,9 +59608,7 @@
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cvD" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -60658,9 +59627,7 @@
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cvE" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -60682,9 +59649,7 @@
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cvF" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -60692,17 +59657,14 @@
icon_state = "4-8"
},
/obj/structure/disposalpipe/junction{
- dir = 8;
- tag = "icon-pipe-j1 (EAST)"
+ dir = 8
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cvH" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -60721,9 +59683,7 @@
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cvI" = (
/obj/structure/cable/yellow{
d1 = 2;
@@ -60749,9 +59709,7 @@
dir = 4;
icon_state = "whitepurple"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cvJ" = (
/obj/machinery/door/firedoor,
/obj/structure/disposalpipe/segment{
@@ -60774,8 +59732,7 @@
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitepurplefull";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whitepurplefull"
},
/area/toxins/explab)
"cvK" = (
@@ -60888,18 +59845,14 @@
/obj/structure/barricade/wooden,
/obj/structure/girder,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cvW" = (
/obj/effect/landmark{
name = "xeno_spawn";
pixel_x = -1
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cvX" = (
/obj/structure/extinguisher_cabinet{
pixel_y = 29
@@ -60909,33 +59862,23 @@
dir = 10;
icon_state = "whitehall"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cvY" = (
/obj/structure/table,
/obj/effect/spawner/lootdrop/maintenance,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cvZ" = (
/obj/structure/chair/stool,
/turf/simulated/floor/wood{
- icon_state = "wood-broken7";
- tag = "icon-wood-broken7"
+ icon_state = "wood-broken7"
},
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cwa" = (
/turf/simulated/floor/wood{
- icon_state = "wood-broken6";
- tag = "icon-wood-broken6"
+ icon_state = "wood-broken6"
},
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cwb" = (
/obj/structure/table,
/obj/item/flashlight/lamp/green,
@@ -60963,9 +59906,7 @@
/obj/effect/spawner/lootdrop/maintenance,
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cwe" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -61037,8 +59978,7 @@
"cwp" = (
/obj/machinery/vending/coffee,
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
/area/medical/medbay3)
"cwq" = (
@@ -61053,16 +59993,13 @@
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whiteyellowfull";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whiteyellowfull"
},
/area/medical/chemistry)
"cwt" = (
/obj/effect/spawner/lootdrop/maintenance,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cwv" = (
/obj/structure/sign/chemistry{
pixel_x = -32
@@ -61083,9 +60020,7 @@
pixel_y = 5
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cwx" = (
/obj/structure/table,
/obj/item/folder/white,
@@ -61120,12 +60055,6 @@
/area/maintenance/incinerator)
"cwC" = (
/obj/structure/table,
-/obj/item/reagent_containers/iv_bag/blood/AMinus,
-/obj/item/reagent_containers/iv_bag/blood/APlus,
-/obj/item/reagent_containers/iv_bag/blood/BMinus,
-/obj/item/reagent_containers/iv_bag/blood/BPlus,
-/obj/item/reagent_containers/iv_bag/blood/OPlus,
-/obj/item/reagent_containers/iv_bag/blood/OMinus,
/obj/machinery/alarm{
dir = 1;
pixel_y = -24
@@ -61175,9 +60104,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cwG" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 5
@@ -61186,9 +60113,7 @@
dir = 5
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cwH" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -61209,9 +60134,7 @@
/obj/item/stack/medical/ointment,
/obj/item/clothing/glasses/hud/health,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cwJ" = (
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel,
@@ -61230,9 +60153,7 @@
dir = 1;
icon_state = "whitepurplecorner"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cwL" = (
/obj/machinery/firealarm{
dir = 1;
@@ -61241,17 +60162,13 @@
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cwM" = (
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cwO" = (
/obj/structure/disposalpipe/segment{
dir = 4;
@@ -61260,9 +60177,7 @@
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cwP" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -61275,9 +60190,7 @@
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cwQ" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -61288,9 +60201,7 @@
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cwR" = (
/obj/structure/disposalpipe/segment{
dir = 8;
@@ -61299,9 +60210,7 @@
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cwS" = (
/obj/machinery/camera{
c_tag = "Research Division Hallway - Starboard";
@@ -61311,24 +60220,18 @@
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cwT" = (
/obj/machinery/light,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cwV" = (
/turf/simulated/floor/plasteel{
icon_state = "whitepurplecorner"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cwW" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -61342,9 +60245,7 @@
dir = 6;
icon_state = "whitepurple"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cwY" = (
/obj/machinery/door/firedoor,
/obj/machinery/status_display{
@@ -61392,39 +60293,28 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cxf" = (
/obj/structure/bed/roller,
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cxj" = (
/obj/structure/bed,
/obj/effect/decal/cleanable/blood/gibs/limb,
/obj/effect/decal/cleanable/blood,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cxk" = (
/obj/item/toy/cards/deck,
/obj/structure/table/wood,
/turf/simulated/floor/wood,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cxl" = (
/turf/simulated/floor/wood{
- icon_state = "wood-broken4";
- tag = "icon-wood-broken4"
+ icon_state = "wood-broken4"
},
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cxm" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -61479,8 +60369,7 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
/area/medical/medbay3)
"cxy" = (
@@ -61500,9 +60389,7 @@
/obj/structure/table/wood,
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cxA" = (
/obj/machinery/chem_heater,
/obj/machinery/camera{
@@ -61607,8 +60494,7 @@
/area/medical/reception)
"cxJ" = (
/obj/item/twohanded/required/kirbyplants{
- icon_state = "plant-11";
- tag = "icon-plant-11"
+ icon_state = "plant-11"
},
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 8
@@ -61693,9 +60579,7 @@
dir = 5;
icon_state = "whitehall"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cxP" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -61708,18 +60592,14 @@
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cxQ" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cxR" = (
/obj/structure/table/reinforced,
/obj/item/folder/white,
@@ -61837,9 +60717,7 @@
/obj/structure/bed/roller,
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cyd" = (
/obj/structure/table,
/obj/structure/bedsheetbin{
@@ -61847,56 +60725,42 @@
},
/obj/item/clothing/mask/muzzle,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cye" = (
/obj/structure/table,
/obj/item/restraints/handcuffs/cable/white,
/obj/item/gun/syringe,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cyf" = (
/obj/structure/rack,
/obj/item/hatchet,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cyg" = (
/obj/machinery/iv_drip,
/obj/item/roller,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cyh" = (
/obj/structure/rack,
/obj/item/tank/internals/anesthetic,
/obj/item/clothing/mask/gas,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cyi" = (
/obj/machinery/light_construct/small,
/obj/item/toy/cards/deck,
/obj/structure/table/wood,
/turf/simulated/floor/wood,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cyj" = (
/obj/item/dice/d20,
/obj/item/dice,
/obj/structure/table/wood,
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cyk" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/door/airlock/maintenance{
@@ -61917,9 +60781,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cyn" = (
/obj/machinery/atmospherics/unary/outlet_injector/on{
dir = 8
@@ -62010,8 +60872,7 @@
icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
/area/medical/medbay3)
"cyw" = (
@@ -62074,8 +60935,7 @@
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whiteyellow";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whiteyellow"
},
/area/medical/chemistry)
"cyE" = (
@@ -62083,9 +60943,7 @@
dir = 4
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cyF" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -62124,8 +60982,7 @@
icon_state = "1-2"
},
/obj/structure/disposalpipe/junction{
- dir = 8;
- tag = "icon-pipe-j1 (EAST)"
+ dir = 8
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -62147,9 +61004,7 @@
name = "Aft Emergency Storage"
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cyO" = (
/obj/structure/closet/radiation,
/obj/effect/decal/warning_stripes/north,
@@ -62168,9 +61023,7 @@
req_one_access_txt = "7;47;29;12"
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cyR" = (
/obj/structure/closet/secure_closet/scientist,
/obj/effect/decal/warning_stripes/north,
@@ -62188,16 +61041,12 @@
/obj/item/reagent_containers/iv_bag/blood/random,
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cyU" = (
/obj/machinery/vending/cigarette,
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cyV" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -62207,21 +61056,16 @@
req_one_access_txt = "7;47;29"
},
/turf/simulated/floor/plating,
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cyW" = (
/obj/structure/disposalpipe/junction{
- dir = 8;
- tag = "icon-pipe-j1 (EAST)"
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "whitehall"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cyX" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -62238,9 +61082,7 @@
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"czc" = (
/obj/machinery/computer/aifixer,
/obj/machinery/requests_console{
@@ -62256,17 +61098,14 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/hor)
"czd" = (
/obj/machinery/vending/assist,
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cze" = (
/obj/structure/displaycase/labcage,
/obj/machinery/light/small{
@@ -62293,9 +61132,7 @@
dir = 4
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"czg" = (
/obj/structure/table/glass,
/obj/machinery/photocopier/faxmachine{
@@ -62589,8 +61426,7 @@
"czD" = (
/obj/structure/disposalpipe/junction{
dir = 2;
- icon_state = "pipe-j2";
- tag = "icon-pipe-j2"
+ icon_state = "pipe-j2"
},
/obj/structure/cable/yellow{
d1 = 1;
@@ -62617,17 +61453,14 @@
"czI" = (
/obj/structure/sign/directions/evac,
/turf/simulated/wall,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"czJ" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
},
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
/area/medical/medbay3)
"czK" = (
@@ -62635,9 +61468,7 @@
/obj/structure/closet/firecloset,
/obj/effect/spawner/lootdrop/maintenance,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"czL" = (
/obj/item/tank/internals/air,
/obj/item/tank/internals/air,
@@ -62646,9 +61477,7 @@
/obj/machinery/space_heater,
/obj/effect/spawner/lootdrop/maintenance,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"czM" = (
/turf/simulated/wall/r_wall,
/area/toxins/misc_lab{
@@ -62671,9 +61500,7 @@
dir = 6;
icon_state = "whitehall"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"czP" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -62684,9 +61511,7 @@
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"czR" = (
/obj/machinery/door_control{
id = "xeno_blastdoor";
@@ -62719,8 +61544,7 @@
/obj/item/radio/off,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/hor)
"czS" = (
@@ -62732,8 +61556,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/hor)
"czT" = (
@@ -62743,8 +61566,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/hor)
"czU" = (
@@ -62766,9 +61588,7 @@
},
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"czX" = (
/obj/machinery/portable_atmospherics/canister/oxygen,
/obj/structure/cable/yellow{
@@ -62786,18 +61606,14 @@
},
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"czZ" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/effect/decal/warning_stripes/northwest,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cAa" = (
/obj/machinery/portable_atmospherics/canister/oxygen,
/obj/machinery/alarm{
@@ -62828,9 +61644,7 @@
dir = 6
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cAd" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -62844,17 +61658,13 @@
dir = 9
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cAe" = (
/obj/structure/closet,
/obj/item/storage/toolbox/emergency,
/obj/effect/spawner/lootdrop/maintenance,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cAf" = (
/obj/structure/cable{
d1 = 2;
@@ -62881,9 +61691,7 @@
/obj/item/flashlight,
/obj/effect/spawner/lootdrop/maintenance,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cAh" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -62920,8 +61728,7 @@
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whiteyellowfull";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whiteyellowfull"
},
/area/medical/chemistry)
"cAl" = (
@@ -62936,8 +61743,7 @@
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whiteyellow";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whiteyellow"
},
/area/medical/chemistry)
"cAm" = (
@@ -62978,8 +61784,7 @@
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whiteyellowfull";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whiteyellowfull"
},
/area/medical/chemistry)
"cAp" = (
@@ -63005,8 +61810,7 @@
},
/obj/structure/table/glass,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/medical/genetics)
"cAs" = (
@@ -63033,8 +61837,7 @@
},
/obj/structure/table/glass,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/medical/genetics)
"cAv" = (
@@ -63059,17 +61862,14 @@
icon_state = "1-4"
},
/obj/structure/disposalpipe/junction{
- dir = 1;
- tag = "icon-pipe-j1 (EAST)"
+ dir = 1
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 5
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cAx" = (
/obj/machinery/door/poddoor{
density = 0;
@@ -63105,18 +61905,14 @@
},
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cAz" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cAA" = (
/obj/machinery/alarm{
dir = 8;
@@ -63140,24 +61936,18 @@
/obj/effect/spawner/lootdrop/maintenance,
/obj/item/wrench,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cAD" = (
/obj/structure/reagent_dispensers/watertank,
/obj/item/storage/box/lights/mixed,
/obj/effect/spawner/lootdrop/maintenance,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cAE" = (
/obj/structure/reagent_dispensers/fueltank,
/obj/effect/spawner/lootdrop/maintenance,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cAF" = (
/obj/machinery/reagentgrinder,
/obj/structure/cable/yellow{
@@ -63172,8 +61962,7 @@
},
/turf/simulated/floor/plasteel{
dir = 6;
- icon_state = "whiteyellow";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whiteyellow"
},
/area/medical/chemistry)
"cAG" = (
@@ -63200,16 +61989,12 @@
dir = 5;
icon_state = "whitehall"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cAK" = (
/turf/simulated/floor/plasteel{
icon_state = "whitebluecorner"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cAL" = (
/obj/effect/spawner/window/reinforced,
/turf/simulated/floor/plating,
@@ -63228,8 +62013,7 @@
"cAN" = (
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/hor)
"cAO" = (
@@ -63239,8 +62023,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/hor)
"cAP" = (
@@ -63253,8 +62036,7 @@
/obj/item/circuitboard/teleporter,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/hor)
"cAR" = (
@@ -63272,8 +62054,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/hor)
"cAS" = (
@@ -63327,8 +62108,7 @@
/obj/machinery/chem_dispenser,
/turf/simulated/floor/plasteel{
dir = 6;
- icon_state = "whiteyellow";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whiteyellow"
},
/area/medical/chemistry)
"cAY" = (
@@ -63392,8 +62172,7 @@
/obj/structure/table/reinforced,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/hor)
"cBg" = (
@@ -63543,8 +62322,7 @@
/area/medical/genetics_cloning)
"cBw" = (
/obj/machinery/shower{
- dir = 4;
- tag = "icon-shower (EAST)"
+ dir = 4
},
/obj/machinery/door/window/southleft{
name = "Cloning Shower"
@@ -63553,8 +62331,7 @@
pixel_x = -28
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/medical/genetics_cloning)
"cBx" = (
@@ -63569,8 +62346,7 @@
pixel_y = 28
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/medical/genetics_cloning)
"cBy" = (
@@ -63583,8 +62359,7 @@
},
/obj/structure/window/reinforced,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/medical/genetics_cloning)
"cBz" = (
@@ -63705,9 +62480,7 @@
dir = 4;
icon_state = "whitehall"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cBP" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -63732,9 +62505,7 @@
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cBQ" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -63754,9 +62525,7 @@
dir = 4;
icon_state = "whiteblue"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cBR" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -63779,8 +62548,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/hor)
"cBS" = (
@@ -63800,8 +62568,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/hor)
"cBT" = (
@@ -63816,8 +62583,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/hor)
"cBU" = (
@@ -63829,8 +62595,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/hor)
"cBV" = (
@@ -63843,8 +62608,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/hor)
"cBW" = (
@@ -63869,9 +62633,7 @@
dir = 4
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cBY" = (
/obj/machinery/portable_atmospherics/canister/toxins,
/obj/item/radio/intercom{
@@ -63894,8 +62656,7 @@
dir = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
/area/medical/medbay3)
"cCd" = (
@@ -63959,8 +62720,7 @@
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whiteyellowfull";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whiteyellowfull"
},
/area/medical/chemistry)
"cCh" = (
@@ -63997,8 +62757,7 @@
pixel_y = 30
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/medical/genetics)
"cCj" = (
@@ -64378,9 +63137,7 @@
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cCP" = (
/obj/machinery/firealarm{
dir = 4;
@@ -64393,9 +63150,7 @@
dir = 4;
icon_state = "whitebluecorner"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cCQ" = (
/obj/structure/extinguisher_cabinet{
pixel_x = 27
@@ -64432,9 +63187,7 @@
pixel_x = -32
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cCV" = (
/obj/structure/filingcabinet/chestdrawer,
/obj/machinery/alarm{
@@ -64447,8 +63200,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/hor)
"cCW" = (
@@ -64516,9 +63268,7 @@
req_one_access_txt = "8;12"
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cDb" = (
/obj/machinery/door/poddoor/shutters{
dir = 8;
@@ -64551,7 +63301,7 @@
},
/obj/structure/rack,
/obj/effect/decal/warning_stripes/south,
-/obj/item/pipe_painter,
+/obj/item/painter,
/turf/simulated/floor/plasteel,
/area/atmos)
"cDe" = (
@@ -64599,16 +63349,13 @@
icon_state = "2-4"
},
/obj/structure/disposalpipe/junction{
- dir = 1;
- tag = "icon-pipe-j1 (EAST)"
+ dir = 1
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 5
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cDk" = (
/obj/structure/closet/crate,
/obj/item/crowbar/red,
@@ -64622,9 +63369,7 @@
},
/obj/effect/spawner/lootdrop/maintenance,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cDl" = (
/obj/machinery/atmospherics/unary/cryo_cell,
/obj/effect/decal/warning_stripes/northeast,
@@ -64646,9 +63391,7 @@
},
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cDq" = (
/obj/machinery/light/small{
dir = 1
@@ -64760,9 +63503,7 @@
/obj/item/wrench,
/obj/effect/spawner/lootdrop/maintenance,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cDC" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -64845,9 +63586,7 @@
dir = 6;
icon_state = "whitehall"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cDK" = (
/obj/machinery/power/apc{
name = "RD Office APC";
@@ -64860,8 +63599,7 @@
/obj/item/twohanded/required/kirbyplants/dead,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/hor)
"cDL" = (
@@ -64873,8 +63611,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/hor)
"cDM" = (
@@ -64882,9 +63619,7 @@
dir = 5
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cDN" = (
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel,
@@ -64907,8 +63642,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/hor)
"cDQ" = (
@@ -64930,9 +63664,7 @@
icon_state = "4-8"
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cDS" = (
/obj/structure/sign/lifestar,
/turf/simulated/wall,
@@ -64948,9 +63680,7 @@
icon_state = "2-8"
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cDU" = (
/turf/simulated/wall,
/area/medical/medbay3{
@@ -64967,9 +63697,7 @@
},
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cDY" = (
/obj/machinery/door/firedoor,
/obj/structure/cable/yellow{
@@ -65021,8 +63749,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/hor)
"cEe" = (
@@ -65196,9 +63923,7 @@
"cEB" = (
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cEC" = (
/obj/structure/reagent_dispensers/watertank,
/obj/effect/decal/cleanable/fungus,
@@ -65268,9 +63993,7 @@
},
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cEM" = (
/obj/machinery/door/airlock/research{
name = "Toxins Space Access";
@@ -65278,9 +64001,7 @@
},
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cEN" = (
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
@@ -65431,26 +64152,22 @@
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cFc" = (
/obj/structure/cable/yellow{
d1 = 1;
d2 = 8;
icon_state = "1-8"
},
-/mob/living/simple_animal/mouse,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 9
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 9
},
+/mob/living/simple_animal/mouse,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cFd" = (
/turf/simulated/wall,
/area/medical/medbreak)
@@ -65459,9 +64176,7 @@
dir = 1
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cFf" = (
/obj/machinery/firealarm{
dir = 8;
@@ -65598,9 +64313,7 @@
dir = 8;
icon_state = "whitepurplecorner"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cFv" = (
/obj/effect/spawner/window/reinforced,
/turf/simulated/floor/plating,
@@ -65691,9 +64404,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cFH" = (
/turf/simulated/wall,
/area/toxins/mixing{
@@ -65795,30 +64506,22 @@
/obj/item/clothing/mask/gas,
/obj/effect/spawner/lootdrop/maintenance,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cFR" = (
/obj/item/latexballon,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cFS" = (
/obj/item/clothing/suit/ianshirt,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cFT" = (
/obj/structure/rack,
/obj/item/clothing/glasses/sunglasses,
/obj/item/flashlight/pen,
/obj/effect/spawner/lootdrop/maintenance,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cFU" = (
/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
@@ -65893,8 +64596,7 @@
},
/obj/structure/table/glass,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/medical/genetics_cloning)
"cGg" = (
@@ -65910,9 +64612,7 @@
icon_state = "1-2"
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cGh" = (
/obj/structure/closet/secure_closet/personal/patient,
/obj/machinery/alarm{
@@ -65920,21 +64620,14 @@
pixel_x = 24
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/medical/genetics_cloning)
"cGi" = (
/obj/structure/table,
-/obj/item/reagent_containers/iv_bag/blood/AMinus,
-/obj/item/reagent_containers/iv_bag/blood/APlus,
-/obj/item/reagent_containers/iv_bag/blood/BMinus,
-/obj/item/reagent_containers/iv_bag/blood/BPlus,
-/obj/item/reagent_containers/iv_bag/blood/OPlus,
/obj/machinery/alarm{
pixel_y = 23
},
-/obj/item/reagent_containers/iv_bag/blood/OMinus,
/obj/machinery/light{
dir = 1;
in_use = 1
@@ -65999,8 +64692,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/medical/medbreak)
"cGn" = (
@@ -66177,9 +64869,7 @@
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cGD" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -66196,9 +64886,7 @@
dir = 4;
icon_state = "whitepurple"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cGF" = (
/obj/machinery/atmospherics/unary/portables_connector,
/obj/effect/decal/warning_stripes/south,
@@ -66435,9 +65123,7 @@
name = "maint grille or trash spawner"
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cHa" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -66466,8 +65152,7 @@
"cHb" = (
/obj/structure/disposalpipe/junction{
dir = 2;
- icon_state = "pipe-j2";
- tag = "icon-pipe-j2"
+ icon_state = "pipe-j2"
},
/obj/structure/cable/yellow{
d1 = 1;
@@ -66500,8 +65185,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/medical/medbreak)
"cHd" = (
@@ -66526,8 +65210,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/medical/medbreak)
"cHf" = (
@@ -66545,8 +65228,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/medical/medbreak)
"cHh" = (
@@ -66580,8 +65262,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/medical/medbreak)
"cHj" = (
@@ -66730,9 +65411,7 @@
dir = 4;
icon_state = "whitepurplecorner"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cHy" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -66961,9 +65640,7 @@
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cHU" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'BOMB RANGE";
@@ -66974,9 +65651,7 @@
"cHV" = (
/obj/effect/decal/warning_stripes/northwestcorner,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cHW" = (
/obj/structure/window/reinforced,
/obj/item/target,
@@ -67012,9 +65687,7 @@
/obj/item/cigbutt,
/obj/effect/spawner/lootdrop/maintenance,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cIc" = (
/obj/structure/chair,
/obj/effect/decal/warning_stripes/northeast,
@@ -67133,9 +65806,7 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
+/area/maintenance/maintcentral)
"cIk" = (
/obj/structure/urinal{
pixel_y = 29
@@ -67157,8 +65828,7 @@
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "yellowfull";
- tag = "icon-whitehall (WEST)"
+ icon_state = "yellowfull"
},
/area/medical/genetics)
"cIm" = (
@@ -67183,8 +65853,7 @@
/obj/structure/table/glass,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/medical/medbreak)
"cIq" = (
@@ -67254,9 +65923,7 @@
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cIA" = (
/obj/machinery/light{
dir = 8
@@ -67271,8 +65938,7 @@
/obj/structure/table/glass,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/medical/medbreak)
"cIB" = (
@@ -67286,8 +65952,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/medical/medbreak)
"cIC" = (
@@ -67531,8 +66196,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/medical/medbreak)
"cIY" = (
@@ -67545,15 +66209,13 @@
/obj/structure/cable/yellow,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/medical/medbreak)
"cIZ" = (
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/medical/medbreak)
"cJa" = (
@@ -67561,8 +66223,7 @@
/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/medical/medbreak)
"cJb" = (
@@ -67727,9 +66388,7 @@
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cJs" = (
/obj/structure/sign/securearea,
/turf/simulated/wall/r_wall,
@@ -67739,8 +66398,7 @@
"cJt" = (
/obj/machinery/shower{
dir = 4;
- name = "emergency shower";
- tag = "icon-shower (EAST)"
+ name = "emergency shower"
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -67813,9 +66471,7 @@
/turf/simulated/floor/plasteel{
icon_state = "floorgrime"
},
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cJz" = (
/obj/structure/closet/bombcloset,
/obj/effect/decal/warning_stripes/north,
@@ -67934,7 +66590,7 @@
/obj/machinery/alarm{
pixel_y = 23
},
-/obj/machinery/smartfridge/secure/chemistry/virology,
+/obj/machinery/smartfridge/secure/chemistry/virology/preloaded,
/turf/simulated/floor/plasteel{
icon_state = "whitegreenfull"
},
@@ -67970,9 +66626,7 @@
icon_state = "1-4"
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cJT" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -67981,9 +66635,7 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
+/area/maintenance/maintcentral)
"cJU" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -68060,8 +66712,7 @@
/obj/structure/chair/stool,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/medical/medbreak)
"cKk" = (
@@ -68072,8 +66723,7 @@
/obj/structure/table/glass,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/medical/medbreak)
"cKl" = (
@@ -68093,8 +66743,7 @@
})
"cKn" = (
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/medical/genetics_cloning)
"cKo" = (
@@ -68208,14 +66857,10 @@
name = "\improper Toxins Lab"
})
"cKz" = (
-/obj/structure/closet/crate/freezer,
-/obj/item/reagent_containers/iv_bag,
-/obj/item/reagent_containers/iv_bag,
-/obj/item/reagent_containers/iv_bag,
-/obj/item/reagent_containers/iv_bag,
/obj/item/radio/intercom{
pixel_x = -28
},
+/obj/structure/closet/crate/freezer/iv_storage,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -68239,9 +66884,7 @@
/obj/effect/decal/cleanable/generic,
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cKD" = (
/obj/machinery/computer/operating,
/obj/structure/cable/yellow{
@@ -68276,9 +66919,7 @@
"cKG" = (
/obj/structure/closet/wardrobe/grey,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cKH" = (
/obj/item/circular_saw,
/obj/item/FixOVein,
@@ -68442,9 +67083,7 @@
icon_state = "1-2"
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cKW" = (
/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
@@ -68665,9 +67304,7 @@
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cLt" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -68683,9 +67320,7 @@
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cLu" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 8
@@ -68694,9 +67329,7 @@
dir = 8;
icon_state = "whitehall"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cLv" = (
/obj/structure/disposalpipe/segment{
dir = 1;
@@ -68758,9 +67391,7 @@
},
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cLA" = (
/obj/effect/landmark/start{
name = "Roboticist"
@@ -68774,9 +67405,7 @@
"cLB" = (
/obj/effect/decal/cleanable/blood/oil,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cLC" = (
/obj/structure/closet,
/obj/item/assembly/prox_sensor{
@@ -68788,9 +67417,7 @@
pixel_y = 5
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cLD" = (
/obj/structure/chair{
dir = 4
@@ -68961,16 +67588,12 @@
/obj/structure/reagent_dispensers/watertank,
/obj/effect/decal/cleanable/fungus,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cLV" = (
/obj/structure/table,
/obj/item/reagent_containers/glass/beaker/large,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cLX" = (
/obj/structure/disposalpipe/segment{
dir = 2;
@@ -69151,9 +67774,7 @@
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cMq" = (
/obj/machinery/firealarm{
dir = 4;
@@ -69163,9 +67784,7 @@
dir = 10;
icon_state = "whitehall"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cMr" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
@@ -69195,8 +67814,7 @@
/obj/item/radio/headset/headset_medsci,
/obj/item/flashlight/pen,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/medical/genetics)
"cMt" = (
@@ -69233,9 +67851,7 @@
/obj/structure/closet/crate,
/obj/item/clothing/mask/gas,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cMy" = (
/obj/machinery/atmospherics/unary/portables_connector{
dir = 8
@@ -69651,9 +68267,7 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/universal,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cMZ" = (
/obj/structure/extinguisher_cabinet{
pixel_x = 27
@@ -69662,9 +68276,7 @@
dir = 9;
icon_state = "whitehall"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cNa" = (
/obj/structure/table,
/obj/machinery/light/small{
@@ -69678,9 +68290,7 @@
/turf/simulated/floor/plasteel{
icon_state = "floorgrime"
},
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cNb" = (
/obj/structure/table,
/obj/item/retractor,
@@ -69695,9 +68305,7 @@
/turf/simulated/floor/plasteel{
icon_state = "floorgrime"
},
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cNc" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -69770,9 +68378,7 @@
dir = 8;
icon_state = "whitepurplecorner"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cNk" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -69789,9 +68395,7 @@
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cNm" = (
/obj/machinery/atmospherics/pipe/simple/insulated,
/turf/simulated/wall/r_wall,
@@ -69991,17 +68595,13 @@
/turf/simulated/floor/plasteel{
icon_state = "floorgrime"
},
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cNP" = (
/obj/effect/decal/cleanable/blood/oil,
/turf/simulated/floor/plasteel{
icon_state = "floorgrime"
},
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cNQ" = (
/obj/machinery/computer/rdconsole/robotics,
/obj/machinery/requests_console{
@@ -70024,9 +68624,7 @@
icon_state = "2-4"
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cNS" = (
/obj/structure/extinguisher_cabinet{
pixel_x = -27
@@ -70063,9 +68661,7 @@
req_one_access_txt = "12;5;39;6"
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cNW" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -70134,9 +68730,7 @@
},
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cOa" = (
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel,
@@ -70193,9 +68787,7 @@
dir = 8;
icon_state = "whitepurple"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cOg" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -70216,9 +68808,7 @@
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cOh" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -70229,9 +68819,7 @@
dir = 4;
icon_state = "whiteblue"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cOi" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command{
@@ -70286,9 +68874,7 @@
"cOm" = (
/obj/effect/spawner/window/reinforced,
/turf/simulated/floor/plating,
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cOn" = (
/obj/machinery/r_n_d/server/robotics,
/turf/simulated/floor/bluegrid{
@@ -70361,9 +68947,7 @@
dir = 4
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cOt" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -70378,9 +68962,7 @@
dir = 4
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cOu" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -70399,9 +68981,7 @@
dir = 5
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cOw" = (
/obj/structure/cable/yellow{
d1 = 2;
@@ -70412,16 +68992,12 @@
dir = 8
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cOx" = (
/obj/machinery/portable_atmospherics/canister/air,
/obj/machinery/atmospherics/unary/portables_connector,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cOy" = (
/obj/effect/spawner/window/reinforced,
/turf/simulated/floor/plating,
@@ -70482,8 +69058,7 @@
/obj/item/reagent_containers/iv_bag/blood/random,
/obj/item/reagent_containers/iv_bag/blood/random,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/medical/virology)
"cOD" = (
@@ -70494,23 +69069,20 @@
icon_state = "pipe-c"
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/medical/virology)
"cOE" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/medical/virology)
"cOF" = (
/obj/structure/closet/secure_closet/medical1,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/medical/virology)
"cOG" = (
@@ -70572,9 +69144,7 @@
/turf/simulated/floor/plasteel{
icon_state = "floorgrime"
},
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cOL" = (
/obj/machinery/power/apc{
dir = 8;
@@ -70601,9 +69171,7 @@
icon_state = "1-2"
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cON" = (
/turf/simulated/floor/plasteel{
icon_state = "escape"
@@ -70705,9 +69273,7 @@
dir = 8;
icon_state = "whitepurple"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cPb" = (
/obj/item/radio/intercom{
name = "Station Intercom (General)";
@@ -70720,9 +69286,7 @@
dir = 4;
icon_state = "whitebluecorner"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cPc" = (
/turf/simulated/wall,
/area/toxins/server{
@@ -70814,9 +69378,7 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cPm" = (
/obj/machinery/atmospherics/unary/portables_connector{
dir = 8
@@ -70961,8 +69523,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/hor)
"cPE" = (
@@ -70980,9 +69541,7 @@
req_access_txt = "12"
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cPG" = (
/obj/structure/rack{
dir = 8;
@@ -70996,14 +69555,11 @@
/turf/simulated/floor/plasteel{
icon_state = "floorgrime"
},
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cPH" = (
/obj/structure/closet/firecloset,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/hallway/secondary/exit{
name = "\improper Departure Lounge"
@@ -71011,8 +69567,7 @@
"cPI" = (
/obj/structure/closet/emcloset,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/hallway/secondary/exit{
name = "\improper Departure Lounge"
@@ -71020,8 +69575,7 @@
"cPJ" = (
/obj/machinery/computer/arcade,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/hallway/secondary/exit{
name = "\improper Departure Lounge"
@@ -71061,8 +69615,7 @@
pixel_y = 32
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/hallway/secondary/exit{
name = "\improper Departure Lounge"
@@ -71075,8 +69628,7 @@
pixel_y = 32
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/hallway/secondary/exit{
name = "\improper Departure Lounge"
@@ -71176,9 +69728,7 @@
"cPT" = (
/obj/effect/decal/cleanable/fungus,
/turf/simulated/wall,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cPU" = (
/obj/structure/cable/yellow{
d2 = 8;
@@ -71216,9 +69766,7 @@
dir = 8;
icon_state = "whitepurple"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cPZ" = (
/obj/machinery/firealarm{
dir = 1;
@@ -71359,9 +69907,7 @@
},
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cQk" = (
/obj/effect/decal/warning_stripes/southwest,
/turf/simulated/floor/plasteel,
@@ -71377,9 +69923,7 @@
name = "3maintenance loot spawner"
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cQn" = (
/obj/machinery/light/small{
dir = 4
@@ -71502,9 +70046,7 @@
dir = 4
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cQy" = (
/obj/structure/disposalpipe/segment{
dir = 1;
@@ -71517,9 +70059,7 @@
dir = 4
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cQz" = (
/obj/machinery/power/apc{
dir = 8;
@@ -71533,8 +70073,7 @@
/area/medical/surgeryobs)
"cQA" = (
/obj/structure/morgue{
- dir = 8;
- tag = "icon-morgue1 (WEST)"
+ dir = 8
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -71561,9 +70100,7 @@
dir = 6
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cQF" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -71575,9 +70112,7 @@
dir = 5
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cQG" = (
/obj/structure/rack,
/obj/item/crowbar/red,
@@ -71600,26 +70135,20 @@
},
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cQI" = (
/obj/structure/closet,
/obj/item/clothing/glasses/science,
/obj/effect/spawner/lootdrop/maintenance,
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cQJ" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/reagent_dispensers/watertank,
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cQK" = (
/obj/machinery/door/poddoor/shutters/preopen{
dir = 8;
@@ -71637,9 +70166,7 @@
},
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cQM" = (
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel,
@@ -71708,9 +70235,7 @@
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cQR" = (
/obj/machinery/power/apc{
cell_type = 5000;
@@ -71748,9 +70273,7 @@
"cQU" = (
/obj/item/storage/box/lights/mixed,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cQV" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -71762,9 +70285,7 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cQW" = (
/turf/simulated/wall/r_wall,
/area/maintenance/starboardsolar)
@@ -71854,9 +70375,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cRj" = (
/obj/machinery/door/airlock/centcom{
icon = 'icons/obj/doors/airlocks/station/maintenance.dmi';
@@ -71874,9 +70393,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cRl" = (
/obj/structure/disposalpipe/segment{
dir = 2;
@@ -71889,9 +70406,7 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cRm" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -71908,9 +70423,7 @@
dir = 4
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cRn" = (
/obj/structure/disposalpipe/segment,
/obj/effect/decal/warning_stripes/north,
@@ -71922,13 +70435,10 @@
/obj/effect/decal/cleanable/dirt,
/obj/effect/spawner/lootdrop/maintenance,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cRp" = (
/obj/item/twohanded/required/kirbyplants{
- icon_state = "plant-11";
- tag = "icon-plant-11"
+ icon_state = "plant-11"
},
/obj/machinery/light{
dir = 8
@@ -71958,9 +70468,7 @@
dir = 4
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cRt" = (
/turf/simulated/floor/plasteel,
/area/hallway/secondary/exit{
@@ -72086,9 +70594,7 @@
dir = 4
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cRE" = (
/obj/machinery/camera{
c_tag = "Medbay Surgery 1 North"
@@ -72129,9 +70635,7 @@
dir = 4
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cRI" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -72148,9 +70652,7 @@
dir = 1;
icon_state = "whitepurple"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cRJ" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -72177,9 +70679,7 @@
dir = 1;
icon_state = "whitepurple"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cRK" = (
/obj/structure/cable/yellow{
d1 = 2;
@@ -72238,9 +70738,7 @@
dir = 1
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cRQ" = (
/obj/machinery/power/apc{
dir = 8;
@@ -72258,9 +70756,7 @@
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cRS" = (
/obj/structure/cable/yellow{
d2 = 8;
@@ -72344,8 +70840,7 @@
pixel_y = 32
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/hallway/secondary/exit{
name = "\improper Departure Lounge"
@@ -72399,8 +70894,7 @@
req_access_txt = "22"
},
/turf/simulated/floor/plasteel{
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "cult"
},
/area/chapel/office)
"cSh" = (
@@ -72418,8 +70912,7 @@
/obj/item/organ/internal/heart,
/obj/structure/closet/secure_closet/chaplain,
/turf/simulated/floor/plasteel{
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "cult"
},
/area/chapel/office)
"cSi" = (
@@ -72434,9 +70927,7 @@
},
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cSj" = (
/obj/effect/decal/warning_stripes/south,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -72446,9 +70937,7 @@
dir = 6
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cSk" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -72476,9 +70965,7 @@
dir = 1
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cSn" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -72502,9 +70989,7 @@
dir = 4
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cSo" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
@@ -72529,9 +71014,7 @@
dir = 4
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cSr" = (
/obj/effect/decal/warning_stripes/west,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -72566,9 +71049,7 @@
req_one_access_txt = "7;12;47"
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cSu" = (
/obj/machinery/door/poddoor/preopen{
id_tag = "xeno_blastdoor";
@@ -72578,13 +71059,10 @@
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cSv" = (
/obj/item/twohanded/required/kirbyplants{
- icon_state = "plant-11";
- tag = "icon-plant-11"
+ icon_state = "plant-11"
},
/turf/simulated/floor/plasteel{
dir = 5;
@@ -72646,8 +71124,7 @@
dir = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/medical/virology)
"cSE" = (
@@ -72657,24 +71134,21 @@
},
/obj/machinery/portable_atmospherics/canister/air,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/medical/virology)
"cSF" = (
/obj/item/trash/popcorn,
/obj/structure/table/glass,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/medical/virology)
"cSG" = (
/obj/item/reagent_containers/food/snacks/sosjerky,
/obj/structure/table/glass,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/medical/virology)
"cSH" = (
@@ -72683,8 +71157,7 @@
},
/obj/structure/table/glass,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/medical/virology)
"cSI" = (
@@ -72761,8 +71234,7 @@
"cSR" = (
/obj/structure/table/wood,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/chapel/main)
"cSS" = (
@@ -72773,8 +71245,7 @@
},
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/chapel/main)
"cST" = (
@@ -72790,8 +71261,7 @@
pixel_y = 29
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/chapel/main)
"cSU" = (
@@ -72809,8 +71279,7 @@
pixel_y = 25
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/chapel/main)
"cSV" = (
@@ -72837,9 +71306,7 @@
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cSX" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -72871,9 +71338,7 @@
dir = 4
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cSZ" = (
/obj/structure/table/glass,
/obj/item/paper_bin{
@@ -72897,9 +71362,7 @@
/obj/machinery/space_heater,
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cTc" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -72918,9 +71381,7 @@
/obj/structure/reagent_dispensers/fueltank,
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cTe" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -73046,9 +71507,7 @@
/obj/effect/spawner/lootdrop/maintenance,
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cTp" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -73073,8 +71532,7 @@
},
/obj/item/twohanded/required/kirbyplants{
icon_state = "plant-24";
- layer = 4.1;
- tag = "icon-plant-24"
+ layer = 4.1
},
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel,
@@ -73114,8 +71572,7 @@
pixel_y = -30
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/medical/virology)
"cTw" = (
@@ -73223,9 +71680,7 @@
name = "maint grille or trash spawner"
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cTH" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -73287,9 +71742,7 @@
},
/obj/machinery/portable_atmospherics/canister/air,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cTO" = (
/obj/structure/chair{
dir = 4
@@ -73395,8 +71848,7 @@
},
/obj/item/twohanded/required/kirbyplants{
icon_state = "plant-14";
- layer = 4.1;
- tag = "icon-plant-14"
+ layer = 4.1
},
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
@@ -73682,8 +72134,7 @@
},
/obj/structure/table/wood,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/chapel/main)
"cUz" = (
@@ -73806,16 +72257,12 @@
"cUK" = (
/obj/item/seeds/berry,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cUL" = (
/obj/structure/reagent_dispensers/watertank,
/obj/item/reagent_containers/glass/bucket,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cUN" = (
/obj/machinery/alarm{
dir = 1;
@@ -73951,9 +72398,7 @@
/obj/machinery/biogenerator,
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cVf" = (
/obj/structure/flora/ausbushes/fernybush,
/obj/structure/flora/ausbushes/fullgrass,
@@ -73978,9 +72423,7 @@
/obj/item/seeds/grass,
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cVi" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
@@ -73996,9 +72439,7 @@
/obj/item/seeds/glowshroom,
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cVk" = (
/turf/simulated/wall,
/area/hallway/secondary/exit{
@@ -74056,26 +72497,20 @@
/obj/item/seeds/carrot,
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cVp" = (
/obj/machinery/hydroponics/soil,
/obj/item/plant_analyzer,
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cVq" = (
/obj/machinery/hydroponics/soil,
/obj/item/seeds/glowshroom,
/obj/item/seeds/corn,
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cVr" = (
/turf/simulated/floor/plating,
/area/maintenance/starboardsolar)
@@ -74203,9 +72638,7 @@
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cVL" = (
/obj/structure/closet/coffin,
/obj/machinery/light/small{
@@ -74466,9 +72899,7 @@
"cWq" = (
/obj/structure/chair,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cWs" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -74503,8 +72934,7 @@
/area/chapel/main)
"cWA" = (
/obj/machinery/shower{
- dir = 4;
- tag = "icon-shower (EAST)"
+ dir = 4
},
/obj/effect/decal/warning_stripes/west,
/obj/machinery/atmospherics/unary/vent_pump/on{
@@ -74607,9 +73037,7 @@
name = "2maintenance loot spawner"
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cWK" = (
/obj/structure/cable{
d1 = 4;
@@ -74643,8 +73071,7 @@
pixel_y = -2
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/chapel/main)
"cWO" = (
@@ -74655,8 +73082,7 @@
name = "Chaplain"
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/chapel/main)
"cWR" = (
@@ -74888,8 +73314,7 @@
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitepurplefull";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whitepurplefull"
},
/area/toxins/xenobiology{
name = "\improper Secure Lab"
@@ -74919,8 +73344,7 @@
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitepurplefull";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whitepurplefull"
},
/area/toxins/xenobiology{
name = "\improper Secure Lab"
@@ -74960,8 +73384,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitepurplefull";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whitepurplefull"
},
/area/toxins/xenobiology{
name = "\improper Secure Lab"
@@ -74986,15 +73409,12 @@
dir = 4
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cXz" = (
/obj/machinery/smartfridge/secure/extract,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitepurplefull";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whitepurplefull"
},
/area/toxins/xenobiology{
name = "\improper Secure Lab"
@@ -75098,15 +73518,13 @@
/area/chapel/main)
"cXJ" = (
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/chapel/main)
"cXK" = (
/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/chapel/main)
"cXL" = (
@@ -75271,8 +73689,7 @@
})
"cXY" = (
/obj/item/twohanded/required/kirbyplants{
- icon_state = "plant-11";
- tag = "icon-plant-11"
+ icon_state = "plant-11"
},
/turf/simulated/floor/plasteel{
dir = 6;
@@ -75354,8 +73771,7 @@
dir = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "cult"
},
/area/chapel/main)
"cYh" = (
@@ -75363,8 +73779,7 @@
name = "Chapel Garden"
},
/turf/simulated/floor/plasteel{
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "cult"
},
/area/chapel/main)
"cYi" = (
@@ -75379,8 +73794,7 @@
"cYj" = (
/obj/structure/chair,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/chapel/main)
"cYk" = (
@@ -75389,8 +73803,7 @@
name = "Chaplain"
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/chapel/main)
"cYl" = (
@@ -75405,8 +73818,7 @@
},
/obj/structure/table/wood,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/chapel/main)
"cYm" = (
@@ -75414,9 +73826,7 @@
/obj/item/seeds/glowshroom,
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cYr" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -75461,9 +73871,7 @@
/obj/item/seeds/ambrosia,
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cYx" = (
/obj/structure/chair{
dir = 1
@@ -75550,8 +73958,7 @@
"cYI" = (
/obj/structure/disposalpipe/junction{
dir = 2;
- icon_state = "pipe-j2";
- tag = "icon-pipe-j2"
+ icon_state = "pipe-j2"
},
/obj/structure/cable/yellow{
d1 = 1;
@@ -75565,8 +73972,7 @@
"cYK" = (
/turf/simulated/floor/plasteel{
dir = 10;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (SOUTHWEST)"
+ icon_state = "whitepurple"
},
/area/toxins/xenobiology{
name = "\improper Secure Lab"
@@ -75770,16 +74176,12 @@
/obj/structure/table/wood,
/obj/machinery/bottler,
/turf/simulated/floor/wood,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cZh" = (
/obj/structure/table/wood,
/obj/item/flashlight/lamp,
/turf/simulated/floor/wood,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cZi" = (
/obj/machinery/camera{
c_tag = "Dormitories - Fore";
@@ -75800,8 +74202,7 @@
"cZl" = (
/obj/item/twohanded/required/kirbyplants{
icon_state = "plant-24";
- layer = 4.1;
- tag = "icon-plant-24"
+ layer = 4.1
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -75843,12 +74244,9 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitegreen";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whitegreen"
},
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cZr" = (
/turf/simulated/wall,
/area/toxins/xenobiology{
@@ -75889,12 +74287,9 @@
"cZv" = (
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitegreen";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whitegreen"
},
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cZw" = (
/obj/machinery/light/small{
dir = 4
@@ -75911,9 +74306,7 @@
dir = 4;
icon_state = "whitegreen"
},
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cZy" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -75996,8 +74389,7 @@
icon_state = "plant-21";
layer = 4.1;
pixel_x = -3;
- pixel_y = 3;
- tag = "icon-plant-21"
+ pixel_y = 3
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -76009,9 +74401,7 @@
/obj/item/cultivator,
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cZK" = (
/obj/structure/disposalpipe/segment{
dir = 2;
@@ -76045,9 +74435,7 @@
/obj/item/seeds/watermelon,
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cZO" = (
/obj/machinery/door/airlock/medical{
name = "Psych Office";
@@ -76129,9 +74517,7 @@
/obj/item/seeds/berry,
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"daa" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable/yellow{
@@ -76171,8 +74557,7 @@
dir = 1
},
/obj/item/twohanded/required/kirbyplants{
- icon_state = "plant-25";
- tag = "icon-plant-25"
+ icon_state = "plant-25"
},
/turf/simulated/floor/wood,
/area/medical/psych)
@@ -76227,9 +74612,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"dap" = (
/obj/item/radio/beacon,
/obj/effect/decal/warning_stripes/north,
@@ -76300,8 +74683,7 @@
},
/obj/item/twohanded/required/kirbyplants{
icon_state = "plant-16";
- layer = 4.1;
- tag = "icon-plant-16"
+ layer = 4.1
},
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
@@ -76358,12 +74740,9 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitegreen";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whitegreen"
},
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"day" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -76375,12 +74754,9 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitegreen";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whitegreen"
},
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"daF" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'HIGH VOLTAGE'";
@@ -76435,9 +74811,7 @@
dir = 4;
icon_state = "whitegreen"
},
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"daN" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -76462,8 +74836,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitegreen";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whitegreen"
},
/area/medical/medbay3)
"daP" = (
@@ -76684,12 +75057,9 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitegreen";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whitegreen"
},
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"dbw" = (
/obj/item/radio/intercom{
name = "Station Intercom (General)";
@@ -76736,9 +75106,7 @@
dir = 4;
icon_state = "whitegreen"
},
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"dbz" = (
/obj/structure/sink{
dir = 8;
@@ -76782,8 +75150,7 @@
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitepurplefull";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whitepurplefull"
},
/area/toxins/xenobiology{
name = "\improper Secure Lab"
@@ -76839,8 +75206,7 @@
/obj/item/reagent_containers/dropper,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitepurplefull";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whitepurplefull"
},
/area/toxins/xenobiology{
name = "\improper Secure Lab"
@@ -76924,8 +75290,7 @@
/obj/machinery/chem_dispenser,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitepurplefull";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whitepurplefull"
},
/area/toxins/xenobiology{
name = "\improper Secure Lab"
@@ -77087,8 +75452,7 @@
pixel_y = -25
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/chapel/main)
"dbZ" = (
@@ -77707,18 +76071,14 @@
icon_state = "pipe-c"
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"deh" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
},
/turf/simulated/wall,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"dei" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/wood,
@@ -77746,23 +76106,19 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"del" = (
/obj/item/candle,
/obj/structure/table/wood,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/chapel/main)
"dem" = (
/obj/structure/table/wood,
/obj/effect/decal/cleanable/cobweb,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/chapel/main)
"deo" = (
@@ -77914,9 +76270,7 @@
pixel_y = -8
},
/turf/simulated/wall,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
+/area/maintenance/maintcentral)
"deG" = (
/obj/structure/chair/office/dark{
dir = 4
@@ -78119,9 +76473,7 @@
/obj/effect/decal/warning_stripes/northeastcorner,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"dfj" = (
/obj/effect/decal/warning_stripes/west,
/obj/effect/decal/warning_stripes/north,
@@ -78385,8 +76737,7 @@
pixel_y = 32
},
/obj/machinery/shower{
- dir = 4;
- tag = "icon-shower (EAST)"
+ dir = 4
},
/obj/effect/decal/warning_stripes/northwest,
/turf/simulated/floor/plasteel{
@@ -78407,8 +76758,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitegreen";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whitegreen"
},
/area/medical/virology)
"dfU" = (
@@ -78476,8 +76826,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitegreen";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whitegreen"
},
/area/medical/virology)
"dfY" = (
@@ -78693,9 +77042,7 @@
/obj/structure/chair/stool,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"dgD" = (
/obj/machinery/camera{
c_tag = "Quartermaster's Office";
@@ -78740,9 +77087,7 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"dgH" = (
/obj/structure/closet/l3closet,
/obj/effect/decal/warning_stripes/southeast,
@@ -78800,9 +77145,7 @@
/obj/effect/decal/warning_stripes/west,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"dhi" = (
/obj/structure/chair/comfy/black{
dir = 4
@@ -78834,8 +77177,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitegreen";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whitegreen"
},
/area/medical/virology)
"dhl" = (
@@ -78863,8 +77205,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitegreen";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whitegreen"
},
/area/medical/virology)
"dhn" = (
@@ -78882,9 +77223,7 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"dhr" = (
/obj/structure/cable/yellow{
d1 = 2;
@@ -78908,24 +77247,18 @@
dir = 10
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"dhu" = (
/obj/structure/rack,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"dhw" = (
/obj/structure/closet/crate,
/obj/item/clothing/gloves/color/fyellow,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"dhx" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -79008,25 +77341,19 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"dhF" = (
/obj/machinery/door/airlock/maintenance{
name = "storage room";
req_access = "12"
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"dhG" = (
/obj/item/seeds/watermelon,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"dhI" = (
/mob/living/simple_animal/bot/cleanbot{
name = "Mopfficer Sweepsky";
@@ -79065,8 +77392,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
/area/medical/exam_room)
"djL" = (
@@ -79212,9 +77538,7 @@
dir = 1;
icon_state = "whitepurple"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"dFD" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -79341,9 +77665,7 @@
dir = 4
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"dWX" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -79413,9 +77735,7 @@
dir = 4
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"ebM" = (
/obj/machinery/atmospherics/pipe/simple/visible/green{
dir = 4
@@ -79845,9 +78165,7 @@
dir = 8;
icon_state = "whitepurple"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"fwO" = (
/obj/machinery/door/airlock/external{
id_tag = "specops_home";
@@ -80138,6 +78456,14 @@
},
/turf/simulated/floor/plasteel,
/area/engine/break_room)
+"glM" = (
+/obj/machinery/door_timer/cell_2{
+ pixel_y = -32
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "redcorner"
+ },
+/area/security/brig)
"gnJ" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
@@ -80145,9 +78471,7 @@
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"gnZ" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -80260,8 +78584,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
"gOD" = (
@@ -80444,8 +78767,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
"hnC" = (
@@ -80638,9 +78960,7 @@
name = "maint grille or trash spawner"
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"hLH" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -80666,9 +78986,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"hNy" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 8
@@ -80881,8 +79199,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
/area/medical/exam_room)
"inj" = (
@@ -80954,9 +79271,7 @@
/obj/machinery/atmospherics/unary/portables_connector,
/obj/machinery/portable_atmospherics/canister/air,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"iEd" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -81069,9 +79384,7 @@
dir = 6
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"iUs" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel,
@@ -81114,9 +79427,7 @@
dir = 4
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"jbk" = (
/obj/structure/reflector/double{
anchored = 1;
@@ -81318,6 +79629,14 @@
},
/turf/simulated/floor/plating,
/area/engine/engineering)
+"jZd" = (
+/obj/machinery/door_timer/cell_3{
+ pixel_y = -32
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "red"
+ },
+/area/security/brig)
"kez" = (
/turf/simulated/wall/r_wall,
/area/engine/supermatter)
@@ -81414,14 +79733,6 @@
/obj/machinery/atmospherics/pipe/simple/visible/yellow,
/turf/space,
/area/space/nearstation)
-"ktv" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 9;
- tag = "icon-intact-y (NORTHWEST)"
- },
-/turf/space,
-/area/space/nearstation)
"ktX" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 6
@@ -81444,8 +79755,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/hor)
"kwD" = (
@@ -81572,8 +79882,7 @@
/area/medical/reception)
"kKa" = (
/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
- dir = 5;
- tag = "icon-intact (NORTHEAST)"
+ dir = 5
},
/obj/structure/lattice,
/turf/space,
@@ -81714,9 +80023,7 @@
dir = 1
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"len" = (
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/engine,
@@ -82047,8 +80354,7 @@
},
/obj/effect/decal/warning_stripes/south,
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 5;
- tag = "icon-intact-y (NORTHWEST)"
+ dir = 5
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -82151,8 +80457,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
"mDj" = (
@@ -82872,9 +81177,7 @@
dir = 4
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"peO" = (
/obj/machinery/atmospherics/pipe/simple/visible/yellow,
/obj/machinery/atmospherics/binary/pump{
@@ -82945,13 +81248,13 @@
},
/area/security/podbay)
"ppw" = (
-/mob/living/carbon/human/monkey,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 10
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 6
},
+/mob/living/carbon/human/monkey,
/turf/simulated/floor/plasteel{
icon_state = "freezerfloor"
},
@@ -82974,9 +81277,7 @@
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"pue" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -83073,9 +81374,7 @@
"pMx" = (
/obj/effect/spawner/airlock/w_to_e,
/turf/simulated/wall,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"pMS" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -83146,9 +81445,7 @@
dir = 4
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"pRy" = (
/obj/effect/decal/warning_stripes/north,
/obj/machinery/camera,
@@ -83189,8 +81486,7 @@
/area/space/nearstation)
"pUh" = (
/obj/structure/morgue{
- dir = 8;
- tag = "icon-morgue1 (WEST)"
+ dir = 8
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -83247,9 +81543,7 @@
"qbl" = (
/obj/effect/spawner/airlock,
/turf/simulated/wall,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"qbE" = (
/obj/structure/window/reinforced{
dir = 4
@@ -83325,9 +81619,7 @@
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"qob" = (
/obj/structure/closet/emcloset,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -83356,8 +81648,7 @@
})
"qtt" = (
/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
- dir = 5;
- tag = "icon-intact (NORTHEAST)"
+ dir = 5
},
/obj/structure/lattice,
/obj/structure/lattice/catwalk,
@@ -83428,9 +81719,7 @@
},
/obj/structure/cable/yellow,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"qHi" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
@@ -83543,8 +81832,7 @@
"rdz" = (
/obj/item/twohanded/required/kirbyplants{
icon_state = "plant-06";
- level = 4.1;
- tag = "icon-plant-06"
+ level = 4.1
},
/obj/effect/decal/warning_stripes/northwest,
/obj/structure/sign/securearea{
@@ -83840,9 +82128,7 @@
dir = 8
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"rIq" = (
/obj/structure/table,
/obj/item/clothing/mask/breath{
@@ -83986,9 +82272,7 @@
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"say" = (
/obj/structure/window/reinforced,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -84108,9 +82392,7 @@
dir = 4
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"svR" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 9
@@ -84201,8 +82483,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
"sOB" = (
@@ -84228,9 +82509,7 @@
dir = 10
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"sVC" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -84293,9 +82572,7 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"tgE" = (
/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
dir = 10
@@ -84430,8 +82707,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/security/main)
"tCC" = (
@@ -84527,9 +82803,7 @@
/obj/effect/spawner/window/reinforced,
/obj/effect/spawner/airlock/e_to_w,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"tYS" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -84539,9 +82813,7 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"tYX" = (
/obj/machinery/door/poddoor{
density = 0;
@@ -84626,14 +82898,11 @@
name = "\improper Auxiliary Restrooms"
})
"umT" = (
-/obj/structure/closet/crate/freezer,
-/obj/item/reagent_containers/iv_bag,
-/obj/item/reagent_containers/iv_bag,
-/obj/item/reagent_containers/iv_bag,
/obj/machinery/light{
dir = 1;
on = 1
},
+/obj/structure/closet/crate/freezer/iv_storage,
/turf/simulated/floor/plasteel{
dir = 5;
icon_state = "whiteblue"
@@ -84702,9 +82971,7 @@
dir = 8
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"uBN" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/wood,
@@ -84868,8 +83135,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
"vfv" = (
@@ -84914,8 +83180,7 @@
/area/engine/supermatter)
"vmT" = (
/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
- dir = 6;
- tag = "icon-intact (SOUTHEAST)"
+ dir = 6
},
/obj/structure/lattice,
/obj/structure/lattice/catwalk,
@@ -85314,12 +83579,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"wzo" = (
/obj/item/flashlight/lantern{
pixel_y = 7
@@ -85342,8 +83604,7 @@
})
"wAP" = (
/obj/structure/transit_tube{
- icon_state = "D-SW";
- tag = "icon-D-SW"
+ icon_state = "D-SW"
},
/obj/structure/lattice,
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
@@ -85355,8 +83616,7 @@
/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
"wEq" = (
@@ -85641,8 +83901,7 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "stage_stairs";
- tag = "icon-stage_stairs"
+ icon_state = "stage_stairs"
},
/area/security/podbay)
"xSh" = (
@@ -111063,7 +109322,7 @@ atr
aFz
atr
aAc
-aFz
+aUx
aKc
aDO
aFh
@@ -112091,7 +110350,7 @@ aDg
asS
aqJ
lgv
-aFz
+glM
aKc
aDO
aFi
@@ -112348,7 +110607,7 @@ aEV
aJy
aOY
aZb
-aBl
+aFl
akD
akD
akD
@@ -113119,7 +111378,7 @@ aFz
amE
aqJ
lgv
-aFl
+jZd
aKc
aDO
aFj
@@ -113376,7 +111635,7 @@ aFB
ayw
aOY
aZb
-aBn
+aFz
akD
akD
akD
@@ -114659,7 +112918,7 @@ akD
aFg
aFX
aKc
-atr
+aBl
lgv
aFA
amE
@@ -114916,7 +113175,7 @@ akD
amE
amE
amx
-aUx
+alF
lgv
vDc
amE
@@ -115687,7 +113946,7 @@ akD
aFg
aGE
aKc
-atr
+aBn
lgv
aFz
amE
@@ -129621,7 +127880,7 @@ bRg
bRg
bRg
bRg
-chl
+bKc
ciW
ckl
cij
@@ -130639,7 +128898,7 @@ cmL
nMx
cmL
kto
-ktv
+cmN
bIu
abq
bMj
@@ -132423,7 +130682,7 @@ cmL
cmL
cmL
cmL
-ktv
+cmN
bwL
aaa
abq
@@ -136021,7 +134280,7 @@ aaa
aaa
aaa
abq
-buL
+bqY
bwW
bxk
aaa
diff --git a/_maps/map_files/RandomRuins/LavaRuins/lavaland_biodome_beach.dmm b/_maps/map_files/RandomRuins/LavaRuins/lavaland_biodome_beach.dmm
index 210d381f45e..5ac556f1c12 100644
--- a/_maps/map_files/RandomRuins/LavaRuins/lavaland_biodome_beach.dmm
+++ b/_maps/map_files/RandomRuins/LavaRuins/lavaland_biodome_beach.dmm
@@ -181,7 +181,7 @@
/obj/item/tank/internals/emergency_oxygen,
/obj/item/trash/candy,
/obj/effect/turf_decal/sand,
-/obj/item/toy/figure/bartender,
+/obj/item/toy/figure/crew/bartender,
/turf/simulated/floor/beach/sand,
/area/ruin/powered/beach)
"aK" = (
diff --git a/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_animal_hospital.dmm b/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_animal_hospital.dmm
index 03fd9835019..45353b16565 100644
--- a/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_animal_hospital.dmm
+++ b/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_animal_hospital.dmm
@@ -17,8 +17,8 @@
"ad" = (
/obj/structure/flora/ausbushes/brflowers,
/turf/simulated/floor/grass{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/lavaland/surface/outdoors)
@@ -194,8 +194,8 @@
/obj/item/bodybag,
/obj/item/reagent_containers/food/drinks/bottle/vodka,
/turf/simulated/floor/grass{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/lavaland/surface/outdoors)
@@ -271,8 +271,8 @@
/area/ruin/powered/animal_hospital)
"aJ" = (
/turf/simulated/floor/plasteel/grimy{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/lavaland/surface/outdoors)
@@ -655,24 +655,24 @@
/area/ruin/powered/animal_hospital)
"bL" = (
/turf/simulated/floor/grass{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/lavaland/surface/outdoors)
"bM" = (
/obj/structure/flora/ausbushes/sunnybush,
/turf/simulated/floor/grass{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/lavaland/surface/outdoors)
"bO" = (
/obj/structure/flora/ausbushes/ppflowers,
/turf/simulated/floor/grass{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/lavaland/surface/outdoors)
@@ -743,8 +743,8 @@
dir = 6
},
/turf/simulated/floor/grass{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/lavaland/surface/outdoors)
@@ -753,8 +753,8 @@
dir = 1
},
/turf/simulated/floor/grass{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/lavaland/surface/outdoors)
@@ -763,8 +763,8 @@
dir = 10
},
/turf/simulated/floor/grass{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/lavaland/surface/outdoors)
@@ -773,16 +773,16 @@
dir = 1
},
/turf/simulated/floor/grass{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/lavaland/surface/outdoors)
"cb" = (
/obj/machinery/atmospherics/binary/valve,
/turf/simulated/floor/grass{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/lavaland/surface/outdoors)
@@ -861,8 +861,8 @@
"cn" = (
/obj/machinery/light,
/turf/simulated/floor/grass{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/lavaland/surface/outdoors)
@@ -932,8 +932,8 @@
dir = 4
},
/turf/simulated/floor/grass{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/lavaland/surface/outdoors)
@@ -964,8 +964,8 @@
dir = 1
},
/turf/simulated/floor/grass{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/lavaland/surface/outdoors)
@@ -975,8 +975,8 @@
dir = 1
},
/turf/simulated/floor/grass{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/lavaland/surface/outdoors)
diff --git a/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_ash_walker1.dmm b/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_ash_walker1.dmm
index 5da86c4d35a..844bfdf09c0 100644
--- a/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_ash_walker1.dmm
+++ b/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_ash_walker1.dmm
@@ -269,7 +269,6 @@
/area/ruin/unpowered/ash_walkers)
"aO" = (
/obj/structure/stone_tile/surrounding/cracked{
- icon_state = "cracked_surrounding1";
dir = 1
},
/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface,
@@ -999,7 +998,6 @@
/area/ruin/unpowered/ash_walkers)
"cA" = (
/obj/structure/stone_tile/slab/cracked{
- icon_state = "cracked_slab1";
dir = 4
},
/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface,
diff --git a/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_cultaltar.dmm b/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_cultaltar.dmm
index 403ade1e098..052ac940448 100644
--- a/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_cultaltar.dmm
+++ b/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_cultaltar.dmm
@@ -4,8 +4,8 @@
/area/template_noop)
"b" = (
/turf/simulated/floor/engine/cult{
- oxygen = 24;
nitrogen = 23;
+ oxygen = 24;
temperature = 300
},
/area/ruin/unpowered/misc_lavaruin)
@@ -26,8 +26,8 @@
"g" = (
/obj/effect/decal/cleanable/blood/old,
/turf/simulated/floor/engine/cult{
- oxygen = 24;
nitrogen = 23;
+ oxygen = 24;
temperature = 300
},
/area/ruin/unpowered/misc_lavaruin)
@@ -39,8 +39,8 @@
/obj/effect/decal/remains/human,
/obj/effect/decal/cleanable/blood/old,
/turf/simulated/floor/engine/cult{
- oxygen = 24;
nitrogen = 23;
+ oxygen = 24;
temperature = 300
},
/area/ruin/unpowered/misc_lavaruin)
@@ -48,8 +48,8 @@
/obj/effect/decal/remains/human,
/obj/item/melee/cultblade,
/turf/simulated/floor/engine/cult{
- oxygen = 24;
nitrogen = 23;
+ oxygen = 24;
temperature = 300
},
/area/ruin/unpowered/misc_lavaruin)
@@ -58,16 +58,16 @@
/obj/item/clothing/shoes/cult,
/obj/item/clothing/suit/hooded/cultrobes,
/turf/simulated/floor/engine/cult{
- oxygen = 24;
nitrogen = 23;
+ oxygen = 24;
temperature = 300
},
/area/ruin/unpowered/misc_lavaruin)
"m" = (
/obj/effect/decal/remains/human,
/turf/simulated/floor/engine/cult{
- oxygen = 24;
nitrogen = 23;
+ oxygen = 24;
temperature = 300
},
/area/ruin/unpowered/misc_lavaruin)
@@ -90,8 +90,8 @@
name = "ohfuck"
},
/turf/simulated/floor/engine/cult{
- oxygen = 24;
nitrogen = 23;
+ oxygen = 24;
temperature = 300
},
/area/ruin/unpowered/misc_lavaruin)
@@ -101,8 +101,8 @@
/obj/item/clothing/suit/hooded/cultrobes,
/obj/effect/decal/cleanable/blood/old,
/turf/simulated/floor/engine/cult{
- oxygen = 24;
nitrogen = 23;
+ oxygen = 24;
temperature = 300
},
/area/ruin/unpowered/misc_lavaruin)
diff --git a/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_dead_ratvar.dmm b/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_dead_ratvar.dmm
index 03959657af8..66a8ba0e158 100644
--- a/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_dead_ratvar.dmm
+++ b/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_dead_ratvar.dmm
@@ -16,8 +16,8 @@
"e" = (
/obj/item/stack/tile/brass,
/turf/simulated/floor/clockwork{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/lavaland/surface/outdoors/unexplored)
@@ -30,8 +30,8 @@
/area/lavaland/surface/outdoors/unexplored)
"h" = (
/turf/simulated/floor/clockwork{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/lavaland/surface/outdoors/unexplored)
@@ -45,8 +45,8 @@
"k" = (
/obj/item/clockwork/alloy_shards/small,
/turf/simulated/floor/clockwork{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/lavaland/surface/outdoors/unexplored)
@@ -68,8 +68,8 @@
"p" = (
/obj/item/clockwork/alloy_shards/medium,
/turf/simulated/floor/clockwork{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/lavaland/surface/outdoors/unexplored)
@@ -84,8 +84,8 @@
"s" = (
/obj/item/clockwork/alloy_shards/large,
/turf/simulated/floor/clockwork{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/lavaland/surface/outdoors/unexplored)
@@ -96,8 +96,8 @@
"u" = (
/obj/structure/grille/ratvar,
/turf/simulated/floor/clockwork{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/lavaland/surface/outdoors/unexplored)
@@ -109,8 +109,8 @@
"w" = (
/obj/structure/grille/ratvar/broken,
/turf/simulated/floor/clockwork{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/lavaland/surface/outdoors/unexplored)
@@ -118,48 +118,48 @@
/obj/structure/clockwork/wall_gear,
/obj/item/stack/tile/brass,
/turf/simulated/floor/clockwork{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/lavaland/surface/outdoors/unexplored)
"y" = (
/obj/item/clockwork/component/geis_capacitor/fallen_armor,
/turf/simulated/floor/clockwork{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/lavaland/surface/outdoors/unexplored)
"z" = (
/obj/structure/clockwork/wall_gear,
/turf/simulated/floor/clockwork{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/lavaland/surface/outdoors/unexplored)
"A" = (
/obj/item/clockwork/alloy_shards/clockgolem_remains,
/turf/simulated/floor/clockwork{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/lavaland/surface/outdoors/unexplored)
"B" = (
/obj/item/clockwork/weapon/ratvarian_spear,
/turf/simulated/floor/clockwork{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/lavaland/surface/outdoors/unexplored)
"C" = (
/obj/item/clockwork/alloy_shards/medium/gear_bit,
/turf/simulated/floor/clockwork{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/lavaland/surface/outdoors/unexplored)
@@ -174,8 +174,8 @@
"F" = (
/obj/structure/dead_ratvar,
/turf/simulated/floor/clockwork{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/lavaland/surface/outdoors/unexplored)
diff --git a/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_envy.dmm b/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_envy.dmm
index c04e4aaa0f7..9af10e440c2 100644
--- a/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_envy.dmm
+++ b/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_envy.dmm
@@ -13,10 +13,10 @@
/area/ruin/unpowered/misc_lavaruin)
"e" = (
/obj/structure/mirror{
+ broken = 1;
desc = "This mirror has been shattered. It looks like the bad luck energies spilling from it are taking immediate effect on your surroundings!";
icon_state = "mirror_broke";
- pixel_x = -28;
- broken = 1
+ pixel_x = -28
},
/obj/item/clothing/suit/bloated_human,
/obj/effect/decal/cleanable/blood,
@@ -25,20 +25,20 @@
/area/ruin/unpowered/misc_lavaruin)
"f" = (
/obj/structure/mirror{
+ broken = 1;
desc = "This mirror has been shattered. It looks like the bad luck energies spilling from it are taking immediate effect on your surroundings!";
icon_state = "mirror_broke";
- pixel_x = 28;
- broken = 1
+ pixel_x = 28
},
/turf/simulated/floor/plating/burnt,
/area/ruin/unpowered/misc_lavaruin)
"g" = (
/obj/effect/decal/cleanable/blood/tracks,
/obj/structure/mirror{
+ broken = 1;
desc = "This mirror has been shattered. It looks like the bad luck energies spilling from it are taking immediate effect on your surroundings!";
icon_state = "mirror_broke";
- pixel_x = -28;
- broken = 1
+ pixel_x = -28
},
/turf/simulated/floor/plating,
/area/ruin/unpowered/misc_lavaruin)
@@ -55,29 +55,29 @@
/area/ruin/unpowered/misc_lavaruin)
"k" = (
/obj/structure/mirror{
+ broken = 1;
desc = "This mirror has been shattered. It looks like the bad luck energies spilling from it are taking immediate effect on your surroundings!";
icon_state = "mirror_broke";
- pixel_y = 28;
- broken = 1
+ pixel_y = 28
},
/obj/item/kitchen/knife/envy,
/turf/simulated/floor/plating,
/area/ruin/unpowered/misc_lavaruin)
"l" = (
/obj/structure/mirror{
+ broken = 1;
desc = "This mirror has been shattered. It looks like the bad luck energies spilling from it are taking immediate effect on your surroundings!";
icon_state = "mirror_broke";
- pixel_x = 28;
- broken = 1
+ pixel_x = 28
},
/turf/simulated/floor/plating,
/area/ruin/unpowered/misc_lavaruin)
"m" = (
/obj/structure/mirror{
+ broken = 1;
desc = "This mirror has been shattered. It looks like the bad luck energies spilling from it are taking immediate effect on your surroundings!";
icon_state = "mirror_broke";
- pixel_x = -28;
- broken = 1
+ pixel_x = -28
},
/turf/simulated/floor/plating,
/area/ruin/unpowered/misc_lavaruin)
@@ -86,10 +86,10 @@
/area/ruin/unpowered/misc_lavaruin)
"o" = (
/obj/structure/mirror{
+ broken = 1;
desc = "This mirror has been shattered. It looks like the bad luck energies spilling from it are taking immediate effect on your surroundings!";
icon_state = "mirror_broke";
- pixel_x = -28;
- broken = 1
+ pixel_x = -28
},
/turf/simulated/floor/plating/damaged,
/area/ruin/unpowered/misc_lavaruin)
diff --git a/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_golem_ship.dmm b/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_golem_ship.dmm
index 8e007e8396f..114b513e3a5 100644
--- a/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_golem_ship.dmm
+++ b/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_golem_ship.dmm
@@ -28,7 +28,6 @@
/area/shuttle/freegolem)
"h" = (
/obj/structure/shuttle/engine/heater{
- icon_state = "heater";
dir = 4
},
/obj/structure/window/reinforced{
@@ -105,8 +104,7 @@
name = "statue of the Liberator"
},
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/turf/simulated/floor/mineral/titanium/purple,
/area/shuttle/freegolem)
@@ -153,8 +151,7 @@
/area/shuttle/freegolem)
"C" = (
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/obj/structure/table/wood,
/obj/item/bedsheet/rd/royal_cape{
@@ -172,7 +169,6 @@
"D" = (
/obj/machinery/light,
/obj/structure/chair/comfy/purp{
- icon_state = "comfychair";
dir = 1
},
/turf/simulated/floor/mineral/titanium/purple,
diff --git a/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_hermit.dmm b/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_hermit.dmm
index 7bea889e743..0c8b30da008 100644
--- a/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_hermit.dmm
+++ b/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_hermit.dmm
@@ -170,8 +170,8 @@
"J" = (
/obj/effect/spawner/window/shuttle,
/turf/simulated/floor/plating{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/ruin/powered)
diff --git a/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_hierophant.dmm b/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_hierophant.dmm
index 8cdc6844bfc..51249894e4c 100644
--- a/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_hierophant.dmm
+++ b/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_hierophant.dmm
@@ -7,8 +7,8 @@
/area/ruin/unpowered/hierophant)
"c" = (
/obj/effect/light_emitter{
- light_range = 3;
- light_power = 5
+ light_power = 5;
+ light_range = 3
},
/turf/simulated/floor/indestructible/hierophant,
/area/ruin/unpowered/hierophant)
@@ -21,8 +21,8 @@
/area/ruin/unpowered/hierophant)
"f" = (
/obj/effect/light_emitter{
- light_range = 3;
- light_power = 5
+ light_power = 5;
+ light_range = 3
},
/turf/simulated/floor/indestructible/hierophant/two,
/area/ruin/unpowered/hierophant)
diff --git a/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_pizzaparty.dmm b/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_pizzaparty.dmm
index 90a221bf5fa..65615755ac4 100644
--- a/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_pizzaparty.dmm
+++ b/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_pizzaparty.dmm
@@ -15,8 +15,8 @@
"e" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/ruin/unpowered/misc_lavaruin)
@@ -24,8 +24,8 @@
/obj/structure/table/wood,
/obj/item/storage/box/cups,
/turf/simulated/floor/wood{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/ruin/unpowered/misc_lavaruin)
@@ -33,16 +33,16 @@
/obj/structure/reagent_dispensers/water_cooler/pizzaparty,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/wood{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/ruin/unpowered/misc_lavaruin)
"h" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/wood{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/ruin/unpowered/misc_lavaruin)
@@ -50,8 +50,8 @@
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/wood{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/ruin/unpowered/misc_lavaruin)
@@ -59,8 +59,8 @@
/obj/item/reagent_containers/food/snacks/mushroompizzaslice,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/ruin/unpowered/misc_lavaruin)
@@ -69,8 +69,8 @@
/obj/effect/spawner/lootdrop/pizzaparty,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/wood{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/ruin/unpowered/misc_lavaruin)
@@ -83,8 +83,8 @@
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/cobweb2,
/turf/simulated/floor/wood{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/ruin/unpowered/misc_lavaruin)
@@ -92,8 +92,8 @@
/obj/item/chair/wood/wings,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/ruin/unpowered/misc_lavaruin)
@@ -101,8 +101,8 @@
/obj/structure/glowshroom/single,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/wood{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/ruin/unpowered/misc_lavaruin)
@@ -110,8 +110,8 @@
/obj/item/trash/plate,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/wood{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/ruin/unpowered/misc_lavaruin)
@@ -119,8 +119,8 @@
/obj/effect/decal/remains/human,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/wood{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/ruin/unpowered/misc_lavaruin)
@@ -128,8 +128,8 @@
/obj/item/chair/wood/wings,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/wood{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/ruin/unpowered/misc_lavaruin)
@@ -141,15 +141,15 @@
name = "party hat"
},
/turf/simulated/floor/wood{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/ruin/unpowered/misc_lavaruin)
"s" = (
/turf/simulated/floor/wood{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/ruin/unpowered/misc_lavaruin)
@@ -157,16 +157,16 @@
/obj/structure/chair/wood/wings,
/obj/effect/decal/remains/human,
/turf/simulated/floor/wood{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/ruin/unpowered/misc_lavaruin)
"u" = (
/obj/structure/glowshroom/single,
/turf/simulated/floor/wood{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/ruin/unpowered/misc_lavaruin)
@@ -179,8 +179,8 @@
/obj/item/kitchen/utensil/fork,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/wood{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/ruin/unpowered/misc_lavaruin)
@@ -188,8 +188,8 @@
/obj/structure/table/wood,
/obj/effect/spawner/lootdrop/pizzaparty,
/turf/simulated/floor/wood{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/ruin/unpowered/misc_lavaruin)
@@ -197,8 +197,8 @@
/obj/structure/table/wood,
/obj/item/trash/plate,
/turf/simulated/floor/wood{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/ruin/unpowered/misc_lavaruin)
@@ -207,8 +207,8 @@
/obj/structure/glowshroom/single,
/obj/item/a_gift,
/turf/simulated/floor/wood{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/ruin/unpowered/misc_lavaruin)
@@ -217,16 +217,16 @@
/obj/item/trash/plate,
/obj/item/kitchen/utensil/fork,
/turf/simulated/floor/wood{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/ruin/unpowered/misc_lavaruin)
"B" = (
/obj/effect/baseturf_helper/lava_land/surface,
/turf/simulated/floor/wood{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/ruin/unpowered/misc_lavaruin)
@@ -236,8 +236,8 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/ruin/unpowered/misc_lavaruin)
@@ -246,8 +246,8 @@
/obj/item/reagent_containers/food/snacks/margheritaslice,
/obj/item/trash/plate,
/turf/simulated/floor/wood{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/ruin/unpowered/misc_lavaruin)
@@ -255,8 +255,8 @@
/obj/structure/table/wood,
/obj/item/reagent_containers/food/snacks/meatpizzaslice,
/turf/simulated/floor/wood{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/ruin/unpowered/misc_lavaruin)
@@ -264,24 +264,24 @@
/obj/structure/table/wood,
/obj/item/reagent_containers/food/snacks/sliceable/birthdaycake,
/turf/simulated/floor/wood{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/ruin/unpowered/misc_lavaruin)
"G" = (
/obj/structure/table/wood,
/turf/simulated/floor/wood{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/ruin/unpowered/misc_lavaruin)
"H" = (
/obj/item/chair/wood/wings,
/turf/simulated/floor/wood{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/ruin/unpowered/misc_lavaruin)
@@ -289,8 +289,8 @@
/obj/item/kitchen/utensil/fork,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/ruin/unpowered/misc_lavaruin)
@@ -298,8 +298,8 @@
/obj/structure/glowshroom/single,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/ruin/unpowered/misc_lavaruin)
@@ -310,8 +310,8 @@
/obj/effect/decal/remains/human,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/wood{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/ruin/unpowered/misc_lavaruin)
@@ -319,8 +319,8 @@
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/ruin/unpowered/misc_lavaruin)
@@ -328,8 +328,8 @@
/obj/effect/decal/cleanable/dirt,
/obj/item/a_gift,
/turf/simulated/floor/wood{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/ruin/unpowered/misc_lavaruin)
@@ -342,8 +342,8 @@
/obj/item/kitchen/knife,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/wood{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/ruin/unpowered/misc_lavaruin)
@@ -353,15 +353,15 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/wood{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/ruin/unpowered/misc_lavaruin)
"Q" = (
/turf/simulated/floor/plating{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/ruin/unpowered/misc_lavaruin)
diff --git a/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_sloth.dmm b/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_sloth.dmm
index 4a556a25f9d..a3dd45e2845 100644
--- a/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_sloth.dmm
+++ b/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_sloth.dmm
@@ -8,13 +8,11 @@
"c" = (
/obj/item/paper/fluff/stations/lavaland/sloth/note,
/turf/simulated/floor/sepia{
- blocks_air = 0;
slowdown = 10
},
/area/ruin/unpowered/misc_lavaruin)
"d" = (
/turf/simulated/floor/sepia{
- blocks_air = 0;
slowdown = 10
},
/area/ruin/unpowered/misc_lavaruin)
@@ -22,7 +20,6 @@
/obj/machinery/door/airlock/wood,
/obj/structure/fans/tiny/invisible,
/turf/simulated/floor/sepia{
- blocks_air = 0;
slowdown = 10
},
/area/ruin/unpowered/misc_lavaruin)
@@ -30,7 +27,6 @@
/obj/structure/table/wood,
/obj/item/reagent_containers/food/snacks/grown/citrus/orange,
/turf/simulated/floor/sepia{
- blocks_air = 0;
slowdown = 10
},
/area/ruin/unpowered/misc_lavaruin)
@@ -38,14 +34,12 @@
/obj/structure/bed,
/obj/item/bedsheet/brown,
/turf/simulated/floor/sepia{
- blocks_air = 0;
slowdown = 10
},
/area/ruin/unpowered/misc_lavaruin)
"h" = (
/obj/effect/baseturf_helper/lava_land/surface,
/turf/simulated/floor/sepia{
- blocks_air = 0;
slowdown = 10
},
/area/ruin/unpowered/misc_lavaruin)
diff --git a/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_swarmer_crash.dmm b/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_swarmer_crash.dmm
index 8a64ada3f7f..4f6912d0bcb 100644
--- a/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_swarmer_crash.dmm
+++ b/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_swarmer_crash.dmm
@@ -10,8 +10,8 @@
/area/ruin/unpowered/misc_lavaruin)
"d" = (
/turf/simulated/floor/mineral/plastitanium/red{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/ruin/unpowered/misc_lavaruin)
@@ -24,16 +24,16 @@
"f" = (
/mob/living/simple_animal/hostile/megafauna/swarmer_swarm_beacon,
/turf/simulated/floor/mineral/plastitanium/red{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/ruin/unpowered/misc_lavaruin)
"g" = (
/obj/effect/baseturf_helper/lava_land/surface,
/turf/simulated/floor/mineral/plastitanium/red{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/ruin/unpowered/misc_lavaruin)
diff --git a/_maps/map_files/RandomRuins/SpaceRuins/abandonedzoo.dmm b/_maps/map_files/RandomRuins/SpaceRuins/abandonedzoo.dmm
index e189a85dd73..11b243a5745 100644
--- a/_maps/map_files/RandomRuins/SpaceRuins/abandonedzoo.dmm
+++ b/_maps/map_files/RandomRuins/SpaceRuins/abandonedzoo.dmm
@@ -9,8 +9,8 @@
power = 1
},
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/turf/simulated/floor/plating,
/area/ruin/unpowered)
@@ -20,8 +20,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plating,
/area/ruin/unpowered)
@@ -32,8 +31,8 @@
power = 1
},
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/obj/structure/cable{
d1 = 2;
@@ -55,8 +54,8 @@
tag = ""
},
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/turf/simulated/floor/plating,
/area/ruin/unpowered)
@@ -93,8 +92,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/plating,
/area/ruin/unpowered)
@@ -160,7 +158,6 @@
/obj/item/clothing/mask/surgical,
/obj/item/razor,
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/turf/simulated/floor/plasteel{
@@ -178,8 +175,7 @@
},
/obj/item/storage/box/beakers,
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -202,8 +198,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/obj/machinery/door/airlock/highsecurity{
name = "Bio Containment";
@@ -220,14 +215,13 @@
power = 1
},
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/structure/cable{
d1 = 2;
@@ -246,8 +240,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/turf/simulated/wall/r_wall,
/area/ruin/unpowered)
@@ -256,8 +249,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/obj/item/gun/energy/floragun,
/turf/simulated/floor/plasteel{
@@ -268,8 +260,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel,
/area/ruin/unpowered)
@@ -279,8 +270,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -295,8 +285,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/obj/structure/cable{
d1 = 1;
@@ -325,8 +314,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/wall/r_wall,
/area/ruin/unpowered)
@@ -368,12 +356,11 @@
"aS" = (
/obj/machinery/power/apc/worn_out{
dir = 8;
- pixel_x = -24;
- pixel_y = 0
+ pixel_x = -24
},
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/obj/structure/rack,
/obj/item/melee/baton/cattleprod,
@@ -391,8 +378,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/structure/rack,
/obj/item/clothing/suit/space/hardsuit/medical,
@@ -478,8 +464,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel,
/area/ruin/unpowered)
@@ -488,8 +473,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel,
/area/ruin/unpowered)
@@ -508,8 +492,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -586,8 +569,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/structure/cable{
d1 = 1;
@@ -626,8 +608,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -637,8 +618,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/obj/structure/cable{
d1 = 2;
@@ -692,7 +672,6 @@
icon_state = "pipe-c"
},
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/turf/simulated/floor/plasteel{
diff --git a/_maps/map_files/RandomRuins/SpaceRuins/blowntcommsat.dmm b/_maps/map_files/RandomRuins/SpaceRuins/blowntcommsat.dmm
index de2ab18f8ab..8bb75d2e02d 100644
--- a/_maps/map_files/RandomRuins/SpaceRuins/blowntcommsat.dmm
+++ b/_maps/map_files/RandomRuins/SpaceRuins/blowntcommsat.dmm
@@ -54,15 +54,14 @@
/area/ruin/tcommsat)
"an" = (
/obj/machinery/power/apc{
- cell_type = 2500;
dir = 1;
name = "Worn-out APC";
pixel_x = 1;
pixel_y = 26
},
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/turf/simulated/floor/plating/airless,
/area/ruin/tcommsat)
@@ -114,8 +113,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/plating/airless,
/area/ruin/tcommsat)
diff --git a/_maps/map_files/RandomRuins/SpaceRuins/clownmime.dmm b/_maps/map_files/RandomRuins/SpaceRuins/clownmime.dmm
index f3c7a0b0e89..4158ecd585f 100644
--- a/_maps/map_files/RandomRuins/SpaceRuins/clownmime.dmm
+++ b/_maps/map_files/RandomRuins/SpaceRuins/clownmime.dmm
@@ -7,8 +7,6 @@
/area/space/nearstation)
"c" = (
/obj/structure/shuttle/engine/heater{
- tag = "icon-heater (NORTH)";
- icon_state = "heater";
dir = 1
},
/obj/structure/window/reinforced,
@@ -107,8 +105,6 @@
/area/space/nearstation)
"A" = (
/obj/structure/shuttle/engine/heater{
- tag = "icon-heater (EAST)";
- icon_state = "heater";
dir = 4
},
/obj/structure/window/reinforced{
@@ -119,13 +115,11 @@
"B" = (
/obj/structure/shuttle/engine/propulsion{
dir = 4;
- icon_state = "propulsion_l";
- tag = "icon-propulsion_l (WEST)"
+ icon_state = "propulsion_l"
},
/obj/structure/shuttle/engine/propulsion{
dir = 4;
- icon_state = "burst_r";
- tag = "icon-burst_r (WEST)"
+ icon_state = "burst_r"
},
/turf/simulated/floor/plating/airless,
/area/space/nearstation)
@@ -140,8 +134,7 @@
"E" = (
/obj/structure/shuttle/engine/propulsion{
dir = 4;
- icon_state = "propulsion_l";
- tag = "icon-propulsion_l (WEST)"
+ icon_state = "propulsion_l"
},
/turf/simulated/floor/plating/airless,
/area/space/nearstation)
@@ -204,13 +197,11 @@
"R" = (
/obj/structure/shuttle/engine/propulsion{
dir = 4;
- icon_state = "propulsion_l";
- tag = "icon-propulsion_l (WEST)"
+ icon_state = "propulsion_l"
},
/obj/structure/shuttle/engine/propulsion{
dir = 4;
- icon_state = "propulsion_l";
- tag = "icon-propulsion_l (WEST)"
+ icon_state = "propulsion_l"
},
/turf/simulated/floor/plating/airless,
/area/space/nearstation)
diff --git a/_maps/map_files/RandomRuins/SpaceRuins/debris1.dmm b/_maps/map_files/RandomRuins/SpaceRuins/debris1.dmm
index af01a5bc274..85f4401cb4b 100644
--- a/_maps/map_files/RandomRuins/SpaceRuins/debris1.dmm
+++ b/_maps/map_files/RandomRuins/SpaceRuins/debris1.dmm
@@ -101,7 +101,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plating/burnt,
diff --git a/_maps/map_files/RandomRuins/SpaceRuins/deepstorage.dmm b/_maps/map_files/RandomRuins/SpaceRuins/deepstorage.dmm
index 94f5c923dd9..d8681d55396 100644
--- a/_maps/map_files/RandomRuins/SpaceRuins/deepstorage.dmm
+++ b/_maps/map_files/RandomRuins/SpaceRuins/deepstorage.dmm
@@ -113,7 +113,6 @@
"aj" = (
/obj/structure/closet/cardboard,
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/obj/item/flashlight/flare,
@@ -173,8 +172,7 @@
"ao" = (
/obj/structure/closet/cardboard,
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/item/ammo_box/c9mm,
/obj/item/ammo_box/c9mm,
@@ -234,9 +232,7 @@
},
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
- pixel_x = 11;
- pixel_y = 0
+ pixel_x = 11
},
/turf/simulated/floor/plasteel{
icon_state = "freezerfloor"
@@ -256,8 +252,7 @@
pixel_y = 6
},
/obj/item/gun/projectile/automatic/wt550{
- pixel_x = 2;
- pixel_y = 0
+ pixel_x = 2
},
/obj/structure/reagent_dispensers/peppertank{
pixel_y = 30
@@ -342,13 +337,11 @@
"aH" = (
/obj/machinery/vending/clothing,
/turf/simulated/floor/wood{
- tag = "icon-wood-broken";
icon_state = "wood-broken"
},
/area/ruin/unpowered)
"aI" = (
/turf/simulated/floor/wood{
- tag = "icon-wood-broken2";
icon_state = "wood-broken2"
},
/area/ruin/unpowered)
@@ -391,7 +384,6 @@
"aO" = (
/obj/structure/closet/radiation,
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/turf/simulated/floor/plasteel,
@@ -404,15 +396,13 @@
/obj/item/reagent_containers/food/drinks/cans/cola,
/obj/item/reagent_containers/food/drinks/cans/cola,
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/ruin/unpowered)
"aQ" = (
/obj/structure/closet/wardrobe/pink,
/turf/simulated/floor/wood{
- tag = "icon-wood-broken2";
icon_state = "wood-broken2"
},
/area/ruin/unpowered)
@@ -422,7 +412,6 @@
"aS" = (
/obj/structure/bed,
/turf/simulated/floor/wood{
- tag = "icon-wood-broken";
icon_state = "wood-broken"
},
/area/ruin/unpowered)
@@ -475,14 +464,12 @@
/area/ruin/unpowered)
"aZ" = (
/turf/simulated/floor/wood{
- tag = "icon-wood-broken";
icon_state = "wood-broken"
},
/area/ruin/unpowered)
"ba" = (
/obj/structure/bed,
/turf/simulated/floor/wood{
- tag = "icon-wood-broken2";
icon_state = "wood-broken2"
},
/area/ruin/unpowered)
@@ -519,7 +506,6 @@
/area/ruin/unpowered)
"bf" = (
/obj/structure/closet/fireaxecabinet{
- tag = "icon-fireaxe0130";
icon_state = "fireaxe0130";
pixel_y = 28
},
@@ -527,7 +513,6 @@
/area/ruin/unpowered)
"bg" = (
/obj/machinery/sleeper{
- icon_state = "sleeper-open";
dir = 4
},
/obj/machinery/light/small{
@@ -550,7 +535,6 @@
/area/ruin/unpowered)
"bj" = (
/obj/machinery/sleeper{
- icon_state = "sleeper-open";
dir = 4
},
/turf/simulated/floor/plasteel,
@@ -593,8 +577,8 @@
/area/ruin/unpowered)
"br" = (
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/obj/machinery/power/port_gen/pacman,
/turf/simulated/floor/plasteel,
@@ -637,7 +621,6 @@
icon_state = "1-2"
},
/obj/machinery/power/terminal{
- icon_state = "term";
dir = 1
},
/turf/simulated/floor/plasteel,
@@ -650,13 +633,11 @@
/obj/structure/table,
/obj/machinery/kitchen_machine/microwave,
/turf/simulated/floor/plasteel{
- tag = "icon-bar";
icon_state = "bar"
},
/area/ruin/unpowered)
"bB" = (
/turf/simulated/floor/plasteel{
- tag = "icon-bar";
icon_state = "bar"
},
/area/ruin/unpowered)
@@ -664,7 +645,6 @@
/obj/structure/table,
/obj/item/storage/box/donkpockets,
/turf/simulated/floor/plasteel{
- tag = "icon-bar";
icon_state = "bar"
},
/area/ruin/unpowered)
@@ -672,7 +652,6 @@
/obj/structure/table,
/obj/item/reagent_containers/food/snacks/beans,
/turf/simulated/floor/plasteel{
- tag = "icon-bar";
icon_state = "bar"
},
/area/ruin/unpowered)
@@ -681,7 +660,6 @@
dir = 8
},
/turf/simulated/floor/plasteel{
- tag = "icon-bar";
icon_state = "bar"
},
/area/ruin/unpowered)
@@ -692,14 +670,13 @@
"bG" = (
/obj/machinery/power/apc/noalarm{
dir = 8;
- name = "Bunker APC";
keep_preset_name = 1;
- pixel_x = -24;
- pixel_y = 0
+ name = "Bunker APC";
+ pixel_x = -24
},
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/turf/simulated/floor/plasteel,
/area/ruin/unpowered)
@@ -708,7 +685,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plasteel,
@@ -730,14 +706,12 @@
/obj/structure/table,
/obj/item/kitchen/knife,
/turf/simulated/floor/plasteel{
- tag = "icon-bar";
icon_state = "bar"
},
/area/ruin/unpowered)
"bL" = (
/obj/structure/table,
/turf/simulated/floor/plasteel{
- tag = "icon-bar";
icon_state = "bar"
},
/area/ruin/unpowered)
@@ -745,7 +719,6 @@
/obj/structure/table,
/obj/item/kitchen/utensil/fork,
/turf/simulated/floor/plasteel{
- tag = "icon-bar";
icon_state = "bar"
},
/area/ruin/unpowered)
@@ -759,8 +732,6 @@
/area/ruin/unpowered)
"bP" = (
/obj/structure/chair/office/dark{
- tag = "icon-officechair_dark (EAST)";
- icon_state = "officechair_dark";
dir = 4
},
/turf/simulated/floor/plasteel,
@@ -772,14 +743,12 @@
"bR" = (
/obj/machinery/smartfridge,
/turf/simulated/floor/plasteel{
- tag = "icon-bar";
icon_state = "bar"
},
/area/ruin/unpowered)
"bS" = (
/obj/machinery/light/small,
/turf/simulated/floor/plasteel{
- tag = "icon-bar";
icon_state = "bar"
},
/area/ruin/unpowered)
@@ -809,7 +778,6 @@
dir = 1;
name = "Bunker Entrance";
network = list("Bunker1");
- pixel_x = 0;
pixel_y = 2
},
/turf/simulated/floor/plasteel,
diff --git a/_maps/map_files/RandomRuins/SpaceRuins/derelict2.dmm b/_maps/map_files/RandomRuins/SpaceRuins/derelict2.dmm
index f3b7a74c0b3..4c66eec4809 100644
--- a/_maps/map_files/RandomRuins/SpaceRuins/derelict2.dmm
+++ b/_maps/map_files/RandomRuins/SpaceRuins/derelict2.dmm
@@ -4,8 +4,6 @@
/area/template_noop)
"b" = (
/obj/structure/window/reinforced{
- tag = "icon-rwindow (EAST)";
- icon_state = "rwindow";
dir = 4
},
/turf/template_noop,
@@ -16,21 +14,15 @@
/area/ruin/powered)
"d" = (
/obj/structure/window/reinforced{
- tag = "icon-rwindow (WEST)";
- icon_state = "rwindow";
dir = 8
},
/turf/template_noop,
/area/space/nearstation)
"e" = (
/obj/structure/window/reinforced{
- tag = "icon-rwindow (EAST)";
- icon_state = "rwindow";
dir = 4
},
/obj/structure/window/reinforced{
- tag = "icon-rwindow (WEST)";
- icon_state = "rwindow";
dir = 8
},
/turf/simulated/floor/plating,
@@ -45,8 +37,6 @@
/area/ruin/powered)
"h" = (
/obj/machinery/light/small{
- tag = "icon-bulb1 (NORTH)";
- icon_state = "bulb1";
dir = 1
},
/turf/simulated/floor/plasteel,
@@ -56,8 +46,6 @@
/area/ruin/powered)
"j" = (
/obj/machinery/light/small{
- tag = "icon-bulb1 (EAST)";
- icon_state = "bulb1";
dir = 4
},
/turf/simulated/floor/plasteel,
@@ -69,16 +57,12 @@
"l" = (
/obj/structure/window/reinforced,
/obj/structure/window/reinforced{
- tag = "icon-rwindow (NORTH)";
- icon_state = "rwindow";
dir = 1
},
/turf/simulated/floor/plating,
/area/ruin/powered)
"m" = (
/obj/structure/chair{
- tag = "icon-chair (EAST)";
- icon_state = "chair";
dir = 4
},
/obj/effect/decal/remains/human,
@@ -99,8 +83,6 @@
/area/ruin/powered)
"o" = (
/obj/structure/chair{
- tag = "icon-chair (WEST)";
- icon_state = "chair";
dir = 8
},
/obj/effect/decal/remains/human,
@@ -108,16 +90,12 @@
/area/ruin/powered)
"p" = (
/obj/structure/window/reinforced{
- tag = "icon-rwindow (NORTH)";
- icon_state = "rwindow";
dir = 1
},
/turf/template_noop,
/area/space/nearstation)
"q" = (
/obj/machinery/light/small{
- tag = "icon-bulb1 (WEST)";
- icon_state = "bulb1";
dir = 8
},
/turf/simulated/floor/plasteel,
diff --git a/_maps/map_files/RandomRuins/SpaceRuins/derelict4.dmm b/_maps/map_files/RandomRuins/SpaceRuins/derelict4.dmm
index 019d72b4145..c52eb3477d3 100644
--- a/_maps/map_files/RandomRuins/SpaceRuins/derelict4.dmm
+++ b/_maps/map_files/RandomRuins/SpaceRuins/derelict4.dmm
@@ -26,8 +26,6 @@
/area/ruin/unpowered)
"i" = (
/obj/structure/window/reinforced{
- tag = "icon-rwindow (WEST)";
- icon_state = "rwindow";
dir = 8
},
/obj/structure/chair/comfy/shuttle,
@@ -43,9 +41,7 @@
/area/ruin/unpowered)
"l" = (
/obj/structure/shuttle/engine/propulsion{
- dir = 4;
- icon_state = "propulsion";
- tag = "icon-propulsion (WEST)"
+ dir = 4
},
/turf/simulated/floor/plating/airless,
/area/ruin/unpowered)
@@ -76,8 +72,6 @@
/area/ruin/unpowered)
"r" = (
/obj/structure/window/reinforced{
- tag = "icon-rwindow (WEST)";
- icon_state = "rwindow";
dir = 8
},
/obj/structure/chair/comfy/shuttle{
diff --git a/_maps/map_files/RandomRuins/SpaceRuins/dj.dmm b/_maps/map_files/RandomRuins/SpaceRuins/dj.dmm
index 334a71acb15..f197aac8d94 100644
--- a/_maps/map_files/RandomRuins/SpaceRuins/dj.dmm
+++ b/_maps/map_files/RandomRuins/SpaceRuins/dj.dmm
@@ -160,8 +160,8 @@
},
/obj/machinery/tcomms/relay/ruskie,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- dir = 8
+ dir = 8;
+ icon_state = "vault"
},
/area/djstation)
"av" = (
@@ -282,16 +282,16 @@
/area/djstation)
"aG" = (
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/obj/machinery/power/smes/magical{
desc = "A high-capacity superconducting magnetic energy storage (SMES) unit.";
name = "power storage unit"
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- dir = 8
+ dir = 8;
+ icon_state = "vault"
},
/area/djstation)
"aH" = (
@@ -342,8 +342,8 @@
/area/djstation)
"aM" = (
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/obj/machinery/power/apc/noalarm{
dir = 0;
@@ -398,13 +398,10 @@
/turf/simulated/floor/plating,
/area/djstation)
"aR" = (
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0"
- },
+/obj/machinery/door/airlock/maintenance,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "rampbottom";
- tag = "icon-stage_stairs"
+ icon_state = "rampbottom"
},
/area/djstation)
"aS" = (
@@ -467,8 +464,8 @@
},
/obj/structure/table,
/obj/item/paper/djstation{
- name = "communications update";
- info = "Station has stopped responding to my reports for about the past month. I assume Vostok just has his knickers in a twist.
Hell, not my problem. Got all the vodka and cigarettes I need to last me a year."
+ info = "Station has stopped responding to my reports for about the past month. I assume Vostok just has his knickers in a twist.
Hell, not my problem. Got all the vodka and cigarettes I need to last me a year.";
+ name = "communications update"
},
/turf/simulated/floor/plasteel{
icon_state = "bar"
@@ -661,20 +658,19 @@
/obj/structure/table,
/obj/item/radio/intercom/pirate,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkblue"
},
/area/djstation)
"by" = (
/obj/structure/table,
/obj/item/paper/djstation{
+ info = "Welcome new owner!
You have purchased the latest in listening equipment. The telecommunication setup we created is the best in listening to common and private radio fequencies. Here is a step by step guide to start listening in on those saucy radio channels:
- Equip yourself with a multi-tool
- Use the multitool on each machine, that is the broadcaster, receiver and the relay.
- Turn all the machines on, it has already been configured for you to listen on.
Simple as that. Now to listen to the private channels, you'll have to configure the intercoms, located on the front desk. Here is a list of frequencies for you to listen on.
- 145.7 - Common Channel
- 144.7 - Private AI Channel
- 135.9 - Security Channel
- 135.7 - Engineering Channel
- 135.5 - Medical Channel
- 135.3 - Command Channel
- 135.1 - Science Channel
- 134.7 - Supply Channel
";
pixel_x = 5;
- pixel_y = 17;
- info = "Welcome new owner!
You have purchased the latest in listening equipment. The telecommunication setup we created is the best in listening to common and private radio fequencies. Here is a step by step guide to start listening in on those saucy radio channels:
- Equip yourself with a multi-tool
- Use the multitool on each machine, that is the broadcaster, receiver and the relay.
- Turn all the machines on, it has already been configured for you to listen on.
Simple as that. Now to listen to the private channels, you'll have to configure the intercoms, located on the front desk. Here is a list of frequencies for you to listen on.
- 145.7 - Common Channel
- 144.7 - Private AI Channel
- 135.9 - Security Channel
- 135.7 - Engineering Channel
- 135.5 - Medical Channel
- 135.3 - Command Channel
- 135.1 - Science Channel
- 134.7 - Supply Channel
"
+ pixel_y = 17
},
/obj/item/phone{
- name = "spin-dial phone";
desc = "An old Russian phone. The dial tone is still humming.";
+ name = "spin-dial phone";
pixel_x = 1;
pixel_y = 1
},
@@ -711,17 +707,14 @@
},
/area/djstation)
"bD" = (
-/obj/machinery/sleeper{
- dir = 8
- },
+/obj/machinery/sleeper,
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
/area/djstation)
"bE" = (
/obj/machinery/door/airlock{
- name = "Restroom";
- req_access_txt = "0"
+ name = "Restroom"
},
/turf/simulated/floor/plasteel{
icon_state = "freezerfloor"
@@ -735,7 +728,6 @@
/area/djstation)
"bG" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkblue"
},
/area/djstation)
@@ -752,8 +744,6 @@
"bI" = (
/obj/structure/curtain/open/shower,
/obj/machinery/shower{
- tag = "icon-shower (EAST)";
- icon_state = "shower";
dir = 4
},
/obj/effect/decal/cleanable/dirt,
@@ -786,8 +776,7 @@
master_tag = "dj_station_airlock";
name = "interior access button";
pixel_x = 25;
- pixel_y = -25;
- req_access_txt = "0"
+ pixel_y = -25
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -800,8 +789,8 @@
/obj/machinery/portable_atmospherics/canister/air,
/obj/machinery/door/window/westleft,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- dir = 1
+ dir = 1;
+ icon_state = "vault"
},
/area/djstation)
"bO" = (
@@ -815,7 +804,6 @@
pixel_x = -32
},
/obj/structure/sink{
- icon_state = "sink";
dir = 8;
pixel_x = -12;
pixel_y = 2
@@ -866,8 +854,7 @@
id_tag = "dj_station_inner";
locked = 1;
name = "DJ Station Interior Access";
- req_access = null;
- req_access_txt = "0"
+ req_access = null
},
/obj/machinery/atmospherics/pipe/simple/hidden,
/turf/simulated/floor/plating,
@@ -888,7 +875,6 @@
frequency = 1479;
id_tag = "dj_station_airlock";
pixel_x = -25;
- req_access_txt = "0";
tag_airpump = "dj_station_pump";
tag_chamber_sensor = "dj_station_sensor";
tag_exterior_door = "dj_station_outer";
@@ -906,8 +892,7 @@
id_tag = "dj_station_outer";
locked = 1;
name = "DJ Station External Access";
- req_access = null;
- req_access_txt = "0"
+ req_access = null
},
/turf/simulated/floor/plating,
/area/djstation)
@@ -921,8 +906,7 @@
master_tag = "dj_station_airlock";
name = "exterior access button";
pixel_x = 23;
- pixel_y = 35;
- req_access_txt = "0"
+ pixel_y = 35
},
/turf/template_noop,
/area/djstation)
diff --git a/_maps/map_files/RandomRuins/SpaceRuins/druglab.dmm b/_maps/map_files/RandomRuins/SpaceRuins/druglab.dmm
index 69bd9110580..27782afd302 100644
--- a/_maps/map_files/RandomRuins/SpaceRuins/druglab.dmm
+++ b/_maps/map_files/RandomRuins/SpaceRuins/druglab.dmm
@@ -77,9 +77,9 @@
/area/exploration/methlab)
"p" = (
/obj/structure/cable{
+ d2 = 2;
icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
+ pixel_y = 1
},
/obj/machinery/power/apc{
dir = 4;
diff --git a/_maps/map_files/RandomRuins/SpaceRuins/gasthelizards.dmm b/_maps/map_files/RandomRuins/SpaceRuins/gasthelizards.dmm
index a8b394a6421..b4a4d967a5a 100644
--- a/_maps/map_files/RandomRuins/SpaceRuins/gasthelizards.dmm
+++ b/_maps/map_files/RandomRuins/SpaceRuins/gasthelizards.dmm
@@ -16,18 +16,17 @@
/obj/structure/bed,
/obj/effect/decal/remains/human,
/turf/simulated/floor/plasteel{
- icon_state = "warndark";
- dir = 8
+ dir = 8;
+ icon_state = "warndark"
},
/area/ruin/unpowered)
"e" = (
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "warndark";
- dir = 4
+ dir = 4;
+ icon_state = "warndark"
},
/area/ruin/unpowered)
"f" = (
@@ -40,8 +39,8 @@
/obj/structure/bed,
/obj/effect/decal/remains/human,
/turf/simulated/floor/plasteel{
- icon_state = "warndark";
- dir = 8
+ dir = 8;
+ icon_state = "warndark"
},
/area/ruin/unpowered)
"g" = (
@@ -53,31 +52,30 @@
},
/obj/structure/bed,
/turf/simulated/floor/plasteel{
- icon_state = "warndark";
- dir = 8
+ dir = 8;
+ icon_state = "warndark"
},
/area/ruin/unpowered)
"h" = (
/turf/simulated/floor/plasteel{
- icon_state = "warndark";
- dir = 4
+ dir = 4;
+ icon_state = "warndark"
},
/area/ruin/unpowered)
"i" = (
/turf/simulated/floor/plasteel{
- icon_state = "warndark";
- dir = 8
+ dir = 8;
+ icon_state = "warndark"
},
/area/ruin/unpowered)
"j" = (
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/obj/machinery/atmospherics/unary/outlet_injector,
/turf/simulated/floor/plasteel{
- icon_state = "warndark";
- dir = 4
+ dir = 4;
+ icon_state = "warndark"
},
/area/ruin/unpowered)
"k" = (
@@ -85,15 +83,15 @@
dir = 8
},
/turf/simulated/floor/plasteel{
- icon_state = "warndark";
- dir = 8
+ dir = 8;
+ icon_state = "warndark"
},
/area/ruin/unpowered)
"l" = (
/obj/machinery/atmospherics/unary/outlet_injector,
/turf/simulated/floor/plasteel{
- icon_state = "warndark";
- dir = 4
+ dir = 4;
+ icon_state = "warndark"
},
/area/ruin/unpowered)
"m" = (
@@ -124,10 +122,8 @@
"p" = (
/obj/machinery/power/apc/worn_out{
dir = 8;
- pixel_x = -24;
- pixel_y = 0;
- cell_type = 2500;
- operating = 1
+ operating = 1;
+ pixel_x = -24
},
/obj/structure/window/reinforced{
dir = 1;
@@ -171,8 +167,7 @@
/area/ruin/unpowered)
"v" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/ruin/unpowered)
@@ -263,8 +258,7 @@
/area/ruin/unpowered)
"I" = (
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/obj/machinery/light,
/obj/structure/table,
diff --git a/_maps/map_files/RandomRuins/SpaceRuins/intactemptyship.dmm b/_maps/map_files/RandomRuins/SpaceRuins/intactemptyship.dmm
index 3874c094d78..8bfcaaf7cb8 100644
--- a/_maps/map_files/RandomRuins/SpaceRuins/intactemptyship.dmm
+++ b/_maps/map_files/RandomRuins/SpaceRuins/intactemptyship.dmm
@@ -7,9 +7,7 @@
/area/ruin/powered)
"e" = (
/obj/structure/shuttle/engine/propulsion{
- dir = 8;
- icon_state = "propulsion";
- tag = "icon-propulsion (EAST)"
+ dir = 8
},
/turf/simulated/floor/plating/airless,
/area/ruin/powered)
@@ -18,8 +16,6 @@
dir = 4
},
/obj/structure/shuttle/engine/heater{
- tag = "icon-heater (WEST)";
- icon_state = "heater";
dir = 8
},
/turf/simulated/floor/plating/airless,
@@ -107,10 +103,9 @@
/area/ruin/powered)
"x" = (
/obj/machinery/door_control{
+ id = "strange ship";
name = "Strange Ship Door Control";
- pixel_x = 6;
- pixel_y = 0;
- id = "strange ship"
+ pixel_x = 6
},
/turf/simulated/wall/mineral/plastitanium,
/area/ruin/powered)
diff --git a/_maps/map_files/RandomRuins/SpaceRuins/listeningpost.dmm b/_maps/map_files/RandomRuins/SpaceRuins/listeningpost.dmm
index 61faecbacdf..51f2f9474e4 100644
--- a/_maps/map_files/RandomRuins/SpaceRuins/listeningpost.dmm
+++ b/_maps/map_files/RandomRuins/SpaceRuins/listeningpost.dmm
@@ -251,8 +251,6 @@
/area/ruin/powered)
"Q" = (
/obj/machinery/shower{
- tag = "icon-shower (WEST)";
- icon_state = "shower";
dir = 8
},
/turf/simulated/floor/plasteel{
@@ -266,8 +264,6 @@
/area/ruin/powered)
"S" = (
/obj/structure/toilet{
- tag = "icon-toilet00 (WEST)";
- icon_state = "toilet00";
dir = 8
},
/turf/simulated/floor/plasteel{
diff --git a/_maps/map_files/RandomRuins/SpaceRuins/oldstation.dmm b/_maps/map_files/RandomRuins/SpaceRuins/oldstation.dmm
index 8084a99f002..f14c68812b4 100644
--- a/_maps/map_files/RandomRuins/SpaceRuins/oldstation.dmm
+++ b/_maps/map_files/RandomRuins/SpaceRuins/oldstation.dmm
@@ -145,7 +145,6 @@
/area/ruin/space/ancientstation/hivebot)
"ay" = (
/obj/structure/shuttle/engine/large{
- icon_state = "large_engine";
dir = 4
},
/turf/simulated/wall,
@@ -257,8 +256,8 @@
"aO" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- icon_state = "arrivalcorner";
- dir = 1
+ dir = 1;
+ icon_state = "arrivalcorner"
},
/area/ruin/space/ancientstation/comm)
"aP" = (
@@ -412,8 +411,8 @@
name = "Broken Computer"
},
/turf/simulated/floor/plasteel{
- icon_state = "blue";
- dir = 8
+ dir = 8;
+ icon_state = "blue"
},
/area/ruin/space/ancientstation/comm)
"bj" = (
@@ -423,8 +422,8 @@
name = "Broken Computer"
},
/turf/simulated/floor/plasteel{
- icon_state = "blue";
- dir = 4
+ dir = 4;
+ icon_state = "blue"
},
/area/ruin/space/ancientstation/comm)
"bk" = (
@@ -436,8 +435,8 @@
dir = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "blue";
- dir = 8
+ dir = 8;
+ icon_state = "blue"
},
/area/ruin/space/ancientstation/comm)
"bl" = (
@@ -688,7 +687,6 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/warning_stripes/arrow{
- icon_state = "4";
dir = 1
},
/turf/simulated/floor/plasteel/airless,
@@ -921,7 +919,6 @@
/area/template_noop)
"cD" = (
/obj/structure/cable/yellow{
- d1 = 0;
d2 = 8;
icon_state = "0-8"
},
@@ -965,7 +962,6 @@
/area/ruin/space/ancientstation/thetacorridor)
"cJ" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/obj/effect/decal/cleanable/dirt,
@@ -1116,8 +1112,8 @@
dir = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "blue";
- dir = 10
+ dir = 10;
+ icon_state = "blue"
},
/area/ruin/space/ancientstation/comm)
"dd" = (
@@ -1208,7 +1204,6 @@
"dp" = (
/obj/machinery/power/solar,
/obj/structure/cable/yellow{
- d1 = 0;
d2 = 8;
icon_state = "0-8"
},
@@ -1219,7 +1214,6 @@
dir = 8
},
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/obj/effect/decal/cleanable/dirt,
@@ -1372,8 +1366,8 @@
/obj/effect/decal/cleanable/dirt,
/obj/machinery/recharger,
/turf/simulated/floor/plasteel{
- icon_state = "blue";
- dir = 10
+ dir = 10;
+ icon_state = "blue"
},
/area/ruin/space/ancientstation/comm)
"dM" = (
@@ -1470,9 +1464,9 @@
/area/ruin/space/ancientstation)
"dX" = (
/obj/structure/cable{
+ d2 = 2;
icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
+ pixel_y = 1
},
/obj/effect/decal/cleanable/dirt,
/obj/machinery/power/apc{
@@ -1495,8 +1489,8 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 1
+ dir = 1;
+ icon_state = "red"
},
/area/ruin/space/ancientstation/sec)
"ea" = (
@@ -1557,7 +1551,6 @@
/area/ruin/space/ancientstation/rnd)
"eg" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/obj/effect/decal/cleanable/dirt,
@@ -1597,8 +1590,8 @@
/obj/machinery/recharger,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 5
+ dir = 5;
+ icon_state = "red"
},
/area/ruin/space/ancientstation/sec)
"em" = (
@@ -1741,7 +1734,6 @@
/area/ruin/space/ancientstation/engi)
"eD" = (
/obj/structure/cable/yellow{
- d1 = 0;
d2 = 2;
icon_state = "0-2"
},
@@ -1753,9 +1745,9 @@
/area/ruin/space/ancientstation/engi)
"eE" = (
/obj/structure/cable{
+ d2 = 2;
icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
+ pixel_y = 1
},
/obj/machinery/power/smes/engineering{
charge = 0
@@ -1792,8 +1784,8 @@
"eI" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- icon_state = "redcorner";
- dir = 4
+ dir = 4;
+ icon_state = "redcorner"
},
/area/ruin/space/ancientstation/sec)
"eJ" = (
@@ -1822,7 +1814,6 @@
/area/template_noop)
"eL" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/obj/effect/decal/cleanable/dirt,
@@ -1835,8 +1826,8 @@
report_danger_level = 0
},
/turf/simulated/floor/plasteel{
- icon_state = "blue";
- dir = 4
+ dir = 4;
+ icon_state = "blue"
},
/area/ruin/space/ancientstation/comm)
"eM" = (
@@ -1870,8 +1861,8 @@
"eR" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 1
+ dir = 1;
+ icon_state = "red"
},
/area/ruin/space/ancientstation/sec)
"eS" = (
@@ -1993,8 +1984,8 @@
/obj/item/book/manual/security_space_law,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 5
+ dir = 5;
+ icon_state = "red"
},
/area/ruin/space/ancientstation/sec)
"fh" = (
@@ -2065,7 +2056,6 @@
/area/ruin/space/ancientstation/rnd)
"fp" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/obj/effect/decal/cleanable/dirt,
@@ -2377,8 +2367,8 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- icon_state = "yellow";
- dir = 5
+ dir = 5;
+ icon_state = "yellow"
},
/area/ruin/space/ancientstation/engi)
"fQ" = (
@@ -2576,22 +2566,21 @@
"ge" = (
/obj/structure/table,
/obj/structure/cable{
+ d2 = 2;
icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
+ pixel_y = 1
},
/obj/machinery/power/apc{
dir = 8;
name = "Charlie Security APC";
pixel_x = -24;
report_power_alarm = 0;
- shock_proof = 0;
start_charge = 0
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 9
+ dir = 9;
+ icon_state = "red"
},
/area/ruin/space/ancientstation/sec)
"gf" = (
@@ -2712,8 +2701,8 @@
/obj/item/flash,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 4
+ dir = 4;
+ icon_state = "red"
},
/area/ruin/space/ancientstation/sec)
"gw" = (
@@ -2842,8 +2831,8 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 4
+ dir = 4;
+ icon_state = "red"
},
/area/ruin/space/ancientstation/sec)
"gO" = (
@@ -2874,8 +2863,8 @@
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- icon_state = "redcorner";
- dir = 1
+ dir = 1;
+ icon_state = "redcorner"
},
/area/ruin/space/ancientstation/sec)
"gR" = (
@@ -2907,7 +2896,6 @@
/area/ruin/space/ancientstation/thetacorridor)
"gU" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/obj/effect/decal/cleanable/dirt,
@@ -2990,8 +2978,8 @@
"he" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 4
+ dir = 4;
+ icon_state = "red"
},
/area/ruin/space/ancientstation/sec)
"hf" = (
@@ -3012,7 +3000,6 @@
"hh" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitecorner"
},
/area/ruin/space/ancientstation/rnd)
@@ -3077,8 +3064,8 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- icon_state = "yellow";
- dir = 8
+ dir = 8;
+ icon_state = "yellow"
},
/area/ruin/space/ancientstation/engi)
"hp" = (
@@ -3239,15 +3226,15 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- icon_state = "yellow";
- dir = 8
+ dir = 8;
+ icon_state = "yellow"
},
/area/ruin/space/ancientstation)
"hD" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- icon_state = "green";
- dir = 8
+ dir = 8;
+ icon_state = "green"
},
/area/ruin/space/ancientstation/hydroponics)
"hE" = (
@@ -3267,16 +3254,16 @@
"hF" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- icon_state = "green";
- dir = 4
+ dir = 4;
+ icon_state = "green"
},
/area/ruin/space/ancientstation/hydroponics)
"hG" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- icon_state = "cautioncorner";
- dir = 4
+ dir = 4;
+ icon_state = "cautioncorner"
},
/area/ruin/space/ancientstation/engi)
"hH" = (
@@ -3323,8 +3310,8 @@
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 4
+ dir = 4;
+ icon_state = "red"
},
/area/ruin/space/ancientstation/sec)
"hL" = (
@@ -3348,8 +3335,8 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- icon_state = "green";
- dir = 8
+ dir = 8;
+ icon_state = "green"
},
/area/ruin/space/ancientstation/hydroponics)
"hN" = (
@@ -3499,9 +3486,9 @@
/area/ruin/space/ancientstation/kitchen)
"id" = (
/obj/structure/cable{
+ d2 = 2;
icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
+ pixel_y = 1
},
/obj/effect/decal/cleanable/dirt,
/obj/machinery/power/apc{
@@ -3591,7 +3578,6 @@
/area/ruin/space/ancientstation/rnd)
"im" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/obj/effect/decal/cleanable/dirt,
@@ -3618,7 +3604,6 @@
dir = 4
},
/obj/structure/cable/yellow{
- d1 = 0;
d2 = 2;
icon_state = "0-2"
},
@@ -3627,9 +3612,9 @@
/area/ruin/space/ancientstation/engi)
"ir" = (
/obj/structure/cable{
+ d2 = 2;
icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
+ pixel_y = 1
},
/obj/machinery/power/smes/engineering{
charge = 0
@@ -3669,7 +3654,6 @@
/area/ruin/space/ancientstation)
"iw" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/obj/effect/decal/cleanable/dirt,
@@ -4111,8 +4095,7 @@
req_access_txt = "271"
},
/turf/simulated/floor/plasteel{
- icon_state = "whitehall";
- dir = 2
+ icon_state = "whitehall"
},
/area/ruin/space/ancientstation/proto)
"jv" = (
@@ -4123,8 +4106,7 @@
req_access_txt = "271"
},
/turf/simulated/floor/plasteel{
- icon_state = "whitehall";
- dir = 2
+ icon_state = "whitehall"
},
/area/ruin/space/ancientstation/proto)
"jw" = (
@@ -4202,7 +4184,6 @@
icon_state = "0-8"
},
/obj/machinery/power/apc{
- dir = 2;
name = "Charlie Kitchen APC";
pixel_y = -24;
report_power_alarm = 0;
@@ -4380,7 +4361,6 @@
"jY" = (
/obj/structure/table/reinforced,
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/obj/item/paper/fluff/ruins/oldstation/protosing,
@@ -4560,7 +4540,6 @@
"kt" = (
/obj/structure/table/reinforced,
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/obj/item/paper/fluff/ruins/oldstation/protogun,
@@ -4669,7 +4648,6 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/warning_stripes/arrow{
- icon_state = "4";
dir = 1
},
/turf/simulated/floor/plasteel,
@@ -4907,13 +4885,12 @@
"lj" = (
/obj/machinery/alarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- icon_state = "greencorner";
- dir = 8
+ dir = 8;
+ icon_state = "greencorner"
},
/area/ruin/space/ancientstation/hydroponics)
"lk" = (
@@ -4922,8 +4899,8 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- icon_state = "green";
- dir = 4
+ dir = 4;
+ icon_state = "green"
},
/area/ruin/space/ancientstation/hydroponics)
"ll" = (
@@ -4938,8 +4915,8 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 4
+ dir = 4;
+ icon_state = "red"
},
/area/ruin/space/ancientstation/sec)
"ln" = (
@@ -4961,8 +4938,8 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 4
+ dir = 4;
+ icon_state = "red"
},
/area/ruin/space/ancientstation/sec)
"lp" = (
@@ -4973,7 +4950,6 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "yellowcorner"
},
/area/ruin/space/ancientstation/engi)
@@ -5009,8 +4985,8 @@
pixel_x = -24
},
/turf/simulated/floor/plasteel{
- icon_state = "yellow";
- dir = 8
+ dir = 8;
+ icon_state = "yellow"
},
/area/ruin/space/ancientstation/engi)
"lt" = (
@@ -5047,8 +5023,8 @@
/obj/item/storage/backpack/old,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 4
+ dir = 4;
+ icon_state = "red"
},
/area/ruin/space/ancientstation/sec)
"lw" = (
@@ -5168,7 +5144,6 @@
"lG" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "redcorner"
},
/area/ruin/space/ancientstation/sec)
@@ -5185,8 +5160,8 @@
/obj/item/clothing/mask/gas,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 6
+ dir = 6;
+ icon_state = "red"
},
/area/ruin/space/ancientstation/sec)
"lJ" = (
@@ -5220,8 +5195,8 @@
/obj/item/clothing/head/helmet/old,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 6
+ dir = 6;
+ icon_state = "red"
},
/area/ruin/space/ancientstation/sec)
"lN" = (
diff --git a/_maps/map_files/RandomRuins/SpaceRuins/onehalf.dmm b/_maps/map_files/RandomRuins/SpaceRuins/onehalf.dmm
index 6e6e0e12f1f..bd543535f81 100644
--- a/_maps/map_files/RandomRuins/SpaceRuins/onehalf.dmm
+++ b/_maps/map_files/RandomRuins/SpaceRuins/onehalf.dmm
@@ -35,7 +35,6 @@
/obj/structure/lattice,
/obj/item/stack/cable_coil/cut{
amount = 2;
- dir = 2;
icon_state = "coil_red2"
},
/turf/template_noop,
@@ -78,13 +77,11 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- tag = "icon-white";
icon_state = "white"
},
/area/ruin/onehalf/dorms_med)
"am" = (
/turf/simulated/floor/plasteel{
- tag = "icon-white";
icon_state = "white"
},
/area/ruin/onehalf/dorms_med)
@@ -96,7 +93,6 @@
},
/obj/item/storage/firstaid/fire,
/turf/simulated/floor/plasteel{
- tag = "icon-white";
icon_state = "white"
},
/area/ruin/onehalf/dorms_med)
@@ -172,14 +168,12 @@
"aA" = (
/obj/structure/bed/roller,
/turf/simulated/floor/plasteel{
- tag = "icon-white";
icon_state = "white"
},
/area/ruin/onehalf/dorms_med)
"aB" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/structure/table,
/obj/item/storage/firstaid/brute{
@@ -188,7 +182,6 @@
},
/obj/item/storage/firstaid,
/turf/simulated/floor/plasteel{
- tag = "icon-white";
icon_state = "white"
},
/area/ruin/onehalf/dorms_med)
@@ -233,7 +226,6 @@
"aJ" = (
/obj/machinery/iv_drip,
/turf/simulated/floor/plasteel{
- tag = "icon-white";
icon_state = "white"
},
/area/ruin/onehalf/dorms_med)
@@ -245,7 +237,6 @@
tag = ""
},
/turf/simulated/floor/plasteel{
- tag = "icon-white";
icon_state = "white"
},
/area/ruin/onehalf/dorms_med)
@@ -257,7 +248,6 @@
/obj/machinery/power/apc/noalarm{
keep_preset_name = 1;
name = "Hallway APC";
- pixel_x = 0;
pixel_y = -24
},
/turf/simulated/floor/plasteel/airless,
@@ -380,7 +370,6 @@
icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- tag = "icon-white";
icon_state = "white"
},
/area/ruin/onehalf/dorms_med)
@@ -419,7 +408,6 @@
pixel_x = 27
},
/turf/simulated/floor/plasteel{
- tag = "icon-white";
icon_state = "white"
},
/area/ruin/onehalf/dorms_med)
@@ -472,13 +460,10 @@
/area/ruin/onehalf/hallway)
"be" = (
/obj/structure/disposalpipe/broken{
- tag = "icon-pipe-b (EAST)";
- icon_state = "pipe-b";
dir = 4
},
/obj/item/stack/cable_coil/cut{
amount = 2;
- dir = 2;
icon_state = "coil_red2"
},
/turf/simulated/floor/plating/airless,
@@ -498,8 +483,6 @@
/area/ruin/onehalf/hallway)
"bg" = (
/obj/structure/disposalpipe/junction{
- tag = "icon-pipe-j1 (EAST)";
- icon_state = "pipe-j1";
dir = 4
},
/obj/structure/cable{
@@ -530,8 +513,6 @@
/area/ruin/onehalf/hallway)
"bi" = (
/obj/structure/disposalpipe/broken{
- tag = "icon-pipe-b (EAST)";
- icon_state = "pipe-b";
dir = 4
},
/obj/effect/landmark/damageturf,
@@ -556,7 +537,6 @@
/area/ruin/onehalf/hallway)
"bk" = (
/obj/structure/disposalpipe/junction{
- icon_state = "pipe-j1";
dir = 4
},
/obj/structure/cable{
@@ -608,9 +588,7 @@
/turf/simulated/floor/plasteel,
/area/ruin/onehalf/drone_bay)
"bp" = (
-/obj/machinery/door/airlock/maintenance_hatch{
- name = "maintenance hatch"
- },
+/obj/machinery/door/airlock/maintenance_hatch,
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -627,8 +605,8 @@
/area/ruin/onehalf/drone_bay)
"br" = (
/obj/structure/disposalpipe/junction{
- icon_state = "pipe-y";
- dir = 1
+ dir = 1;
+ icon_state = "pipe-y"
},
/turf/simulated/floor/plasteel,
/area/ruin/onehalf/drone_bay)
@@ -712,8 +690,7 @@
/area/ruin/onehalf/drone_bay)
"bD" = (
/obj/structure/disposalpipe/junction{
- dir = 8;
- icon_state = "pipe-j1"
+ dir = 8
},
/turf/simulated/floor/plasteel,
/area/ruin/onehalf/drone_bay)
@@ -818,8 +795,6 @@
/area/ruin/onehalf/hallway)
"bZ" = (
/obj/structure/disposalpipe/junction{
- tag = "icon-pipe-j1 (NORTH)";
- icon_state = "pipe-j1";
dir = 1
},
/obj/item/shard,
@@ -915,7 +890,6 @@
dir = 4
},
/obj/item/shard{
- tag = "icon-small";
icon_state = "small"
},
/turf/template_noop,
@@ -943,8 +917,6 @@
/area/ruin/onehalf/bridge)
"cq" = (
/obj/structure/chair{
- tag = "icon-chair (WEST)";
- icon_state = "chair";
dir = 8
},
/turf/simulated/floor/plasteel,
@@ -954,8 +926,6 @@
/area/ruin/onehalf/bridge)
"cs" = (
/obj/structure/chair{
- tag = "icon-chair (NORTH)";
- icon_state = "chair";
dir = 1
},
/turf/simulated/floor/plasteel,
@@ -1014,7 +984,6 @@
"cy" = (
/obj/structure/lattice,
/obj/item/shard{
- tag = "icon-medium";
icon_state = "medium"
},
/turf/template_noop,
@@ -1081,13 +1050,9 @@
"cH" = (
/obj/structure/lattice,
/obj/structure/disposalpipe/broken{
- tag = "icon-pipe-b (NORTH)";
- icon_state = "pipe-b";
dir = 1
},
/obj/structure/disposalpipe/broken{
- tag = "icon-pipe-b (WEST)";
- icon_state = "pipe-b";
dir = 8
},
/turf/template_noop,
@@ -1129,8 +1094,6 @@
/area/ruin/onehalf/bridge)
"cN" = (
/obj/structure/chair/comfy/black{
- tag = "icon-comfychair (EAST)";
- icon_state = "comfychair";
dir = 4
},
/turf/simulated/floor/plasteel,
@@ -1139,7 +1102,6 @@
/obj/structure/lattice,
/obj/item/stack/cable_coil/cut{
amount = 2;
- dir = 2;
icon_state = "coil_red2"
},
/turf/template_noop,
@@ -1183,7 +1145,6 @@
/obj/machinery/door_control{
id = "onehalf bridge";
name = "Bridge Lockdown";
- pixel_x = 0;
pixel_y = 5
},
/turf/simulated/floor/plasteel,
@@ -1340,7 +1301,6 @@
tag = ""
},
/obj/item/shard{
- tag = "icon-medium";
icon_state = "medium"
},
/turf/template_noop,
diff --git a/_maps/map_files/RandomRuins/SpaceRuins/spacebar.dmm b/_maps/map_files/RandomRuins/SpaceRuins/spacebar.dmm
index cf634eb3490..e30204f0684 100644
--- a/_maps/map_files/RandomRuins/SpaceRuins/spacebar.dmm
+++ b/_maps/map_files/RandomRuins/SpaceRuins/spacebar.dmm
@@ -80,7 +80,7 @@
})
"at" = (
/obj/structure/table,
-/obj/item/toy/figure/bartender,
+/obj/item/toy/figure/crew/bartender,
/turf/simulated/floor/wood,
/area/ruin/powered{
name = "Space Bar"
@@ -252,8 +252,6 @@
})
"aU" = (
/obj/structure/chair{
- tag = "icon-chair (EAST)";
- icon_state = "chair";
dir = 4
},
/turf/simulated/floor/plasteel,
@@ -268,8 +266,6 @@
})
"aW" = (
/obj/structure/chair{
- tag = "icon-chair (WEST)";
- icon_state = "chair";
dir = 8
},
/turf/simulated/floor/plasteel,
@@ -278,7 +274,6 @@
})
"aX" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/turf/simulated/floor/plasteel,
@@ -349,9 +344,7 @@
"bh" = (
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
- pixel_x = 11;
- pixel_y = 0
+ pixel_x = 11
},
/obj/structure/mirror{
pixel_x = 28
@@ -363,7 +356,6 @@
"bi" = (
/obj/structure/table/wood,
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/plasteel,
diff --git a/_maps/map_files/RandomRuins/SpaceRuins/syndie_space_base.dmm b/_maps/map_files/RandomRuins/SpaceRuins/syndie_space_base.dmm
index 810ff076094..47ecd6e16f2 100644
--- a/_maps/map_files/RandomRuins/SpaceRuins/syndie_space_base.dmm
+++ b/_maps/map_files/RandomRuins/SpaceRuins/syndie_space_base.dmm
@@ -111,8 +111,7 @@
"av" = (
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whiteblue"
},
/area/ruin/unpowered/syndicate_space_base/medbay)
"aT" = (
@@ -163,8 +162,7 @@
/area/ruin/unpowered/syndicate_space_base/cargo)
"bw" = (
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
/area/ruin/unpowered/syndicate_space_base/medbay)
"bO" = (
@@ -179,8 +177,7 @@
dir = 8
},
/turf/simulated/floor/plasteel{
- icon_state = "whitegreenfull";
- tag = "icon-whitebluefull"
+ icon_state = "whitegreenfull"
},
/area/ruin/unpowered/syndicate_space_base/virology)
"bT" = (
@@ -233,8 +230,7 @@
"cs" = (
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (WEST)"
+ icon_state = "whitegreen"
},
/area/ruin/unpowered/syndicate_space_base/virology)
"cB" = (
@@ -301,8 +297,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTHEAST)"
+ icon_state = "whiteblue"
},
/area/ruin/unpowered/syndicate_space_base/medbay)
"cO" = (
@@ -336,8 +331,7 @@
/obj/item/reagent_containers/glass/beaker/large,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (NORTHEAST)"
+ icon_state = "whitepurple"
},
/area/ruin/unpowered/syndicate_space_base/chemistry)
"di" = (
@@ -463,16 +457,14 @@
"eV" = (
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
+ icon_state = "whiteblue"
},
/area/ruin/unpowered/syndicate_space_base/medbay)
"fb" = (
/obj/machinery/kitchen_machine/microwave,
/obj/structure/table,
/turf/simulated/floor/plasteel{
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/ruin/unpowered/syndicate_space_base/bar)
"fe" = (
@@ -500,8 +492,7 @@
},
/turf/simulated/floor/plasteel{
dir = 9;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (NORTHWEST)"
+ icon_state = "whitepurple"
},
/area/ruin/unpowered/syndicate_space_base/chemistry)
"fu" = (
@@ -511,8 +502,7 @@
/obj/machinery/chem_master,
/turf/simulated/floor/plasteel{
dir = 10;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (SOUTHWEST)"
+ icon_state = "whitepurple"
},
/area/ruin/unpowered/syndicate_space_base/chemistry)
"fx" = (
@@ -594,8 +584,7 @@
"gg" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- icon_state = "whitegreenfull";
- tag = "icon-whitebluefull"
+ icon_state = "whitegreenfull"
},
/area/ruin/unpowered/syndicate_space_base/virology)
"gh" = (
@@ -658,8 +647,7 @@
/obj/item/reagent_containers/iv_bag/blood/OMinus,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (WEST)"
+ icon_state = "whiteblue"
},
/area/ruin/unpowered/syndicate_space_base/medbay)
"gY" = (
@@ -702,8 +690,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (NORTHEAST)"
+ icon_state = "whitepurple"
},
/area/ruin/unpowered/syndicate_space_base/chemistry)
"hq" = (
@@ -841,8 +828,7 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/ruin/unpowered/syndicate_space_base/bar)
"ir" = (
@@ -927,8 +913,7 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "whitegreenfull";
- tag = "icon-whitebluefull"
+ icon_state = "whitegreenfull"
},
/area/ruin/unpowered/syndicate_space_base/virology)
"jt" = (
@@ -943,8 +928,7 @@
},
/turf/simulated/floor/plasteel{
dir = 6;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whiteblue"
},
/area/ruin/unpowered/syndicate_space_base/medbay)
"jy" = (
@@ -1039,8 +1023,7 @@
dir = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
/area/ruin/unpowered/syndicate_space_base/medbay)
"ku" = (
@@ -1095,8 +1078,7 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (EAST)"
+ icon_state = "whitegreen"
},
/area/ruin/unpowered/syndicate_space_base/virology)
"kY" = (
@@ -1121,8 +1103,7 @@
/obj/machinery/optable,
/obj/machinery/light,
/turf/simulated/floor/plasteel{
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whiteblue"
},
/area/ruin/unpowered/syndicate_space_base/medbay)
"lr" = (
@@ -1134,8 +1115,7 @@
"lu" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
/area/ruin/unpowered/syndicate_space_base/medbay)
"lv" = (
@@ -1164,16 +1144,14 @@
"ly" = (
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (WEST)"
+ icon_state = "whitegreen"
},
/area/ruin/unpowered/syndicate_space_base/virology)
"lB" = (
/obj/machinery/smartfridge/secure/chemistry/virology/preloaded/syndicate,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (WEST)"
+ icon_state = "whitegreen"
},
/area/ruin/unpowered/syndicate_space_base/virology)
"lM" = (
@@ -1210,8 +1188,7 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (NORTHEAST)"
+ icon_state = "whitegreen"
},
/area/ruin/unpowered/syndicate_space_base/virology)
"mi" = (
@@ -1282,8 +1259,7 @@
},
/obj/structure/table,
/turf/simulated/floor/plasteel{
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/ruin/unpowered/syndicate_space_base/bar)
"nj" = (
@@ -1321,8 +1297,7 @@
/area/ruin/unpowered/syndicate_space_base/testlab)
"ny" = (
/turf/simulated/floor/plasteel{
- icon_state = "whitegreen";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whitegreen"
},
/area/ruin/unpowered/syndicate_space_base/virology)
"nA" = (
@@ -1371,8 +1346,7 @@
/obj/structure/table/glass,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (EAST)"
+ icon_state = "whitegreen"
},
/area/ruin/unpowered/syndicate_space_base/virology)
"ob" = (
@@ -1443,8 +1417,7 @@
/obj/structure/window/basic,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whiteblue"
},
/area/ruin/unpowered/syndicate_space_base/medbay)
"oO" = (
@@ -1518,8 +1491,7 @@
/obj/item/cautery,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (WEST)"
+ icon_state = "whiteblue"
},
/area/ruin/unpowered/syndicate_space_base/medbay)
"pK" = (
@@ -1551,8 +1523,7 @@
/obj/effect/decal/cleanable/dirt,
/obj/machinery/computer/operating,
/turf/simulated/floor/plasteel{
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whiteblue"
},
/area/ruin/unpowered/syndicate_space_base/medbay)
"qv" = (
@@ -1586,8 +1557,7 @@
dir = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "whitegreenfull";
- tag = "icon-whitebluefull"
+ icon_state = "whitegreenfull"
},
/area/ruin/unpowered/syndicate_space_base/virology)
"qT" = (
@@ -1814,8 +1784,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (WEST)"
+ icon_state = "whiteblue"
},
/area/ruin/unpowered/syndicate_space_base/medbay)
"tL" = (
@@ -1828,8 +1797,7 @@
"tQ" = (
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (WEST)"
+ icon_state = "whitepurple"
},
/area/ruin/unpowered/syndicate_space_base/chemistry)
"tW" = (
@@ -1895,8 +1863,7 @@
/area/ruin/unpowered/syndicate_space_base/engineering)
"uJ" = (
/turf/simulated/floor/plasteel{
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/ruin/unpowered/syndicate_space_base/bar)
"uL" = (
@@ -1907,8 +1874,7 @@
/obj/item/storage/box/monkeycubes/syndicate,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (EAST)"
+ icon_state = "whitegreen"
},
/area/ruin/unpowered/syndicate_space_base/virology)
"uN" = (
@@ -1945,8 +1911,7 @@
/obj/machinery/monkey_recycler,
/turf/simulated/floor/plasteel{
dir = 6;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (SOUTHEAST)"
+ icon_state = "whitegreen"
},
/area/ruin/unpowered/syndicate_space_base/virology)
"ve" = (
@@ -1958,8 +1923,7 @@
"vk" = (
/obj/machinery/kitchen_machine/grill,
/turf/simulated/floor/plasteel{
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/ruin/unpowered/syndicate_space_base/bar)
"vn" = (
@@ -2047,8 +2011,7 @@
/obj/effect/turf_decal/bot,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitepurplefull";
- tag = "icon-whitepurple (WEST)"
+ icon_state = "whitepurplefull"
},
/area/ruin/unpowered/syndicate_space_base/chemistry)
"vM" = (
@@ -2105,8 +2068,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (WEST)"
+ icon_state = "whitegreen"
},
/area/ruin/unpowered/syndicate_space_base/virology)
"wh" = (
@@ -2127,8 +2089,7 @@
"wj" = (
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitepurplefull";
- tag = "icon-whitepurple (WEST)"
+ icon_state = "whitepurplefull"
},
/area/ruin/unpowered/syndicate_space_base/chemistry)
"wn" = (
@@ -2206,8 +2167,7 @@
/obj/item/kitchen/rollingpin,
/obj/structure/table,
/turf/simulated/floor/plasteel{
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/ruin/unpowered/syndicate_space_base/bar)
"wX" = (
@@ -2257,8 +2217,7 @@
},
/turf/simulated/floor/plasteel{
dir = 9;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTHWEST)"
+ icon_state = "whiteblue"
},
/area/ruin/unpowered/syndicate_space_base/medbay)
"xo" = (
@@ -2347,8 +2306,7 @@
dir = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "whitegreenfull";
- tag = "icon-whitebluefull"
+ icon_state = "whitegreenfull"
},
/area/ruin/unpowered/syndicate_space_base/virology)
"yz" = (
@@ -2416,8 +2374,7 @@
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (EAST)"
+ icon_state = "whitegreen"
},
/area/ruin/unpowered/syndicate_space_base/virology)
"zm" = (
@@ -2488,8 +2445,7 @@
/obj/item/clothing/glasses/science,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitepurplefull";
- tag = "icon-whitepurple (WEST)"
+ icon_state = "whitepurplefull"
},
/area/ruin/unpowered/syndicate_space_base/chemistry)
"AB" = (
@@ -2505,8 +2461,7 @@
},
/turf/simulated/floor/plasteel{
dir = 9;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (NORTHWEST)"
+ icon_state = "whitegreen"
},
/area/ruin/unpowered/syndicate_space_base/virology)
"AI" = (
@@ -2532,8 +2487,7 @@
/obj/item/storage/box/beakers/bluespace,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (NORTH)"
+ icon_state = "whitepurple"
},
/area/ruin/unpowered/syndicate_space_base/chemistry)
"AJ" = (
@@ -2601,8 +2555,7 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (WEST)"
+ icon_state = "whiteblue"
},
/area/ruin/unpowered/syndicate_space_base/medbay)
"BN" = (
@@ -2658,8 +2611,7 @@
},
/obj/structure/table,
/turf/simulated/floor/plasteel{
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/ruin/unpowered/syndicate_space_base/bar)
"Cr" = (
@@ -2670,8 +2622,7 @@
"Cv" = (
/turf/simulated/floor/plasteel{
dir = 10;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (SOUTHWEST)"
+ icon_state = "whitegreen"
},
/area/ruin/unpowered/syndicate_space_base/virology)
"CG" = (
@@ -2806,8 +2757,7 @@
/obj/machinery/computer/pandemic,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (WEST)"
+ icon_state = "whitegreen"
},
/area/ruin/unpowered/syndicate_space_base/virology)
"El" = (
@@ -2850,8 +2800,7 @@
/obj/item/stock_parts/cell/high/plus,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (WEST)"
+ icon_state = "whiteblue"
},
/area/ruin/unpowered/syndicate_space_base/medbay)
"EI" = (
@@ -2882,8 +2831,7 @@
/area/ruin/unpowered/syndicate_space_base/cargo)
"EO" = (
/turf/simulated/floor/plasteel{
- icon_state = "whitegreenfull";
- tag = "icon-whitebluefull"
+ icon_state = "whitegreenfull"
},
/area/ruin/unpowered/syndicate_space_base/virology)
"EP" = (
@@ -2946,8 +2894,7 @@
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whiteblue"
},
/area/ruin/unpowered/syndicate_space_base/medbay)
"Fe" = (
@@ -2962,8 +2909,7 @@
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (WEST)"
+ icon_state = "whitegreen"
},
/area/ruin/unpowered/syndicate_space_base/virology)
"Fi" = (
@@ -3002,8 +2948,7 @@
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (EAST)"
+ icon_state = "whitepurple"
},
/area/ruin/unpowered/syndicate_space_base/chemistry)
"Fs" = (
@@ -3028,8 +2973,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (WEST)"
+ icon_state = "whitepurple"
},
/area/ruin/unpowered/syndicate_space_base/chemistry)
"FQ" = (
@@ -3091,15 +3035,13 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 10;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (SOUTHWEST)"
+ icon_state = "whitepurple"
},
/area/ruin/unpowered/syndicate_space_base/chemistry)
"Go" = (
/obj/machinery/cooker/deepfryer,
/turf/simulated/floor/plasteel{
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/ruin/unpowered/syndicate_space_base/bar)
"Gq" = (
@@ -3214,8 +3156,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (WEST)"
+ icon_state = "whitepurple"
},
/area/ruin/unpowered/syndicate_space_base/chemistry)
"HL" = (
@@ -3339,8 +3280,7 @@
dir = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
/area/ruin/unpowered/syndicate_space_base/medbay)
"Ji" = (
@@ -3453,8 +3393,7 @@
/obj/machinery/chem_heater,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (EAST)"
+ icon_state = "whitepurple"
},
/area/ruin/unpowered/syndicate_space_base/chemistry)
"Ko" = (
@@ -3479,8 +3418,7 @@
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whiteblue"
},
/area/ruin/unpowered/syndicate_space_base/medbay)
"Kv" = (
@@ -3495,8 +3433,7 @@
/obj/machinery/processor,
/obj/structure/table,
/turf/simulated/floor/plasteel{
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/ruin/unpowered/syndicate_space_base/bar)
"Kx" = (
@@ -3594,8 +3531,7 @@
/obj/item/reagent_containers/food/drinks/shaker,
/obj/structure/table,
/turf/simulated/floor/plasteel{
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/ruin/unpowered/syndicate_space_base/bar)
"Lk" = (
@@ -3769,8 +3705,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitepurplefull";
- tag = "icon-whitepurple (WEST)"
+ icon_state = "whitepurplefull"
},
/area/ruin/unpowered/syndicate_space_base/chemistry)
"Mq" = (
@@ -3783,8 +3718,7 @@
/obj/item/clothing/accessory/stethoscope,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (WEST)"
+ icon_state = "whiteblue"
},
/area/ruin/unpowered/syndicate_space_base/medbay)
"Ms" = (
@@ -3859,8 +3793,7 @@
/obj/structure/table/glass,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (EAST)"
+ icon_state = "whitegreen"
},
/area/ruin/unpowered/syndicate_space_base/virology)
"NT" = (
@@ -3975,8 +3908,7 @@
/obj/machinery/vending/medical/syndicate_access,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (WEST)"
+ icon_state = "whitegreen"
},
/area/ruin/unpowered/syndicate_space_base/virology)
"PH" = (
@@ -3986,8 +3918,7 @@
/obj/machinery/chem_dispenser/upgraded,
/turf/simulated/floor/plasteel{
dir = 6;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (SOUTHEAST)"
+ icon_state = "whitepurple"
},
/area/ruin/unpowered/syndicate_space_base/chemistry)
"PI" = (
@@ -4028,8 +3959,7 @@
/obj/item/tank/internals/anesthetic,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whiteblue"
},
/area/ruin/unpowered/syndicate_space_base/medbay)
"Qr" = (
@@ -4106,8 +4036,7 @@
/obj/item/FixOVein,
/turf/simulated/floor/plasteel{
dir = 10;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whiteblue"
},
/area/ruin/unpowered/syndicate_space_base/medbay)
"RC" = (
@@ -4194,8 +4123,7 @@
/obj/item/reagent_containers/spray/cleaner,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (EAST)"
+ icon_state = "whitepurple"
},
/area/ruin/unpowered/syndicate_space_base/chemistry)
"SI" = (
@@ -4499,8 +4427,7 @@
/area/ruin/unpowered/syndicate_space_base/dormitories)
"VQ" = (
/obj/machinery/shower{
- dir = 8;
- tag = "icon-shower (WEST)"
+ dir = 8
},
/obj/item/soap/syndie,
/obj/machinery/light/small{
@@ -4524,8 +4451,7 @@
"Wi" = (
/obj/machinery/kitchen_machine/candy_maker,
/turf/simulated/floor/plasteel{
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/ruin/unpowered/syndicate_space_base/bar)
"Wl" = (
@@ -4541,8 +4467,7 @@
/obj/machinery/sleeper/syndie,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whiteblue"
},
/area/ruin/unpowered/syndicate_space_base/medbay)
"Wr" = (
@@ -4560,8 +4485,7 @@
},
/obj/structure/table,
/turf/simulated/floor/plasteel{
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/ruin/unpowered/syndicate_space_base/bar)
"WG" = (
@@ -4579,8 +4503,7 @@
/obj/structure/window/basic,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (WEST)"
+ icon_state = "whiteblue"
},
/area/ruin/unpowered/syndicate_space_base/medbay)
"Xa" = (
@@ -4651,8 +4574,7 @@
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (EAST)"
+ icon_state = "whitepurple"
},
/area/ruin/unpowered/syndicate_space_base/chemistry)
"Ya" = (
diff --git a/_maps/map_files/RandomRuins/SpaceRuins/syndiecakesfactory.dmm b/_maps/map_files/RandomRuins/SpaceRuins/syndiecakesfactory.dmm
index 92421ce7aa1..9c903cad7d4 100644
--- a/_maps/map_files/RandomRuins/SpaceRuins/syndiecakesfactory.dmm
+++ b/_maps/map_files/RandomRuins/SpaceRuins/syndiecakesfactory.dmm
@@ -178,7 +178,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plasteel,
@@ -331,7 +330,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plasteel/airless,
@@ -345,7 +343,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plasteel,
@@ -511,9 +508,7 @@
/area/ruin/powered)
"TM" = (
/obj/structure/chair/office/dark{
- dir = 4;
- icon_state = "officechair_dark";
- tag = "icon-officechair_dark (EAST)"
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/ruin/unpowered)
diff --git a/_maps/map_files/RandomRuins/SpaceRuins/syndiedepot.dmm b/_maps/map_files/RandomRuins/SpaceRuins/syndiedepot.dmm
index 9be65975462..99f4f58e877 100644
--- a/_maps/map_files/RandomRuins/SpaceRuins/syndiedepot.dmm
+++ b/_maps/map_files/RandomRuins/SpaceRuins/syndiedepot.dmm
@@ -736,8 +736,7 @@
/area/syndicate_depot/core)
"ce" = (
/obj/machinery/light/small{
- dir = 4;
- tag = "icon-bulb1 (EAST)"
+ dir = 4
},
/turf/simulated/floor/mineral/silver,
/area/syndicate_depot/core)
diff --git a/_maps/map_files/RandomRuins/SpaceRuins/turretedoutpost.dmm b/_maps/map_files/RandomRuins/SpaceRuins/turretedoutpost.dmm
index 67dc298eb20..3aceb0f1b2e 100644
--- a/_maps/map_files/RandomRuins/SpaceRuins/turretedoutpost.dmm
+++ b/_maps/map_files/RandomRuins/SpaceRuins/turretedoutpost.dmm
@@ -55,8 +55,6 @@
/area/ruin/unpowered)
"n" = (
/obj/structure/chair{
- tag = "icon-chair (WEST)";
- icon_state = "chair";
dir = 8
},
/turf/simulated/floor/plasteel,
@@ -76,15 +74,15 @@
"r" = (
/obj/structure/rack,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- dir = 8
+ dir = 8;
+ icon_state = "vault"
},
/area/ruin/unpowered)
"s" = (
/obj/item/rack_parts,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- dir = 8
+ dir = 8;
+ icon_state = "vault"
},
/area/ruin/unpowered)
"t" = (
@@ -93,8 +91,8 @@
dir = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- dir = 8
+ dir = 8;
+ icon_state = "vault"
},
/area/ruin/unpowered)
"u" = (
@@ -107,9 +105,8 @@
/area/ruin/unpowered)
"w" = (
/obj/machinery/power/apc/noalarm{
- dir = 2;
- name = "Outpost APC";
keep_preset_name = 1;
+ name = "Outpost APC";
pixel_y = -24
},
/turf/simulated/floor/plasteel,
@@ -157,16 +154,15 @@
/obj/structure/rack,
/obj/item/ammo_box/c9mm,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- dir = 8
+ dir = 8;
+ icon_state = "vault"
},
/area/ruin/unpowered)
"E" = (
/obj/structure/bed,
/obj/item/bedsheet/orange,
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/ruin/unpowered)
@@ -174,8 +170,8 @@
/obj/structure/rack,
/obj/item/clothing/head/helmet/swat,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- dir = 8
+ dir = 8;
+ icon_state = "vault"
},
/area/ruin/unpowered)
"G" = (
@@ -183,8 +179,8 @@
/obj/item/crowbar/red,
/obj/item/paper/crumpled,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- dir = 8
+ dir = 8;
+ icon_state = "vault"
},
/area/ruin/unpowered)
"H" = (
@@ -249,23 +245,22 @@
/obj/item/storage/belt/military,
/obj/machinery/light,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- dir = 8
+ dir = 8;
+ icon_state = "vault"
},
/area/ruin/unpowered)
"R" = (
/obj/structure/rack,
/obj/item/clothing/head/helmet/riot,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- dir = 8
+ dir = 8;
+ icon_state = "vault"
},
/area/ruin/unpowered)
"S" = (
/obj/structure/table/wood,
/obj/item/reagent_containers/food/snacks/rawcutlet,
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/turf/simulated/floor/plasteel,
diff --git a/_maps/map_files/RandomRuins/SpaceRuins/ussp.dmm b/_maps/map_files/RandomRuins/SpaceRuins/ussp.dmm
index bf7d50fab83..ff7aaa221dd 100644
--- a/_maps/map_files/RandomRuins/SpaceRuins/ussp.dmm
+++ b/_maps/map_files/RandomRuins/SpaceRuins/ussp.dmm
@@ -78,9 +78,7 @@
/turf/simulated/wall/mineral/titanium/nodecon/nodiagonal,
/area/derelict/bridge)
"ap" = (
-/obj/effect/landmark/damageturf{
- layer = 3
- },
+/obj/effect/landmark/damageturf,
/obj/effect/landmark/burnturf,
/turf/simulated/wall/mineral/titanium/nodecon/nodiagonal,
/area/derelict/bridge)
@@ -237,16 +235,14 @@
"aG" = (
/obj/structure/safe/floor,
/obj/item/paper/djstation{
+ info = "To my darling Sergei,
I will never forget those nights we spent on Cygni, or all the times you took me around in your 2452 Vincent. The way you looked at me that one night, that was the night I knew that you and I were of the same soul.
I know they made you sell your Vincent when you were reassigned, but I could not let such a beautiful thing go to rust. I have made arrangements and it is here, waiting for you.
I have enclosed the keys. Please, let them serve as a reminder always of our love and a reason to return. I beg of you, do not let our love go softly into the night.";
+ layer = 2.9;
name = "love letter";
pixel_x = -5;
- pixel_y = -3;
- layer = 2.9;
- info = "To my darling Sergei,
I will never forget those nights we spent on Cygni, or all the times you took me around in your 2452 Vincent. The way you looked at me that one night, that was the night I knew that you and I were of the same soul.
I know they made you sell your Vincent when you were reassigned, but I could not let such a beautiful thing go to rust. I have made arrangements and it is here, waiting for you.
I have enclosed the keys. Please, let them serve as a reminder always of our love and a reason to return. I beg of you, do not let our love go softly into the night."
+ pixel_y = -3
},
/obj/item/key{
- name = "Vincent '52 Key";
- pixel_x = 0;
- pixel_y = 0
+ name = "Vincent '52 Key"
},
/obj/item/trash/tapetrash{
desc = "A bundle of severely yellowed and highly pretentious looking documents. Unfortunately they appear to be written in cyrillic and encrypted with a cypher.";
@@ -267,8 +263,6 @@
/area/derelict/bridge)
"aI" = (
/obj/machinery/light/spot{
- tag = "icon-tube1 (WEST)";
- icon_state = "tube1";
dir = 8
},
/turf/simulated/floor/plasteel{
@@ -338,7 +332,6 @@
/obj/effect/landmark/damageturf,
/obj/effect/decal/remains/human{
desc = "This guy seemed to have died in terrible way! Half his remains are dust.";
- icon_state = "remains";
name = "Human remains"
},
/turf/simulated/floor/plasteel{
@@ -347,8 +340,6 @@
/area/derelict/bridge)
"aR" = (
/obj/machinery/light/spot{
- tag = "icon-tube1 (EAST)";
- icon_state = "tube1";
dir = 4
},
/obj/effect/decal/cleanable/dirt,
@@ -376,8 +367,6 @@
"aU" = (
/obj/machinery/photocopier,
/obj/machinery/light/spot{
- tag = "icon-tube1 (NORTH)";
- icon_state = "tube1";
dir = 1
},
/obj/effect/decal/cleanable/dirt,
@@ -459,7 +448,6 @@
/area/derelict/bridge)
"bf" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkblue"
},
/area/derelict/bridge)
@@ -478,8 +466,7 @@
"bi" = (
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/derelict/bridge)
"bj" = (
@@ -516,7 +503,6 @@
"bl" = (
/obj/effect/decal/remains/human{
desc = "This guy seemed to have died in terrible way! Half his remains are dust.";
- icon_state = "remains";
name = "Human remains"
},
/obj/effect/decal/cleanable/dirt,
@@ -662,16 +648,14 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/derelict/bridge)
"bA" = (
/obj/structure/table/wood,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/derelict/bridge)
"bB" = (
@@ -680,8 +664,7 @@
/obj/item/pen,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/derelict/bridge)
"bC" = (
@@ -690,8 +673,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/derelict/bridge)
"bD" = (
@@ -721,12 +703,9 @@
/area/derelict/arrival)
"bF" = (
/obj/machinery/light/spot{
- tag = "icon-tube1 (NORTH)";
- icon_state = "tube1";
dir = 1
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkredcorners"
},
/area/derelict/arrival)
@@ -743,8 +722,6 @@
/area/derelict/arrival)
"bH" = (
/obj/machinery/light/spot{
- tag = "icon-tube1 (WEST)";
- icon_state = "tube1";
dir = 8
},
/turf/simulated/floor/plasteel{
@@ -839,7 +816,6 @@
/area/derelict/crew_quarters)
"bS" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkredcorners"
},
/area/derelict/arrival)
@@ -861,7 +837,6 @@
/area/derelict/arrival)
"bV" = (
/turf/simulated/floor/wood{
- tag = "icon-wood-broken7";
icon_state = "wood-broken7"
},
/area/derelict/bridge)
@@ -876,7 +851,6 @@
/obj/structure/table/reinforced,
/obj/item/storage/box/cups,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkblue"
},
/area/derelict/bridge)
@@ -884,21 +858,18 @@
/obj/structure/table/reinforced,
/obj/item/ashtray/bronze,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkblue"
},
/area/derelict/bridge)
"bZ" = (
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkblue"
},
/area/derelict/bridge)
"ca" = (
/obj/structure/coatrack,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkblue"
},
/area/derelict/bridge)
@@ -906,14 +877,12 @@
/obj/structure/table/reinforced,
/obj/item/folder,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkblue"
},
/area/derelict/bridge)
"cc" = (
/obj/structure/table/reinforced,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkblue"
},
/area/derelict/bridge)
@@ -951,8 +920,6 @@
/area/derelict/bridge)
"ch" = (
/obj/machinery/light/spot{
- tag = "icon-tube1 (EAST)";
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/plasteel{
@@ -977,8 +944,6 @@
/area/derelict/crew_quarters)
"ck" = (
/obj/machinery/shower{
- tag = "icon-shower (WEST)";
- icon_state = "shower";
dir = 8
},
/obj/structure/curtain/open/shower,
@@ -995,13 +960,11 @@
name = "armoured helmet"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkredcorners"
},
/area/derelict/arrival)
"cm" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkred"
},
/area/derelict/arrival)
@@ -1021,8 +984,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/derelict/arrival)
"cp" = (
@@ -1086,14 +1048,12 @@
"cx" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkblue"
},
/area/derelict/bridge)
"cy" = (
/obj/structure/sink{
dir = 8;
- icon_state = "sink";
pixel_x = -12
},
/obj/structure/mirror{
@@ -1246,9 +1206,7 @@
/obj/structure/curtain/open/shower,
/obj/machinery/shower{
dir = 4;
- icon_state = "shower";
- pixel_x = 5;
- tag = "icon-shower (EAST)"
+ pixel_x = 5
},
/obj/structure/window/reinforced{
dir = 1
@@ -1258,7 +1216,6 @@
},
/obj/effect/decal/remains/human{
desc = "This guy seemed to have died in terrible way! Half his remains are dust.";
- icon_state = "remains";
name = "Human remains"
},
/obj/effect/decal/cleanable/dirt,
@@ -1319,7 +1276,6 @@
/obj/item/reagent_containers/food/drinks/bottle/vodka,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkblue"
},
/area/derelict/bridge)
@@ -1369,8 +1325,8 @@
/obj/item/bedsheet/blue,
/obj/structure/bed,
/turf/simulated/floor/plasteel{
- icon_state = "blue";
- dir = 4
+ dir = 4;
+ icon_state = "blue"
},
/area/derelict/crew_quarters)
"dd" = (
@@ -1426,8 +1382,6 @@
icon_state = "1-2"
},
/obj/machinery/light/spot{
- tag = "icon-tube1 (EAST)";
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/plasteel/airless{
@@ -1440,8 +1394,8 @@
/obj/item/bedsheet/blue,
/obj/structure/bed,
/turf/simulated/floor/plasteel{
- icon_state = "blue";
- dir = 8
+ dir = 8;
+ icon_state = "blue"
},
/area/derelict/crew_quarters)
"dl" = (
@@ -1488,7 +1442,6 @@
"dr" = (
/obj/effect/decal/remains/human{
desc = "This guy seemed to have died in terrible way! Half his remains are dust.";
- icon_state = "remains";
name = "Human remains"
},
/obj/effect/decal/cleanable/blood/splatter,
@@ -1501,15 +1454,12 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkred"
},
/area/derelict/arrival)
"dt" = (
/obj/structure/table/reinforced,
/obj/machinery/light/spot{
- tag = "icon-tube1 (EAST)";
- icon_state = "tube1";
dir = 4
},
/obj/effect/decal/cleanable/dirt,
@@ -1534,8 +1484,8 @@
/obj/structure/bed,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- icon_state = "blue";
- dir = 10
+ dir = 10;
+ icon_state = "blue"
},
/area/derelict/crew_quarters)
"dw" = (
@@ -1556,8 +1506,8 @@
/obj/item/bedsheet/blue,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- icon_state = "blue";
- dir = 6
+ dir = 6;
+ icon_state = "blue"
},
/area/derelict/crew_quarters)
"dz" = (
@@ -1597,7 +1547,6 @@
name = "recommendation for commendation"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkred"
},
/area/derelict/arrival)
@@ -1609,7 +1558,6 @@
name = "Bridge Lockdown"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkred"
},
/area/derelict/arrival)
@@ -1692,8 +1640,6 @@
"dN" = (
/obj/structure/closet,
/obj/machinery/light/spot{
- tag = "icon-tube1 (EAST)";
- icon_state = "tube1";
dir = 4
},
/obj/item/clothing/head/ushanka,
@@ -1722,8 +1668,7 @@
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable{
d2 = 2;
- icon_state = "0-2";
- pixel_y = 0
+ icon_state = "0-2"
},
/obj/machinery/power/apc/noalarm{
dir = 1;
@@ -1738,8 +1683,6 @@
/obj/machinery/recharger,
/obj/structure/table/reinforced,
/obj/machinery/light/spot{
- tag = "icon-tube1 (NORTH)";
- icon_state = "tube1";
dir = 1
},
/obj/effect/decal/cleanable/dirt,
@@ -1876,8 +1819,6 @@
})
"eh" = (
/obj/machinery/light/spot{
- tag = "icon-tube1 (NORTH)";
- icon_state = "tube1";
dir = 1
},
/turf/simulated/floor/plasteel{
@@ -1902,8 +1843,6 @@
})
"ej" = (
/obj/machinery/light/spot{
- tag = "icon-tube1 (NORTH)";
- icon_state = "tube1";
dir = 1
},
/obj/effect/decal/cleanable/dirt,
@@ -1925,9 +1864,9 @@
/area/derelict/crew_quarters)
"el" = (
/obj/structure/cable{
+ d2 = 2;
icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
+ pixel_y = 1
},
/obj/structure/piano,
/obj/machinery/power/apc/noalarm{
@@ -1942,7 +1881,6 @@
/obj/structure/chair/stool,
/obj/effect/decal/remains/human{
desc = "This guy seemed to have died in terrible way! Half his remains are dust.";
- icon_state = "remains";
name = "Human remains"
},
/obj/effect/decal/cleanable/blood,
@@ -1963,7 +1901,6 @@
"eo" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkred"
},
/area/derelict/arrival)
@@ -1977,7 +1914,6 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkred"
},
/area/derelict/arrival)
@@ -1996,7 +1932,6 @@
/obj/structure/table,
/obj/item/storage/box/cups,
/obj/machinery/light/spot{
- icon_state = "tube1";
dir = 1
},
/turf/simulated/floor/plasteel{
@@ -2023,9 +1958,7 @@
})
"eu" = (
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "rampbottom";
- tag = "icon-stage_stairs"
+ icon_state = "rampbottom"
},
/area/derelict/eva{
name = "Derelict Annex"
@@ -2037,9 +1970,7 @@
icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "rampbottom";
- tag = "icon-stage_stairs"
+ icon_state = "rampbottom"
},
/area/derelict/eva{
name = "Derelict Annex"
@@ -2047,9 +1978,7 @@
"ew" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "rampbottom";
- tag = "icon-stage_stairs"
+ icon_state = "rampbottom"
},
/area/derelict/eva{
name = "Derelict Annex"
@@ -2081,8 +2010,8 @@
icon_state = "2-8"
},
/turf/simulated/floor/plasteel{
- icon_state = "caution";
- dir = 5
+ dir = 5;
+ icon_state = "caution"
},
/area/derelict/eva{
name = "Derelict Annex"
@@ -2110,7 +2039,6 @@
"eC" = (
/obj/structure/chair/wood,
/turf/simulated/floor/wood{
- tag = "icon-wood-broken7";
icon_state = "wood-broken7"
},
/area/derelict/crew_quarters)
@@ -2128,8 +2056,6 @@
"eF" = (
/obj/structure/chair/sofa/left,
/obj/machinery/light/spot{
- tag = "icon-tube1 (NORTH)";
- icon_state = "tube1";
dir = 1
},
/obj/structure/sign/poster/contraband/rebels_unite{
@@ -2147,7 +2073,6 @@
icon_state = "1-2"
},
/turf/simulated/floor/wood{
- tag = "icon-wood-broken";
icon_state = "wood-broken"
},
/area/derelict/crew_quarters)
@@ -2304,13 +2229,12 @@
})
"eV" = (
/obj/machinery/power/terminal{
- icon_state = "term";
dir = 1
},
/obj/structure/cable{
+ d2 = 2;
icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
+ pixel_y = 1
},
/turf/simulated/floor/plasteel,
/area/derelict/eva{
@@ -2346,8 +2270,8 @@
/obj/structure/engineeringcart,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- icon_state = "caution";
- dir = 5
+ dir = 5;
+ icon_state = "caution"
},
/area/derelict/eva{
name = "Derelict Annex"
@@ -2418,7 +2342,6 @@
"fg" = (
/obj/effect/decal/remains/human{
desc = "This guy seemed to have died in terrible way! Half his remains are dust.";
- icon_state = "remains";
name = "Human remains"
},
/turf/simulated/floor/plasteel{
@@ -2473,7 +2396,6 @@
name = "Science Wing"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "purple"
},
/area/derelict/eva{
@@ -2534,7 +2456,6 @@
name = "Engineering Wing"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "caution"
},
/area/derelict/eva{
@@ -2600,8 +2521,8 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- icon_state = "caution";
- dir = 5
+ dir = 5;
+ icon_state = "caution"
},
/area/derelict/eva{
name = "Derelict Annex"
@@ -2611,7 +2532,6 @@
/obj/effect/decal/cleanable/blood,
/obj/effect/decal/remains/human{
desc = "This guy seemed to have died in terrible way! Half his remains are dust.";
- icon_state = "remains";
name = "Human remains"
},
/turf/simulated/floor/plasteel{
@@ -2623,7 +2543,6 @@
dir = 4
},
/turf/simulated/floor/wood{
- tag = "icon-wood-broken3";
icon_state = "wood-broken3"
},
/area/derelict/crew_quarters)
@@ -2649,7 +2568,6 @@
"fz" = (
/obj/structure/mopbucket,
/turf/simulated/floor/wood{
- tag = "icon-wood-broken6";
icon_state = "wood-broken6"
},
/area/derelict/crew_quarters)
@@ -2702,7 +2620,6 @@
/obj/effect/decal/cleanable/blood/splatter,
/obj/effect/decal/remains/human{
desc = "This guy seemed to have died in terrible way! Half his remains are dust.";
- icon_state = "remains";
name = "Human remains"
},
/turf/simulated/floor/plasteel{
@@ -2799,8 +2716,6 @@
})
"fP" = (
/obj/machinery/light/spot{
- tag = "icon-tube1 (WEST)";
- icon_state = "tube1";
dir = 8
},
/turf/simulated/floor/plasteel{
@@ -2833,8 +2748,8 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- icon_state = "caution";
- dir = 5
+ dir = 5;
+ icon_state = "caution"
},
/area/derelict/eva{
name = "Derelict Annex"
@@ -2872,7 +2787,6 @@
/obj/structure/chair/stool/bar,
/obj/effect/decal/remains/human{
desc = "This guy seemed to have died in terrible way! Half his remains are dust.";
- icon_state = "remains";
name = "Human remains"
},
/obj/effect/decal/cleanable/blood,
@@ -2913,7 +2827,6 @@
"ga" = (
/obj/effect/decal/remains/human{
desc = "This guy seemed to have died in terrible way! Half his remains are dust.";
- icon_state = "remains";
name = "gnawed bones"
},
/obj/effect/decal/cleanable/blood/splatter,
@@ -2981,7 +2894,6 @@
/obj/structure/table/wood,
/obj/item/ashtray/plastic,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkblue"
},
/area/derelict/eva{
@@ -3016,13 +2928,13 @@
track = 2
},
/obj/structure/cable{
+ d2 = 2;
icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
+ pixel_y = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "caution";
- dir = 4
+ dir = 4;
+ icon_state = "caution"
},
/area/derelict/eva{
name = "Derelict Annex"
@@ -3049,7 +2961,6 @@
"gn" = (
/obj/structure/chair/stool/bar,
/turf/simulated/floor/wood{
- tag = "icon-wood-broken7";
icon_state = "wood-broken7"
},
/area/derelict/crew_quarters)
@@ -3106,7 +3017,6 @@
"gu" = (
/obj/structure/window/reinforced,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "purple"
},
/area/derelict/eva{
@@ -3127,7 +3037,6 @@
})
"gw" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "purple"
},
/area/derelict/eva{
@@ -3138,8 +3047,6 @@
dir = 1
},
/obj/machinery/shower{
- tag = "icon-shower (WEST)";
- icon_state = "shower";
dir = 8
},
/obj/structure/curtain/open/shower,
@@ -3167,7 +3074,6 @@
})
"gA" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "caution"
},
/area/derelict/eva{
@@ -3190,9 +3096,9 @@
})
"gC" = (
/obj/structure/cable{
+ d2 = 2;
icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
+ pixel_y = 1
},
/obj/machinery/power/apc/noalarm{
dir = 1;
@@ -3211,13 +3117,11 @@
/obj/item/stack/cable_coil,
/obj/item/stack/cable_coil,
/obj/machinery/light/spot{
- tag = "icon-tube1 (NORTH)";
- icon_state = "tube1";
dir = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "caution";
- dir = 5
+ dir = 5;
+ icon_state = "caution"
},
/area/derelict/eva{
name = "Derelict Annex"
@@ -3358,8 +3262,8 @@
/obj/item/clothing/under/retro/engineering,
/obj/structure/closet,
/turf/simulated/floor/plasteel{
- icon_state = "caution";
- dir = 5
+ dir = 5;
+ icon_state = "caution"
},
/area/derelict/eva{
name = "Derelict Annex"
@@ -3378,7 +3282,6 @@
},
/obj/effect/decal/remains/human{
desc = "This guy seemed to have died in terrible way! Half his remains are dust.";
- icon_state = "remains";
name = "Human remains"
},
/turf/simulated/floor/plasteel{
@@ -3389,8 +3292,6 @@
/obj/structure/table/reinforced,
/obj/item/wrench,
/obj/machinery/light/spot{
- tag = "icon-tube1 (EAST)";
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/plasteel{
@@ -3410,9 +3311,9 @@
id = "russolar"
},
/obj/structure/cable{
+ d2 = 2;
icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
+ pixel_y = 1
},
/turf/simulated/floor/plasteel/airless{
icon_state = "solarpanel"
@@ -3435,7 +3336,6 @@
/obj/item/storage/box/cups,
/obj/structure/table,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkred"
},
/area/derelict/arrival)
@@ -3523,8 +3423,8 @@
})
"hl" = (
/turf/simulated/floor/plasteel{
- icon_state = "caution";
- dir = 4
+ dir = 4;
+ icon_state = "caution"
},
/area/derelict/eva{
name = "Derelict Annex"
@@ -3608,9 +3508,7 @@
name = "Security Wing"
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "ramptop";
- tag = "icon-stage_stairs"
+ icon_state = "ramptop"
},
/area/derelict/arrival)
"hv" = (
@@ -3623,14 +3521,11 @@
name = "Security Wing"
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "ramptop";
- tag = "icon-stage_stairs"
+ icon_state = "ramptop"
},
/area/derelict/arrival)
"hw" = (
/obj/structure/sink{
- icon_state = "sink";
dir = 8;
pixel_x = -12;
pixel_y = 2
@@ -3645,7 +3540,6 @@
"hx" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "purple"
},
/area/derelict/eva{
@@ -3684,7 +3578,6 @@
/obj/effect/landmark/burnturf,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "caution"
},
/area/derelict/eva{
@@ -3699,8 +3592,8 @@
"hD" = (
/obj/machinery/computer/monitor/secret,
/turf/simulated/floor/plasteel{
- icon_state = "caution";
- dir = 5
+ dir = 5;
+ icon_state = "caution"
},
/area/derelict/eva{
name = "Derelict Annex"
@@ -3715,7 +3608,6 @@
name = "Eastern Annex"
},
/turf/simulated/floor/plasteel{
- tag = "icon-stage_stairs";
icon_state = "stage_stairs"
},
/area/derelict/crew_quarters)
@@ -3728,7 +3620,6 @@
name = "Eastern Annex"
},
/turf/simulated/floor/plasteel{
- tag = "icon-stage_stairs";
icon_state = "stage_stairs"
},
/area/derelict/crew_quarters)
@@ -3786,7 +3677,6 @@
/area/derelict/arrival)
"hN" = (
/obj/structure/sink{
- icon_state = "sink";
dir = 8;
pixel_x = -12;
pixel_y = 2
@@ -3839,8 +3729,8 @@
"hR" = (
/obj/machinery/computer/atmos_alert,
/turf/simulated/floor/plasteel{
- icon_state = "caution";
- dir = 4
+ dir = 4;
+ icon_state = "caution"
},
/area/derelict/eva{
name = "Derelict Annex"
@@ -3917,8 +3807,6 @@
/area/derelict/arrival)
"ib" = (
/obj/machinery/light/spot{
- tag = "icon-tube1 (WEST)";
- icon_state = "tube1";
dir = 8
},
/obj/structure/closet/l3closet/scientist,
@@ -3999,8 +3887,8 @@
name = "Cosmonaut Engineering Suit"
},
/turf/simulated/floor/plasteel{
- icon_state = "caution";
- dir = 5
+ dir = 5;
+ icon_state = "caution"
},
/area/derelict/eva{
name = "Derelict Annex"
@@ -4083,8 +3971,6 @@
/area/derelict/arrival)
"iz" = (
/obj/machinery/light/spot{
- tag = "icon-tube1 (EAST)";
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/plasteel{
@@ -4114,7 +4000,6 @@
pixel_x = 28
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "purple"
},
/area/derelict/eva{
@@ -4227,7 +4112,6 @@
"iQ" = (
/obj/effect/decal/remains/human{
desc = "This guy seemed to have died in terrible way! Half his remains are dust.";
- icon_state = "remains";
name = "Human remains"
},
/obj/structure/chair/comfy/shuttle{
@@ -4322,7 +4206,6 @@
/obj/effect/landmark/damageturf,
/obj/effect/decal/remains/human{
desc = "This guy seemed to have died in terrible way! Half his remains are dust.";
- icon_state = "remains";
name = "Human remains"
},
/turf/simulated/floor/plating/airless,
@@ -4356,8 +4239,8 @@
name = "Engineering Wing"
},
/turf/simulated/floor/plasteel{
- icon_state = "caution";
- dir = 4
+ dir = 4;
+ icon_state = "caution"
},
/area/derelict/eva{
name = "Derelict Annex"
@@ -4391,8 +4274,6 @@
/area/derelict/crew_quarters)
"jg" = (
/obj/machinery/light/spot{
- tag = "icon-tube1 (EAST)";
- icon_state = "tube1";
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden,
@@ -4434,11 +4315,9 @@
/area/derelict/arrival)
"jm" = (
/obj/machinery/door/airlock/external{
- name = "Docking Port";
- req_access_txt = "0"
+ name = "Docking Port"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "brown"
},
/area/derelict/arrival)
@@ -4488,8 +4367,7 @@
/obj/item/trash/spentcasing,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "rampbottom";
- tag = "icon-stage_stairs"
+ icon_state = "rampbottom"
},
/area/derelict/eva{
name = "Derelict Annex"
@@ -4601,8 +4479,8 @@
})
"jF" = (
/turf/simulated/floor/plasteel{
- icon_state = "caution";
- dir = 5
+ dir = 5;
+ icon_state = "caution"
},
/area/derelict/eva{
name = "Derelict Annex"
@@ -4611,8 +4489,7 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "rampbottom";
- tag = "icon-stage_stairs"
+ icon_state = "rampbottom"
},
/area/derelict/eva{
name = "Derelict Annex"
@@ -4620,8 +4497,8 @@
"jH" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- icon_state = "caution";
- dir = 5
+ dir = 5;
+ icon_state = "caution"
},
/area/derelict/eva{
name = "Derelict Annex"
@@ -4649,8 +4526,7 @@
/obj/machinery/door/airlock/external{
frequency = 1502;
id_tag = "rus_inner_2";
- name = "External Airlock";
- req_access_txt = "0"
+ name = "External Airlock"
},
/obj/structure/cable{
d1 = 4;
@@ -4658,8 +4534,7 @@
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plating,
/area/derelict/crew_quarters)
@@ -4687,8 +4562,7 @@
frequency = 1502;
id_tag = "rus_outer_2";
locked = 1;
- name = "External Airlock";
- req_access_txt = "0"
+ name = "External Airlock"
},
/turf/simulated/floor/plating,
/area/derelict/crew_quarters)
@@ -4913,8 +4787,7 @@
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "rampbottom";
- tag = "icon-stage_stairs"
+ icon_state = "rampbottom"
},
/area/derelict/eva{
name = "Derelict Annex"
@@ -4932,7 +4805,6 @@
/obj/effect/decal/cleanable/blood,
/obj/effect/decal/remains/human{
desc = "This guy seemed to have died in terrible way! Half his remains are dust.";
- icon_state = "remains";
name = "Human remains"
},
/turf/simulated/floor/plasteel{
@@ -4954,8 +4826,7 @@
})
"kl" = (
/obj/machinery/door/airlock/external{
- name = "External Airlock";
- req_access_txt = "0"
+ name = "External Airlock"
},
/turf/simulated/floor/plasteel,
/area/derelict/eva{
@@ -4973,8 +4844,7 @@
})
"kn" = (
/obj/machinery/door/airlock/external{
- name = "External Airlock";
- req_access_txt = "0"
+ name = "External Airlock"
},
/turf/simulated/floor/engine,
/area/derelict/eva{
@@ -5013,8 +4883,7 @@
icon_state = "4-8"
},
/obj/machinery/door/airlock/external{
- name = "External Airlock";
- req_access_txt = "0"
+ name = "External Airlock"
},
/turf/simulated/floor/engine,
/area/derelict/eva{
@@ -5037,8 +4906,7 @@
})
"kt" = (
/obj/machinery/door/airlock/external{
- name = "External Airlock";
- req_access_txt = "0"
+ name = "External Airlock"
},
/obj/structure/cable{
d1 = 4;
@@ -5097,8 +4965,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "rampbottom";
- tag = "icon-stage_stairs"
+ icon_state = "rampbottom"
},
/area/derelict/eva{
name = "Derelict Annex"
@@ -5251,8 +5118,7 @@
frequency = 1502;
master_tag = "rus_airlock_2";
name = "exterior access button";
- pixel_x = -25;
- req_access_txt = "0"
+ pixel_x = -25
},
/turf/template_noop,
/area/derelict/crew_quarters)
@@ -5338,8 +5204,7 @@
"kV" = (
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "rampbottom";
- tag = "icon-stage_stairs"
+ icon_state = "rampbottom"
},
/area/derelict/eva{
name = "Derelict Annex"
@@ -5443,7 +5308,6 @@
"lf" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "caution"
},
/area/derelict/eva{
@@ -5456,7 +5320,6 @@
icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "caution"
},
/area/derelict/eva{
@@ -5474,8 +5337,7 @@
/obj/machinery/light/small,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "rampbottom";
- tag = "icon-stage_stairs"
+ icon_state = "rampbottom"
},
/area/derelict/eva{
name = "Derelict Annex"
@@ -5519,8 +5381,7 @@
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 5;
- icon_state = "intact"
+ dir = 5
},
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel{
@@ -5534,14 +5395,12 @@
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/door/airlock/external{
frequency = 1502;
id_tag = "rus_inner_2";
- name = "External Airlock";
- req_access_txt = "0"
+ name = "External Airlock"
},
/turf/simulated/floor/plating,
/area/derelict/crew_quarters)
@@ -5563,7 +5422,6 @@
frequency = 1502;
id_tag = "rus_airlock_2";
pixel_y = -25;
- req_access_txt = "0";
tag_airpump = "rus_pump_2";
tag_chamber_sensor = "rus_sensor_2";
tag_exterior_door = "rus_outer_2";
@@ -5581,8 +5439,7 @@
frequency = 1502;
id_tag = "rus_outer_2";
locked = 1;
- name = "External Airlock";
- req_access_txt = "0"
+ name = "External Airlock"
},
/obj/structure/cable{
d1 = 4;
@@ -5629,8 +5486,7 @@
/area/derelict/arrival)
"lu" = (
/obj/machinery/door/airlock/external{
- name = "Docking Port";
- req_access_txt = "0"
+ name = "Docking Port"
},
/turf/simulated/floor/plasteel,
/area/derelict/arrival)
@@ -5638,7 +5494,6 @@
/obj/effect/decal/cleanable/blood/splatter,
/obj/effect/decal/remains/human{
desc = "This guy seemed to have died in terrible way! Half his remains are dust.";
- icon_state = "remains";
name = "Human remains"
},
/turf/simulated/floor/plasteel,
@@ -5671,8 +5526,8 @@
welded = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "green";
- dir = 8
+ dir = 8;
+ icon_state = "green"
},
/area/derelict/eva{
name = "Derelict Annex"
@@ -5683,8 +5538,8 @@
welded = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "green";
- dir = 4
+ dir = 4;
+ icon_state = "green"
},
/area/derelict/eva{
name = "Derelict Annex"
@@ -5745,8 +5600,6 @@
})
"lG" = (
/obj/machinery/light/spot{
- tag = "icon-tube1 (EAST)";
- icon_state = "tube1";
dir = 4
},
/obj/machinery/access_button{
@@ -5754,8 +5607,7 @@
frequency = 1502;
master_tag = "rus_airlock_2";
name = "interior access button";
- pixel_x = 25;
- req_access_txt = "0"
+ pixel_x = 25
},
/obj/effect/decal/warning_stripes/northeastcorner,
/turf/simulated/floor/plasteel{
@@ -5799,7 +5651,6 @@
name = "2maintenance loot spawner"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "brown"
},
/area/derelict/arrival)
@@ -5890,8 +5741,6 @@
/obj/structure/closet/crate/can,
/obj/effect/spawner/lootdrop/maintenance,
/obj/machinery/light/spot{
- tag = "icon-tube1 (EAST)";
- icon_state = "tube1";
dir = 4
},
/obj/item/trash/tastybread,
@@ -5961,8 +5810,6 @@
/area/derelict/solar_control)
"mc" = (
/obj/structure/shuttle/engine/heater{
- tag = "icon-heater (NORTH)";
- icon_state = "heater";
dir = 1
},
/obj/structure/shuttle/engine/propulsion,
@@ -6097,13 +5944,11 @@
"mv" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "brown"
},
/area/derelict/arrival)
"mw" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "brown"
},
/area/derelict/arrival)
@@ -6182,8 +6027,7 @@
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "rampbottom";
- tag = "icon-stage_stairs"
+ icon_state = "rampbottom"
},
/area/derelict/arrival)
"mI" = (
@@ -6202,8 +6046,7 @@
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "rampbottom";
- tag = "icon-stage_stairs"
+ icon_state = "rampbottom"
},
/area/derelict/arrival)
"mK" = (
@@ -6268,8 +6111,7 @@
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "rampbottom";
- tag = "icon-stage_stairs"
+ icon_state = "rampbottom"
},
/area/derelict/crew_quarters)
"mR" = (
@@ -6395,8 +6237,6 @@
})
"ne" = (
/obj/machinery/shower{
- tag = "icon-shower (EAST)";
- icon_state = "shower";
dir = 4
},
/obj/structure/curtain/open/shower,
@@ -6506,8 +6346,6 @@
})
"ns" = (
/obj/machinery/shower{
- tag = "icon-shower (EAST)";
- icon_state = "shower";
dir = 4
},
/obj/structure/curtain/open/shower,
@@ -6593,7 +6431,6 @@
"nC" = (
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
pixel_x = 12;
pixel_y = 2
},
@@ -6615,8 +6452,6 @@
/obj/structure/rack,
/obj/item/beach_ball/holoball,
/obj/machinery/light/spot{
- tag = "icon-tube1 (EAST)";
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/plasteel{
@@ -6661,7 +6496,6 @@
"nJ" = (
/obj/effect/decal/remains/human{
desc = "This guy seemed to have died in terrible way! Half his remains are dust.";
- icon_state = "remains";
name = "Human remains"
},
/turf/simulated/floor/plasteel/airless{
@@ -6776,7 +6610,6 @@
/area/derelict/crew_quarters)
"nV" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "orangefull"
},
/area/derelict/crew_quarters)
@@ -6923,7 +6756,6 @@
"op" = (
/obj/item/stack/ore/iron,
/turf/simulated/floor/plasteel/airless{
- dir = 2;
icon_state = "green"
},
/area/derelict/eva{
@@ -6934,7 +6766,6 @@
icon_state = "medium"
},
/turf/simulated/floor/plasteel/airless{
- dir = 2;
icon_state = "green"
},
/area/derelict/eva{
@@ -6950,7 +6781,6 @@
"os" = (
/obj/effect/decal/remains/human{
desc = "This guy seemed to have died in terrible way! Half his remains are dust.";
- icon_state = "remains";
name = "Human remains"
},
/turf/simulated/floor/plasteel/airless,
@@ -7122,7 +6952,6 @@
})
"oL" = (
/turf/simulated/floor/plasteel/airless{
- dir = 2;
icon_state = "green"
},
/area/derelict/eva{
@@ -7180,7 +7009,6 @@
"oR" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "orange"
},
/area/derelict/crew_quarters)
@@ -7196,7 +7024,6 @@
/obj/item/hatchet,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel/airless{
- dir = 2;
icon_state = "green"
},
/area/derelict/eva{
@@ -7220,8 +7047,7 @@
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "rampbottom";
- tag = "icon-stage_stairs"
+ icon_state = "rampbottom"
},
/area/derelict/eva{
name = "Derelict Annex"
@@ -7234,8 +7060,7 @@
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "rampbottom";
- tag = "icon-stage_stairs"
+ icon_state = "rampbottom"
},
/area/derelict/eva{
name = "Derelict Annex"
@@ -7243,8 +7068,7 @@
"oX" = (
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "rampbottom";
- tag = "icon-stage_stairs"
+ icon_state = "rampbottom"
},
/area/derelict/eva{
name = "Derelict Annex"
@@ -7298,7 +7122,6 @@
"pd" = (
/obj/docking_port/stationary/whiteship{
dir = 8;
- icon_state = "pinonfar";
id = "whiteship_ussp";
name = "USSP"
},
@@ -7314,8 +7137,6 @@
/obj/structure/table,
/obj/item/storage/box/cups,
/obj/machinery/light/spot{
- tag = "icon-tube1 (WEST)";
- icon_state = "tube1";
dir = 8
},
/turf/simulated/floor/plasteel{
@@ -7327,7 +7148,6 @@
pixel_y = -32
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "orangefull"
},
/area/derelict/crew_quarters)
@@ -7337,13 +7157,11 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "orange"
},
/area/derelict/crew_quarters)
"pi" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "orange"
},
/area/derelict/crew_quarters)
@@ -7414,14 +7232,11 @@
"pt" = (
/obj/structure/closet/jcloset,
/turf/simulated/floor/plasteel{
- tag = "icon-dark";
icon_state = "dark"
},
/area/derelict/crew_quarters)
"pu" = (
/obj/structure/window/reinforced{
- tag = "icon-rwindow (EAST)";
- icon_state = "rwindow";
dir = 4
},
/obj/structure/rack,
@@ -7432,8 +7247,8 @@
/obj/item/storage/bag/trash,
/obj/structure/spider/stickyweb,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- dir = 1
+ dir = 1;
+ icon_state = "vault"
},
/area/derelict/crew_quarters)
"pv" = (
@@ -7451,7 +7266,6 @@
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/remains/human{
desc = "This guy seemed to have died in terrible way! Half his remains are dust.";
- icon_state = "remains";
name = "Human remains"
},
/obj/structure/spider/cocoon,
@@ -7467,8 +7281,7 @@
/obj/effect/decal/cleanable/dirt,
/obj/structure/spider/stickyweb,
/turf/simulated/floor/plasteel{
- icon_state = "delivery";
- name = "floor"
+ icon_state = "delivery"
},
/area/derelict/crew_quarters)
"pA" = (
@@ -7493,21 +7306,18 @@
})
"pC" = (
/turf/simulated/floor/plasteel{
- tag = "icon-dark";
icon_state = "dark"
},
/area/derelict/crew_quarters)
"pD" = (
/obj/structure/window/reinforced{
- tag = "icon-rwindow (EAST)";
- icon_state = "rwindow";
dir = 4
},
/obj/structure/rack,
/obj/structure/spider/stickyweb,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- dir = 1
+ dir = 1;
+ icon_state = "vault"
},
/area/derelict/crew_quarters)
"pE" = (
@@ -7523,8 +7333,7 @@
/obj/effect/decal/cleanable/dirt,
/obj/structure/spider/stickyweb,
/turf/simulated/floor/plasteel{
- icon_state = "delivery";
- name = "floor"
+ icon_state = "delivery"
},
/area/derelict/crew_quarters)
"pH" = (
@@ -7537,8 +7346,6 @@
"pI" = (
/obj/effect/landmark/burnturf,
/obj/machinery/light/small{
- tag = "icon-bulb1 (EAST)";
- icon_state = "bulb1";
dir = 4
},
/turf/simulated/floor/plasteel/airless{
@@ -7556,34 +7363,29 @@
dir = 8
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- dir = 1
+ dir = 1;
+ icon_state = "vault"
},
/area/derelict/crew_quarters)
"pL" = (
/obj/structure/window/reinforced,
/obj/structure/spider/stickyweb,
/turf/simulated/floor/plasteel{
- tag = "icon-dark";
icon_state = "dark"
},
/area/derelict/crew_quarters)
"pM" = (
/obj/structure/spider/stickyweb,
/turf/simulated/floor/plasteel{
- tag = "icon-dark";
icon_state = "dark"
},
/area/derelict/crew_quarters)
"pN" = (
/obj/structure/window/reinforced{
- tag = "icon-rwindow (EAST)";
- icon_state = "rwindow";
dir = 4
},
/obj/structure/spider/stickyweb,
/turf/simulated/floor/plasteel{
- tag = "icon-dark";
icon_state = "dark"
},
/area/derelict/crew_quarters)
@@ -7661,8 +7463,6 @@
/area/derelict/crew_quarters)
"pX" = (
/obj/structure/window/reinforced{
- tag = "icon-rwindow (EAST)";
- icon_state = "rwindow";
dir = 4
},
/obj/structure/window/reinforced{
@@ -7678,15 +7478,13 @@
/obj/structure/spider/stickyweb,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "rampbottom";
- tag = "icon-stage_stairs"
+ icon_state = "rampbottom"
},
/area/derelict/crew_quarters)
"pZ" = (
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "rampbottom";
- tag = "icon-stage_stairs"
+ icon_state = "rampbottom"
},
/area/derelict/crew_quarters)
"qa" = (
@@ -7703,8 +7501,6 @@
icon_state = "1-2"
},
/obj/machinery/light/small{
- tag = "icon-bulb1 (EAST)";
- icon_state = "bulb1";
dir = 4
},
/turf/simulated/floor/plasteel,
@@ -7726,8 +7522,6 @@
/area/derelict/crew_quarters)
"qe" = (
/obj/structure/window/reinforced{
- tag = "icon-rwindow (EAST)";
- icon_state = "rwindow";
dir = 4
},
/turf/simulated/floor/plasteel{
@@ -7755,17 +7549,13 @@
"qi" = (
/obj/machinery/computer/arcade,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "redfull"
},
/area/derelict/arrival)
"qj" = (
/obj/structure/chair/stool,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "redfull"
},
/area/derelict/arrival)
"qk" = (
@@ -7779,17 +7569,13 @@
slogan_list = list("Just remember! No capitalist.","Best enjoyed with Vodka!.","Smoke!","Nine out of ten USSP scientists agree, smoking reduces stress!","There's no cigarette like a Russian cigarette!","Cigarettes! Now with 100% less capitalism.")
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "redfull"
},
/area/derelict/arrival)
"qm" = (
/obj/machinery/vending/sovietsoda,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "redfull"
},
/area/derelict/arrival)
"qn" = (
@@ -7805,8 +7591,6 @@
"qo" = (
/obj/structure/window/reinforced,
/obj/structure/window/reinforced{
- tag = "icon-rwindow (EAST)";
- icon_state = "rwindow";
dir = 4
},
/obj/structure/kitchenspike,
@@ -7824,9 +7608,9 @@
/area/derelict/arrival)
"qr" = (
/obj/structure/cable{
+ d2 = 2;
icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
+ pixel_y = 1
},
/turf/simulated/floor/plasteel/airless{
icon_state = "floorscorched2"
@@ -7838,29 +7622,27 @@
/area/derelict/arrival)
"qt" = (
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 9
+ dir = 9;
+ icon_state = "red"
},
/area/derelict/arrival)
"qu" = (
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 1
+ dir = 1;
+ icon_state = "red"
},
/area/derelict/arrival)
"qv" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 5
+ dir = 5;
+ icon_state = "red"
},
/area/derelict/arrival)
"qw" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "redfull"
},
/area/derelict/arrival)
"qx" = (
@@ -7876,15 +7658,11 @@
/area/derelict/arrival)
"qy" = (
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "redfull"
},
/area/derelict/arrival)
"qz" = (
/obj/machinery/light/spot{
- tag = "icon-tube1 (EAST)";
- icon_state = "tube1";
dir = 4
},
/obj/effect/decal/cleanable/dirt,
@@ -7894,8 +7672,8 @@
pixel_x = 27
},
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 5
+ dir = 5;
+ icon_state = "red"
},
/area/derelict/arrival)
"qA" = (
@@ -7946,16 +7724,14 @@
/area/derelict/arrival)
"qF" = (
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 5
+ dir = 5;
+ icon_state = "red"
},
/area/derelict/arrival)
"qG" = (
/obj/structure/closet/emcloset,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "redfull"
},
/area/derelict/arrival)
"qH" = (
@@ -7965,9 +7741,7 @@
icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "redfull"
},
/area/derelict/arrival)
"qI" = (
@@ -7979,9 +7753,7 @@
list_reagents = list("charcoal" = 13, "salmonella" = 2)
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "redfull"
},
/area/derelict/arrival)
"qJ" = (
@@ -8011,14 +7783,10 @@
/area/derelict/arrival)
"qN" = (
/obj/machinery/light/spot{
- tag = "icon-tube1 (NORTH)";
- icon_state = "tube1";
dir = 1
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "redfull"
},
/area/derelict/arrival)
"qO" = (
@@ -8037,8 +7805,6 @@
"qQ" = (
/obj/structure/window/reinforced,
/obj/structure/window/reinforced{
- tag = "icon-rwindow (EAST)";
- icon_state = "rwindow";
dir = 4
},
/obj/structure/flora/ausbushes/fullgrass,
@@ -8048,14 +7814,14 @@
/area/derelict/arrival)
"qR" = (
/turf/simulated/floor/plasteel{
- icon_state = "redcorner";
- dir = 1
+ dir = 1;
+ icon_state = "redcorner"
},
/area/derelict/arrival)
"qS" = (
/turf/simulated/floor/plasteel{
- icon_state = "redcorner";
- dir = 4
+ dir = 4;
+ icon_state = "redcorner"
},
/area/derelict/arrival)
"qT" = (
@@ -8075,8 +7841,6 @@
"qV" = (
/obj/structure/window/reinforced,
/obj/structure/window/reinforced{
- tag = "icon-rwindow (EAST)";
- icon_state = "rwindow";
dir = 4
},
/obj/structure/flora/ausbushes/ywflowers,
@@ -8113,8 +7877,6 @@
/area/derelict/arrival)
"ra" = (
/obj/machinery/light/spot{
- tag = "icon-tube1 (WEST)";
- icon_state = "tube1";
dir = 8
},
/turf/simulated/floor/plasteel{
@@ -8167,8 +7929,8 @@
icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 5
+ dir = 5;
+ icon_state = "red"
},
/area/derelict/arrival)
"rg" = (
@@ -8178,9 +7940,7 @@
icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "redfull"
},
/area/derelict/arrival)
"rh" = (
@@ -8190,8 +7950,8 @@
icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 9
+ dir = 9;
+ icon_state = "red"
},
/area/derelict/arrival)
"ri" = (
@@ -8238,8 +7998,7 @@
/obj/structure/closet/crate/secure/loot,
/obj/structure/spider/stickyweb,
/turf/simulated/floor/plasteel{
- icon_state = "delivery";
- name = "floor"
+ icon_state = "delivery"
},
/area/derelict/crew_quarters)
"rn" = (
@@ -8256,8 +8015,8 @@
/area/derelict/arrival)
"rq" = (
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 4
+ dir = 4;
+ icon_state = "red"
},
/area/derelict/arrival)
"rr" = (
@@ -8302,16 +8061,14 @@
layer = 2.9
},
/obj/structure/window/reinforced{
- tag = "icon-rwindow (EAST)";
- icon_state = "rwindow";
dir = 4
},
/turf/simulated/floor/grass,
/area/derelict/arrival)
"ru" = (
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 8
+ dir = 8;
+ icon_state = "red"
},
/area/derelict/arrival)
"rv" = (
@@ -8319,17 +8076,13 @@
dir = 8
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "redfull"
},
/area/derelict/arrival)
"rw" = (
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "redfull"
},
/area/derelict/arrival)
"rx" = (
@@ -8383,8 +8136,6 @@
pixel_y = 5
},
/obj/structure/window/reinforced{
- tag = "icon-rwindow (EAST)";
- icon_state = "rwindow";
dir = 4
},
/obj/effect/decal/warning_stripes/south,
@@ -8405,9 +8156,7 @@
/obj/structure/table,
/obj/item/flashlight/lamp,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "redfull"
},
/area/derelict/arrival)
"rE" = (
@@ -8417,8 +8166,8 @@
icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 1
+ dir = 1;
+ icon_state = "red"
},
/area/derelict/arrival)
"rF" = (
@@ -8432,18 +8181,14 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "redfull"
},
/area/derelict/arrival)
"rH" = (
/obj/structure/table/wood/poker,
/obj/item/deck/cards,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "redfull"
},
/area/derelict/arrival)
"rI" = (
@@ -8451,9 +8196,7 @@
dir = 8
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "redfull"
},
/area/derelict/arrival)
"rJ" = (
@@ -8469,9 +8212,7 @@
name = "worn paper"
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "redfull"
},
/area/derelict/arrival)
"rK" = (
@@ -8500,8 +8241,6 @@
layer = 2.9
},
/obj/structure/window/reinforced{
- tag = "icon-rwindow (EAST)";
- icon_state = "rwindow";
dir = 4
},
/obj/structure/flora/ausbushes/ppflowers,
@@ -8517,16 +8256,13 @@
},
/obj/machinery/portable_atmospherics/canister/air,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "redfull"
},
/area/derelict/arrival)
"rO" = (
/obj/machinery/light/spot,
/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/warning_stripes/southeastcorner,
/turf/simulated/floor/plasteel{
@@ -8560,16 +8296,14 @@
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/access_button{
command = "cycle_interior";
frequency = 1501;
master_tag = "rus_airlock_1";
name = "interior access button";
- pixel_y = -25;
- req_access_txt = "0"
+ pixel_y = -25
},
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel{
@@ -8607,9 +8341,7 @@
pixel_y = -32
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "redfull"
},
/area/derelict/arrival)
"rU" = (
@@ -8634,8 +8366,6 @@
/area/derelict/arrival)
"rW" = (
/obj/structure/window/reinforced{
- tag = "icon-rwindow (EAST)";
- icon_state = "rwindow";
dir = 4
},
/obj/structure/window/reinforced{
@@ -8649,9 +8379,7 @@
/obj/structure/table,
/obj/machinery/computer/library/public,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "redfull"
},
/area/derelict/arrival)
"rY" = (
@@ -8666,8 +8394,7 @@
/obj/machinery/door/airlock/external{
frequency = 1501;
id_tag = "rus_inner_1";
- name = "External Airlock";
- req_access_txt = "0"
+ name = "External Airlock"
},
/obj/structure/cable{
d1 = 1;
@@ -8687,8 +8414,7 @@
/obj/machinery/door/airlock/external{
frequency = 1501;
id_tag = "rus_inner_1";
- name = "External Airlock";
- req_access_txt = "0"
+ name = "External Airlock"
},
/turf/simulated/floor/plating,
/area/derelict/arrival)
@@ -8699,8 +8425,6 @@
icon_state = "1-2"
},
/obj/machinery/light/small{
- tag = "icon-bulb1 (EAST)";
- icon_state = "bulb1";
dir = 4
},
/obj/machinery/atmospherics/unary/vent_pump/high_volume{
@@ -8718,7 +8442,6 @@
frequency = 1501;
id_tag = "rus_airlock_1";
pixel_x = -25;
- req_access_txt = "0";
tag_airpump = "rus_pump_1";
tag_chamber_sensor = "rus_sensor_1";
tag_exterior_door = "rus_outer_1";
@@ -8752,8 +8475,7 @@
frequency = 1501;
id_tag = "rus_outer_1";
locked = 1;
- name = "External Airlock";
- req_access_txt = "0"
+ name = "External Airlock"
},
/turf/simulated/floor/plating,
/area/derelict/arrival)
@@ -8762,8 +8484,7 @@
frequency = 1501;
id_tag = "rus_outer_1";
locked = 1;
- name = "External Airlock";
- req_access_txt = "0"
+ name = "External Airlock"
},
/obj/structure/cable{
d1 = 1;
@@ -8774,8 +8495,7 @@
/area/derelict/arrival)
"sg" = (
/obj/item/stack/cable_coil{
- amount = 1;
- max_amount = 30
+ amount = 1
},
/turf/template_noop,
/area/space/nearstation)
@@ -8788,8 +8508,7 @@
frequency = 1501;
master_tag = "rus_airlock_1";
name = "exterior access button";
- pixel_y = 25;
- req_access_txt = "0"
+ pixel_y = 25
},
/turf/template_noop,
/area/derelict/arrival)
diff --git a/_maps/map_files/RandomRuins/SpaceRuins/whiteship.dmm b/_maps/map_files/RandomRuins/SpaceRuins/whiteship.dmm
index 96af170f3c2..23cab65cbb6 100644
--- a/_maps/map_files/RandomRuins/SpaceRuins/whiteship.dmm
+++ b/_maps/map_files/RandomRuins/SpaceRuins/whiteship.dmm
@@ -9,9 +9,7 @@
/turf/simulated/floor/mineral/titanium,
/area/shuttle/abandoned)
"af" = (
-/obj/machinery/sleeper{
- dir = 8
- },
+/obj/machinery/sleeper,
/obj/machinery/light{
dir = 1
},
@@ -21,8 +19,7 @@
"ak" = (
/obj/structure/shuttle/engine/propulsion{
dir = 4;
- icon_state = "burst_r";
- tag = "icon-burst_r (WEST)"
+ icon_state = "burst_r"
},
/turf/simulated/floor/plating/airless,
/area/shuttle/abandoned)
@@ -40,8 +37,6 @@
/area/shuttle/abandoned)
"aq" = (
/obj/structure/shuttle/engine/heater{
- tag = "icon-heater (EAST)";
- icon_state = "heater";
dir = 4
},
/obj/structure/window/reinforced{
@@ -51,9 +46,7 @@
/area/shuttle/abandoned)
"ar" = (
/obj/structure/shuttle/engine/propulsion{
- dir = 4;
- icon_state = "propulsion";
- tag = "icon-propulsion (WEST)"
+ dir = 4
},
/turf/simulated/floor/plating/airless,
/area/shuttle/abandoned)
@@ -114,8 +107,7 @@
"aJ" = (
/obj/structure/shuttle/engine/propulsion{
dir = 4;
- icon_state = "burst_l";
- tag = "icon-burst_l (WEST)"
+ icon_state = "burst_l"
},
/turf/simulated/floor/plating/airless,
/area/shuttle/abandoned)
@@ -132,7 +124,6 @@
},
/obj/docking_port/stationary/whiteship{
dir = 8;
- icon_state = "pinonfar";
id = "whiteship_away";
name = "Deep Space"
},
diff --git a/_maps/map_files/RandomRuins/SpaceRuins/wizardcrash.dmm b/_maps/map_files/RandomRuins/SpaceRuins/wizardcrash.dmm
index 228f1580e51..162f4bfb179 100644
--- a/_maps/map_files/RandomRuins/SpaceRuins/wizardcrash.dmm
+++ b/_maps/map_files/RandomRuins/SpaceRuins/wizardcrash.dmm
@@ -17,7 +17,6 @@
icon_state = "small"
},
/turf/simulated/floor/wood{
- tag = "icon-wood-broken3";
icon_state = "wood-broken3"
},
/area/ruin/unpowered)
@@ -27,13 +26,11 @@
"af" = (
/obj/structure/computerframe,
/turf/simulated/floor/wood{
- tag = "icon-wood-broken3";
icon_state = "wood-broken3"
},
/area/ruin/unpowered)
"ag" = (
/turf/simulated/floor/wood{
- tag = "icon-wood-broken7";
icon_state = "wood-broken7"
},
/area/ruin/unpowered)
@@ -44,7 +41,6 @@
},
/obj/item/shard,
/turf/simulated/floor/wood{
- tag = "icon-wood-broken3";
icon_state = "wood-broken3"
},
/area/ruin/unpowered)
@@ -105,7 +101,6 @@
in_use = 1
},
/turf/simulated/floor/wood{
- tag = "icon-wood-broken3";
icon_state = "wood-broken3"
},
/area/ruin/unpowered)
@@ -140,7 +135,6 @@
/area/ruin/unpowered)
"ax" = (
/turf/simulated/floor/wood{
- tag = "icon-wood-broken3";
icon_state = "wood-broken3"
},
/area/ruin/unpowered)
@@ -156,7 +150,6 @@
/area/ruin/unpowered)
"aA" = (
/turf/simulated/floor/wood{
- tag = "icon-wood-broken6";
icon_state = "wood-broken6"
},
/area/ruin/unpowered)
@@ -185,7 +178,6 @@
"aF" = (
/obj/structure/table/wood,
/turf/simulated/floor/wood{
- tag = "icon-wood-broken6";
icon_state = "wood-broken6"
},
/area/ruin/unpowered)
@@ -261,7 +253,6 @@
/area/ruin/unpowered)
"aT" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/obj/structure/reagent_dispensers/oil,
@@ -280,7 +271,6 @@
/obj/structure/grille,
/obj/structure/window/full/reinforced,
/turf/simulated/floor/wood{
- tag = "icon-wood-broken6";
icon_state = "wood-broken6"
},
/area/ruin/unpowered)
@@ -502,8 +492,7 @@
/area/ruin/unpowered)
"bJ" = (
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/turf/simulated/floor/mineral/plasma,
/area/ruin/unpowered)
diff --git a/_maps/map_files/RandomZLevels/academy.dmm b/_maps/map_files/RandomZLevels/academy.dmm
index a98fe0ef8f3..6e777650165 100644
--- a/_maps/map_files/RandomZLevels/academy.dmm
+++ b/_maps/map_files/RandomZLevels/academy.dmm
@@ -43,13 +43,12 @@
/area/awaymission/academy/headmaster)
"aj" = (
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/obj/machinery/power/apc/noalarm{
dir = 1;
environ = 0;
- equipment = 3;
locked = 0;
req_access = ""
},
@@ -192,7 +191,6 @@
/area/awaymission/academy/headmaster)
"aD" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/carpet,
@@ -215,7 +213,6 @@
icon_state = "1-2"
},
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/turf/simulated/floor/carpet,
@@ -476,7 +473,6 @@
"bz" = (
/mob/living/simple_animal/hostile/mimic/crate,
/turf/simulated/floor/plasteel{
- tag = "icon-vault";
icon_state = "vault"
},
/area/awaymission/academy/classrooms)
@@ -526,7 +522,6 @@
/area/awaymission/academy/headmaster)
"bL" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/plasteel,
@@ -536,9 +531,8 @@
dir = 8
},
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/academy/headmaster)
"bN" = (
@@ -552,9 +546,8 @@
icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/academy/headmaster)
"bP" = (
@@ -575,9 +568,8 @@
icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/academy/headmaster)
"bR" = (
@@ -606,8 +598,8 @@
"bU" = (
/obj/structure/grille,
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/obj/structure/cable{
d2 = 8;
@@ -655,8 +647,8 @@
"ce" = (
/obj/machinery/autolathe,
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/turf/simulated/floor/plasteel,
/area/awaymission/academy/classrooms)
@@ -667,9 +659,8 @@
icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/academy/headmaster)
"cg" = (
@@ -690,8 +681,8 @@
"ci" = (
/obj/structure/grille,
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/obj/structure/cable,
/obj/structure/window/reinforced{
@@ -709,9 +700,8 @@
/area/awaymission/academy/headmaster)
"cl" = (
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/academy/headmaster)
"cm" = (
@@ -727,9 +717,8 @@
"cn" = (
/obj/machinery/computer/area_atmos/area,
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/academy/headmaster)
"co" = (
@@ -754,7 +743,6 @@
/area/awaymission/academy/headmaster)
"cr" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/plasteel,
@@ -794,9 +782,7 @@
},
/area/awaymission/academy/headmaster)
"cz" = (
-/obj/machinery/door/window{
- dir = 4
- },
+/obj/machinery/door/window,
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -806,8 +792,8 @@
/area/awaymission/academy/headmaster)
"cA" = (
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 8
+ dir = 8;
+ icon_state = "red"
},
/area/awaymission/academy/classrooms)
"cB" = (
@@ -816,8 +802,8 @@
/area/awaymission/academy/classrooms)
"cC" = (
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 4
+ dir = 4;
+ icon_state = "red"
},
/area/awaymission/academy/classrooms)
"cD" = (
@@ -907,8 +893,8 @@
/area/awaymission/academy/classrooms)
"cP" = (
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 10
+ dir = 10;
+ icon_state = "red"
},
/area/awaymission/academy/classrooms)
"cQ" = (
@@ -918,26 +904,18 @@
/area/awaymission/academy/classrooms)
"cR" = (
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 6
+ dir = 6;
+ icon_state = "red"
},
/area/awaymission/academy/classrooms)
-"cS" = (
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/turf/simulated/floor/plasteel,
-/area/awaymission/academy/headmaster)
"cT" = (
/obj/machinery/light{
dir = 8
},
/obj/machinery/portable_atmospherics/pump,
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/academy/headmaster)
"cU" = (
@@ -952,9 +930,8 @@
/obj/structure/closet/crate,
/obj/item/crowbar/red,
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/academy/headmaster)
"cW" = (
@@ -1005,7 +982,6 @@
/area/awaymission/academy/classrooms)
"dd" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/wood,
@@ -1025,9 +1001,8 @@
},
/obj/item/gun/projectile/shotgun/toy/tommygun,
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/academy/classrooms)
"dh" = (
@@ -1091,14 +1066,13 @@
"dq" = (
/obj/machinery/mech_bay_recharge_port,
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/turf/simulated/floor/plating,
/area/awaymission/academy/classrooms)
"dr" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/obj/effect/decal/cleanable/dirt,
@@ -1112,8 +1086,8 @@
/area/awaymission/academy/classrooms)
"dt" = (
/turf/simulated/floor/plasteel{
- icon_state = "green";
- dir = 8
+ dir = 8;
+ icon_state = "green"
},
/area/awaymission/academy/classrooms)
"du" = (
@@ -1125,15 +1099,15 @@
/area/awaymission/academy/classrooms)
"dw" = (
/turf/simulated/floor/plasteel{
- icon_state = "green";
- dir = 4
+ dir = 4;
+ icon_state = "green"
},
/area/awaymission/academy/classrooms)
"dx" = (
/obj/machinery/computer/mech_bay_power_console,
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/turf/simulated/floor/greengrid,
/area/awaymission/academy/classrooms)
@@ -1273,8 +1247,8 @@
icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- icon_state = "green";
- dir = 4
+ dir = 4;
+ icon_state = "green"
},
/area/awaymission/academy/classrooms)
"dQ" = (
@@ -1410,13 +1384,11 @@
/area/awaymission/academy/classrooms)
"ej" = (
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/obj/machinery/power/apc/noalarm{
dir = 1;
- environ = 3;
- equipment = 3;
locked = 0;
req_access = ""
},
@@ -1440,14 +1412,12 @@
/area/awaymission/academy/classrooms)
"em" = (
/turf/simulated/floor/plasteel{
- tag = "icon-green (SOUTHWEST)";
- icon_state = "green";
- dir = 10
+ dir = 10;
+ icon_state = "green"
},
/area/awaymission/academy/classrooms)
"en" = (
/turf/simulated/floor/plasteel{
- tag = "icon-green";
icon_state = "green"
},
/area/awaymission/academy/classrooms)
@@ -1460,8 +1430,8 @@
"ep" = (
/obj/machinery/vending/hydronutrients,
/turf/simulated/floor/plasteel{
- icon_state = "green";
- dir = 6
+ dir = 6;
+ icon_state = "green"
},
/area/awaymission/academy/classrooms)
"eq" = (
@@ -1495,8 +1465,8 @@
dir = 8
},
/turf/simulated/floor/plasteel{
- icon_state = "yellow";
- dir = 10
+ dir = 10;
+ icon_state = "yellow"
},
/area/awaymission/academy/classrooms)
"ev" = (
@@ -1549,15 +1519,15 @@
/area/awaymission/academy/headmaster)
"eC" = (
/turf/simulated/floor/plasteel{
- icon_state = "escape";
- dir = 6
+ dir = 6;
+ icon_state = "escape"
},
/area/awaymission/academy/classrooms)
"eD" = (
/obj/structure/chair,
/turf/simulated/floor/plasteel{
- icon_state = "escape";
- dir = 6
+ dir = 6;
+ icon_state = "escape"
},
/area/awaymission/academy/classrooms)
"eE" = (
@@ -1633,7 +1603,6 @@
/area/awaymission/academy/classrooms)
"eO" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/plasteel{
@@ -1643,8 +1612,8 @@
"eP" = (
/obj/structure/table,
/turf/simulated/floor/plasteel{
- icon_state = "escape";
- dir = 6
+ dir = 6;
+ icon_state = "escape"
},
/area/awaymission/academy/classrooms)
"eQ" = (
@@ -1696,14 +1665,13 @@
dir = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "escape";
- dir = 6
+ dir = 6;
+ icon_state = "escape"
},
/area/awaymission/academy/classrooms)
"eY" = (
/obj/structure/table,
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/plasteel{
@@ -1740,8 +1708,8 @@
"fc" = (
/obj/structure/mineral_door/wood,
/turf/simulated/floor/plasteel{
- icon_state = "escape";
- dir = 6
+ dir = 6;
+ icon_state = "escape"
},
/area/awaymission/academy/classrooms)
"fd" = (
@@ -1803,8 +1771,8 @@
icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- icon_state = "escape";
- dir = 6
+ dir = 6;
+ icon_state = "escape"
},
/area/awaymission/academy/classrooms)
"fk" = (
@@ -1815,8 +1783,8 @@
icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- icon_state = "escape";
- dir = 6
+ dir = 6;
+ icon_state = "escape"
},
/area/awaymission/academy/classrooms)
"fl" = (
@@ -1850,16 +1818,16 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "escape";
- dir = 6
+ dir = 6;
+ icon_state = "escape"
},
/area/awaymission/academy/classrooms)
"fp" = (
/obj/structure/table,
/obj/item/trash/semki,
/turf/simulated/floor/plasteel{
- icon_state = "escape";
- dir = 6
+ dir = 6;
+ icon_state = "escape"
},
/area/awaymission/academy/classrooms)
"fq" = (
@@ -1867,8 +1835,8 @@
dir = 8
},
/turf/simulated/floor/plasteel{
- icon_state = "escape";
- dir = 6
+ dir = 6;
+ icon_state = "escape"
},
/area/awaymission/academy/classrooms)
"fr" = (
@@ -1881,8 +1849,8 @@
/area/awaymission/academy/classrooms)
"fs" = (
/turf/simulated/floor/plasteel{
- icon_state = "cautioncorner";
- dir = 4
+ dir = 4;
+ icon_state = "cautioncorner"
},
/area/awaymission/academy/classrooms)
"ft" = (
@@ -1908,8 +1876,8 @@
icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- icon_state = "escape";
- dir = 6
+ dir = 6;
+ icon_state = "escape"
},
/area/awaymission/academy/classrooms)
"fw" = (
@@ -1965,8 +1933,8 @@
"fA" = (
/obj/machinery/light,
/turf/simulated/floor/plasteel{
- icon_state = "escape";
- dir = 6
+ dir = 6;
+ icon_state = "escape"
},
/area/awaymission/academy/classrooms)
"fB" = (
@@ -2039,8 +2007,8 @@
/area/awaymission/academy/academyaft)
"fI" = (
/turf/simulated/floor/plasteel{
- icon_state = "whitehall";
- dir = 1
+ dir = 1;
+ icon_state = "whitehall"
},
/area/awaymission/academy/classrooms)
"fJ" = (
@@ -2066,19 +2034,18 @@
/area/awaymission/academy/academyaft)
"fN" = (
/turf/simulated/floor/plasteel{
- tag = "icon-vault";
icon_state = "vault"
},
/area/awaymission/academy/classrooms)
"fO" = (
/obj/structure/grille,
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/obj/structure/window/reinforced{
dir = 5
@@ -2088,7 +2055,6 @@
"fP" = (
/obj/structure/chair,
/turf/simulated/floor/plasteel{
- tag = "icon-vault";
icon_state = "vault"
},
/area/awaymission/academy/classrooms)
@@ -2099,8 +2065,8 @@
icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- icon_state = "whitehall";
- dir = 1
+ dir = 1;
+ icon_state = "whitehall"
},
/area/awaymission/academy/classrooms)
"fR" = (
@@ -2142,17 +2108,16 @@
icon_state = "1-8"
},
/turf/simulated/floor/plasteel{
- icon_state = "whitehall";
- dir = 1
+ dir = 1;
+ icon_state = "whitehall"
},
/area/awaymission/academy/classrooms)
"fX" = (
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/turf/simulated/floor/plasteel{
- tag = "icon-vault";
icon_state = "vault"
},
/area/awaymission/academy/classrooms)
@@ -2170,8 +2135,8 @@
/obj/structure/table,
/obj/item/lazarus_injector,
/turf/simulated/floor/plasteel{
- icon_state = "whitehall";
- dir = 4
+ dir = 4;
+ icon_state = "whitehall"
},
/area/awaymission/academy/classrooms)
"gb" = (
@@ -2191,8 +2156,8 @@
/obj/structure/grille,
/obj/structure/cable,
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/obj/structure/window/reinforced{
dir = 5
@@ -2208,20 +2173,19 @@
/area/awaymission/academy/classrooms)
"gg" = (
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/academy/classrooms)
"gh" = (
/obj/structure/grille,
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/obj/structure/window/reinforced{
dir = 5
@@ -2232,17 +2196,15 @@
/obj/structure/table/reinforced,
/obj/item/pen/red,
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/academy/classrooms)
"gj" = (
/obj/structure/filingcabinet/filingcabinet,
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/academy/classrooms)
"gk" = (
@@ -2273,8 +2235,8 @@
/area/awaymission/academy/classrooms)
"go" = (
/turf/simulated/floor/plasteel{
- icon_state = "whitehall";
- dir = 4
+ dir = 4;
+ icon_state = "whitehall"
},
/area/awaymission/academy/classrooms)
"gp" = (
@@ -2286,15 +2248,12 @@
/obj/machinery/recharger,
/obj/structure/table/reinforced,
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/academy/classrooms)
"gq" = (
-/obj/machinery/door/window{
- dir = 4
- },
+/obj/machinery/door/window,
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
/area/awaymission/academy/classrooms)
@@ -2304,21 +2263,13 @@
/area/awaymission/academy/classrooms)
"gs" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "whitehall";
- dir = 4
+ dir = 4;
+ icon_state = "whitehall"
},
/area/awaymission/academy/classrooms)
-"gt" = (
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/turf/simulated/floor/wood,
-/area/awaymission/academy/classrooms)
"gu" = (
/obj/structure/bookcase,
/obj/item/book/manual/medical_cloning,
@@ -2326,7 +2277,6 @@
/area/awaymission/academy/classrooms)
"gv" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/plasteel{
@@ -2335,19 +2285,15 @@
/area/awaymission/academy/academyaft)
"gw" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/academy/classrooms)
"gx" = (
-/obj/machinery/door/window{
- dir = 4
- },
+/obj/machinery/door/window,
/obj/machinery/door/window{
dir = 8
},
@@ -2376,8 +2322,8 @@
"gB" = (
/obj/structure/grille,
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/obj/structure/cable,
/obj/structure/window/reinforced{
@@ -2388,8 +2334,8 @@
"gC" = (
/obj/structure/grille,
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/obj/structure/cable,
/obj/structure/window/reinforced{
@@ -2404,9 +2350,8 @@
icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/academy/classrooms)
"gE" = (
@@ -2417,9 +2362,8 @@
},
/obj/item/gun/projectile/shotgun/toy/tommygun,
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/academy/classrooms)
"gF" = (
@@ -2433,9 +2377,8 @@
"gG" = (
/obj/structure/table,
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/academy/classrooms)
"gH" = (
@@ -2463,15 +2406,12 @@
"gL" = (
/obj/structure/chair/stool,
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/academy/classrooms)
"gM" = (
-/obj/machinery/door/window{
- dir = 4
- },
+/obj/machinery/door/window,
/obj/item/ammo_casing,
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
@@ -2521,9 +2461,8 @@
name = "Summoning Midterm Exam"
},
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/academy/classrooms)
"gU" = (
@@ -2537,8 +2476,8 @@
/obj/structure/grille,
/obj/structure/cable,
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/obj/structure/window/reinforced{
dir = 5
@@ -2560,15 +2499,13 @@
/area/awaymission/academy/academyaft)
"gX" = (
/turf/simulated/floor/plasteel{
- icon_state = "whitehall";
- dir = 2
+ icon_state = "whitehall"
},
/area/awaymission/academy/classrooms)
"gY" = (
/obj/structure/chair/stool,
/turf/simulated/floor/plasteel{
- icon_state = "whitehall";
- dir = 2
+ icon_state = "whitehall"
},
/area/awaymission/academy/classrooms)
"gZ" = (
@@ -2600,14 +2537,6 @@
},
/turf/simulated/floor/plating,
/area/awaymission/academy/academyaft)
-"he" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/plating,
-/area/awaymission/academy/academyaft)
"hf" = (
/obj/structure/cable{
d1 = 2;
@@ -2630,9 +2559,8 @@
icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/academy/classrooms)
"hh" = (
@@ -2642,20 +2570,17 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/carpet,
/area/awaymission/academy/classrooms)
"hi" = (
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/obj/machinery/power/apc/noalarm{
dir = 1;
- environ = 3;
- equipment = 3;
locked = 0;
req_access = ""
},
@@ -2668,15 +2593,14 @@
icon_state = "1-8"
},
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/academy/classrooms)
"hk" = (
/turf/simulated/floor/plasteel{
- icon_state = "green";
- dir = 8
+ dir = 8;
+ icon_state = "green"
},
/area/awaymission/academy/academyaft)
"hl" = (
@@ -2690,17 +2614,15 @@
/area/awaymission/academy/academyaft)
"hn" = (
/turf/simulated/floor/plasteel{
- tag = "icon-green (EAST)";
- icon_state = "green";
- dir = 4
+ dir = 4;
+ icon_state = "green"
},
/area/awaymission/academy/academyaft)
"ho" = (
/obj/item/crowbar/red,
/turf/simulated/floor/plasteel{
- tag = "icon-green (EAST)";
- icon_state = "green";
- dir = 4
+ dir = 4;
+ icon_state = "green"
},
/area/awaymission/academy/academyaft)
"hp" = (
@@ -2728,16 +2650,6 @@
},
/turf/simulated/floor/carpet,
/area/awaymission/academy/academyaft)
-"hs" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "hydrofloor"
- },
-/area/awaymission/academy/academyaft)
"ht" = (
/obj/structure/cable{
d1 = 2;
@@ -2759,8 +2671,8 @@
/obj/machinery/power/smes/magical,
/obj/structure/cable,
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/turf/simulated/floor/plating,
/area/awaymission/academy/academyaft)
@@ -2769,8 +2681,8 @@
dir = 8
},
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/turf/simulated/floor/plating,
/area/awaymission/academy/academyaft)
@@ -2814,8 +2726,8 @@
"hD" = (
/obj/structure/grille,
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/turf/simulated/floor/plating,
/area/awaymission/academy/academyaft)
@@ -2857,15 +2769,6 @@
},
/turf/simulated/floor/plasteel,
/area/awaymission/academy/classrooms)
-"hJ" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/turf/simulated/floor/plasteel,
-/area/awaymission/academy/academyaft)
"hK" = (
/obj/machinery/constructable_frame/machine_frame,
/turf/simulated/floor/plating,
@@ -2882,8 +2785,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
icon_state = "hydrofloor"
@@ -2891,7 +2793,6 @@
/area/awaymission/academy/academyaft)
"hN" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/plasteel{
@@ -2973,7 +2874,6 @@
/area/awaymission/academy/academyaft)
"ia" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/turf/simulated/floor/plasteel{
@@ -2988,8 +2888,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plating,
/area/awaymission/academy/academyaft)
@@ -3033,8 +2932,7 @@
/area/awaymission/academy/academyaft)
"ii" = (
/turf/simulated/floor/plasteel{
- icon_state = "cafeteria";
- dir = 2
+ icon_state = "cafeteria"
},
/area/awaymission/academy/academyaft)
"ij" = (
@@ -3042,15 +2940,13 @@
pixel_y = 28
},
/turf/simulated/floor/plasteel{
- icon_state = "cafeteria";
- dir = 2
+ icon_state = "cafeteria"
},
/area/awaymission/academy/academyaft)
"ik" = (
/obj/effect/decal/cleanable/cobweb2,
/turf/simulated/floor/plasteel{
- icon_state = "cafeteria";
- dir = 2
+ icon_state = "cafeteria"
},
/area/awaymission/academy/academyaft)
"im" = (
@@ -3066,8 +2962,7 @@
"io" = (
/obj/structure/mineral_door/iron,
/turf/simulated/floor/plasteel{
- icon_state = "cafeteria";
- dir = 2
+ icon_state = "cafeteria"
},
/area/awaymission/academy/academyaft)
"ir" = (
@@ -3077,48 +2972,40 @@
/area/awaymission/academy/academyaft)
"is" = (
/obj/structure/sink{
- icon_state = "sink";
dir = 8;
pixel_x = -12;
pixel_y = 2
},
/turf/simulated/floor/plasteel{
- icon_state = "cafeteria";
- dir = 2
+ icon_state = "cafeteria"
},
/area/awaymission/academy/academyaft)
"it" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "cafeteria";
- dir = 2
+ icon_state = "cafeteria"
},
/area/awaymission/academy/academyaft)
"iu" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/turf/simulated/floor/wood,
/area/awaymission/academy/academyaft)
"iv" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/wood,
/area/awaymission/academy/academyaft)
"iw" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/turf/simulated/floor/plasteel{
- icon_state = "cafeteria";
- dir = 2
+ icon_state = "cafeteria"
},
/area/awaymission/academy/academyaft)
"ix" = (
@@ -3150,8 +3037,7 @@
name = "awaystart"
},
/turf/simulated/floor/plasteel{
- icon_state = "cafeteria";
- dir = 2
+ icon_state = "cafeteria"
},
/area/awaymission/academy/academyaft)
"iA" = (
@@ -3162,8 +3048,7 @@
dir = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "cafeteria";
- dir = 2
+ icon_state = "cafeteria"
},
/area/awaymission/academy/academyaft)
"iB" = (
@@ -3184,8 +3069,7 @@
dir = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "cafeteria";
- dir = 2
+ icon_state = "cafeteria"
},
/area/awaymission/academy/academyaft)
"iE" = (
@@ -3222,8 +3106,7 @@
},
/obj/effect/decal/cleanable/vomit,
/turf/simulated/floor/plasteel{
- icon_state = "cafeteria";
- dir = 2
+ icon_state = "cafeteria"
},
/area/awaymission/academy/academyaft)
"iL" = (
@@ -3257,8 +3140,8 @@
/obj/structure/table,
/obj/item/beach_ball/holoball,
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 1
+ dir = 1;
+ icon_state = "red"
},
/area/awaymission/academy/academyaft)
"iP" = (
@@ -3304,8 +3187,8 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "green";
- dir = 8
+ dir = 8;
+ icon_state = "green"
},
/area/awaymission/academy/academyaft)
"iS" = (
@@ -3329,9 +3212,8 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- tag = "icon-green (EAST)";
- icon_state = "green";
- dir = 4
+ dir = 4;
+ icon_state = "green"
},
/area/awaymission/academy/academyaft)
"iU" = (
@@ -3341,14 +3223,12 @@
/obj/structure/table,
/obj/item/soulstone,
/turf/simulated/floor/plasteel/airless{
- tag = "icon-whitered (EAST)";
- icon_state = "whitered";
- dir = 4
+ dir = 4;
+ icon_state = "whitered"
},
/area/awaymission/academy/academyaft)
"iV" = (
/obj/structure/shuttle/engine/propulsion{
- tag = "icon-propulsion_l";
icon_state = "propulsion_l"
},
/turf/space,
@@ -3359,7 +3239,6 @@
/area/awaymission/academy/academyaft)
"iX" = (
/obj/structure/shuttle/engine/propulsion{
- tag = "icon-propulsion_r";
icon_state = "propulsion_r"
},
/turf/space,
@@ -3367,8 +3246,8 @@
"iY" = (
/obj/structure/grille,
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/obj/structure/window/reinforced{
dir = 5
@@ -3438,9 +3317,8 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- tag = "icon-green (EAST)";
- icon_state = "green";
- dir = 4
+ dir = 4;
+ icon_state = "green"
},
/area/awaymission/academy/academyaft)
"je" = (
@@ -3499,7 +3377,6 @@
/area/awaymission/academy/academyaft)
"jj" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/turf/simulated/floor/carpet,
@@ -3520,9 +3397,8 @@
"jl" = (
/obj/structure/table,
/turf/simulated/floor/plasteel/airless{
- tag = "icon-whitered (EAST)";
- icon_state = "whitered";
- dir = 4
+ dir = 4;
+ icon_state = "whitered"
},
/area/awaymission/academy/academyaft)
"jm" = (
@@ -3578,15 +3454,15 @@
"js" = (
/obj/structure/window/reinforced,
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 6
+ dir = 6;
+ icon_state = "red"
},
/area/awaymission/academy/academyaft)
"jt" = (
/obj/structure/cult/pylon,
/turf/simulated/floor/plasteel{
- icon_state = "yellow";
- dir = 10
+ dir = 10;
+ icon_state = "yellow"
},
/area/awaymission/academy/academyaft)
"ju" = (
@@ -3604,9 +3480,8 @@
"jw" = (
/obj/structure/window/reinforced,
/turf/simulated/floor/plasteel/airless{
- tag = "icon-white (EAST)";
- icon_state = "white";
- dir = 4
+ dir = 4;
+ icon_state = "white"
},
/area/awaymission/academy/academyaft)
"jx" = (
@@ -3614,9 +3489,8 @@
/obj/structure/window/reinforced,
/obj/item/batterer,
/turf/simulated/floor/plasteel/airless{
- tag = "icon-whitered (EAST)";
- icon_state = "whitered";
- dir = 4
+ dir = 4;
+ icon_state = "whitered"
},
/area/awaymission/academy/academyaft)
"jy" = (
@@ -3674,12 +3548,10 @@
"jG" = (
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
pixel_x = 11
},
/turf/simulated/floor/plasteel{
- icon_state = "cafeteria";
- dir = 2
+ icon_state = "cafeteria"
},
/area/awaymission/academy/academyaft)
"jH" = (
@@ -3749,8 +3621,8 @@
icon_state = "4-8"
},
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/obj/structure/window/reinforced{
dir = 5
@@ -3784,8 +3656,8 @@
icon_state = "2-4"
},
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 5
+ dir = 5;
+ icon_state = "red"
},
/area/awaymission/academy/academyaft)
"jX" = (
@@ -3844,22 +3716,19 @@
icon_state = "2-8"
},
/turf/simulated/floor/plasteel/airless{
- tag = "icon-white (EAST)";
- icon_state = "white";
- dir = 4
+ dir = 4;
+ icon_state = "white"
},
/area/awaymission/academy/academyaft)
"ke" = (
/obj/machinery/power/apc/noalarm{
dir = 1;
- environ = 3;
- equipment = 3;
locked = 0;
req_access = ""
},
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/turf/simulated/floor/carpet,
/area/awaymission/academy/academygate)
@@ -3891,8 +3760,8 @@
"ki" = (
/obj/structure/grille,
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/obj/structure/cable,
/obj/structure/window/reinforced{
@@ -3912,8 +3781,8 @@
icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 4
+ dir = 4;
+ icon_state = "red"
},
/area/awaymission/academy/academyaft)
"kk" = (
@@ -3928,9 +3797,8 @@
icon_state = "1-4"
},
/turf/simulated/floor/plasteel/airless{
- tag = "icon-white (EAST)";
- icon_state = "white";
- dir = 4
+ dir = 4;
+ icon_state = "white"
},
/area/awaymission/academy/academyaft)
"kl" = (
@@ -3989,8 +3857,8 @@
/obj/structure/grille,
/obj/structure/cable,
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/obj/structure/window/reinforced{
dir = 5
@@ -4000,8 +3868,8 @@
"kv" = (
/mob/living/simple_animal/hostile/mimic/crate,
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 8
+ dir = 8;
+ icon_state = "red"
},
/area/awaymission/academy/classrooms)
"kw" = (
@@ -4025,9 +3893,8 @@
icon_state = "4-8"
},
/turf/simulated/floor/plasteel/airless{
- tag = "icon-whitered (EAST)";
- icon_state = "whitered";
- dir = 4
+ dir = 4;
+ icon_state = "whitered"
},
/area/awaymission/academy/academyaft)
"kA" = (
@@ -4068,8 +3935,8 @@
icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 4
+ dir = 4;
+ icon_state = "red"
},
/area/awaymission/academy/academyaft)
"kH" = (
@@ -4089,7 +3956,6 @@
icon_state = "1-2"
},
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/carpet,
@@ -4103,8 +3969,8 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "escape";
- dir = 6
+ dir = 6;
+ icon_state = "escape"
},
/area/awaymission/academy/classrooms)
"kM" = (
@@ -4121,8 +3987,8 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "escape";
- dir = 6
+ dir = 6;
+ icon_state = "escape"
},
/area/awaymission/academy/classrooms)
"kO" = (
@@ -4131,8 +3997,8 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "escape";
- dir = 6
+ dir = 6;
+ icon_state = "escape"
},
/area/awaymission/academy/classrooms)
"kP" = (
@@ -4142,8 +4008,8 @@
on = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "escape";
- dir = 6
+ dir = 6;
+ icon_state = "escape"
},
/area/awaymission/academy/classrooms)
"kQ" = (
@@ -4166,9 +4032,8 @@
icon_state = "1-2"
},
/turf/simulated/floor/plasteel/airless{
- tag = "icon-white (EAST)";
- icon_state = "white";
- dir = 4
+ dir = 4;
+ icon_state = "white"
},
/area/awaymission/academy/academyaft)
"kT" = (
@@ -4191,8 +4056,8 @@
icon_state = "1-8"
},
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 4
+ dir = 4;
+ icon_state = "red"
},
/area/awaymission/academy/academyaft)
"kW" = (
@@ -4212,9 +4077,8 @@
icon_state = "1-4"
},
/turf/simulated/floor/plasteel/airless{
- tag = "icon-white (EAST)";
- icon_state = "white";
- dir = 4
+ dir = 4;
+ icon_state = "white"
},
/area/awaymission/academy/academyaft)
"kZ" = (
@@ -4277,8 +4141,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/carpet,
/area/awaymission/academy/academygate)
@@ -4299,8 +4162,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/carpet,
@@ -4315,8 +4177,8 @@
/area/awaymission/academy/academygate)
"lj" = (
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/turf/simulated/floor/plating,
/area/awaymission/academy/academygate)
@@ -4401,8 +4263,7 @@
/area/awaymission/academy/academyaft)
"lv" = (
/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 5;
- icon_state = "intact"
+ dir = 5
},
/turf/simulated/floor/plasteel{
icon_state = "hydrofloor"
@@ -4437,8 +4298,7 @@
"lA" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/carpet,
/area/awaymission/academy/academyaft)
@@ -10657,7 +10517,7 @@ bB
bB
gI
gZ
-he
+ic
hw
hc
hw
@@ -10787,12 +10647,12 @@ gx
ge
gV
gZ
-he
-he
+ic
+ic
hc
-he
+ic
hc
-he
+ic
hc
id
hp
@@ -11047,7 +10907,7 @@ dv
dv
gX
gZ
-hs
+hM
kX
hp
id
@@ -11821,7 +11681,7 @@ bE
fK
dc
dc
-gt
+db
dc
dc
dc
@@ -12711,7 +12571,7 @@ br
br
br
br
-cS
+bI
br
br
aF
@@ -15467,7 +15327,7 @@ aa
aa
aa
gZ
-hJ
+kh
lo
lq
lr
diff --git a/_maps/map_files/RandomZLevels/beach.dmm b/_maps/map_files/RandomZLevels/beach.dmm
index e77a5d19162..701813bced0 100644
--- a/_maps/map_files/RandomZLevels/beach.dmm
+++ b/_maps/map_files/RandomZLevels/beach.dmm
@@ -108,10 +108,7 @@
/turf/simulated/floor/beach/away/water/deep/wood_floor,
/area/awaymission/undersea)
"aC" = (
-/obj/structure/mineral_door/wood{
- tag = "icon-wood";
- icon_state = "wood"
- },
+/obj/structure/mineral_door/wood,
/turf/simulated/floor/beach/away/water/deep/wood_floor,
/area/awaymission/undersea)
"aD" = (
@@ -140,16 +137,12 @@
/area/awaymission/undersea)
"aI" = (
/obj/structure/chair/wood/wings{
- tag = "icon-wooden_chair_wings (EAST)";
- icon_state = "wooden_chair_wings";
dir = 4
},
/turf/simulated/floor/beach/away/water/deep/wood_floor,
/area/awaymission/undersea)
"aJ" = (
/obj/structure/chair/wood/wings{
- tag = "icon-wooden_chair_wings (WEST)";
- icon_state = "wooden_chair_wings";
dir = 8
},
/turf/simulated/floor/beach/away/water/deep/wood_floor,
@@ -165,15 +158,12 @@
"aM" = (
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
- pixel_x = 11;
- pixel_y = 0
+ pixel_x = 11
},
/turf/simulated/floor/beach/away/water/deep/wood_floor,
/area/awaymission/undersea)
"aN" = (
/obj/structure/sink{
- icon_state = "sink";
dir = 8;
pixel_x = -12;
pixel_y = 2
@@ -229,10 +219,7 @@
/turf/simulated/floor/beach/away/water/deep/sand_floor,
/area/awaymission/undersea)
"aY" = (
-/obj/structure/mineral_door/wood{
- tag = "icon-wood";
- icon_state = "wood"
- },
+/obj/structure/mineral_door/wood,
/turf/simulated/floor/beach/away/water/deep/sand_floor,
/area/awaymission/undersea)
"aZ" = (
@@ -252,10 +239,8 @@
"bc" = (
/obj/structure/flora/ausbushes/leafybush,
/obj/effect/decal/snow/sand/edge{
- tag = "icon-gravsnow_corner (NORTHWEST)";
- name = "rough sand";
- icon_state = "gravsnow_corner";
- dir = 9
+ dir = 9;
+ name = "rough sand"
},
/turf/simulated/floor/beach/away/sand,
/area/awaymission/beach)
@@ -265,10 +250,8 @@
/area/awaymission/beach)
"be" = (
/obj/effect/decal/snow/sand/edge{
- tag = "icon-gravsnow_corner (NORTHEAST)";
- name = "rough sand";
- icon_state = "gravsnow_corner";
- dir = 5
+ dir = 5;
+ name = "rough sand"
},
/turf/simulated/floor/beach/away/sand,
/area/awaymission/beach)
@@ -278,20 +261,16 @@
/area/awaymission/beach)
"bg" = (
/obj/effect/decal/snow/sand/edge{
- tag = "icon-gravsnow_corner (WEST)";
- name = "rough sand";
- icon_state = "gravsnow_corner";
- dir = 8
+ dir = 8;
+ name = "rough sand"
},
/turf/simulated/floor/beach/away/sand,
/area/awaymission/beach)
"bh" = (
/obj/structure/flora/ausbushes/leafybush,
/obj/effect/decal/snow/sand/edge{
- tag = "icon-gravsnow_corner (EAST)";
- name = "rough sand";
- icon_state = "gravsnow_corner";
- dir = 4
+ dir = 4;
+ name = "rough sand"
},
/turf/simulated/floor/beach/away/sand,
/area/awaymission/beach)
@@ -306,28 +285,22 @@
/area/awaymission/beach)
"bk" = (
/obj/effect/decal/snow/sand/surround{
- tag = "icon-gravsnow_surround (NORTH)";
- name = "rough sand";
- icon_state = "gravsnow_surround";
- dir = 1
+ dir = 1;
+ name = "rough sand"
},
/turf/simulated/floor/beach/away/sand,
/area/awaymission/beach)
"bl" = (
/obj/effect/decal/snow/sand/edge{
- tag = "icon-gravsnow_corner (EAST)";
- name = "rough sand";
- icon_state = "gravsnow_corner";
- dir = 4
+ dir = 4;
+ name = "rough sand"
},
/turf/simulated/floor/beach/away/sand,
/area/awaymission/beach)
"bm" = (
/obj/effect/decal/snow/sand/edge{
- tag = "icon-gravsnow_corner (NORTHWEST)";
- name = "rough sand";
- icon_state = "gravsnow_corner";
- dir = 9
+ dir = 9;
+ name = "rough sand"
},
/turf/simulated/floor/beach/away/sand,
/area/awaymission/beach)
@@ -339,10 +312,8 @@
/area/awaymission/beach)
"bo" = (
/obj/effect/decal/snow/sand/edge{
- tag = "icon-gravsnow_corner (SOUTHWEST)";
- name = "rough sand";
- icon_state = "gravsnow_corner";
- dir = 10
+ dir = 10;
+ name = "rough sand"
},
/turf/simulated/floor/grass,
/area/awaymission/beach)
@@ -354,28 +325,22 @@
/area/awaymission/beach)
"bq" = (
/obj/effect/decal/snow/sand/edge{
- tag = "icon-gravsnow_corner (SOUTHEAST)";
- name = "rough sand";
- icon_state = "gravsnow_corner";
- dir = 6
+ dir = 6;
+ name = "rough sand"
},
/turf/simulated/floor/grass,
/area/awaymission/beach)
"br" = (
/obj/effect/decal/snow/sand/edge{
- tag = "icon-gravsnow_corner (SOUTHEAST)";
- name = "rough sand";
- icon_state = "gravsnow_corner";
- dir = 6
+ dir = 6;
+ name = "rough sand"
},
/turf/simulated/floor/beach/away/sand,
/area/awaymission/beach)
"bs" = (
/obj/effect/decal/snow/sand/edge{
- tag = "icon-gravsnow_corner (SOUTHWEST)";
- name = "rough sand";
- icon_state = "gravsnow_corner";
- dir = 10
+ dir = 10;
+ name = "rough sand"
},
/turf/simulated/floor/beach/away/sand,
/area/awaymission/beach)
@@ -386,19 +351,15 @@
"bu" = (
/obj/structure/flora/ausbushes/leafybush,
/obj/effect/decal/snow/sand/edge{
- tag = "icon-gravsnow_corner (NORTHWEST)";
- name = "rough sand";
- icon_state = "gravsnow_corner";
- dir = 9
+ dir = 9;
+ name = "rough sand"
},
/turf/simulated/floor/beach/away/sand/dense,
/area/awaymission/beach)
"bv" = (
/obj/effect/decal/snow/sand/edge{
- tag = "icon-gravsnow_corner (NORTHEAST)";
- name = "rough sand";
- icon_state = "gravsnow_corner";
- dir = 5
+ dir = 5;
+ name = "rough sand"
},
/turf/simulated/floor/beach/away/sand/dense,
/area/awaymission/beach)
@@ -409,19 +370,15 @@
"bx" = (
/obj/effect/overlay/palmtree_r,
/obj/effect/decal/snow/sand/edge{
- tag = "icon-gravsnow_corner (NORTHWEST)";
- name = "rough sand";
- icon_state = "gravsnow_corner";
- dir = 9
+ dir = 9;
+ name = "rough sand"
},
/turf/simulated/floor/beach/away/sand,
/area/awaymission/beach)
"by" = (
/obj/effect/decal/snow/sand/edge{
- tag = "icon-gravsnow_corner (NORTH)";
- name = "rough sand";
- icon_state = "gravsnow_corner";
- dir = 1
+ dir = 1;
+ name = "rough sand"
},
/turf/simulated/floor/beach/away/sand,
/area/awaymission/beach)
@@ -432,30 +389,24 @@
"bA" = (
/obj/structure/flora/ausbushes/genericbush,
/obj/effect/decal/snow/sand/edge{
- tag = "icon-gravsnow_corner (NORTH)";
- name = "rough sand";
- icon_state = "gravsnow_corner";
- dir = 1
+ dir = 1;
+ name = "rough sand"
},
/turf/simulated/floor/beach/away/sand,
/area/awaymission/beach)
"bB" = (
/obj/effect/overlay/palmtree_r,
/obj/effect/decal/snow/sand/edge{
- tag = "icon-gravsnow_corner (NORTH)";
- name = "rough sand";
- icon_state = "gravsnow_corner";
- dir = 1
+ dir = 1;
+ name = "rough sand"
},
/turf/simulated/floor/beach/away/sand,
/area/awaymission/beach)
"bC" = (
/obj/effect/overlay/palmtree_r,
/obj/effect/decal/snow/sand/edge{
- tag = "icon-gravsnow_corner (EAST)";
- name = "rough sand";
- icon_state = "gravsnow_corner";
- dir = 4
+ dir = 4;
+ name = "rough sand"
},
/turf/simulated/floor/beach/away/sand,
/area/awaymission/beach)
@@ -479,29 +430,23 @@
"bH" = (
/obj/effect/overlay/palmtree_r,
/obj/effect/decal/snow/sand/edge{
- tag = "icon-gravsnow_corner (WEST)";
- name = "rough sand";
- icon_state = "gravsnow_corner";
- dir = 8
+ dir = 8;
+ name = "rough sand"
},
/turf/simulated/floor/beach/away/sand,
/area/awaymission/beach)
"bI" = (
/obj/effect/decal/snow/sand/edge{
- tag = "icon-gravsnow_corner (EAST)";
- name = "rough sand";
- icon_state = "gravsnow_corner";
- dir = 4
+ dir = 4;
+ name = "rough sand"
},
/turf/simulated/floor/beach/away/sand/dense,
/area/awaymission/beach)
"bJ" = (
/obj/effect/overlay/palmtree_l,
/obj/effect/decal/snow/sand/edge{
- tag = "icon-gravsnow_corner (NORTH)";
- name = "rough sand";
- icon_state = "gravsnow_corner";
- dir = 1
+ dir = 1;
+ name = "rough sand"
},
/turf/simulated/floor/beach/away/sand,
/area/awaymission/beach)
@@ -517,10 +462,8 @@
"bM" = (
/obj/structure/flora/ausbushes/sunnybush,
/obj/effect/decal/snow/sand/edge{
- tag = "icon-gravsnow_corner (NORTH)";
- name = "rough sand";
- icon_state = "gravsnow_corner";
- dir = 1
+ dir = 1;
+ name = "rough sand"
},
/turf/simulated/floor/beach/away/sand,
/area/awaymission/beach)
@@ -623,10 +566,8 @@
/obj/effect/overlay/palmtree_r,
/obj/effect/overlay/coconut,
/obj/effect/decal/snow/sand/edge{
- tag = "icon-gravsnow_corner (NORTH)";
- name = "rough sand";
- icon_state = "gravsnow_corner";
- dir = 1
+ dir = 1;
+ name = "rough sand"
},
/turf/simulated/floor/beach/away/sand,
/area/awaymission/beach)
@@ -691,10 +632,8 @@
"cs" = (
/obj/structure/flora/ausbushes/reedbush,
/obj/effect/decal/snow/sand/edge{
- tag = "icon-gravsnow_corner (NORTHEAST)";
- name = "rough sand";
- icon_state = "gravsnow_corner";
- dir = 5
+ dir = 5;
+ name = "rough sand"
},
/turf/simulated/floor/beach/away/sand,
/area/awaymission/beach)
@@ -733,10 +672,8 @@
/area/awaymission/beach)
"cB" = (
/obj/effect/decal/snow/sand/edge{
- tag = "icon-gravsnow_corner (EAST)";
- name = "rough sand";
- icon_state = "gravsnow_corner";
- dir = 4
+ dir = 4;
+ name = "rough sand"
},
/obj/effect/overlay/palmtree_r,
/turf/simulated/floor/beach/away/sand,
@@ -751,46 +688,35 @@
"cG" = (
/obj/structure/flora/ausbushes/ppflowers,
/obj/effect/decal/snow/sand/edge{
- tag = "icon-gravsnow_corner (WEST)";
- name = "rough sand";
- icon_state = "gravsnow_corner";
- dir = 8
+ dir = 8;
+ name = "rough sand"
},
/turf/simulated/floor/beach/away/sand,
/area/awaymission/beach)
"cJ" = (
/obj/effect/decal/snow/sand/edge{
- tag = "icon-gravsnow_corner (EAST)";
- name = "rough sand";
- icon_state = "gravsnow_corner";
- dir = 4
+ dir = 4;
+ name = "rough sand"
},
/obj/structure/closet/athletic_mixed,
/turf/simulated/floor/beach/away/sand,
/area/awaymission/beach)
"cK" = (
/obj/effect/decal/snow/sand/edge{
- tag = "icon-gravsnow_corner (WEST)";
- name = "rough sand";
- icon_state = "gravsnow_corner";
- dir = 8
+ dir = 8;
+ name = "rough sand"
},
/obj/effect/overlay/palmtree_l,
/turf/simulated/floor/beach/away/sand,
/area/awaymission/beach)
"cL" = (
-/obj/structure/mineral_door/wood{
- tag = "icon-wood";
- icon_state = "wood"
- },
+/obj/structure/mineral_door/wood,
/turf/simulated/floor/beach/away/sand,
/area/awaymission/beach)
"cN" = (
/obj/effect/decal/snow/sand/edge{
- tag = "icon-gravsnow_corner (EAST)";
- name = "rough sand";
- icon_state = "gravsnow_corner";
- dir = 4
+ dir = 4;
+ name = "rough sand"
},
/obj/item/clothing/shoes/sandal,
/obj/item/clothing/shoes/sandal,
@@ -807,8 +733,6 @@
/area/awaymission/beach)
"cS" = (
/obj/structure/closet/gmcloset{
- icon_closed = "black";
- icon_state = "black";
name = "formal wardrobe"
},
/turf/simulated/floor/wood,
@@ -905,10 +829,8 @@
/area/awaymission/beach)
"do" = (
/obj/effect/decal/snow/sand/edge{
- tag = "icon-gravsnow_corner (NORTH)";
- name = "rough sand";
- icon_state = "gravsnow_corner";
- dir = 1
+ dir = 1;
+ name = "rough sand"
},
/obj/structure/flora/ausbushes/sunnybush,
/turf/simulated/floor/beach/away/sand,
@@ -944,18 +866,13 @@
"dz" = (
/obj/effect/overlay/palmtree_r,
/obj/effect/decal/snow/sand/edge{
- tag = "icon-gravsnow_corner (SOUTHWEST)";
- name = "rough sand";
- icon_state = "gravsnow_corner";
- dir = 10
+ dir = 10;
+ name = "rough sand"
},
/turf/simulated/floor/beach/away/sand,
/area/awaymission/beach)
"dA" = (
-/obj/structure/mineral_door/wood{
- tag = "icon-wood";
- icon_state = "wood"
- },
+/obj/structure/mineral_door/wood,
/turf/simulated/floor/wood,
/area/awaymission/beach)
"dB" = (
@@ -986,10 +903,8 @@
/area/awaymission/beach)
"dH" = (
/obj/effect/decal/snow/sand/edge{
- tag = "icon-gravsnow_corner (NORTH)";
- name = "rough sand";
- icon_state = "gravsnow_corner";
- dir = 1
+ dir = 1;
+ name = "rough sand"
},
/obj/structure/chair/stool/bar,
/turf/simulated/floor/beach/away/sand,
@@ -1037,10 +952,8 @@
"dP" = (
/obj/effect/overlay/palmtree_r,
/obj/effect/decal/snow/sand/edge{
- tag = "icon-gravsnow_corner (SOUTHEAST)";
- name = "rough sand";
- icon_state = "gravsnow_corner";
- dir = 6
+ dir = 6;
+ name = "rough sand"
},
/turf/simulated/floor/beach/away/sand,
/area/awaymission/beach)
@@ -1053,7 +966,6 @@
/area/awaymission/beach)
"dR" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/obj/structure/chair/comfy/shuttle{
@@ -1063,8 +975,7 @@
/area/awaymission/beach)
"dS" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/structure/chair/comfy/shuttle{
dir = 8
@@ -1074,10 +985,8 @@
"dT" = (
/obj/effect/overlay/palmtree_l,
/obj/effect/decal/snow/sand/edge{
- tag = "icon-gravsnow_corner (WEST)";
- name = "rough sand";
- icon_state = "gravsnow_corner";
- dir = 8
+ dir = 8;
+ name = "rough sand"
},
/turf/simulated/floor/beach/away/sand,
/area/awaymission/beach)
diff --git a/_maps/map_files/RandomZLevels/blackmarketpackers.dmm b/_maps/map_files/RandomZLevels/blackmarketpackers.dmm
index a931d28b377..0d9df07e897 100644
--- a/_maps/map_files/RandomZLevels/blackmarketpackers.dmm
+++ b/_maps/map_files/RandomZLevels/blackmarketpackers.dmm
@@ -122,7 +122,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plating/airless,
@@ -198,9 +197,9 @@
/area/awaymission/BMPship/Gate)
"br" = (
/obj/structure/cable{
+ d2 = 2;
icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
+ pixel_y = 1
},
/obj/machinery/power/apc/noalarm{
dir = 1;
@@ -208,7 +207,6 @@
equipment = 0;
lighting = 0;
locked = 0;
- operating = 1;
req_access = ""
},
/obj/effect/decal/warning_stripes/north,
@@ -287,7 +285,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_y = 0;
tag = ""
},
/obj/effect/decal/warning_stripes/west,
@@ -311,22 +308,12 @@
},
/turf/simulated/floor/plating,
/area/awaymission/BMPship/Gate)
-"bO" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/turf/simulated/floor/plating,
-/area/awaymission/BMPship/Aft)
"bQ" = (
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plating,
/area/awaymission/BMPship/Fore)
"bR" = (
/turf/simulated/floor/plasteel{
- tag = "icon-wood-broken";
icon_state = "wood-broken"
},
/area/awaymission/BMPship/Fore)
@@ -386,7 +373,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_y = 0;
tag = ""
},
/turf/simulated,
@@ -411,17 +397,15 @@
"cg" = (
/obj/machinery/door/airlock/titanium,
/turf/simulated/floor/plasteel{
- tag = "icon-carpetside (NORTH)";
- icon_state = "carpetside";
- dir = 1
+ dir = 1;
+ icon_state = "carpetside"
},
/area/awaymission/BMPship/Fore)
"ci" = (
/obj/machinery/door/airlock/silver,
/turf/simulated/floor/plasteel{
- tag = "icon-carpetside (NORTH)";
- icon_state = "carpetside";
- dir = 1
+ dir = 1;
+ icon_state = "carpetside"
},
/area/awaymission/BMPship/Fore)
"cl" = (
@@ -432,8 +416,8 @@
calibrated = 0
},
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/turf/simulated/floor/plating,
/area/awaymission/BMPship/Gate)
@@ -455,7 +439,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_y = 0;
tag = ""
},
/obj/machinery/gateway{
@@ -494,14 +477,13 @@
/area/awaymission/BMPship/Gate)
"cB" = (
/turf/simulated/floor/plasteel{
- tag = "icon-carpet";
icon_state = "carpet"
},
/area/awaymission/BMPship/Fore)
"cC" = (
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/obj/machinery/power/apc/noalarm{
dir = 1;
@@ -513,7 +495,6 @@
req_access = ""
},
/turf/simulated/floor/plasteel{
- tag = "icon-carpet";
icon_state = "carpet"
},
/area/awaymission/BMPship/Fore)
@@ -532,9 +513,8 @@
/area/awaymission/BMPship/Midship)
"cF" = (
/turf/simulated/floor/plasteel{
- tag = "icon-green (WEST)";
- icon_state = "green";
- dir = 8
+ dir = 8;
+ icon_state = "green"
},
/area/awaymission/BMPship/Midship)
"cG" = (
@@ -555,9 +535,7 @@
},
/area/awaymission/BMPship/Midship)
"cI" = (
-/obj/structure/sink{
- dir = 2
- },
+/obj/structure/sink,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "yellow"
@@ -572,9 +550,8 @@
/area/awaymission/BMPship/Midship)
"cK" = (
/turf/simulated/floor/plasteel{
- tag = "icon-green (EAST)";
- icon_state = "green";
- dir = 4
+ dir = 4;
+ icon_state = "green"
},
/area/awaymission/BMPship/Midship)
"cM" = (
@@ -586,7 +563,6 @@
/obj/structure/table,
/obj/item/storage/box/donkpockets,
/turf/simulated/floor/plasteel{
- tag = "icon-barber";
icon_state = "barber"
},
/area/awaymission/BMPship/Midship)
@@ -595,7 +571,6 @@
/obj/item/kitchen/knife/butcher,
/obj/item/reagent_containers/food/snacks/meat,
/turf/simulated/floor/plasteel{
- tag = "icon-barber";
icon_state = "barber"
},
/area/awaymission/BMPship/Midship)
@@ -608,7 +583,6 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- tag = "icon-barber";
icon_state = "barber"
},
/area/awaymission/BMPship/Midship)
@@ -616,7 +590,6 @@
/obj/structure/table,
/obj/machinery/kitchen_machine/microwave,
/turf/simulated/floor/plasteel{
- tag = "icon-barber";
icon_state = "barber"
},
/area/awaymission/BMPship/Midship)
@@ -655,16 +628,14 @@
/area/awaymission/BMPship/Midship)
"cW" = (
/turf/simulated/floor/plasteel{
- tag = "icon-carpet15-13 (EAST)";
- icon_state = "carpet15-13";
- dir = 4
+ dir = 4;
+ icon_state = "carpet15-13"
},
/area/awaymission/BMPship/Fore)
"cX" = (
/turf/simulated/floor/plasteel{
- tag = "icon-carpet15-7 (EAST)";
- icon_state = "carpet15-7";
- dir = 4
+ dir = 4;
+ icon_state = "carpet15-7"
},
/area/awaymission/BMPship/Fore)
"cY" = (
@@ -672,13 +643,11 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
- tag = "icon-carpet15-7 (EAST)";
- icon_state = "carpet15-7";
- dir = 4
+ dir = 4;
+ icon_state = "carpet15-7"
},
/area/awaymission/BMPship/Fore)
"cZ" = (
@@ -689,7 +658,6 @@
/area/awaymission/BMPship/Midship)
"db" = (
/turf/simulated/floor/plasteel{
- tag = "icon-barber";
icon_state = "barber"
},
/area/awaymission/BMPship/Midship)
@@ -701,19 +669,9 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- tag = "icon-barber";
icon_state = "barber"
},
/area/awaymission/BMPship/Midship)
-"de" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/turf/simulated/floor/plasteel,
-/area/awaymission/BMPship/Aft)
"dg" = (
/obj/structure/chair/stool,
/turf/simulated/floor/plasteel{
@@ -722,9 +680,8 @@
/area/awaymission/BMPship/Midship)
"dh" = (
/turf/simulated/floor/plasteel{
- tag = "icon-carpet15-14 (EAST)";
- icon_state = "carpet15-14";
- dir = 4
+ dir = 4;
+ icon_state = "carpet15-14"
},
/area/awaymission/BMPship/Fore)
"di" = (
@@ -770,9 +727,8 @@
/area/awaymission/BMPship/Aft)
"dp" = (
/turf/simulated/floor/plasteel{
- tag = "icon-carpet15-11 (EAST)";
- icon_state = "carpet15-11";
- dir = 4
+ dir = 4;
+ icon_state = "carpet15-11"
},
/area/awaymission/BMPship/Fore)
"dq" = (
@@ -786,7 +742,6 @@
tag = ""
},
/turf/simulated/floor/plasteel{
- tag = "icon-carpet";
icon_state = "carpet"
},
/area/awaymission/BMPship/Fore)
@@ -798,9 +753,8 @@
tag = ""
},
/turf/simulated/floor/plasteel{
- tag = "icon-carpet15-11 (EAST)";
- icon_state = "carpet15-11";
- dir = 4
+ dir = 4;
+ icon_state = "carpet15-11"
},
/area/awaymission/BMPship/Fore)
"dt" = (
@@ -810,19 +764,17 @@
"du" = (
/obj/structure/window/reinforced,
/obj/structure/cable{
+ d2 = 2;
icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
+ pixel_y = 1
},
/turf/simulated/floor/plasteel{
- tag = "icon-barber";
icon_state = "barber"
},
/area/awaymission/BMPship/Midship)
"dv" = (
/obj/structure/window/reinforced,
/turf/simulated/floor/plasteel{
- tag = "icon-barber";
icon_state = "barber"
},
/area/awaymission/BMPship/Midship)
@@ -832,7 +784,6 @@
},
/obj/structure/window/reinforced,
/turf/simulated/floor/plasteel{
- tag = "icon-barber";
icon_state = "barber"
},
/area/awaymission/BMPship/Midship)
@@ -845,15 +796,14 @@
"dy" = (
/obj/machinery/door/window,
/turf/simulated/floor/plasteel{
- tag = "icon-barber";
icon_state = "barber"
},
/area/awaymission/BMPship/Midship)
"dz" = (
/obj/structure/cable{
+ d2 = 2;
icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
+ pixel_y = 1
},
/turf/simulated/floor/plasteel{
icon_state = "showroomfloor"
@@ -888,14 +838,13 @@
/area/awaymission/BMPship/Aft)
"dE" = (
/obj/structure/cable{
+ d2 = 2;
icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
+ pixel_y = 1
},
/obj/machinery/power/apc/noalarm{
dir = 1;
environ = 0;
- equipment = 3;
locked = 0;
operating = 0;
req_access = ""
@@ -922,9 +871,8 @@
name = "Captain's log entry"
},
/turf/simulated/floor/plasteel{
- tag = "icon-carpet6-0 (EAST)";
- icon_state = "carpet6-0";
- dir = 4
+ dir = 4;
+ icon_state = "carpet6-0"
},
/area/awaymission/BMPship/Fore)
"dI" = (
@@ -932,17 +880,15 @@
anchored = 1
},
/turf/simulated/floor/plasteel{
- tag = "icon-carpet14-8 (EAST)";
- icon_state = "carpet14-8";
- dir = 4
+ dir = 4;
+ icon_state = "carpet14-8"
},
/area/awaymission/BMPship/Fore)
"dJ" = (
/obj/structure/table,
/turf/simulated/floor/plasteel{
- tag = "icon-carpet14-2 (EAST)";
- icon_state = "carpet14-2";
- dir = 4
+ dir = 4;
+ icon_state = "carpet14-2"
},
/area/awaymission/BMPship/Fore)
"dK" = (
@@ -953,27 +899,23 @@
tag = ""
},
/turf/simulated/floor/plasteel{
- tag = "icon-carpet";
icon_state = "carpet"
},
/area/awaymission/BMPship/Fore)
"dL" = (
/turf/simulated/floor/plasteel{
- tag = "icon-carpet10-0 (EAST)";
- icon_state = "carpet10-0";
- dir = 4
+ dir = 4;
+ icon_state = "carpet10-0"
},
/area/awaymission/BMPship/Fore)
"dM" = (
/turf/simulated/floor/plasteel{
- tag = "icon-green (SOUTHWEST)";
- icon_state = "green";
- dir = 10
+ dir = 10;
+ icon_state = "green"
},
/area/awaymission/BMPship/Midship)
"dN" = (
/turf/simulated/floor/plasteel{
- tag = "icon-green";
icon_state = "green"
},
/area/awaymission/BMPship/Midship)
@@ -981,15 +923,13 @@
/obj/machinery/seed_extractor,
/obj/item/seeds/plump/walkingmushroom,
/turf/simulated/floor/plasteel{
- tag = "icon-green";
icon_state = "green"
},
/area/awaymission/BMPship/Midship)
"dP" = (
/turf/simulated/floor/plasteel{
- tag = "icon-green (SOUTHEAST)";
- icon_state = "green";
- dir = 6
+ dir = 6;
+ icon_state = "green"
},
/area/awaymission/BMPship/Midship)
"dR" = (
@@ -1009,18 +949,6 @@
icon_state = "bar"
},
/area/awaymission/BMPship/Midship)
-"dS" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0;
- tag = ""
- },
-/turf/simulated/floor/plasteel{
- icon_state = "bar"
- },
-/area/awaymission/BMPship/Midship)
"dT" = (
/obj/structure/cable{
d1 = 2;
@@ -1054,7 +982,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plating,
@@ -1076,7 +1003,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel,
@@ -1086,7 +1012,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/cable{
@@ -1102,7 +1027,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/cable{
@@ -1126,8 +1050,6 @@
/area/awaymission/BMPship/Aft)
"eb" = (
/obj/structure/shuttle/engine/heater{
- tag = "icon-heater (EAST)";
- icon_state = "heater";
dir = 4
},
/obj/structure/window/reinforced{
@@ -1137,9 +1059,7 @@
/area/awaymission/BMPship/Aft)
"ec" = (
/obj/structure/shuttle/engine/propulsion{
- dir = 4;
- icon_state = "propulsion";
- tag = "icon-propulsion (WEST)"
+ dir = 4
},
/turf/simulated/floor/plating/airless,
/area/awaymission/BMPship/Aft)
@@ -1149,38 +1069,33 @@
/area/awaymission/BMPship/Aft)
"ee" = (
/turf/simulated/floor/plasteel{
- tag = "icon-carpet15-15 (EAST)";
- icon_state = "carpet15-15";
- dir = 4
+ dir = 4;
+ icon_state = "carpet15-15"
},
/area/awaymission/BMPship/Fore)
"ef" = (
/obj/structure/table,
/obj/machinery/recharger,
/turf/simulated/floor/plasteel{
- tag = "icon-carpet5-0 (EAST)";
- icon_state = "carpet5-0";
- dir = 4
+ dir = 4;
+ icon_state = "carpet5-0"
},
/area/awaymission/BMPship/Fore)
"eg" = (
/turf/simulated/floor/plasteel{
- tag = "icon-carpet13-4 (EAST)";
- icon_state = "carpet13-4";
- dir = 4
+ dir = 4;
+ icon_state = "carpet13-4"
},
/area/awaymission/BMPship/Fore)
"eh" = (
/obj/structure/chair/stool,
/turf/simulated/floor/plasteel{
- tag = "icon-carpet13-1 (EAST)";
- icon_state = "carpet13-1";
- dir = 4
+ dir = 4;
+ icon_state = "carpet13-1"
},
/area/awaymission/BMPship/Fore)
"ei" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/obj/structure/cable{
@@ -1190,16 +1105,14 @@
tag = ""
},
/turf/simulated/floor/plasteel{
- tag = "icon-carpet (EAST)";
- icon_state = "carpet";
- dir = 4
+ dir = 4;
+ icon_state = "carpet"
},
/area/awaymission/BMPship/Fore)
"ej" = (
/turf/simulated/floor/plasteel{
- tag = "icon-carpet9-0 (EAST)";
- icon_state = "carpet9-0";
- dir = 4
+ dir = 4;
+ icon_state = "carpet9-0"
},
/area/awaymission/BMPship/Fore)
"ek" = (
@@ -1207,7 +1120,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
@@ -1276,7 +1188,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plasteel,
@@ -1294,7 +1205,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plating,
@@ -1302,9 +1212,8 @@
"ev" = (
/obj/item/shard,
/turf/simulated/floor/plasteel{
- tag = "icon-carpetside (NORTHEAST)";
- icon_state = "carpetside";
- dir = 5
+ dir = 5;
+ icon_state = "carpetside"
},
/area/awaymission/BMPship/Fore)
"ew" = (
@@ -1312,9 +1221,8 @@
anchored = 1
},
/turf/simulated/floor/plasteel{
- tag = "icon-carpetside (NORTHWEST)";
- icon_state = "carpetside";
- dir = 9
+ dir = 9;
+ icon_state = "carpetside"
},
/area/awaymission/BMPship/Fore)
"ex" = (
@@ -1331,7 +1239,6 @@
tag = ""
},
/turf/simulated/floor/plasteel{
- tag = "icon-carpet";
icon_state = "carpet"
},
/area/awaymission/BMPship/Fore)
@@ -1352,13 +1259,11 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
- tag = "icon-carpetside (EAST)";
- icon_state = "carpetside";
- dir = 4
+ dir = 4;
+ icon_state = "carpetside"
},
/area/awaymission/BMPship/Midship)
"eC" = (
@@ -1392,15 +1297,15 @@
"eE" = (
/obj/machinery/shieldwallgen,
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/turf/simulated/floor/plating,
/area/awaymission/BMPship/Midship)
"eF" = (
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/obj/machinery/power/apc/noalarm{
dir = 1;
@@ -1484,7 +1389,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
@@ -1493,8 +1397,8 @@
/area/awaymission/BMPship/Aft)
"eP" = (
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/obj/machinery/power/terminal{
dir = 8
@@ -1535,13 +1439,13 @@
outputting = 0
},
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/obj/structure/cable,
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/turf/simulated/floor/plating,
/area/awaymission/BMPship/Aft)
@@ -1563,17 +1467,15 @@
dir = 8
},
/turf/simulated/floor/plasteel{
- tag = "icon-carpet11-12 (EAST)";
- icon_state = "carpet11-12";
- dir = 4
+ dir = 4;
+ icon_state = "carpet11-12"
},
/area/awaymission/BMPship/Fore)
"eW" = (
/obj/structure/table,
/turf/simulated/floor/plasteel{
- tag = "icon-carpet7-3 (EAST)";
- icon_state = "carpet7-3";
- dir = 4
+ dir = 4;
+ icon_state = "carpet7-3"
},
/area/awaymission/BMPship/Fore)
"eX" = (
@@ -1581,22 +1483,8 @@
icon_state = "medium"
},
/turf/simulated/floor/plasteel{
- tag = "icon-carpet15-14 (EAST)";
- icon_state = "carpet15-14";
- dir = 4
- },
-/area/awaymission/BMPship/Fore)
-"eZ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/turf/simulated/floor/plasteel{
- tag = "icon-carpet15-15 (EAST)";
- icon_state = "carpet15-15";
- dir = 4
+ dir = 4;
+ icon_state = "carpet15-14"
},
/area/awaymission/BMPship/Fore)
"fa" = (
@@ -1701,7 +1589,6 @@
"fq" = (
/obj/machinery/door/window{
base_state = "right";
- dir = 4;
icon_state = "right"
},
/turf/simulated/floor/plating,
@@ -1711,13 +1598,11 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
- tag = "icon-carpet15-13 (EAST)";
- icon_state = "carpet15-13";
- dir = 4
+ dir = 4;
+ icon_state = "carpet15-13"
},
/area/awaymission/BMPship/Fore)
"fs" = (
@@ -1734,9 +1619,8 @@
tag = ""
},
/turf/simulated/floor/plasteel{
- tag = "icon-carpet15-7 (EAST)";
- icon_state = "carpet15-7";
- dir = 4
+ dir = 4;
+ icon_state = "carpet15-7"
},
/area/awaymission/BMPship/Fore)
"fu" = (
@@ -1747,9 +1631,8 @@
tag = ""
},
/turf/simulated/floor/plasteel{
- tag = "icon-carpet15-15 (EAST)";
- icon_state = "carpet15-15";
- dir = 4
+ dir = 4;
+ icon_state = "carpet15-15"
},
/area/awaymission/BMPship/Fore)
"fv" = (
@@ -1757,13 +1640,11 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
- tag = "icon-carpet15-7 (EAST)";
- icon_state = "carpet15-7";
- dir = 4
+ dir = 4;
+ icon_state = "carpet15-7"
},
/area/awaymission/BMPship/Fore)
"fw" = (
@@ -1788,7 +1669,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_y = 0;
tag = ""
},
/obj/structure/cable{
@@ -1850,16 +1730,14 @@
/area/awaymission/BMPship/Aft)
"fE" = (
/turf/simulated/floor/plasteel{
- tag = "icon-carpetside (SOUTHEAST)";
- icon_state = "carpetside";
- dir = 6
+ dir = 6;
+ icon_state = "carpetside"
},
/area/awaymission/BMPship/Fore)
"fF" = (
/turf/simulated/floor/plasteel{
- tag = "icon-carpetside (SOUTHWEST)";
- icon_state = "carpetside";
- dir = 10
+ dir = 10;
+ icon_state = "carpetside"
},
/area/awaymission/BMPship/Fore)
"fG" = (
@@ -1873,27 +1751,23 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
- tag = "icon-carpet15-11 (EAST)";
- icon_state = "carpet15-11";
- dir = 4
+ dir = 4;
+ icon_state = "carpet15-11"
},
/area/awaymission/BMPship/Fore)
"fJ" = (
/obj/machinery/door/airlock/silver,
/turf/simulated/floor/plasteel{
- tag = "icon-carpetside (EAST)";
- icon_state = "carpetside";
- dir = 4
+ dir = 4;
+ icon_state = "carpetside"
},
/area/awaymission/BMPship/Midship)
"fK" = (
/obj/machinery/door/window{
base_state = "right";
- dir = 4;
icon_state = "right"
},
/turf/simulated/floor/plating,
@@ -1927,7 +1801,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
@@ -1963,18 +1836,6 @@
icon_state = "showroomfloor"
},
/area/awaymission/BMPship/Aft)
-"fR" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0;
- tag = ""
- },
-/turf/simulated/floor/plasteel{
- icon_state = "showroomfloor"
- },
-/area/awaymission/BMPship/Aft)
"fS" = (
/obj/machinery/power/smes/magical{
desc = "A high-capacity superconducting magnetic energy storage (SMES) unit.";
@@ -2005,13 +1866,11 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
- tag = "icon-carpet15-15 (EAST)";
- icon_state = "carpet15-15";
- dir = 4
+ dir = 4;
+ icon_state = "carpet15-15"
},
/area/awaymission/BMPship/Fore)
"fW" = (
@@ -2028,22 +1887,19 @@
/area/awaymission/BMPship/Aft)
"fY" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/obj/structure/closet,
/turf/simulated/floor/plasteel{
- tag = "icon-carpet (EAST)";
- icon_state = "carpet";
- dir = 4
+ dir = 4;
+ icon_state = "carpet"
},
/area/awaymission/BMPship/Fore)
"fZ" = (
/obj/structure/closet,
/turf/simulated/floor/plasteel{
- tag = "icon-carpet15-15 (EAST)";
- icon_state = "carpet15-15";
- dir = 4
+ dir = 4;
+ icon_state = "carpet15-15"
},
/area/awaymission/BMPship/Fore)
"ga" = (
@@ -2085,7 +1941,6 @@
"gh" = (
/obj/machinery/door/airlock/titanium,
/turf/simulated/floor/plasteel{
- tag = "icon-carpetside";
icon_state = "carpetside"
},
/area/awaymission/BMPship/Fore)
@@ -2094,12 +1949,10 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/door/airlock/titanium,
/turf/simulated/floor/plasteel{
- tag = "icon-carpetside";
icon_state = "carpetside"
},
/area/awaymission/BMPship/Fore)
@@ -2184,7 +2037,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/effect/landmark/burnturf,
@@ -2221,7 +2073,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plating/airless,
@@ -2283,7 +2134,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
@@ -2336,7 +2186,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plating/airless,
@@ -2432,7 +2281,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plasteel,
@@ -2533,8 +2381,8 @@
/area/awaymission)
"hG" = (
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/obj/machinery/computer/monitor/secret,
/obj/effect/decal/warning_stripes/west,
@@ -2597,16 +2445,6 @@
/obj/machinery/computer/arcade,
/turf/simulated/floor/plasteel,
/area/awaymission/BMPship/Aft)
-"hQ" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0;
- tag = ""
- },
-/turf/simulated/floor/plasteel,
-/area/awaymission/BMPship/Aft)
"hR" = (
/obj/structure/cable{
d2 = 8;
@@ -2717,8 +2555,8 @@
/area/awaymission)
"ij" = (
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/turf/simulated/floor/plating/airless,
/area/awaymission)
@@ -2728,7 +2566,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plating,
@@ -2738,7 +2575,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plating/airless,
@@ -2748,7 +2584,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel,
@@ -2785,8 +2620,7 @@
"iu" = (
/obj/machinery/door/airlock/titanium,
/turf/simulated/floor/plasteel{
- icon_state = "cafeteria";
- dir = 2
+ icon_state = "cafeteria"
},
/area/awaymission/BMPship/Aft)
"iv" = (
@@ -2797,8 +2631,7 @@
dir = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "cafeteria";
- dir = 2
+ icon_state = "cafeteria"
},
/area/awaymission/BMPship/Aft)
"iw" = (
@@ -2806,8 +2639,7 @@
pixel_y = 28
},
/turf/simulated/floor/plasteel{
- icon_state = "cafeteria";
- dir = 2
+ icon_state = "cafeteria"
},
/area/awaymission/BMPship/Aft)
"ix" = (
@@ -2824,12 +2656,9 @@
/turf/simulated/floor/plasteel,
/area/awaymission/BMPship/Aft)
"iB" = (
-/obj/structure/sink{
- dir = 2
- },
+/obj/structure/sink,
/turf/simulated/floor/plasteel{
- icon_state = "cafeteria";
- dir = 2
+ icon_state = "cafeteria"
},
/area/awaymission/BMPship/Aft)
"iD" = (
@@ -2983,7 +2812,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plating,
@@ -2993,7 +2821,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_y = 0;
tag = ""
},
/obj/item/hand_labeler,
@@ -3004,7 +2831,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_y = 0;
tag = ""
},
/obj/item/storage/box,
@@ -10147,7 +9973,7 @@ dr
dK
ei
ex
-eZ
+fV
fu
cB
fY
@@ -12094,7 +11920,7 @@ am
cQ
db
dy
-dS
+ek
cM
hV
cM
@@ -12224,7 +12050,7 @@ am
cP
dd
dw
-dS
+ek
eq
eG
fi
@@ -12354,7 +12180,7 @@ am
cM
cM
cM
-dS
+ek
er
eI
er
@@ -12484,7 +12310,7 @@ jq
cM
cM
cM
-dS
+ek
er
eG
er
@@ -12614,7 +12440,7 @@ jq
cM
cM
cM
-dS
+ek
er
eG
er
@@ -12744,7 +12570,7 @@ jq
cM
cM
cM
-dS
+ek
er
eG
er
@@ -12874,7 +12700,7 @@ am
cS
dg
cM
-dS
+ek
er
eG
er
@@ -12883,7 +12709,7 @@ cM
er
go
er
-dS
+ek
cM
cl
gY
@@ -13004,7 +12830,7 @@ am
cR
dg
cM
-dS
+ek
er
eM
er
@@ -13013,7 +12839,7 @@ cM
er
eM
er
-dS
+ek
cM
cl
hL
@@ -13134,7 +12960,7 @@ am
cU
cM
cM
-dS
+ek
er
eN
er
@@ -13143,7 +12969,7 @@ cM
er
eN
er
-dS
+ek
hd
cl
hM
@@ -13399,7 +13225,7 @@ cM
eK
fb
cM
-dS
+ek
gc
gq
cM
@@ -13659,7 +13485,7 @@ dj
dj
fl
dj
-fR
+gI
fl
dj
dj
@@ -14315,7 +14141,7 @@ gr
gJ
eo
he
-de
+es
hK
ic
in
@@ -14446,7 +14272,7 @@ dj
gV
ai
hu
-hQ
+im
dq
dq
dq
@@ -14576,7 +14402,7 @@ gK
gX
ai
hr
-hQ
+im
ie
dq
ie
@@ -14706,7 +14532,7 @@ ai
ai
ai
hs
-hQ
+im
dq
dq
dq
@@ -14836,7 +14662,7 @@ hh
js
ai
ht
-hQ
+im
dq
ai
iu
@@ -14952,8 +14778,8 @@ cs
jo
gn
jB
-de
-de
+es
+es
dX
es
eO
@@ -15475,7 +15301,7 @@ aa
ai
hw
ea
-bO
+eu
eU
eu
fj
diff --git a/_maps/map_files/RandomZLevels/centcomAway.dmm b/_maps/map_files/RandomZLevels/centcomAway.dmm
index 92efd02f4f8..7da7dc567ee 100644
--- a/_maps/map_files/RandomZLevels/centcomAway.dmm
+++ b/_maps/map_files/RandomZLevels/centcomAway.dmm
@@ -46,21 +46,18 @@
req_access_txt = "101"
},
/turf/simulated/floor/plasteel{
- icon_state = "bar";
- dir = 2
+ icon_state = "bar"
},
/area/awaymission/centcomAway/maint)
"ai" = (
/turf/simulated/floor/plasteel{
- icon_state = "bar";
- dir = 2
+ icon_state = "bar"
},
/area/awaymission/centcomAway/cafe)
"aj" = (
/obj/machinery/vending/cigarette,
/turf/simulated/floor/plasteel{
- icon_state = "bar";
- dir = 2
+ icon_state = "bar"
},
/area/awaymission/centcomAway/cafe)
"ak" = (
@@ -69,26 +66,23 @@
"al" = (
/obj/structure/closet/chefcloset,
/turf/simulated/floor/plasteel{
- tag = "icon-greenfull (NORTH)";
- icon_state = "greenfull";
- dir = 1
+ dir = 1;
+ icon_state = "greenfull"
},
/area/awaymission/centcomAway/cafe)
"am" = (
/obj/machinery/vending/dinnerware,
/turf/simulated/floor/plasteel{
- tag = "icon-greenfull (NORTH)";
- icon_state = "greenfull";
- dir = 1
+ dir = 1;
+ icon_state = "greenfull"
},
/area/awaymission/centcomAway/cafe)
"an" = (
/obj/machinery/disposal,
/obj/structure/disposalpipe/trunk,
/turf/simulated/floor/plasteel{
- tag = "icon-greenfull (NORTH)";
- icon_state = "greenfull";
- dir = 1
+ dir = 1;
+ icon_state = "greenfull"
},
/area/awaymission/centcomAway/cafe)
"ao" = (
@@ -96,18 +90,16 @@
/obj/item/reagent_containers/food/condiment/peppermill,
/obj/item/reagent_containers/food/condiment/saltshaker,
/turf/simulated/floor/plasteel{
- tag = "icon-greenfull (NORTH)";
- icon_state = "greenfull";
- dir = 1
+ dir = 1;
+ icon_state = "greenfull"
},
/area/awaymission/centcomAway/cafe)
"ap" = (
/obj/structure/table,
/obj/machinery/reagentgrinder,
/turf/simulated/floor/plasteel{
- tag = "icon-greenfull (NORTH)";
- icon_state = "greenfull";
- dir = 1
+ dir = 1;
+ icon_state = "greenfull"
},
/area/awaymission/centcomAway/cafe)
"aq" = (
@@ -117,9 +109,8 @@
in_use = 1
},
/turf/simulated/floor/plasteel{
- tag = "icon-greenfull (NORTH)";
- icon_state = "greenfull";
- dir = 1
+ dir = 1;
+ icon_state = "greenfull"
},
/area/awaymission/centcomAway/cafe)
"ar" = (
@@ -127,9 +118,8 @@
/obj/item/reagent_containers/glass/beaker,
/obj/item/reagent_containers/food/condiment/enzyme,
/turf/simulated/floor/plasteel{
- tag = "icon-greenfull (NORTH)";
- icon_state = "greenfull";
- dir = 1
+ dir = 1;
+ icon_state = "greenfull"
},
/area/awaymission/centcomAway/cafe)
"as" = (
@@ -140,9 +130,8 @@
},
/obj/item/kitchen/rollingpin,
/turf/simulated/floor/plasteel{
- tag = "icon-greenfull (NORTH)";
- icon_state = "greenfull";
- dir = 1
+ dir = 1;
+ icon_state = "greenfull"
},
/area/awaymission/centcomAway/cafe)
"at" = (
@@ -172,12 +161,10 @@
/area/awaymission/centcomAway/cafe)
"aw" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "bar";
- dir = 2
+ icon_state = "bar"
},
/area/awaymission/centcomAway/cafe)
"ax" = (
@@ -187,9 +174,8 @@
/area/awaymission/centcomAway/cafe)
"ay" = (
/turf/simulated/floor/plasteel{
- tag = "icon-greenfull (NORTH)";
- icon_state = "greenfull";
- dir = 1
+ dir = 1;
+ icon_state = "greenfull"
},
/area/awaymission/centcomAway/cafe)
"az" = (
@@ -218,9 +204,8 @@
"aC" = (
/obj/structure/closet/secure_closet/freezer/kitchen,
/turf/simulated/floor/plasteel{
- tag = "icon-greenfull (NORTH)";
- icon_state = "greenfull";
- dir = 1
+ dir = 1;
+ icon_state = "greenfull"
},
/area/awaymission/centcomAway/cafe)
"aD" = (
@@ -252,12 +237,10 @@
/area/awaymission/centcomAway/cafe)
"aJ" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/turf/simulated/floor/plasteel{
- icon_state = "bar";
- dir = 2
+ icon_state = "bar"
},
/area/awaymission/centcomAway/cafe)
"aK" = (
@@ -277,7 +260,6 @@
"aL" = (
/obj/structure/table,
/turf/simulated/floor/plasteel{
- tag = "icon-redyellowfull";
icon_state = "redyellowfull"
},
/area/awaymission/centcomAway/cafe)
@@ -286,8 +268,7 @@
pixel_y = 8
},
/turf/simulated/floor/plasteel{
- icon_state = "bar";
- dir = 2
+ icon_state = "bar"
},
/area/awaymission/centcomAway/cafe)
"aN" = (
@@ -304,9 +285,8 @@
pixel_y = 6
},
/turf/simulated/floor/plasteel{
- tag = "icon-greenfull (NORTH)";
- icon_state = "greenfull";
- dir = 1
+ dir = 1;
+ icon_state = "greenfull"
},
/area/awaymission/centcomAway/cafe)
"aP" = (
@@ -315,8 +295,8 @@
/area/awaymission/centcomAway/maint)
"aQ" = (
/turf/simulated/floor/plasteel{
- icon_state = "green";
- dir = 4
+ dir = 4;
+ icon_state = "green"
},
/area/awaymission/centcomAway/cafe)
"aR" = (
@@ -325,8 +305,8 @@
/area/awaymission/centcomAway/cafe)
"aS" = (
/turf/simulated/floor/plasteel{
- icon_state = "green";
- dir = 8
+ dir = 8;
+ icon_state = "green"
},
/area/awaymission/centcomAway/cafe)
"aT" = (
@@ -365,7 +345,6 @@
"aX" = (
/obj/machinery/hydroponics/constructable,
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/plasteel{
@@ -376,7 +355,6 @@
/obj/structure/bed,
/obj/item/bedsheet,
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/turf/simulated/floor/carpet,
@@ -384,14 +362,12 @@
"aZ" = (
/obj/machinery/door/airlock/centcom,
/turf/simulated/floor/plasteel{
- tag = "icon-greenfull (NORTH)";
- icon_state = "greenfull";
- dir = 1
+ dir = 1;
+ icon_state = "greenfull"
},
/area/awaymission/centcomAway/cafe)
"ba" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/turf/simulated/floor/plating,
@@ -420,45 +396,39 @@
"be" = (
/obj/structure/table/reinforced,
/turf/simulated/floor/plasteel{
- tag = "icon-greenfull (NORTH)";
- icon_state = "greenfull";
- dir = 1
+ dir = 1;
+ icon_state = "greenfull"
},
/area/awaymission/centcomAway/cafe)
"bf" = (
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- tag = "icon-greenfull (NORTH)";
- icon_state = "greenfull";
- dir = 1
+ dir = 1;
+ icon_state = "greenfull"
},
/area/awaymission/centcomAway/cafe)
"bg" = (
/obj/structure/sink,
/turf/simulated/floor/plasteel{
- tag = "icon-greenfull (NORTH)";
- icon_state = "greenfull";
- dir = 1
+ dir = 1;
+ icon_state = "greenfull"
},
/area/awaymission/centcomAway/cafe)
"bh" = (
/obj/machinery/light,
/turf/simulated/floor/plasteel{
- tag = "icon-greenfull (NORTH)";
- icon_state = "greenfull";
- dir = 1
+ dir = 1;
+ icon_state = "greenfull"
},
/area/awaymission/centcomAway/cafe)
"bi" = (
/obj/structure/table,
/obj/machinery/processor{
- pixel_x = 0;
pixel_y = 10
},
/turf/simulated/floor/plasteel{
- tag = "icon-greenfull (NORTH)";
- icon_state = "greenfull";
- dir = 1
+ dir = 1;
+ icon_state = "greenfull"
},
/area/awaymission/centcomAway/cafe)
"bj" = (
@@ -467,8 +437,8 @@
in_use = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/hangar)
"bk" = (
@@ -486,50 +456,45 @@
/area/space/nearstation)
"bn" = (
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/hangar)
"bo" = (
/obj/effect/decal/cleanable/blood/oil,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/hangar)
"bp" = (
/obj/structure/table/reinforced,
/turf/simulated/floor/plasteel{
- icon_state = "bar";
- dir = 2
+ icon_state = "bar"
},
/area/awaymission/centcomAway/cafe)
"bq" = (
/obj/machinery/door/airlock/freezer,
/turf/simulated/floor/plasteel{
- icon_state = "freezerfloor";
- dir = 2
+ icon_state = "freezerfloor"
},
/area/awaymission/centcomAway/cafe)
"br" = (
/obj/machinery/chem_dispenser,
/obj/item/storage/box/beakers,
/turf/simulated/floor/plasteel{
- tag = "icon-greenfull (NORTH)";
- icon_state = "greenfull";
- dir = 1
+ dir = 1;
+ icon_state = "greenfull"
},
/area/awaymission/centcomAway/cafe)
"bs" = (
/obj/machinery/chem_master,
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/plasteel{
- tag = "icon-greenfull (NORTH)";
- icon_state = "greenfull";
- dir = 1
+ dir = 1;
+ icon_state = "greenfull"
},
/area/awaymission/centcomAway/cafe)
"bt" = (
@@ -544,9 +509,8 @@
/area/awaymission/centcomAway/hangar)
"bu" = (
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHWEST)";
- icon_state = "vault";
- dir = 9
+ dir = 9;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/hangar)
"bv" = (
@@ -557,8 +521,8 @@
/area/awaymission/centcomAway/cafe)
"bw" = (
/obj/structure/shuttle/engine/propulsion{
- icon_state = "propulsion_r";
- dir = 1
+ dir = 1;
+ icon_state = "propulsion_r"
},
/turf/simulated/floor/plating,
/area/awaymission/centcomAway/hangar)
@@ -567,8 +531,8 @@
/area/awaymission/centcomAway/hangar)
"by" = (
/obj/structure/shuttle/engine/propulsion{
- icon_state = "propulsion_l";
- dir = 1
+ dir = 1;
+ icon_state = "propulsion_l"
},
/turf/simulated/floor/plating,
/area/awaymission/centcomAway/hangar)
@@ -588,7 +552,6 @@
/area/awaymission/centcomAway/cafe)
"bC" = (
/obj/structure/shuttle/engine/propulsion{
- icon_state = "propulsion";
dir = 1
},
/turf/simulated/floor/plating,
@@ -596,15 +559,14 @@
"bE" = (
/obj/structure/closet/crate,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/hangar)
"bF" = (
/obj/structure/closet/secure_closet/freezer/meat,
/turf/simulated/floor/plasteel{
- icon_state = "freezerfloor";
- dir = 2
+ icon_state = "freezerfloor"
},
/area/awaymission/centcomAway/cafe)
"bG" = (
@@ -612,12 +574,10 @@
name = "CondiMaster Neo"
},
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "freezerfloor";
- dir = 2
+ icon_state = "freezerfloor"
},
/area/awaymission/centcomAway/cafe)
"bH" = (
@@ -628,8 +588,7 @@
/area/awaymission/centcomAway/hangar)
"bI" = (
/turf/simulated/floor/plasteel{
- icon_state = "freezerfloor";
- dir = 2
+ icon_state = "freezerfloor"
},
/area/awaymission/centcomAway/cafe)
"bJ" = (
@@ -642,7 +601,6 @@
"bK" = (
/obj/structure/window/reinforced,
/obj/structure/shuttle/engine/heater{
- icon_state = "heater";
dir = 1
},
/turf/simulated/floor/plating,
@@ -655,31 +613,27 @@
"bS" = (
/obj/structure/chair/comfy/brown,
/turf/simulated/floor/plasteel{
- icon_state = "bar";
- dir = 2
+ icon_state = "bar"
},
/area/awaymission/centcomAway/cafe)
"bT" = (
/obj/structure/reagent_dispensers/beerkeg,
/turf/simulated/floor/plasteel{
- tag = "icon-greenfull (NORTH)";
- icon_state = "greenfull";
- dir = 1
+ dir = 1;
+ icon_state = "greenfull"
},
/area/awaymission/centcomAway/cafe)
"bV" = (
/obj/structure/table,
/turf/simulated/floor/plasteel{
- tag = "icon-greenfull (NORTH)";
- icon_state = "greenfull";
- dir = 1
+ dir = 1;
+ icon_state = "greenfull"
},
/area/awaymission/centcomAway/cafe)
"bW" = (
/obj/structure/kitchenspike,
/turf/simulated/floor/plasteel{
- icon_state = "freezerfloor";
- dir = 2
+ icon_state = "freezerfloor"
},
/area/awaymission/centcomAway/cafe)
"bX" = (
@@ -692,26 +646,24 @@
"bZ" = (
/obj/machinery/gibber,
/turf/simulated/floor/plasteel{
- icon_state = "freezerfloor";
- dir = 2
+ icon_state = "freezerfloor"
},
/area/awaymission/centcomAway/cafe)
"ca" = (
/turf/simulated/floor/plasteel{
- icon_state = "green";
- dir = 6
+ dir = 6;
+ icon_state = "green"
},
/area/awaymission/centcomAway/cafe)
"cb" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "green"
},
/area/awaymission/centcomAway/cafe)
"cc" = (
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/obj/machinery/power/solar{
id = "centcomawaysolar";
@@ -733,8 +685,7 @@
"cg" = (
/obj/structure/table,
/obj/item/storage/firstaid/regular{
- pixel_x = 2;
- pixel_y = 0
+ pixel_x = 2
},
/obj/item/storage/firstaid/regular{
pixel_x = -2;
@@ -795,7 +746,6 @@
/obj/item/paper_bin,
/obj/structure/table,
/turf/simulated/floor/plasteel{
- tag = "icon-redyellowfull";
icon_state = "redyellowfull"
},
/area/awaymission/centcomAway/cafe)
@@ -803,7 +753,6 @@
/obj/item/clipboard,
/obj/structure/table,
/turf/simulated/floor/plasteel{
- tag = "icon-redyellowfull";
icon_state = "redyellowfull"
},
/area/awaymission/centcomAway/cafe)
@@ -814,9 +763,8 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/door/window/southright,
/turf/simulated/floor/plasteel{
- tag = "icon-greenfull (NORTH)";
- icon_state = "greenfull";
- dir = 1
+ dir = 1;
+ icon_state = "greenfull"
},
/area/awaymission/centcomAway/cafe)
"cs" = (
@@ -826,8 +774,8 @@
/area/awaymission/centcomAway/cafe)
"ct" = (
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- dir = 8
+ dir = 8;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/cafe)
"cu" = (
@@ -841,7 +789,6 @@
"cv" = (
/obj/structure/table/reinforced,
/obj/item/reagent_containers/spray/plantbgone{
- pixel_x = 0;
pixel_y = 3
},
/turf/simulated/floor/plasteel{
@@ -873,7 +820,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plating,
@@ -949,7 +895,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plating/airless,
@@ -959,7 +904,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plating,
@@ -969,7 +913,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/lattice/catwalk,
@@ -992,7 +935,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/lattice/catwalk,
@@ -1004,7 +946,6 @@
/area/awaymission/centcomAway/hangar)
"cQ" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/turf/simulated/floor/plating,
@@ -1017,7 +958,6 @@
/area/awaymission/centcomAway/hangar)
"cT" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/plating,
@@ -1029,7 +969,6 @@
/obj/item/pen,
/obj/structure/table,
/turf/simulated/floor/plasteel{
- tag = "icon-redyellowfull";
icon_state = "redyellowfull"
},
/area/awaymission/centcomAway/cafe)
@@ -1064,8 +1003,8 @@
icon_state = "pipe-c"
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- dir = 8
+ dir = 8;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/cafe)
"da" = (
@@ -1087,8 +1026,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/plating,
/area/awaymission/centcomAway/maint)
@@ -1119,12 +1057,11 @@
/area/awaymission/centcomAway/hangar)
"dj" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/hangar)
"dk" = (
@@ -1137,8 +1074,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/plating,
/area/awaymission/centcomAway/maint)
@@ -1151,7 +1087,6 @@
/obj/structure/table/reinforced,
/obj/item/paper_bin,
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/turf/simulated/floor/mineral/titanium/yellow,
@@ -1162,15 +1097,11 @@
/turf/simulated/floor/mineral/titanium/yellow,
/area/awaymission/centcomAway/hangar)
"dp" = (
-/obj/machinery/sleeper{
- icon_state = "sleeper-open";
- dir = 8
- },
+/obj/machinery/sleeper,
/turf/simulated/floor/mineral/titanium/blue,
/area/awaymission/centcomAway/hangar)
"dr" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/obj/structure/chair/comfy/shuttle{
@@ -1188,8 +1119,7 @@
"dt" = (
/obj/machinery/door/airlock/external,
/turf/simulated/floor/plasteel{
- icon_state = "bar";
- dir = 2
+ icon_state = "bar"
},
/area/awaymission/centcomAway/maint)
"du" = (
@@ -1224,19 +1154,17 @@
icon_state = "pipe-c"
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- dir = 8
+ dir = 8;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/cafe)
"dz" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHWEST)";
- icon_state = "vault";
- dir = 9
+ dir = 9;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/hangar)
"dA" = (
@@ -1249,15 +1177,14 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/door/window/northright,
/turf/simulated/floor/plasteel{
- tag = "icon-redfull";
icon_state = "redfull"
},
/area/awaymission/centcomAway/cafe)
"dC" = (
/obj/structure/reagent_dispensers/fueltank,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/hangar)
"dD" = (
@@ -1274,35 +1201,30 @@
/area/awaymission/centcomAway/hangar)
"dG" = (
/turf/simulated/floor/plasteel{
- tag = "icon-vault (EAST)";
- icon_state = "vault";
- dir = 4
+ dir = 4;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/hangar)
"dH" = (
/obj/structure/reagent_dispensers/beerkeg,
/turf/simulated/floor/plasteel{
- tag = "icon-redfull";
icon_state = "redfull"
},
/area/awaymission/centcomAway/cafe)
"dI" = (
/turf/simulated/floor/plasteel{
- tag = "icon-redfull";
icon_state = "redfull"
},
/area/awaymission/centcomAway/cafe)
"dJ" = (
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- tag = "icon-redfull";
icon_state = "redfull"
},
/area/awaymission/centcomAway/cafe)
"dK" = (
/obj/structure/table,
/turf/simulated/floor/plasteel{
- tag = "icon-redfull";
icon_state = "redfull"
},
/area/awaymission/centcomAway/cafe)
@@ -1323,32 +1245,29 @@
"dN" = (
/obj/machinery/gibber,
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "freezerfloor";
- dir = 2
+ icon_state = "freezerfloor"
},
/area/awaymission/centcomAway/cafe)
"dO" = (
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 5
+ dir = 5;
+ icon_state = "red"
},
/area/awaymission/centcomAway/cafe)
"dP" = (
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 1
+ dir = 1;
+ icon_state = "red"
},
/area/awaymission/centcomAway/cafe)
"dQ" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/structure/cable{
d1 = 1;
@@ -1361,8 +1280,7 @@
"dR" = (
/obj/structure/chair/stool/bar,
/turf/simulated/floor/plasteel{
- icon_state = "bar";
- dir = 2
+ icon_state = "bar"
},
/area/awaymission/centcomAway/cafe)
"dS" = (
@@ -1372,9 +1290,7 @@
/area/awaymission/centcomAway/hangar)
"dT" = (
/obj/machinery/door/window/northright{
- base_state = "right";
dir = 4;
- icon_state = "right";
name = "Security Desk";
req_access_txt = "103"
},
@@ -1391,7 +1307,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/lattice/catwalk,
@@ -1450,20 +1365,18 @@
name = "CondiMaster Neo"
},
/turf/simulated/floor/plasteel{
- icon_state = "freezerfloor";
- dir = 2
+ icon_state = "freezerfloor"
},
/area/awaymission/centcomAway/cafe)
"ed" = (
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 4
+ dir = 4;
+ icon_state = "red"
},
/area/awaymission/centcomAway/cafe)
"ee" = (
/obj/structure/closet/secure_closet/hydroponics,
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/plasteel{
@@ -1480,7 +1393,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/structure/lattice/catwalk,
@@ -1494,11 +1406,9 @@
"ej" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/plasteel{
- tag = "icon-redfull";
icon_state = "redfull"
},
/area/awaymission/centcomAway/cafe)
@@ -1506,20 +1416,18 @@
/obj/machinery/chem_dispenser,
/obj/item/storage/box/beakers,
/turf/simulated/floor/plasteel{
- tag = "icon-redfull";
icon_state = "redfull"
},
/area/awaymission/centcomAway/cafe)
"el" = (
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 8
+ dir = 8;
+ icon_state = "red"
},
/area/awaymission/centcomAway/cafe)
"em" = (
/obj/machinery/chem_master,
/turf/simulated/floor/plasteel{
- tag = "icon-redfull";
icon_state = "redfull"
},
/area/awaymission/centcomAway/cafe)
@@ -1538,24 +1446,20 @@
/obj/structure/table,
/obj/item/storage/fancy/donut_box,
/turf/simulated/floor/plasteel{
- tag = "icon-redyellowfull";
icon_state = "redyellowfull"
},
/area/awaymission/centcomAway/cafe)
"eq" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/plasteel{
- tag = "icon-redfull";
icon_state = "redfull"
},
/area/awaymission/centcomAway/cafe)
"er" = (
/obj/structure/table/reinforced,
/turf/simulated/floor/plasteel{
- tag = "icon-redfull";
icon_state = "redfull"
},
/area/awaymission/centcomAway/cafe)
@@ -1578,18 +1482,15 @@
pixel_y = 28
},
/turf/simulated/floor/plasteel{
- tag = "icon-redfull";
icon_state = "redfull"
},
/area/awaymission/centcomAway/cafe)
"eu" = (
/obj/structure/table,
/obj/machinery/processor{
- pixel_x = 0;
pixel_y = 10
},
/turf/simulated/floor/plasteel{
- tag = "icon-redfull";
icon_state = "redfull"
},
/area/awaymission/centcomAway/cafe)
@@ -1604,14 +1505,12 @@
"ew" = (
/obj/structure/bed,
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/mineral/titanium,
/area/awaymission/centcomAway/hangar)
"ex" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/turf/simulated/floor/mineral/titanium,
@@ -1623,7 +1522,6 @@
pixel_y = 6
},
/turf/simulated/floor/plasteel{
- tag = "icon-redfull";
icon_state = "redfull"
},
/area/awaymission/centcomAway/cafe)
@@ -1655,16 +1553,14 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/structure/cable,
/turf/simulated/floor/plating,
/area/awaymission/centcomAway/maint)
"eD" = (
/obj/machinery/door/airlock/hatch{
- name = "Rest Room";
- req_access_txt = "0"
+ name = "Rest Room"
},
/turf/simulated/floor/mineral/titanium,
/area/awaymission/centcomAway/hangar)
@@ -1714,9 +1610,7 @@
/turf/simulated/floor/plating,
/area/awaymission/centcomAway/hangar)
"eO" = (
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"eR" = (
/obj/machinery/power/apc/noalarm{
@@ -1729,26 +1623,24 @@
start_charge = 100
},
/obj/structure/cable{
+ d2 = 2;
icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
+ pixel_y = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "bar";
- dir = 2
+ icon_state = "bar"
},
/area/awaymission/centcomAway/cafe)
"eS" = (
/obj/structure/closet/secure_closet/freezer/kitchen,
/turf/simulated/floor/plasteel{
- tag = "icon-redfull";
icon_state = "redfull"
},
/area/awaymission/centcomAway/cafe)
"eT" = (
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 6
+ dir = 6;
+ icon_state = "red"
},
/area/awaymission/centcomAway/cafe)
"eU" = (
@@ -1758,8 +1650,8 @@
/area/awaymission/centcomAway/general)
"eV" = (
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 10
+ dir = 10;
+ icon_state = "red"
},
/area/awaymission/centcomAway/cafe)
"eW" = (
@@ -1771,7 +1663,6 @@
"eX" = (
/obj/machinery/portable_atmospherics/canister/air,
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/obj/effect/decal/warning_stripes/west,
@@ -1808,17 +1699,15 @@
"fe" = (
/obj/structure/flora/ausbushes,
/turf/simulated/floor/plasteel{
- tag = "icon-asteroid11";
- name = "plating";
- icon_state = "asteroid11"
+ icon_state = "asteroid11";
+ name = "plating"
},
/area/awaymission/centcomAway/cafe)
"ff" = (
/obj/structure/flora/ausbushes,
/turf/simulated/floor/plasteel{
- tag = "icon-asteroid2";
- name = "plating";
- icon_state = "asteroid2"
+ icon_state = "asteroid2";
+ name = "plating"
},
/area/awaymission/centcomAway/cafe)
"fg" = (
@@ -1846,9 +1735,8 @@
"fi" = (
/obj/structure/flora/ausbushes,
/turf/simulated/floor/plasteel{
- tag = "icon-asteroid";
- name = "plating";
- icon_state = "asteroid"
+ icon_state = "asteroid";
+ name = "plating"
},
/area/awaymission/centcomAway/cafe)
"fj" = (
@@ -1857,9 +1745,8 @@
"fk" = (
/obj/structure/flora/ausbushes,
/turf/simulated/floor/plasteel{
- tag = "icon-asteroid3";
- name = "plating";
- icon_state = "asteroid3"
+ icon_state = "asteroid3";
+ name = "plating"
},
/area/awaymission/centcomAway/cafe)
"fl" = (
@@ -1873,24 +1760,21 @@
"fn" = (
/obj/structure/flora/ausbushes,
/turf/simulated/floor/plasteel{
- tag = "icon-asteroid10";
- name = "plating";
- icon_state = "asteroid10"
+ icon_state = "asteroid10";
+ name = "plating"
},
/area/awaymission/centcomAway/cafe)
"fo" = (
/obj/structure/flora/ausbushes,
/turf/simulated/floor/plasteel{
- tag = "icon-asteroid9";
- name = "plating";
- icon_state = "asteroid9"
+ icon_state = "asteroid9";
+ name = "plating"
},
/area/awaymission/centcomAway/cafe)
"fp" = (
/obj/machinery/door/airlock/centcom,
/turf/simulated/floor/plasteel{
- icon_state = "bar";
- dir = 2
+ icon_state = "bar"
},
/area/awaymission/centcomAway/cafe)
"fq" = (
@@ -1898,19 +1782,16 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- icon_state = "bar";
- dir = 2
+ icon_state = "bar"
},
/area/awaymission/centcomAway/cafe)
"fr" = (
/obj/structure/table,
/obj/item/radio/off,
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/mineral/titanium/blue,
@@ -1918,14 +1799,12 @@
"fs" = (
/obj/structure/closet/chefcloset,
/turf/simulated/floor/plasteel{
- tag = "icon-redfull";
icon_state = "redfull"
},
/area/awaymission/centcomAway/cafe)
"ft" = (
/obj/machinery/vending/dinnerware,
/turf/simulated/floor/plasteel{
- tag = "icon-redfull";
icon_state = "redfull"
},
/area/awaymission/centcomAway/cafe)
@@ -1935,7 +1814,6 @@
dir = 1
},
/turf/simulated/floor/plasteel{
- tag = "icon-redfull";
icon_state = "redfull"
},
/area/awaymission/centcomAway/cafe)
@@ -1944,7 +1822,6 @@
/obj/item/reagent_containers/food/condiment/peppermill,
/obj/item/reagent_containers/food/condiment/saltshaker,
/turf/simulated/floor/plasteel{
- tag = "icon-redfull";
icon_state = "redfull"
},
/area/awaymission/centcomAway/cafe)
@@ -1952,7 +1829,6 @@
/obj/structure/table,
/obj/machinery/reagentgrinder,
/turf/simulated/floor/plasteel{
- tag = "icon-redfull";
icon_state = "redfull"
},
/area/awaymission/centcomAway/cafe)
@@ -1969,7 +1845,6 @@
/obj/structure/closet/secure_closet/freezer/fridge,
/obj/machinery/light,
/turf/simulated/floor/plasteel{
- tag = "icon-redfull";
icon_state = "redfull"
},
/area/awaymission/centcomAway/cafe)
@@ -1981,7 +1856,6 @@
/obj/item/reagent_containers/glass/beaker,
/obj/item/reagent_containers/food/condiment/enzyme,
/turf/simulated/floor/plasteel{
- tag = "icon-redfull";
icon_state = "redfull"
},
/area/awaymission/centcomAway/cafe)
@@ -2038,7 +1912,6 @@
},
/obj/item/kitchen/rollingpin,
/turf/simulated/floor/plasteel{
- tag = "icon-redfull";
icon_state = "redfull"
},
/area/awaymission/centcomAway/cafe)
@@ -2049,9 +1922,7 @@
/obj/structure/window/reinforced{
dir = 1
},
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"fQ" = (
/turf/simulated/floor/carpet,
@@ -2102,37 +1973,31 @@
/area/awaymission/centcomAway/courtroom)
"fY" = (
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/general)
"fZ" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/general)
"ga" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/general)
"gc" = (
@@ -2146,9 +2011,7 @@
dir = 1;
in_use = 1
},
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"ge" = (
/turf/simulated/floor/plasteel{
@@ -2173,9 +2036,7 @@
/area/awaymission/centcomAway/general)
"gh" = (
/obj/machinery/door/window/eastright,
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"gi" = (
/obj/machinery/door/window/northleft,
@@ -2257,13 +2118,11 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/general)
"gv" = (
@@ -2317,10 +2176,7 @@
/turf/simulated/floor/plating,
/area/awaymission/centcomAway/general)
"gA" = (
-/obj/machinery/sleeper{
- icon_state = "sleeper-open";
- dir = 8
- },
+/obj/machinery/sleeper,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -2397,9 +2253,7 @@
/area/awaymission/centcomAway/general)
"gL" = (
/obj/machinery/pdapainter,
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"gM" = (
/obj/machinery/clonepod,
@@ -2417,9 +2271,7 @@
/obj/machinery/recharger{
pixel_y = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"gO" = (
/obj/machinery/dna_scannernew,
@@ -2444,15 +2296,11 @@
/area/awaymission/centcomAway/maint)
"gQ" = (
/obj/structure/filingcabinet,
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"gR" = (
/obj/structure/filingcabinet/chestdrawer,
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"gS" = (
/obj/machinery/light,
@@ -2460,7 +2308,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plating,
@@ -2504,7 +2351,6 @@
/obj/structure/table,
/obj/item/storage/box/donkpockets,
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/turf/simulated/floor/mineral/titanium/blue,
@@ -2535,7 +2381,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plating,
@@ -2556,9 +2401,7 @@
d2 = 4;
icon_state = "2-4"
},
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"hi" = (
/obj/structure/cable{
@@ -2567,16 +2410,13 @@
icon_state = "2-8";
tag = ""
},
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"hj" = (
/obj/machinery/door/airlock/centcom,
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/general)
"hk" = (
@@ -2594,44 +2434,34 @@
/area/awaymission/centcomAway/general)
"hl" = (
/obj/machinery/computer/robotics,
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"hm" = (
/obj/structure/chair/office/dark{
dir = 8
},
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"hn" = (
/obj/structure/chair/office/dark{
dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"ho" = (
/obj/machinery/computer/med_data,
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"hp" = (
/obj/machinery/door/airlock/centcom,
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/general)
"hq" = (
@@ -2660,8 +2490,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/wall,
/area/awaymission/centcomAway/courtroom)
@@ -2694,21 +2523,15 @@
/area/awaymission/centcomAway/general)
"hz" = (
/obj/machinery/computer/card,
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"hA" = (
/obj/structure/chair/office/dark,
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"hB" = (
/obj/machinery/computer/crew,
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"hC" = (
/obj/machinery/vending/cigarette,
@@ -2767,18 +2590,13 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
+ icon_state = "1-2"
},
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"hN" = (
/obj/machinery/computer/secure_data,
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"hO" = (
/obj/structure/cable{
@@ -2792,16 +2610,13 @@
/area/awaymission/centcomAway/general)
"hP" = (
/obj/machinery/computer/security,
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"hQ" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/structure/cable{
d1 = 1;
@@ -2810,16 +2625,14 @@
tag = "90Curve"
},
/turf/simulated/floor/plasteel{
- icon_state = "yellow";
- dir = 10
+ dir = 10;
+ icon_state = "yellow"
},
/area/awaymission/centcomAway/general)
"hR" = (
/obj/structure/table/reinforced,
/obj/item/taperecorder,
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"hS" = (
/obj/structure/grille,
@@ -2871,22 +2684,19 @@
/area/awaymission/centcomAway/courtroom)
"hY" = (
/turf/simulated/floor/plasteel{
- tag = "icon-blackcorner (NORTH)";
- icon_state = "blackcorner";
- dir = 1
+ dir = 1;
+ icon_state = "blackcorner"
},
/area/awaymission/centcomAway/general)
"hZ" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- tag = "icon-blackcorner (EAST)";
- icon_state = "blackcorner";
- dir = 4
+ dir = 4;
+ icon_state = "blackcorner"
},
/area/awaymission/centcomAway/general)
"ia" = (
@@ -2965,12 +2775,9 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"il" = (
/obj/machinery/power/terminal,
@@ -2978,9 +2785,7 @@
d2 = 4;
icon_state = "0-4"
},
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"im" = (
/obj/machinery/door/airlock/centcom,
@@ -3009,9 +2814,7 @@
icon_state = "1-2";
tag = ""
},
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"ip" = (
/obj/structure/reagent_dispensers/watertank,
@@ -3027,12 +2830,9 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
+ icon_state = "1-2"
},
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"ir" = (
/obj/machinery/power/apc/noalarm{
@@ -3045,19 +2845,16 @@
start_charge = 100
},
/obj/structure/cable{
+ d2 = 2;
icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
+ pixel_y = 1
},
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
+ icon_state = "1-2"
},
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"is" = (
/obj/structure/closet,
@@ -3082,9 +2879,7 @@
dir = 1
},
/obj/item/storage/box/monkeycubes,
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"iw" = (
/obj/machinery/computer/scan_consolenew,
@@ -3108,7 +2903,6 @@
/area/awaymission/centcomAway/courtroom)
"iz" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/turf/simulated/floor/carpet,
@@ -3133,14 +2927,12 @@
/area/awaymission/centcomAway/courtroom)
"iD" = (
/obj/machinery/door/airlock/centcom,
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"iE" = (
/turf/simulated/floor/plasteel{
- icon_state = "yellow";
- dir = 10
+ dir = 10;
+ icon_state = "yellow"
},
/area/awaymission/centcomAway/general)
"iF" = (
@@ -3191,16 +2983,13 @@
charge = 5e+006;
input_level = 200000;
inputting = 0;
- output_level = 100000;
- outputting = 1
+ output_level = 100000
},
/obj/structure/cable{
d2 = 4;
icon_state = "0-4"
},
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"iM" = (
/turf/simulated/floor/mech_bay_recharge_floor,
@@ -3232,7 +3021,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
@@ -3269,9 +3057,7 @@
icon_state = "1-4";
tag = "90Curve"
},
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"iV" = (
/obj/machinery/light{
@@ -3282,7 +3068,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
@@ -3302,7 +3087,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
@@ -3315,13 +3099,11 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
- tag = "icon-purplecorner (EAST)";
- icon_state = "purplecorner";
- dir = 4
+ dir = 4;
+ icon_state = "purplecorner"
},
/area/awaymission/centcomAway/general)
"ja" = (
@@ -3354,12 +3136,9 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"jd" = (
/obj/structure/sign/lifestar,
@@ -3374,13 +3153,11 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
- tag = "icon-purple (NORTH)";
- icon_state = "purple";
- dir = 1
+ dir = 1;
+ icon_state = "purple"
},
/area/awaymission/centcomAway/general)
"jf" = (
@@ -3388,18 +3165,15 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
- tag = "icon-purple (NORTH)";
- icon_state = "purple";
- dir = 1
+ dir = 1;
+ icon_state = "purple"
},
/area/awaymission/centcomAway/general)
"jg" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/turf/simulated/floor/plasteel{
@@ -3422,7 +3196,6 @@
dir = 8
},
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/wood,
@@ -3449,39 +3222,31 @@
start_charge = 100
},
/obj/structure/cable{
+ d2 = 2;
icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
+ pixel_y = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/hangar)
-"jm" = (
-/turf/simulated/floor/plasteel{
- icon_state = "greencorner";
- dir = 8
- },
-/area/awaymission/centcomAway/general)
"jn" = (
/obj/structure/window/reinforced{
dir = 1
},
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/turf/simulated/floor/wood,
/area/awaymission/centcomAway/courtroom)
"jo" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/hangar)
"jp" = (
@@ -3489,8 +3254,8 @@
loot = list(/obj/effect/mob_spawn/human/corpse/russian/ranged)
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/hangar)
"jq" = (
@@ -3501,8 +3266,8 @@
tag = "90Curve"
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/hangar)
"jr" = (
@@ -3510,7 +3275,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/wall/r_wall,
@@ -3523,7 +3287,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plating,
@@ -3532,37 +3295,31 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/effect/decal/warning_stripes/southwestcorner,
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"ju" = (
/turf/simulated/floor/plasteel{
- icon_state = "green";
- dir = 4
+ dir = 4;
+ icon_state = "green"
},
/area/awaymission/centcomAway/general)
"jv" = (
/turf/simulated/floor/plasteel{
- icon_state = "green";
- dir = 8
+ dir = 8;
+ icon_state = "green"
},
/area/awaymission/centcomAway/general)
"jw" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/effect/decal/warning_stripes/southeastcorner,
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"jx" = (
/obj/structure/table/reinforced,
@@ -3575,7 +3332,6 @@
dir = 4
},
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/turf/simulated/floor/carpet,
@@ -3593,9 +3349,7 @@
icon_state = "1-8"
},
/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"jB" = (
/obj/structure/cable{
@@ -3611,41 +3365,33 @@
tag = ""
},
/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"jC" = (
/turf/simulated/floor/plasteel{
- icon_state = "greencorner";
- dir = 4
+ dir = 4;
+ icon_state = "greencorner"
},
/area/awaymission/centcomAway/general)
"jD" = (
/obj/machinery/photocopier,
/obj/item/paper/ccaMemo,
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"jE" = (
/obj/structure/table/reinforced,
/obj/item/hand_labeler,
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"jF" = (
/obj/structure/table/reinforced,
/obj/item/paper_bin,
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"jG" = (
/turf/simulated/floor/plasteel{
- icon_state = "greencorner";
- dir = 1
+ dir = 1;
+ icon_state = "greencorner"
},
/area/awaymission/centcomAway/general)
"jH" = (
@@ -3699,7 +3445,6 @@
/area/awaymission/centcomAway/courtroom)
"jO" = (
/obj/machinery/crema_switch{
- pixel_x = 0;
pixel_y = 25
},
/turf/simulated/floor/plasteel{
@@ -3730,13 +3475,11 @@
/area/awaymission/centcomAway/general)
"jS" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/turf/simulated/floor/plasteel{
- tag = "icon-blackcorner (WEST)";
- icon_state = "blackcorner";
- dir = 8
+ dir = 8;
+ icon_state = "blackcorner"
},
/area/awaymission/centcomAway/general)
"jT" = (
@@ -3756,17 +3499,14 @@
/area/awaymission/centcomAway/cafe)
"jV" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- tag = "icon-blackcorner";
icon_state = "blackcorner"
},
/area/awaymission/centcomAway/general)
@@ -3778,7 +3518,6 @@
/area/awaymission/centcomAway/general)
"jX" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/wood,
@@ -3786,7 +3525,6 @@
"jY" = (
/obj/structure/table,
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/obj/effect/decal/warning_stripes/north,
@@ -3833,13 +3571,10 @@
"kf" = (
/obj/machinery/door/window/northright,
/obj/machinery/door/window/southleft,
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"kg" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/turf/simulated/floor/plasteel{
@@ -3849,23 +3584,17 @@
"kh" = (
/obj/structure/table/reinforced,
/obj/item/folder/red,
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"ki" = (
/obj/structure/table/reinforced,
/obj/item/storage/box/PDAs,
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"kj" = (
/obj/structure/table/reinforced,
/obj/item/folder/blue,
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"kk" = (
/obj/machinery/door/airlock/centcom{
@@ -3879,9 +3608,7 @@
/area/awaymission/centcomAway/courtroom)
"kl" = (
/obj/effect/decal/warning_stripes/northwestcorner,
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"kn" = (
/obj/structure/table,
@@ -3893,7 +3620,6 @@
/area/awaymission/centcomAway/hangar)
"ko" = (
/obj/structure/sink{
- icon_state = "sink";
dir = 8;
pixel_x = -12;
pixel_y = 2
@@ -3959,9 +3685,7 @@
/area/awaymission/centcomAway/hangar)
"ku" = (
/obj/structure/chair,
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"kv" = (
/obj/structure/table/reinforced,
@@ -3972,8 +3696,8 @@
/area/awaymission/centcomAway/general)
"kw" = (
/turf/simulated/floor/plasteel{
- icon_state = "green";
- dir = 1
+ dir = 1;
+ icon_state = "green"
},
/area/awaymission/centcomAway/general)
"kx" = (
@@ -3984,13 +3708,10 @@
/area/awaymission/centcomAway/general)
"ky" = (
/obj/machinery/door/airlock/centcom,
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/hangar)
"kz" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/plasteel{
@@ -4001,13 +3722,10 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/effect/decal/warning_stripes/northeastcorner,
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"kB" = (
/obj/structure/rack,
@@ -4044,23 +3762,13 @@
/obj/structure/chair/comfy/beige{
dir = 1
},
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
-/area/awaymission/centcomAway/general)
-"kG" = (
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "greencorner"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"kH" = (
/obj/structure/chair{
dir = 1
},
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"kI" = (
/obj/machinery/gateway{
@@ -4107,12 +3815,6 @@
},
/turf/simulated/floor/plating,
/area/awaymission/centcomAway/hangar)
-"kP" = (
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "green"
- },
-/area/awaymission/centcomAway/general)
"kQ" = (
/obj/machinery/gateway{
dir = 10
@@ -4134,7 +3836,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
@@ -4186,7 +3887,6 @@
/obj/item/flash,
/obj/item/flash,
/turf/simulated/floor/plasteel{
- tag = "icon-vault";
icon_state = "vault"
},
/area/awaymission/centcomAway/hangar)
@@ -4194,7 +3894,6 @@
/obj/structure/table,
/obj/item/mmi,
/turf/simulated/floor/plasteel{
- tag = "icon-vault";
icon_state = "vault"
},
/area/awaymission/centcomAway/hangar)
@@ -4206,7 +3905,6 @@
tag = ""
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "green"
},
/area/awaymission/centcomAway/general)
@@ -4216,11 +3914,9 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
- tag = "icon-blackcorner";
icon_state = "blackcorner"
},
/area/awaymission/centcomAway/general)
@@ -4229,13 +3925,11 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
- tag = "icon-blackcorner (WEST)";
- icon_state = "blackcorner";
- dir = 8
+ dir = 8;
+ icon_state = "blackcorner"
},
/area/awaymission/centcomAway/general)
"lc" = (
@@ -4252,15 +3946,11 @@
d2 = 8;
icon_state = "1-8"
},
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"le" = (
/obj/structure/table/reinforced,
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"lf" = (
/obj/structure/table/wood,
@@ -4281,17 +3971,15 @@
"lh" = (
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/general)
"li" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/wall/r_wall,
/area/awaymission/centcomAway/general)
@@ -4309,17 +3997,13 @@
/obj/structure/chair{
dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"ll" = (
/obj/structure/chair{
dir = 8
},
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"lm" = (
/mob/living/simple_animal/hostile/russian/ranged{
@@ -4330,8 +4014,8 @@
"ln" = (
/obj/machinery/mech_bay_recharge_port,
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/turf/simulated/floor/plating,
/area/awaymission/centcomAway/hangar)
@@ -4341,17 +4025,15 @@
in_use = 1
},
/turf/simulated/floor/plasteel{
- tag = "icon-vault (WEST)";
- icon_state = "vault";
- dir = 8
+ dir = 8;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/hangar)
"lp" = (
/obj/structure/closet/secure_closet/personal,
/turf/simulated/floor/plasteel{
- tag = "icon-vault (EAST)";
- icon_state = "vault";
- dir = 4
+ dir = 4;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/hangar)
"lq" = (
@@ -4384,8 +4066,7 @@
},
/turf/simulated/floor/plasteel{
icon_state = "asteroid6";
- name = "sand";
- tag = "icon-asteroid6"
+ name = "sand"
},
/area/awaymission/centcomAway/general)
"lv" = (
@@ -4432,9 +4113,8 @@
/area/awaymission/centcomAway/general)
"lA" = (
/turf/simulated/floor/plasteel{
- tag = "icon-vault (WEST)";
- icon_state = "vault";
- dir = 8
+ dir = 8;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/hangar)
"lB" = (
@@ -4456,24 +4136,20 @@
name = "XCC Main Access Shutters"
},
/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"lF" = (
/obj/machinery/door/airlock/external,
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/hangar)
"lG" = (
/obj/structure/window/reinforced,
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/general)
"lH" = (
@@ -4500,8 +4176,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/plating,
/area/awaymission/centcomAway/general)
@@ -4520,17 +4195,15 @@
/area/awaymission/centcomAway/hangar)
"lL" = (
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/hangar)
"lM" = (
/turf/simulated/floor/plasteel{
- tag = "icon-ironsand3 (WEST)";
- icon_state = "ironsand3";
dir = 8;
- heat_capacity = 1
+ heat_capacity = 1;
+ icon_state = "ironsand3"
},
/area/awaymission/centcomAway/general)
"lN" = (
@@ -4538,9 +4211,8 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/general)
"lO" = (
@@ -4548,9 +4220,8 @@
dir = 8
},
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/general)
"lP" = (
@@ -4567,8 +4238,8 @@
in_use = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "green";
- dir = 9
+ dir = 9;
+ icon_state = "green"
},
/area/awaymission/centcomAway/general)
"lR" = (
@@ -4591,20 +4262,19 @@
in_use = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "green";
- dir = 5
+ dir = 5;
+ icon_state = "green"
},
/area/awaymission/centcomAway/general)
"lT" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- icon_state = "greencorner";
- dir = 4
+ dir = 4;
+ icon_state = "greencorner"
},
/area/awaymission/centcomAway/general)
"lU" = (
@@ -4613,33 +4283,29 @@
in_use = 1
},
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTH)";
- icon_state = "vault";
- dir = 1
+ dir = 1;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/general)
"lV" = (
/obj/structure/closet/wardrobe/red,
/turf/simulated/floor/plasteel{
- tag = "icon-vault (EAST)";
- icon_state = "vault";
- dir = 4
+ dir = 4;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/general)
"lW" = (
/obj/structure/mecha_wreckage/seraph,
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/hangar)
"lX" = (
/obj/machinery/door/airlock/centcom,
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/hangar)
"lY" = (
@@ -4647,45 +4313,41 @@
loot = list(/obj/effect/mob_spawn/human/corpse/russian/ranged)
},
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/general)
"lZ" = (
/turf/simulated/floor/plasteel{
- tag = "icon-ironsand11 (WEST)";
- icon_state = "ironsand11";
dir = 8;
- heat_capacity = 1
+ heat_capacity = 1;
+ icon_state = "ironsand11"
},
/area/awaymission/centcomAway/general)
"ma" = (
/turf/simulated/floor/plasteel{
- icon_state = "green";
- dir = 9
+ dir = 9;
+ icon_state = "green"
},
/area/awaymission/centcomAway/general)
"mb" = (
/turf/simulated/floor/plasteel{
- icon_state = "green";
- dir = 5
+ dir = 5;
+ icon_state = "green"
},
/area/awaymission/centcomAway/general)
"mc" = (
/obj/structure/closet/secure_closet/security,
/turf/simulated/floor/plasteel{
- tag = "icon-vault (EAST)";
- icon_state = "vault";
- dir = 4
+ dir = 4;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/general)
"md" = (
/turf/simulated/floor/plasteel{
- tag = "icon-ironsand9 (WEST)";
- icon_state = "ironsand9";
dir = 8;
- heat_capacity = 1
+ heat_capacity = 1;
+ icon_state = "ironsand9"
},
/area/awaymission/centcomAway/general)
"me" = (
@@ -4765,9 +4427,8 @@
/area/awaymission/centcomAway/general)
"mm" = (
/turf/simulated/floor/plasteel{
- tag = "icon-vault (EAST)";
- icon_state = "vault";
- dir = 4
+ dir = 4;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/general)
"mn" = (
@@ -4777,35 +4438,31 @@
pixel_x = 25
},
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTH)";
- icon_state = "vault";
- dir = 1
+ dir = 1;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/hangar)
"mo" = (
/turf/simulated/floor/plasteel{
- tag = "icon-ironsand4 (WEST)";
- icon_state = "ironsand4";
dir = 8;
- heat_capacity = 1
+ heat_capacity = 1;
+ icon_state = "ironsand4"
},
/area/awaymission/centcomAway/general)
"mp" = (
/turf/simulated/floor/plasteel{
- icon_state = "green";
- dir = 10
+ dir = 10;
+ icon_state = "green"
},
/area/awaymission/centcomAway/general)
"mq" = (
/turf/simulated/floor/plasteel{
- icon_state = "green";
- dir = 6
+ dir = 6;
+ icon_state = "green"
},
/area/awaymission/centcomAway/general)
"mr" = (
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/thunderdome)
"ms" = (
/obj/structure/table/reinforced,
@@ -4817,9 +4474,8 @@
"mt" = (
/obj/structure/closet/secure_closet/personal,
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTH)";
- icon_state = "vault";
- dir = 1
+ dir = 1;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/hangar)
"mu" = (
@@ -4827,9 +4483,8 @@
dir = 1
},
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/general)
"mv" = (
@@ -4842,11 +4497,9 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "greencorner"
},
/area/awaymission/centcomAway/general)
@@ -4886,23 +4539,19 @@
/obj/item/stamp/granted,
/obj/structure/table/reinforced,
/turf/simulated/floor/plasteel{
- tag = "icon-vault (EAST)";
- icon_state = "vault";
- dir = 4
+ dir = 4;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/general)
"mE" = (
/obj/machinery/igniter/on,
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/thunderdome)
"mF" = (
/obj/machinery/light,
/turf/simulated/floor/plasteel{
- tag = "icon-vault (WEST)";
- icon_state = "vault";
- dir = 8
+ dir = 8;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/hangar)
"mG" = (
@@ -4925,7 +4574,6 @@
/obj/structure/table,
/obj/item/firstaid_arm_assembly,
/turf/simulated/floor/plasteel{
- tag = "icon-vault";
icon_state = "vault"
},
/area/awaymission/centcomAway/hangar)
@@ -4946,7 +4594,6 @@
},
/obj/machinery/light,
/turf/simulated/floor/plasteel{
- tag = "icon-vault";
icon_state = "vault"
},
/area/awaymission/centcomAway/hangar)
@@ -4954,7 +4601,6 @@
/obj/structure/table,
/obj/item/storage/toolbox/mechanical,
/turf/simulated/floor/plasteel{
- tag = "icon-vault";
icon_state = "vault"
},
/area/awaymission/centcomAway/hangar)
@@ -4970,8 +4616,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/plating,
/area/awaymission/centcomAway/general)
@@ -4979,32 +4624,28 @@
/obj/structure/flora/ausbushes,
/turf/simulated/floor/plasteel{
icon_state = "asteroid6";
- name = "sand";
- tag = "icon-asteroid6"
+ name = "sand"
},
/area/awaymission/centcomAway/general)
"mP" = (
/obj/structure/flora/ausbushes,
/turf/simulated/floor/plasteel{
- tag = "icon-asteroid10";
- name = "plating";
- icon_state = "asteroid10"
+ icon_state = "asteroid10";
+ name = "plating"
},
/area/awaymission/centcomAway/general)
"mQ" = (
/obj/structure/sink/puddle,
/turf/simulated/floor/plasteel{
icon_state = "asteroid6";
- name = "sand";
- tag = "icon-asteroid6"
+ name = "sand"
},
/area/awaymission/centcomAway/general)
"mR" = (
/obj/structure/flora/ausbushes,
/turf/simulated/floor/plasteel{
- tag = "icon-asteroid4";
- name = "plating";
- icon_state = "asteroid4"
+ icon_state = "asteroid4";
+ name = "plating"
},
/area/awaymission/centcomAway/general)
"mS" = (
@@ -5012,8 +4653,8 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "green";
- dir = 8
+ dir = 8;
+ icon_state = "green"
},
/area/awaymission/centcomAway/general)
"mT" = (
@@ -5021,8 +4662,8 @@
dir = 8
},
/turf/simulated/floor/plasteel{
- icon_state = "green";
- dir = 4
+ dir = 4;
+ icon_state = "green"
},
/area/awaymission/centcomAway/general)
"mU" = (
@@ -5044,17 +4685,15 @@
"mW" = (
/obj/structure/flora/ausbushes,
/turf/simulated/floor/plasteel{
- tag = "icon-asteroid";
- name = "plating";
- icon_state = "asteroid"
+ icon_state = "asteroid";
+ name = "plating"
},
/area/awaymission/centcomAway/general)
"mX" = (
/obj/structure/flora/ausbushes,
/turf/simulated/floor/plasteel{
- tag = "icon-asteroid9";
- name = "plating";
- icon_state = "asteroid9"
+ icon_state = "asteroid9";
+ name = "plating"
},
/area/awaymission/centcomAway/general)
"mY" = (
@@ -5068,17 +4707,15 @@
"mZ" = (
/obj/structure/flora/ausbushes,
/turf/simulated/floor/plasteel{
- tag = "icon-asteroid11";
- name = "plating";
- icon_state = "asteroid11"
+ icon_state = "asteroid11";
+ name = "plating"
},
/area/awaymission/centcomAway/general)
"na" = (
/obj/structure/flora/ausbushes,
/turf/simulated/floor/plasteel{
- tag = "icon-asteroid8";
- name = "plating";
- icon_state = "asteroid8"
+ icon_state = "asteroid8";
+ name = "plating"
},
/area/awaymission/centcomAway/general)
"nb" = (
@@ -5097,42 +4734,35 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"nd" = (
/obj/machinery/vending/coffee,
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/turf/simulated/floor/plasteel{
- icon_state = "green";
- dir = 8
+ dir = 8;
+ icon_state = "green"
},
/area/awaymission/centcomAway/general)
"ne" = (
/obj/machinery/vending/cigarette,
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "green";
- dir = 4
+ dir = 4;
+ icon_state = "green"
},
/area/awaymission/centcomAway/general)
"nf" = (
/obj/structure/table,
/obj/item/paper/pamphlet/ccaInfo,
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"ng" = (
/obj/machinery/door/poddoor{
@@ -5148,7 +4778,6 @@
/area/awaymission/centcomAway/hangar)
"ni" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/plasteel{
@@ -5160,71 +4789,58 @@
/turf/simulated/floor/plasteel{
dir = 6;
icon_state = "asteroid8";
- name = "sand";
- tag = "icon-asteroid8 (SOUTHEAST)"
+ name = "sand"
},
/area/awaymission/centcomAway/general)
"nk" = (
/obj/structure/flora/ausbushes,
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/turf/simulated/floor/plasteel{
icon_state = "asteroid6";
- name = "sand";
- tag = "icon-asteroid6"
+ name = "sand"
},
/area/awaymission/centcomAway/general)
"nl" = (
/obj/structure/flora/ausbushes,
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/plasteel{
- tag = "icon-asteroid";
- name = "plating";
- icon_state = "asteroid"
+ icon_state = "asteroid";
+ name = "plating"
},
/area/awaymission/centcomAway/general)
"nm" = (
/obj/structure/flora/ausbushes,
/turf/simulated/floor/plasteel{
- tag = "icon-asteroid5";
- name = "plating";
- icon_state = "asteroid5"
+ icon_state = "asteroid5";
+ name = "plating"
},
/area/awaymission/centcomAway/general)
"nn" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"no" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"np" = (
/obj/structure/chair{
dir = 4
},
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/turf/simulated/floor/plasteel{
- icon_state = "green";
- dir = 8
+ dir = 8;
+ icon_state = "green"
},
/area/awaymission/centcomAway/general)
"nq" = (
@@ -5232,12 +4848,11 @@
dir = 8
},
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "green";
- dir = 4
+ dir = 4;
+ icon_state = "green"
},
/area/awaymission/centcomAway/general)
"nr" = (
@@ -5262,8 +4877,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
icon_state = "green"
@@ -5273,9 +4887,8 @@
/obj/structure/table/reinforced,
/obj/item/paper/pamphlet/ccaInfo,
/turf/simulated/floor/plasteel{
- tag = "icon-vault (EAST)";
- icon_state = "vault";
- dir = 4
+ dir = 4;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/general)
"nv" = (
@@ -5291,9 +4904,8 @@
"nw" = (
/obj/machinery/computer/secure_data,
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTH)";
- icon_state = "vault";
- dir = 1
+ dir = 1;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/general)
"nx" = (
@@ -5303,40 +4915,34 @@
dir = 1;
in_use = 1
},
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"ny" = (
/obj/structure/chair/comfy/teal,
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/thunderdome)
"nz" = (
/turf/simulated/floor/plasteel{
- icon_state = "neutral";
- dir = 8
+ dir = 8;
+ icon_state = "neutral"
},
/area/awaymission/centcomAway/general)
"nA" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- icon_state = "neutral";
- dir = 4
+ dir = 4;
+ icon_state = "neutral"
},
/area/awaymission/centcomAway/general)
"nB" = (
/obj/machinery/computer/card,
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTH)";
- icon_state = "vault";
- dir = 1
+ dir = 1;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/general)
"nC" = (
@@ -5346,13 +4952,11 @@
"nD" = (
/obj/machinery/photocopier,
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/turf/simulated/floor/plasteel{
- tag = "icon-vault (EAST)";
- icon_state = "vault";
- dir = 4
+ dir = 4;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/general)
"nE" = (
@@ -5363,12 +4967,9 @@
/area/awaymission/centcomAway/hangar)
"nF" = (
/obj/machinery/door/window/northright{
- icon_state = "right";
dir = 2
},
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"nG" = (
/obj/structure/table/reinforced,
@@ -5382,9 +4983,8 @@
/area/awaymission/centcomAway/general)
"nH" = (
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTH)";
- icon_state = "vault";
- dir = 1
+ dir = 1;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/general)
"nI" = (
@@ -5395,21 +4995,19 @@
/area/awaymission/centcomAway/general)
"nJ" = (
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 10
+ dir = 10;
+ icon_state = "red"
},
/area/awaymission/centcomAway/general)
"nK" = (
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 2
+ icon_state = "red"
},
/area/awaymission/centcomAway/general)
"nL" = (
/obj/machinery/light,
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 2
+ icon_state = "red"
},
/area/awaymission/centcomAway/general)
"nM" = (
@@ -5421,9 +5019,8 @@
"nN" = (
/obj/machinery/light,
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTH)";
- icon_state = "vault";
- dir = 1
+ dir = 1;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/general)
"nO" = (
@@ -5431,16 +5028,15 @@
/obj/item/storage/box/handcuffs,
/obj/item/stamp/granted,
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTH)";
- icon_state = "vault";
- dir = 1
+ dir = 1;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/general)
"nP" = (
/obj/machinery/door/airlock/external,
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 10
+ dir = 10;
+ icon_state = "red"
},
/area/awaymission/centcomAway/general)
"nQ" = (
@@ -5448,12 +5044,11 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- icon_state = "green";
- dir = 6
+ dir = 6;
+ icon_state = "green"
},
/area/awaymission/centcomAway/general)
"nR" = (
@@ -5464,9 +5059,8 @@
"nS" = (
/obj/machinery/light,
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/general)
"nT" = (
@@ -5474,15 +5068,14 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/plating,
/area/awaymission/centcomAway/general)
"nU" = (
/obj/structure/shuttle/engine/propulsion{
- icon_state = "propulsion_r";
- dir = 1
+ dir = 1;
+ icon_state = "propulsion_r"
},
/turf/simulated/floor/plating/airless,
/area/awaymission/centcomAway/thunderdome)
@@ -5494,23 +5087,20 @@
/area/awaymission/centcomAway/courtroom)
"nW" = (
/obj/structure/shuttle/engine/propulsion{
- icon_state = "propulsion_l";
- dir = 1
+ dir = 1;
+ icon_state = "propulsion_l"
},
/turf/simulated/floor/plating/airless,
/area/awaymission/centcomAway/thunderdome)
"nX" = (
/obj/structure/shuttle/engine/propulsion{
- icon_state = "propulsion";
dir = 1
},
/turf/simulated/floor/plating/airless,
/area/awaymission/centcomAway/thunderdome)
"nY" = (
/obj/structure/computerframe,
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"nZ" = (
/obj/machinery/light,
@@ -5522,16 +5112,13 @@
/mob/living/simple_animal/hostile/russian/ranged{
loot = list(/obj/effect/mob_spawn/human/corpse/russian/ranged)
},
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"ob" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/plating,
/area/awaymission/centcomAway/general)
@@ -5551,9 +5138,7 @@
/area/awaymission/centcomAway/hangar)
"oe" = (
/obj/machinery/light,
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"of" = (
/obj/item/clipboard,
@@ -5561,9 +5146,8 @@
/obj/item/taperecorder,
/obj/item/stamp/granted,
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTH)";
- icon_state = "vault";
- dir = 1
+ dir = 1;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/general)
"og" = (
@@ -5576,9 +5160,8 @@
/obj/structure/table,
/obj/item/paicard,
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/thunderdome)
"oi" = (
@@ -5586,40 +5169,35 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/plating,
/area/awaymission/centcomAway/thunderdome)
"oj" = (
/obj/machinery/vending/coffee,
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/thunderdome)
"ok" = (
/obj/machinery/vending/cigarette,
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/thunderdome)
"ol" = (
/obj/structure/table,
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/thunderdome)
"om" = (
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/thunderdome)
"on" = (
@@ -5634,9 +5212,8 @@
},
/obj/structure/cable,
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/thunderdome)
"oo" = (
@@ -5645,9 +5222,8 @@
in_use = 1
},
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/thunderdome)
"op" = (
@@ -5680,50 +5256,44 @@
"ot" = (
/obj/machinery/light,
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/thunderdome)
"ou" = (
/obj/machinery/door/airlock/external,
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/thunderdome)
"ov" = (
/obj/machinery/door/airlock/centcom,
/turf/simulated/floor/plasteel{
- tag = "icon-barber (WEST)";
- icon_state = "barber";
dir = 8;
- heat_capacity = 1
+ heat_capacity = 1;
+ icon_state = "barber"
},
/area/awaymission/centcomAway/thunderdome)
"ow" = (
/obj/machinery/door/window/southleft,
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/thunderdome)
"ox" = (
/obj/machinery/door/window/southright,
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/thunderdome)
"oy" = (
/obj/structure/chair,
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/thunderdome)
"oz" = (
@@ -5732,35 +5302,31 @@
in_use = 1
},
/turf/simulated/floor/plasteel{
- tag = "icon-barber (WEST)";
- icon_state = "barber";
dir = 8;
- heat_capacity = 1
+ heat_capacity = 1;
+ icon_state = "barber"
},
/area/awaymission/centcomAway/thunderdome)
"oA" = (
/turf/simulated/floor/plasteel{
- tag = "icon-barber (WEST)";
- icon_state = "barber";
dir = 8;
- heat_capacity = 1
+ heat_capacity = 1;
+ icon_state = "barber"
},
/area/awaymission/centcomAway/thunderdome)
"oB" = (
/obj/structure/table/reinforced,
/obj/item/reagent_containers/food/snacks/popcorn,
/turf/simulated/floor/plasteel{
- tag = "icon-barber (WEST)";
- icon_state = "barber";
dir = 8;
- heat_capacity = 1
+ heat_capacity = 1;
+ icon_state = "barber"
},
/area/awaymission/centcomAway/thunderdome)
"oC" = (
/turf/simulated/floor/plasteel{
- tag = "icon-redbluefull (WEST)";
- icon_state = "redbluefull";
- dir = 8
+ dir = 8;
+ icon_state = "redbluefull"
},
/area/awaymission/centcomAway/thunderdome)
"oD" = (
@@ -5769,9 +5335,8 @@
in_use = 1
},
/turf/simulated/floor/plasteel{
- tag = "icon-redbluefull (WEST)";
- icon_state = "redbluefull";
- dir = 8
+ dir = 8;
+ icon_state = "redbluefull"
},
/area/awaymission/centcomAway/thunderdome)
"oE" = (
@@ -5781,17 +5346,15 @@
"oF" = (
/obj/structure/reagent_dispensers/beerkeg,
/turf/simulated/floor/plasteel{
- tag = "icon-redbluefull (WEST)";
- icon_state = "redbluefull";
- dir = 8
+ dir = 8;
+ icon_state = "redbluefull"
},
/area/awaymission/centcomAway/thunderdome)
"oG" = (
/obj/structure/closet/crate/trashcart,
/turf/simulated/floor/plasteel{
- tag = "icon-redbluefull (WEST)";
- icon_state = "redbluefull";
- dir = 8
+ dir = 8;
+ icon_state = "redbluefull"
},
/area/awaymission/centcomAway/thunderdome)
"oH" = (
@@ -5801,9 +5364,8 @@
in_use = 1
},
/turf/simulated/floor/plasteel{
- tag = "icon-redbluefull (WEST)";
- icon_state = "redbluefull";
- dir = 8
+ dir = 8;
+ icon_state = "redbluefull"
},
/area/awaymission/centcomAway/thunderdome)
"oI" = (
@@ -5815,9 +5377,8 @@
"oJ" = (
/obj/machinery/vending/snack,
/turf/simulated/floor/plasteel{
- tag = "icon-redbluefull (WEST)";
- icon_state = "redbluefull";
- dir = 8
+ dir = 8;
+ icon_state = "redbluefull"
},
/area/awaymission/centcomAway/thunderdome)
"oK" = (
@@ -5825,18 +5386,16 @@
loot = list(/obj/effect/mob_spawn/human/corpse/russian/ranged)
},
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/thunderdome)
"oL" = (
/obj/structure/table,
/obj/item/lipstick,
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/thunderdome)
"oM" = (
@@ -5845,19 +5404,17 @@
/obj/item/reagent_containers/food/condiment/milk,
/obj/item/reagent_containers/food/drinks/ice,
/turf/simulated/floor/plasteel{
- tag = "icon-barber (WEST)";
- icon_state = "barber";
dir = 8;
- heat_capacity = 1
+ heat_capacity = 1;
+ icon_state = "barber"
},
/area/awaymission/centcomAway/thunderdome)
"oN" = (
/obj/machinery/icemachine,
/turf/simulated/floor/plasteel{
- tag = "icon-barber (WEST)";
- icon_state = "barber";
dir = 8;
- heat_capacity = 1
+ heat_capacity = 1;
+ icon_state = "barber"
},
/area/awaymission/centcomAway/thunderdome)
"oO" = (
@@ -5865,17 +5422,15 @@
dir = 1
},
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/thunderdome)
"oP" = (
/obj/structure/chair,
/turf/simulated/floor/plasteel{
- tag = "icon-redbluefull (WEST)";
- icon_state = "redbluefull";
- dir = 8
+ dir = 8;
+ icon_state = "redbluefull"
},
/area/awaymission/centcomAway/thunderdome)
"oQ" = (
@@ -5905,19 +5460,17 @@
/area/awaymission/centcomAway/thunderdome)
"oT" = (
/turf/simulated/floor/plasteel{
- icon_state = "green";
- dir = 4
+ dir = 4;
+ icon_state = "green"
},
/area/awaymission/centcomAway/thunderdome)
"oU" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/thunderdome)
"oV" = (
@@ -5931,27 +5484,27 @@
/area/awaymission/centcomAway/hangar)
"oW" = (
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 1
+ dir = 1;
+ icon_state = "red"
},
/area/awaymission/centcomAway/thunderdome)
"oX" = (
/obj/machinery/portable_atmospherics/scrubber/huge,
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 9
+ dir = 9;
+ icon_state = "red"
},
/area/awaymission/centcomAway/thunderdome)
"oY" = (
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 5
+ dir = 5;
+ icon_state = "red"
},
/area/awaymission/centcomAway/thunderdome)
"oZ" = (
/turf/simulated/floor/plasteel{
- icon_state = "redcorner";
- dir = 1
+ dir = 1;
+ icon_state = "redcorner"
},
/area/awaymission/centcomAway/thunderdome)
"pa" = (
@@ -5993,7 +5546,6 @@
/area/awaymission/centcomAway/thunderdome)
"pg" = (
/obj/structure/sink{
- icon_state = "sink";
dir = 8;
pixel_x = -12;
pixel_y = 2
@@ -6027,9 +5579,8 @@
/obj/structure/table,
/obj/item/camera,
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/thunderdome)
"pk" = (
@@ -6053,18 +5604,15 @@
/area/awaymission/centcomAway/thunderdome)
"pm" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/thunderdome)
"pn" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/plasteel{
@@ -6073,7 +5621,6 @@
/area/awaymission/centcomAway/thunderdome)
"po" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/turf/simulated/floor/plasteel{
@@ -6082,7 +5629,6 @@
/area/awaymission/centcomAway/thunderdome)
"pp" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "redcorner"
},
/area/awaymission/centcomAway/thunderdome)
@@ -6098,9 +5644,7 @@
},
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
- pixel_x = 11;
- pixel_y = 0
+ pixel_x = 11
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -6108,38 +5652,31 @@
/area/awaymission/centcomAway/thunderdome)
"ps" = (
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 4
+ dir = 4;
+ icon_state = "red"
},
/area/awaymission/centcomAway/thunderdome)
"pt" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/thunderdome)
"pu" = (
/turf/simulated/floor/plasteel{
- tag = "icon-plaque";
icon_state = "plaque"
},
/area/awaymission/centcomAway/thunderdome)
"pv" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/thunderdome)
"pw" = (
/turf/simulated/floor/plasteel{
- icon_state = "green";
- dir = 8
+ dir = 8;
+ icon_state = "green"
},
/area/awaymission/centcomAway/thunderdome)
"px" = (
@@ -6150,8 +5687,8 @@
/area/awaymission/centcomAway/thunderdome)
"py" = (
/turf/simulated/floor/plasteel{
- icon_state = "redcorner";
- dir = 4
+ dir = 4;
+ icon_state = "redcorner"
},
/area/awaymission/centcomAway/thunderdome)
"pz" = (
@@ -6162,7 +5699,6 @@
/area/awaymission/centcomAway/thunderdome)
"pA" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "greencorner"
},
/area/awaymission/centcomAway/thunderdome)
@@ -6180,16 +5716,14 @@
/area/awaymission/centcomAway/thunderdome)
"pD" = (
/turf/simulated/floor/plasteel{
- tag = "icon-vault (EAST)";
- icon_state = "vault";
- dir = 4
+ dir = 4;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/thunderdome)
"pE" = (
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTH)";
- icon_state = "vault";
- dir = 1
+ dir = 1;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/thunderdome)
"pF" = (
@@ -6208,26 +5742,23 @@
name = "XCC Checkpoint 1 Shutters"
},
/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"pH" = (
/obj/machinery/portable_atmospherics/scrubber/huge,
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 10
+ dir = 10;
+ icon_state = "red"
},
/area/awaymission/centcomAway/thunderdome)
"pI" = (
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 6
+ dir = 6;
+ icon_state = "red"
},
/area/awaymission/centcomAway/thunderdome)
"pJ" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "green"
},
/area/awaymission/centcomAway/thunderdome)
@@ -6240,8 +5771,8 @@
"pL" = (
/obj/machinery/portable_atmospherics/scrubber/huge,
/turf/simulated/floor/plasteel{
- icon_state = "green";
- dir = 6
+ dir = 6;
+ icon_state = "green"
},
/area/awaymission/centcomAway/thunderdome)
"pM" = (
@@ -6252,9 +5783,8 @@
/area/awaymission/centcomAway/thunderdome)
"pN" = (
/turf/simulated/floor/plasteel{
- tag = "icon-redyellowfull (NORTHEAST)";
- icon_state = "redyellowfull";
- dir = 5
+ dir = 5;
+ icon_state = "redyellowfull"
},
/area/awaymission/centcomAway/thunderdome)
"pO" = (
@@ -6262,18 +5792,16 @@
dir = 1
},
/turf/simulated/floor/plasteel{
- tag = "icon-redyellowfull (NORTHEAST)";
- icon_state = "redyellowfull";
- dir = 5
+ dir = 5;
+ icon_state = "redyellowfull"
},
/area/awaymission/centcomAway/thunderdome)
"pP" = (
/obj/structure/table/wood,
/obj/item/radio/off,
/turf/simulated/floor/plasteel{
- tag = "icon-redyellowfull (NORTHEAST)";
- icon_state = "redyellowfull";
- dir = 5
+ dir = 5;
+ icon_state = "redyellowfull"
},
/area/awaymission/centcomAway/thunderdome)
"pQ" = (
@@ -6281,9 +5809,8 @@
dir = 1
},
/turf/simulated/floor/plasteel{
- tag = "icon-redyellowfull (NORTHEAST)";
- icon_state = "redyellowfull";
- dir = 5
+ dir = 5;
+ icon_state = "redyellowfull"
},
/area/awaymission/centcomAway/thunderdome)
"pR" = (
@@ -6293,9 +5820,8 @@
req_access_txt = "102"
},
/turf/simulated/floor/plasteel{
- tag = "icon-redyellowfull (NORTHEAST)";
- icon_state = "redyellowfull";
- dir = 5
+ dir = 5;
+ icon_state = "redyellowfull"
},
/area/awaymission/centcomAway/thunderdome)
"pS" = (
@@ -6303,9 +5829,8 @@
pixel_y = 8
},
/turf/simulated/floor/plasteel{
- tag = "icon-redyellowfull (NORTHEAST)";
- icon_state = "redyellowfull";
- dir = 5
+ dir = 5;
+ icon_state = "redyellowfull"
},
/area/awaymission/centcomAway/thunderdome)
"pT" = (
@@ -6319,18 +5844,16 @@
loot = list(/obj/effect/mob_spawn/human/corpse/russian/ranged)
},
/turf/simulated/floor/plasteel{
- tag = "icon-redyellowfull (NORTHEAST)";
- icon_state = "redyellowfull";
- dir = 5
+ dir = 5;
+ icon_state = "redyellowfull"
},
/area/awaymission/centcomAway/thunderdome)
"pV" = (
/obj/structure/table,
/obj/machinery/light,
/turf/simulated/floor/plasteel{
- tag = "icon-redyellowfull (NORTHEAST)";
- icon_state = "redyellowfull";
- dir = 5
+ dir = 5;
+ icon_state = "redyellowfull"
},
/area/awaymission/centcomAway/thunderdome)
"pW" = (
@@ -6339,33 +5862,29 @@
pixel_y = 4
},
/turf/simulated/floor/plasteel{
- tag = "icon-redyellowfull (NORTHEAST)";
- icon_state = "redyellowfull";
- dir = 5
+ dir = 5;
+ icon_state = "redyellowfull"
},
/area/awaymission/centcomAway/thunderdome)
"pX" = (
/obj/structure/computerframe,
/turf/simulated/floor/plasteel{
- tag = "icon-redyellowfull (NORTHEAST)";
- icon_state = "redyellowfull";
- dir = 5
+ dir = 5;
+ icon_state = "redyellowfull"
},
/area/awaymission/centcomAway/thunderdome)
"pY" = (
/obj/machinery/light,
/turf/simulated/floor/plasteel{
- tag = "icon-redyellowfull (NORTHEAST)";
- icon_state = "redyellowfull";
- dir = 5
+ dir = 5;
+ icon_state = "redyellowfull"
},
/area/awaymission/centcomAway/thunderdome)
"pZ" = (
/obj/machinery/computer/area_atmos,
/turf/simulated/floor/plasteel{
- tag = "icon-redyellowfull (NORTHEAST)";
- icon_state = "redyellowfull";
- dir = 5
+ dir = 5;
+ icon_state = "redyellowfull"
},
/area/awaymission/centcomAway/thunderdome)
"qa" = (
@@ -6378,26 +5897,23 @@
/obj/structure/table,
/obj/item/storage/box/handcuffs,
/turf/simulated/floor/plasteel{
- tag = "icon-redyellowfull (NORTHEAST)";
- icon_state = "redyellowfull";
- dir = 5
+ dir = 5;
+ icon_state = "redyellowfull"
},
/area/awaymission/centcomAway/thunderdome)
"qc" = (
/obj/structure/closet/secure_closet/bar,
/turf/simulated/floor/plasteel{
- tag = "icon-redyellowfull (NORTHEAST)";
- icon_state = "redyellowfull";
- dir = 5
+ dir = 5;
+ icon_state = "redyellowfull"
},
/area/awaymission/centcomAway/thunderdome)
"qd" = (
/obj/structure/table,
/obj/item/storage/toolbox/electrical,
/turf/simulated/floor/plasteel{
- tag = "icon-redyellowfull (NORTHEAST)";
- icon_state = "redyellowfull";
- dir = 5
+ dir = 5;
+ icon_state = "redyellowfull"
},
/area/awaymission/centcomAway/thunderdome)
"qe" = (
@@ -6405,18 +5921,16 @@
/obj/item/reagent_containers/food/snacks/popcorn,
/obj/machinery/light,
/turf/simulated/floor/plasteel{
- tag = "icon-redyellowfull (NORTHEAST)";
- icon_state = "redyellowfull";
- dir = 5
+ dir = 5;
+ icon_state = "redyellowfull"
},
/area/awaymission/centcomAway/thunderdome)
"qf" = (
/obj/structure/table,
/obj/item/storage/toolbox/mechanical,
/turf/simulated/floor/plasteel{
- tag = "icon-redyellowfull (NORTHEAST)";
- icon_state = "redyellowfull";
- dir = 5
+ dir = 5;
+ icon_state = "redyellowfull"
},
/area/awaymission/centcomAway/thunderdome)
"qg" = (
@@ -6425,9 +5939,7 @@
name = "XCC Thunderdome Melee!"
},
/obj/structure/table/reinforced,
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/thunderdome)
"qh" = (
/obj/machinery/door_control{
@@ -6435,9 +5947,7 @@
name = "XCC Thunderdome Guns!"
},
/obj/structure/table/reinforced,
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/thunderdome)
"qi" = (
/obj/machinery/door_control{
@@ -6445,9 +5955,7 @@
name = "XCC Thunderdome Go!"
},
/obj/structure/table/reinforced,
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/thunderdome)
"qj" = (
/obj/structure/rack,
@@ -6462,9 +5970,7 @@
name = "XCC Checkpoint 2 Shutters"
},
/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"ql" = (
/obj/machinery/door_control{
@@ -6479,9 +5985,7 @@
/area/awaymission/centcomAway/hangar)
"qm" = (
/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"qn" = (
/obj/machinery/door/poddoor{
@@ -6530,9 +6034,7 @@
/obj/machinery/tcomms/relay/ruskie{
network_id = "XCC-P5831-RELAY"
},
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
(1,1,1) = {"
@@ -15178,7 +14680,7 @@ eO
kh
fH
kw
-kG
+gn
eF
eF
eF
@@ -15308,7 +14810,7 @@ hA
hN
fH
kw
-kP
+go
eF
lE
fg
@@ -16079,11 +15581,11 @@ eU
eU
fJ
jf
-jm
+mv
jv
jG
eO
-jm
+mv
jv
jv
jv
diff --git a/_maps/map_files/RandomZLevels/evil_santa.dmm b/_maps/map_files/RandomZLevels/evil_santa.dmm
index 62b84545ee0..69008f30d1a 100644
--- a/_maps/map_files/RandomZLevels/evil_santa.dmm
+++ b/_maps/map_files/RandomZLevels/evil_santa.dmm
@@ -99,10 +99,7 @@
},
/area/awaymission/challenge/main)
"aq" = (
-/obj/structure/mineral_door/wood{
- tag = "icon-wood";
- icon_state = "wood"
- },
+/obj/structure/mineral_door/wood,
/obj/structure/fans/tiny,
/turf/simulated/floor/plasteel,
/area/awaymission/challenge/main)
@@ -250,8 +247,6 @@
"aN" = (
/obj/structure/inflatable/door,
/obj/effect/decal/snow/clean/edge{
- tag = "icon-snow_corner (NORTH)";
- icon_state = "snow_corner";
dir = 1
},
/turf/simulated/floor/plasteel{
@@ -296,8 +291,7 @@
/area/awaymission/challenge/main)
"aY" = (
/turf/simulated/floor/plasteel{
- icon_state = "cafeteria";
- dir = 2
+ icon_state = "cafeteria"
},
/area/awaymission/challenge/main)
"aZ" = (
@@ -341,8 +335,7 @@
"bf" = (
/mob/living/simple_animal/hostile/winter/santa/stage_1,
/turf/simulated/floor/plasteel{
- icon_state = "cafeteria";
- dir = 2
+ icon_state = "cafeteria"
},
/area/awaymission/challenge/main)
"bj" = (
@@ -385,10 +378,7 @@
/turf/simulated/floor/wood,
/area/awaymission/challenge/main)
"bq" = (
-/obj/structure/mineral_door/wood{
- tag = "icon-wood";
- icon_state = "wood"
- },
+/obj/structure/mineral_door/wood,
/obj/structure/fans/tiny,
/turf/simulated/floor/wood,
/area/awaymission/challenge/main)
@@ -421,7 +411,6 @@
/area/awaymission/challenge/main)
"bx" = (
/obj/machinery/porta_turret/syndicate/interior{
- density = 0;
desc = "Winterized interior defense turret chambered for .45 rounds and mounted on a wall. Designed to down intruders without damaging the hull.";
faction = "winter";
name = "wall mounted machine gun turret (.45)";
@@ -471,8 +460,7 @@
/obj/structure/fans/tiny,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- icon_state = "cafeteria";
- dir = 2
+ icon_state = "cafeteria"
},
/area/awaymission/challenge/main)
"bF" = (
@@ -505,8 +493,7 @@
id = "challenge";
name = "Gateway Lockdown";
pixel_x = -4;
- pixel_y = 26;
- req_access_txt = "0"
+ pixel_y = 26
},
/obj/effect/decal/warning_stripes/northeastcorner,
/turf/simulated/floor/plasteel,
@@ -587,8 +574,8 @@
"bX" = (
/obj/machinery/power/smes/magical,
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/turf/simulated/floor/plating,
/area/awaymission/challenge/main)
@@ -606,8 +593,7 @@
/obj/machinery/power/apc/noalarm{
dir = 4;
name = "Worn-out APC";
- pixel_x = 24;
- pixel_y = 0
+ pixel_x = 24
},
/turf/simulated/floor/plating,
/area/awaymission/challenge/main)
@@ -624,8 +610,7 @@
"cb" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/awaymission/challenge/start)
@@ -656,12 +641,11 @@
/area/awaymission/challenge/main)
"ch" = (
/obj/machinery/power/terminal{
- icon_state = "term";
dir = 1
},
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/turf/simulated/floor/plating,
/area/awaymission/challenge/main)
@@ -679,8 +663,7 @@
/obj/machinery/power/apc/noalarm{
dir = 4;
name = "Worn-out APC";
- pixel_x = 24;
- pixel_y = 0
+ pixel_x = 24
},
/turf/simulated/floor/plating,
/area/awaymission/challenge/start)
@@ -690,8 +673,7 @@
/area/awaymission/challenge/start)
"ck" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/awaymission/challenge/start)
@@ -787,8 +769,7 @@
id = "challenge";
name = "Gateway Lockdown";
pixel_x = -4;
- pixel_y = 26;
- req_access_txt = "0"
+ pixel_y = 26
},
/obj/effect/decal/warning_stripes/northwestcorner,
/turf/simulated/floor/plasteel,
diff --git a/_maps/map_files/RandomZLevels/example.dmm b/_maps/map_files/RandomZLevels/example.dmm
index 695005bada4..8d0f25d91cc 100644
--- a/_maps/map_files/RandomZLevels/example.dmm
+++ b/_maps/map_files/RandomZLevels/example.dmm
@@ -19,9 +19,9 @@
charge = 5e+006
},
/obj/structure/cable{
+ d2 = 2;
icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
+ pixel_y = 1
},
/turf/simulated/floor/plasteel,
/area/awaymission/example)
@@ -30,23 +30,21 @@
dir = 8
},
/obj/structure/cable{
+ d2 = 2;
icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
+ pixel_y = 1
},
/turf/simulated/floor/plasteel,
/area/awaymission/example)
"ag" = (
/obj/machinery/power/apc/noalarm{
dir = 1;
- name = "area power controller";
- pixel_x = 0;
pixel_y = 24
},
/obj/structure/cable{
+ d2 = 2;
icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
+ pixel_y = 1
},
/turf/simulated/floor/plasteel,
/area/awaymission/example)
@@ -100,7 +98,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel,
@@ -122,9 +119,9 @@
/area/awaymission/example)
"ao" = (
/obj/structure/cable{
+ d2 = 2;
icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
+ pixel_y = 1
},
/obj/machinery/gateway/centeraway,
/turf/simulated/floor/plasteel,
@@ -173,7 +170,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel,
@@ -190,8 +186,8 @@
/area/awaymission/example)
"ax" = (
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/turf/simulated/floor/plating,
/area/awaymission/example)
@@ -201,7 +197,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plating,
@@ -211,7 +206,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel,
@@ -228,7 +222,6 @@
/area/awaymission/example)
"aB" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/obj/structure/table,
@@ -237,8 +230,7 @@
/area/awaymission/example)
"aC" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/awaymission/example)
@@ -309,15 +301,13 @@
/area/awaymission/example)
"aQ" = (
/turf/simulated/floor/plasteel{
- tag = "icon-yellowfull (WEST)";
- icon_state = "yellowfull";
- dir = 8
+ dir = 8;
+ icon_state = "yellowfull"
},
/area/awaymission/example)
"aR" = (
/turf/simulated/floor/plasteel{
- icon_state = "whitehall";
- dir = 2
+ icon_state = "whitehall"
},
/area/awaymission/example)
"aS" = (
@@ -462,7 +452,6 @@
/area/awaymission/example)
"bj" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/turf/simulated/floor/plasteel,
@@ -501,9 +490,8 @@
/area/awaymission/example)
"bo" = (
/turf/simulated/floor/plasteel{
- tag = "icon-stage_stairs (WEST)";
- icon_state = "stage_stairs";
- dir = 8
+ dir = 8;
+ icon_state = "stage_stairs"
},
/area/awaymission/example)
"bp" = (
@@ -612,7 +600,6 @@
/area/awaymission/example)
"bC" = (
/obj/structure/sink{
- icon_state = "sink";
dir = 8;
pixel_x = -12;
pixel_y = 2
@@ -636,8 +623,7 @@
/area/awaymission/example)
"bF" = (
/obj/machinery/door/airlock{
- name = "Unisex Restrooms";
- req_access_txt = "0"
+ name = "Unisex Restrooms"
},
/turf/simulated/floor/plasteel,
/area/awaymission/example)
@@ -671,8 +657,6 @@
/area/awaymission/example)
"bJ" = (
/obj/structure/chair/wood{
- tag = "icon-wooden_chair (EAST)";
- icon_state = "wooden_chair";
dir = 4
},
/turf/simulated/floor/plasteel{
@@ -681,8 +665,6 @@
/area/awaymission/example)
"bK" = (
/obj/structure/chair/wood{
- tag = "icon-wooden_chair (WEST)";
- icon_state = "wooden_chair";
dir = 8
},
/turf/simulated/floor/plasteel{
@@ -707,8 +689,6 @@
/area/awaymission/example)
"bN" = (
/obj/structure/chair/wood{
- tag = "icon-wooden_chair (NORTH)";
- icon_state = "wooden_chair";
dir = 1
},
/turf/simulated/floor/plasteel{
@@ -810,7 +790,6 @@
/obj/item/screwdriver,
/obj/item/hand_labeler,
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/turf/simulated/floor/plasteel,
@@ -886,8 +865,6 @@
name = "awaystart"
},
/obj/machinery/light_construct/small{
- tag = "icon-bulb-construct-stage1 (WEST)";
- icon_state = "bulb-construct-stage1";
dir = 8
},
/turf/simulated/floor/plasteel,
diff --git a/_maps/map_files/RandomZLevels/moonoutpost19.dmm b/_maps/map_files/RandomZLevels/moonoutpost19.dmm
index c54db920e91..80ddcf91249 100644
--- a/_maps/map_files/RandomZLevels/moonoutpost19.dmm
+++ b/_maps/map_files/RandomZLevels/moonoutpost19.dmm
@@ -4,7 +4,6 @@
/area/awaycontent/a3{
always_unpowered = 1;
ambientsounds = list('sound/ambience/ambimine.ogg');
- has_gravity = 1;
name = "Khonsu 19";
power_environ = 0;
power_equip = 0;
@@ -16,7 +15,6 @@
/area/awaycontent/a3{
always_unpowered = 1;
ambientsounds = list('sound/ambience/ambimine.ogg');
- has_gravity = 1;
name = "Khonsu 19";
power_environ = 0;
power_equip = 0;
@@ -29,7 +27,6 @@
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a5{
always_unpowered = 1;
- has_gravity = 1;
name = "The Hive";
power_environ = 0;
power_equip = 0;
@@ -44,7 +41,6 @@
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a5{
always_unpowered = 1;
- has_gravity = 1;
name = "The Hive";
power_environ = 0;
power_equip = 0;
@@ -61,7 +57,6 @@
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a5{
always_unpowered = 1;
- has_gravity = 1;
name = "The Hive";
power_environ = 0;
power_equip = 0;
@@ -76,7 +71,6 @@
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a5{
always_unpowered = 1;
- has_gravity = 1;
name = "The Hive";
power_environ = 0;
power_equip = 0;
@@ -95,7 +89,6 @@
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a5{
always_unpowered = 1;
- has_gravity = 1;
name = "The Hive";
power_environ = 0;
power_equip = 0;
@@ -107,7 +100,6 @@
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a5{
always_unpowered = 1;
- has_gravity = 1;
name = "The Hive";
power_environ = 0;
power_equip = 0;
@@ -122,7 +114,6 @@
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a5{
always_unpowered = 1;
- has_gravity = 1;
name = "The Hive";
power_environ = 0;
power_equip = 0;
@@ -135,7 +126,6 @@
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a5{
always_unpowered = 1;
- has_gravity = 1;
name = "The Hive";
power_environ = 0;
power_equip = 0;
@@ -154,7 +144,6 @@
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a5{
always_unpowered = 1;
- has_gravity = 1;
name = "The Hive";
power_environ = 0;
power_equip = 0;
@@ -169,7 +158,6 @@
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a5{
always_unpowered = 1;
- has_gravity = 1;
name = "The Hive";
power_environ = 0;
power_equip = 0;
@@ -181,7 +169,6 @@
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a5{
always_unpowered = 1;
- has_gravity = 1;
name = "The Hive";
power_environ = 0;
power_equip = 0;
@@ -196,7 +183,6 @@
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a5{
always_unpowered = 1;
- has_gravity = 1;
name = "The Hive";
power_environ = 0;
power_equip = 0;
@@ -210,7 +196,6 @@
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a5{
always_unpowered = 1;
- has_gravity = 1;
name = "The Hive";
power_environ = 0;
power_equip = 0;
@@ -233,7 +218,6 @@
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a5{
always_unpowered = 1;
- has_gravity = 1;
name = "The Hive";
power_environ = 0;
power_equip = 0;
@@ -247,7 +231,6 @@
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a5{
always_unpowered = 1;
- has_gravity = 1;
name = "The Hive";
power_environ = 0;
power_equip = 0;
@@ -263,7 +246,6 @@
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a5{
always_unpowered = 1;
- has_gravity = 1;
name = "The Hive";
power_environ = 0;
power_equip = 0;
@@ -273,7 +255,6 @@
"as" = (
/turf/simulated/wall/r_wall,
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"at" = (
@@ -287,7 +268,6 @@
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a5{
always_unpowered = 1;
- has_gravity = 1;
name = "The Hive";
power_environ = 0;
power_equip = 0;
@@ -302,7 +282,6 @@
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a5{
always_unpowered = 1;
- has_gravity = 1;
name = "The Hive";
power_environ = 0;
power_equip = 0;
@@ -318,7 +297,6 @@
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a5{
always_unpowered = 1;
- has_gravity = 1;
name = "The Hive";
power_environ = 0;
power_equip = 0;
@@ -333,7 +311,6 @@
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a5{
always_unpowered = 1;
- has_gravity = 1;
name = "The Hive";
power_environ = 0;
power_equip = 0;
@@ -343,11 +320,9 @@
"ax" = (
/turf/simulated/floor/plasteel{
dir = 9;
- icon_state = "darkred";
- tag = "icon-darkred (NORTHWEST)"
+ icon_state = "darkred"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"ay" = (
@@ -355,38 +330,31 @@
icon_state = "dark"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"az" = (
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "darkredcorners";
- tag = "icon-darkredcorners (NORTH)"
+ icon_state = "darkredcorners"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"aA" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "darkred";
- tag = "icon-darkred (NORTHEAST)"
+ icon_state = "darkred"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"aB" = (
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "darkredcorners";
- tag = "icon-darkredcorners (EAST)"
+ icon_state = "darkredcorners"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"aC" = (
@@ -395,7 +363,6 @@
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a5{
always_unpowered = 1;
- has_gravity = 1;
name = "The Hive";
power_environ = 0;
power_equip = 0;
@@ -423,7 +390,6 @@
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a5{
always_unpowered = 1;
- has_gravity = 1;
name = "The Hive";
power_environ = 0;
power_equip = 0;
@@ -434,11 +400,9 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "darkredcorners";
- tag = "icon-darkredcorners (NORTH)"
+ icon_state = "darkredcorners"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"aF" = (
@@ -450,7 +414,6 @@
icon_state = "vault"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"aG" = (
@@ -462,7 +425,6 @@
icon_state = "vault"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"aH" = (
@@ -474,7 +436,6 @@
icon_state = "vault"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"aI" = (
@@ -493,7 +454,6 @@
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a5{
always_unpowered = 1;
- has_gravity = 1;
name = "The Hive";
power_environ = 0;
power_equip = 0;
@@ -511,7 +471,6 @@
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a5{
always_unpowered = 1;
- has_gravity = 1;
name = "The Hive";
power_environ = 0;
power_equip = 0;
@@ -531,7 +490,6 @@
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a5{
always_unpowered = 1;
- has_gravity = 1;
name = "The Hive";
power_environ = 0;
power_equip = 0;
@@ -546,7 +504,6 @@
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a5{
always_unpowered = 1;
- has_gravity = 1;
name = "The Hive";
power_environ = 0;
power_equip = 0;
@@ -561,7 +518,6 @@
icon_state = "dark"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"aN" = (
@@ -572,7 +528,6 @@
icon_state = "dark"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"aO" = (
@@ -584,19 +539,16 @@
icon_state = "vault"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"aP" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"aQ" = (
@@ -608,7 +560,6 @@
icon_state = "vault"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"aR" = (
@@ -620,7 +571,6 @@
/area/awaycontent/a3{
always_unpowered = 1;
ambientsounds = list('sound/ambience/ambimine.ogg');
- has_gravity = 1;
name = "Khonsu 19";
power_environ = 0;
power_equip = 0;
@@ -638,7 +588,6 @@
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a5{
always_unpowered = 1;
- has_gravity = 1;
name = "The Hive";
power_environ = 0;
power_equip = 0;
@@ -648,31 +597,27 @@
"aT" = (
/turf/simulated/wall,
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"aU" = (
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "darkredcorners";
- tag = "icon-darkredcorners (WEST)"
+ icon_state = "darkredcorners"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"aV" = (
/obj/machinery/gateway,
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "vault"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"aW" = (
@@ -684,17 +629,13 @@
icon_state = "vault"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"aX" = (
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "darkredcorners";
- tag = "icon-darkredcorners"
+ icon_state = "darkredcorners"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"aY" = (
@@ -707,7 +648,6 @@
icon_state = "vault"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"aZ" = (
@@ -715,7 +655,6 @@
/area/awaycontent/a3{
always_unpowered = 1;
ambientsounds = list('sound/ambience/ambimine.ogg');
- has_gravity = 1;
name = "Khonsu 19";
power_environ = 0;
power_equip = 0;
@@ -732,7 +671,6 @@
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a5{
always_unpowered = 1;
- has_gravity = 1;
name = "The Hive";
power_environ = 0;
power_equip = 0;
@@ -747,7 +685,6 @@
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a5{
always_unpowered = 1;
- has_gravity = 1;
name = "The Hive";
power_environ = 0;
power_equip = 0;
@@ -760,7 +697,6 @@
icon_state = "dark"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"bd" = (
@@ -772,18 +708,15 @@
icon_state = "dark"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"be" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 10;
- icon_state = "darkred";
- tag = "icon-darkred (SOUTHWEST)"
+ icon_state = "darkred"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"bf" = (
@@ -791,35 +724,28 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"bg" = (
/turf/simulated/floor/plasteel{
dir = 6;
- icon_state = "darkred";
- tag = "icon-darkred (SOUTHEAST)"
+ icon_state = "darkred"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"bh" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "darkredcorners";
- tag = "icon-darkredcorners"
+ icon_state = "darkredcorners"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"bi" = (
@@ -838,7 +764,6 @@
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a5{
always_unpowered = 1;
- has_gravity = 1;
name = "The Hive";
power_environ = 0;
power_equip = 0;
@@ -851,7 +776,6 @@
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a5{
always_unpowered = 1;
- has_gravity = 1;
name = "The Hive";
power_environ = 0;
power_equip = 0;
@@ -869,7 +793,6 @@
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a5{
always_unpowered = 1;
- has_gravity = 1;
name = "The Hive";
power_environ = 0;
power_equip = 0;
@@ -880,7 +803,6 @@
/turf/simulated/mineral/random/high_chance,
/area/awaycontent/a5{
always_unpowered = 1;
- has_gravity = 1;
name = "The Hive";
power_environ = 0;
power_equip = 0;
@@ -893,7 +815,6 @@
icon_state = "bar"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"bn" = (
@@ -908,7 +829,6 @@
icon_state = "bar"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"bo" = (
@@ -924,13 +844,10 @@
icon_state = "bar"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"bp" = (
/obj/machinery/alarm/monitor{
- frequency = 1439;
- locked = 1;
pixel_y = 23;
req_access = "150"
},
@@ -938,7 +855,6 @@
icon_state = "bar"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"bq" = (
@@ -956,7 +872,6 @@
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"br" = (
@@ -976,7 +891,6 @@
/obj/effect/decal/warning_stripes/southeast,
/turf/simulated/floor/plasteel,
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"bs" = (
@@ -989,13 +903,11 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel,
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"bt" = (
@@ -1008,7 +920,6 @@
/obj/effect/decal/warning_stripes/southwest,
/turf/simulated/floor/plasteel,
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"bu" = (
@@ -1023,19 +934,16 @@
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"bv" = (
/obj/machinery/door/airlock{
- name = "Unisex Restrooms";
- req_access_txt = "0"
+ name = "Unisex Restrooms"
},
/turf/simulated/floor/plasteel{
icon_state = "freezerfloor"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"bw" = (
@@ -1050,7 +958,6 @@
icon_state = "freezerfloor"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"bx" = (
@@ -1058,14 +965,12 @@
icon_state = "bar"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"by" = (
/obj/structure/table,
/obj/machinery/computer/security/telescreen/entertainment{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/item/trash/plate,
/obj/item/cigbutt,
@@ -1073,7 +978,6 @@
icon_state = "bar"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"bz" = (
@@ -1083,7 +987,6 @@
icon_state = "bar"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"bA" = (
@@ -1093,7 +996,6 @@
/obj/structure/chair/stool,
/turf/simulated/floor/plasteel,
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"bB" = (
@@ -1101,45 +1003,36 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"bC" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"bD" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/obj/machinery/alarm/monitor{
dir = 8;
- frequency = 1439;
- locked = 1;
pixel_x = 23;
- pixel_y = 0;
req_access = "150"
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"bE" = (
/turf/simulated/floor/plasteel,
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"bF" = (
@@ -1150,7 +1043,6 @@
icon_state = "freezerfloor"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"bG" = (
@@ -1159,7 +1051,6 @@
icon_state = "bar"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"bH" = (
@@ -1170,7 +1061,6 @@
icon_state = "bar"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"bI" = (
@@ -1180,7 +1070,6 @@
icon_state = "bar"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"bJ" = (
@@ -1189,7 +1078,6 @@
icon_state = "bar"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"bK" = (
@@ -1197,7 +1085,6 @@
icon_state = "red"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"bL" = (
@@ -1206,7 +1093,6 @@
icon_state = "red"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"bM" = (
@@ -1215,7 +1101,6 @@
icon_state = "red"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"bN" = (
@@ -1227,7 +1112,6 @@
icon_state = "red"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"bO" = (
@@ -1236,7 +1120,6 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"bP" = (
@@ -1244,7 +1127,6 @@
/obj/structure/window/full/basic,
/turf/simulated/floor/plating,
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"bQ" = (
@@ -1252,7 +1134,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/door/airlock/highsecurity{
@@ -1263,7 +1144,6 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"bR" = (
@@ -1283,12 +1163,10 @@
/obj/effect/decal/warning_stripes/northwest,
/turf/simulated/floor/plating,
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"bS" = (
/obj/machinery/power/smes{
- charge = 0;
input_level = 10000;
inputting = 0;
output_level = 15000;
@@ -1300,40 +1178,34 @@
},
/turf/simulated/floor/plating,
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"bT" = (
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/obj/machinery/computer/monitor/secret,
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/effect/decal/warning_stripes/northeast,
/turf/simulated/floor/plating,
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"bU" = (
/obj/machinery/portable_atmospherics/canister/air,
/obj/machinery/alarm/monitor{
- frequency = 1439;
- locked = 1;
pixel_y = 23;
req_access = "150"
},
/obj/effect/decal/warning_stripes/northwest,
/turf/simulated/floor/plating,
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"bV" = (
@@ -1341,7 +1213,6 @@
/obj/effect/decal/warning_stripes/northeast,
/turf/simulated/floor/plating,
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"bW" = (
@@ -1350,7 +1221,6 @@
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a5{
always_unpowered = 1;
- has_gravity = 1;
name = "The Hive";
power_environ = 0;
power_equip = 0;
@@ -1371,18 +1241,15 @@
name = "plating"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"bY" = (
/obj/machinery/conveyor{
- dir = 2;
id = "awaysyndie"
},
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plating,
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"bZ" = (
@@ -1402,7 +1269,6 @@
name = "floor"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"ca" = (
@@ -1411,7 +1277,6 @@
name = "floor"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"cb" = (
@@ -1425,12 +1290,10 @@
name = "floor"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"cc" = (
/obj/machinery/alarm/monitor{
- frequency = 1439;
locked = 0;
pixel_y = 23;
req_access = "150"
@@ -1440,7 +1303,6 @@
name = "floor"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"cd" = (
@@ -1451,7 +1313,6 @@
name = "floor"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"ce" = (
@@ -1464,7 +1325,6 @@
name = "floor"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"cf" = (
@@ -1472,7 +1332,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/effect/decal/cleanable/dirt,
@@ -1481,7 +1340,6 @@
name = "floor"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"cg" = (
@@ -1498,12 +1356,10 @@
name = "floor"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"ch" = (
/obj/structure/sign/securearea{
- pixel_x = 0;
pixel_y = 32
},
/obj/effect/decal/warning_stripes/northwestcorner,
@@ -1511,7 +1367,6 @@
name = "floor"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"ci" = (
@@ -1519,7 +1374,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/structure/table,
@@ -1535,22 +1389,19 @@
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plating,
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"cj" = (
/obj/machinery/power/terminal{
- icon_state = "term";
dir = 1
},
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plating,
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"ck" = (
@@ -1558,7 +1409,6 @@
/obj/effect/landmark/damageturf,
/turf/simulated/floor/plating,
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"cl" = (
@@ -1566,7 +1416,6 @@
/obj/effect/decal/warning_stripes/northwestcorner,
/turf/simulated/floor/plating,
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"cm" = (
@@ -1579,7 +1428,6 @@
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plating,
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"cn" = (
@@ -1587,7 +1435,6 @@
/obj/structure/window/full/reinforced,
/turf/simulated/floor/plating,
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"co" = (
@@ -1595,7 +1442,6 @@
name = "floor"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"cp" = (
@@ -1604,7 +1450,6 @@
name = "floor"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"cq" = (
@@ -1620,13 +1465,11 @@
icon_state = "small"
},
/turf/simulated/floor/plasteel{
- carbon_dioxide = 0;
nitrogen = 0;
oxygen = 0;
temperature = 2.7
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"cr" = (
@@ -1636,7 +1479,6 @@
name = "floor"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"cs" = (
@@ -1646,7 +1488,6 @@
name = "floor"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"ct" = (
@@ -1660,14 +1501,12 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plasteel/airless{
name = "floor"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"cu" = (
@@ -1675,7 +1514,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel/airless{
@@ -1684,7 +1522,6 @@
name = "floor"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"cv" = (
@@ -1692,7 +1529,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/effect/decal/cleanable/dirt,
@@ -1700,7 +1536,6 @@
name = "floor"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"cw" = (
@@ -1712,7 +1547,6 @@
},
/turf/simulated/floor/plating,
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"cx" = (
@@ -1720,7 +1554,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/door/airlock/engineering{
@@ -1729,7 +1562,6 @@
},
/turf/simulated/floor/plating,
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"cy" = (
@@ -1737,7 +1569,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/structure/cable{
@@ -1755,7 +1586,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"cz" = (
@@ -1767,7 +1597,6 @@
},
/turf/simulated/floor/plating,
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"cA" = (
@@ -1776,7 +1605,6 @@
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plating,
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"cB" = (
@@ -1789,18 +1617,15 @@
/obj/effect/landmark/damageturf,
/turf/simulated/floor/plating,
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"cC" = (
/obj/machinery/mineral/processing_unit{
- dir = 1;
- output_dir = 2
+ dir = 1
},
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plating,
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"cD" = (
@@ -1809,7 +1634,6 @@
},
/turf/simulated/wall,
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"cE" = (
@@ -1819,7 +1643,6 @@
name = "floor"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"cF" = (
@@ -1834,7 +1657,6 @@
name = "plating"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"cG" = (
@@ -1845,18 +1667,15 @@
name = "floor"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"cH" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel/airless{
- dir = 2;
icon_state = "red";
name = "floor"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"cI" = (
@@ -1866,38 +1685,30 @@
name = "floor"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"cJ" = (
/obj/structure/cable,
/obj/machinery/power/apc/noalarm{
cell_type = 15000;
- dir = 2;
- locked = 1;
name = "Worn-out APC";
- pixel_x = 0;
pixel_y = -25;
req_access = "150";
start_charge = 0
},
/turf/simulated/floor/plasteel/airless{
- dir = 2;
icon_state = "red";
name = "floor"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"cK" = (
/turf/simulated/floor/plasteel/airless{
- dir = 2;
icon_state = "red";
name = "floor"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"cL" = (
@@ -1910,7 +1721,6 @@
name = "floor"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"cM" = (
@@ -1919,7 +1729,6 @@
/obj/effect/decal/warning_stripes/southwest,
/turf/simulated/floor/plating,
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"cN" = (
@@ -1931,7 +1740,6 @@
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plating,
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"cO" = (
@@ -1944,7 +1752,6 @@
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plating,
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"cP" = (
@@ -1952,7 +1759,6 @@
/obj/effect/decal/warning_stripes/southeast,
/turf/simulated/floor/plating,
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"cQ" = (
@@ -1966,7 +1772,6 @@
name = "floor"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"cR" = (
@@ -1976,16 +1781,12 @@
name = "floor"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"cS" = (
/obj/machinery/alarm/monitor{
dir = 8;
- frequency = 1439;
- locked = 1;
pixel_x = 23;
- pixel_y = 0;
req_access = "150"
},
/obj/machinery/light{
@@ -2000,7 +1801,6 @@
name = "floor"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"cT" = (
@@ -2017,11 +1817,9 @@
/turf/simulated/floor/plasteel/airless{
dir = 8;
icon_state = "wood";
- name = "floor";
- tag = "icon-warningcorner (NORTH)"
+ name = "floor"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"cU" = (
@@ -2031,7 +1829,6 @@
},
/turf/simulated/floor/wood,
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"cV" = (
@@ -2042,7 +1839,6 @@
name = "floor"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"cW" = (
@@ -2052,7 +1848,6 @@
name = "floor"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"cX" = (
@@ -2069,7 +1864,6 @@
name = "floor"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"cY" = (
@@ -2082,7 +1876,6 @@
/obj/effect/landmark/damageturf,
/turf/simulated/floor/plating,
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"cZ" = (
@@ -2090,9 +1883,7 @@
id = "awaydorm4";
name = "Door Bolt Control";
normaldoorcontrol = 1;
- pixel_x = 0;
pixel_y = 25;
- req_access_txt = "0";
specialfunctions = 4
},
/obj/structure/bed,
@@ -2100,11 +1891,9 @@
/turf/simulated/floor/plasteel/airless{
dir = 8;
icon_state = "wood";
- name = "floor";
- tag = "icon-warningcorner (NORTH)"
+ name = "floor"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"da" = (
@@ -2112,11 +1901,9 @@
/turf/simulated/floor/plasteel/airless{
dir = 8;
icon_state = "wood";
- name = "floor";
- tag = "icon-warningcorner (NORTH)"
+ name = "floor"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"db" = (
@@ -2124,22 +1911,18 @@
id = "awaydorm5";
name = "Door Bolt Control";
normaldoorcontrol = 1;
- pixel_x = 0;
pixel_y = 25;
- req_access_txt = "0";
specialfunctions = 4
},
/obj/structure/dresser,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/wood,
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"dc" = (
/turf/simulated/floor/wood,
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"dd" = (
@@ -2150,7 +1933,6 @@
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a5{
always_unpowered = 1;
- has_gravity = 1;
name = "The Hive";
power_environ = 0;
power_equip = 0;
@@ -2166,7 +1948,6 @@
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plating,
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"df" = (
@@ -2175,7 +1956,6 @@
},
/turf/simulated/wall,
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"dg" = (
@@ -2188,28 +1968,22 @@
name = "floor"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"dh" = (
/obj/structure/chair/wood,
/obj/machinery/alarm/monitor{
dir = 4;
- frequency = 1439;
- locked = 1;
pixel_x = -23;
- pixel_y = 0;
req_access = "150"
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel/airless{
dir = 8;
icon_state = "wood";
- name = "floor";
- tag = "icon-warningcorner (NORTH)"
+ name = "floor"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"di" = (
@@ -2219,25 +1993,19 @@
/turf/simulated/floor/plasteel/airless{
dir = 8;
icon_state = "wood";
- name = "floor";
- tag = "icon-warningcorner (NORTH)"
+ name = "floor"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"dj" = (
/obj/machinery/alarm/monitor{
dir = 8;
- frequency = 1439;
- locked = 1;
pixel_x = 23;
- pixel_y = 0;
req_access = "150"
},
/turf/simulated/floor/wood,
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"dk" = (
@@ -2246,7 +2014,6 @@
},
/turf/simulated/floor/wood,
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"dl" = (
@@ -2260,7 +2027,6 @@
name = "floor"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"dm" = (
@@ -2275,7 +2041,6 @@
name = "floor"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"dn" = (
@@ -2285,7 +2050,6 @@
name = "floor"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"do" = (
@@ -2294,7 +2058,6 @@
name = "plating"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"dp" = (
@@ -2303,8 +2066,8 @@
name = "S.U.P.E.R.P.A.C.M.A.N.-type portable generator"
},
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/obj/effect/landmark/damageturf,
/turf/simulated/floor/plating,
@@ -2322,11 +2085,9 @@
/turf/simulated/floor/plasteel/airless{
dir = 8;
icon_state = "wood";
- name = "floor";
- tag = "icon-warningcorner (NORTH)"
+ name = "floor"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"dr" = (
@@ -2338,7 +2099,6 @@
icon_off = "cabinetdetective_broken";
icon_opened = "cabinetdetective_open";
icon_state = "cabinetdetective_locked";
- locked = 1;
name = "personal closet";
req_access_txt = "150"
},
@@ -2348,11 +2108,9 @@
/turf/simulated/floor/plasteel/airless{
dir = 8;
icon_state = "wood";
- name = "floor";
- tag = "icon-warningcorner (NORTH)"
+ name = "floor"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"ds" = (
@@ -2371,7 +2129,6 @@
/obj/item/stack/spacecash/c50,
/turf/simulated/floor/wood,
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"dt" = (
@@ -2380,7 +2137,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/wood,
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"du" = (
@@ -2389,7 +2145,6 @@
name = "plating"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"dv" = (
@@ -2402,7 +2157,6 @@
/area/awaycontent/a3{
always_unpowered = 1;
ambientsounds = list('sound/ambience/ambimine.ogg');
- has_gravity = 1;
name = "Khonsu 19";
power_environ = 0;
power_equip = 0;
@@ -2415,7 +2169,6 @@
name = "plating"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"dx" = (
@@ -2424,7 +2177,6 @@
name = "floor"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"dy" = (
@@ -2442,7 +2194,6 @@
name = "plating"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"dz" = (
@@ -2454,7 +2205,6 @@
/area/awaycontent/a3{
always_unpowered = 1;
ambientsounds = list('sound/ambience/ambimine.ogg');
- has_gravity = 1;
name = "Khonsu 19";
power_environ = 0;
power_equip = 0;
@@ -2466,7 +2216,6 @@
/area/awaycontent/a3{
always_unpowered = 1;
ambientsounds = list('sound/ambience/ambimine.ogg');
- has_gravity = 1;
name = "Khonsu 19";
power_environ = 0;
power_equip = 0;
@@ -2478,7 +2227,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/effect/landmark/damageturf,
@@ -2495,14 +2243,12 @@
name = "plating"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"dD" = (
/obj/structure/sign/vacuum{
desc = "A warning sign which reads 'HOSTILE ATMOSPHERE AHEAD'";
name = "\improper HOSTILE ATMOSPHERE AHEAD";
- pixel_x = 0;
pixel_y = -32
},
/obj/machinery/portable_atmospherics/canister/oxygen,
@@ -2511,7 +2257,6 @@
name = "plating"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"dE" = (
@@ -2526,7 +2271,6 @@
/area/awaycontent/a3{
always_unpowered = 1;
ambientsounds = list('sound/ambience/ambimine.ogg');
- has_gravity = 1;
name = "Khonsu 19";
power_environ = 0;
power_equip = 0;
@@ -2543,7 +2287,6 @@
/area/awaycontent/a3{
always_unpowered = 1;
ambientsounds = list('sound/ambience/ambimine.ogg');
- has_gravity = 1;
name = "Khonsu 19";
power_environ = 0;
power_equip = 0;
@@ -2563,7 +2306,6 @@
/area/awaycontent/a3{
always_unpowered = 1;
ambientsounds = list('sound/ambience/ambimine.ogg');
- has_gravity = 1;
name = "Khonsu 19";
power_environ = 0;
power_equip = 0;
@@ -2578,7 +2320,6 @@
name = "plating"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"dI" = (
@@ -2587,7 +2328,6 @@
/area/awaycontent/a3{
always_unpowered = 1;
ambientsounds = list('sound/ambience/ambimine.ogg');
- has_gravity = 1;
name = "Khonsu 19";
power_environ = 0;
power_equip = 0;
@@ -2600,7 +2340,6 @@
/area/awaycontent/a3{
always_unpowered = 1;
ambientsounds = list('sound/ambience/ambimine.ogg');
- has_gravity = 1;
name = "Khonsu 19";
power_environ = 0;
power_equip = 0;
@@ -2616,7 +2355,6 @@
/area/awaycontent/a3{
always_unpowered = 1;
ambientsounds = list('sound/ambience/ambimine.ogg');
- has_gravity = 1;
name = "Khonsu 19";
power_environ = 0;
power_equip = 0;
@@ -2633,7 +2371,6 @@
name = "plating"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"dM" = (
@@ -2645,7 +2382,6 @@
/area/awaycontent/a3{
always_unpowered = 1;
ambientsounds = list('sound/ambience/ambimine.ogg');
- has_gravity = 1;
name = "Khonsu 19";
power_environ = 0;
power_equip = 0;
@@ -2676,7 +2412,6 @@
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a5{
always_unpowered = 1;
- has_gravity = 1;
name = "The Hive";
power_environ = 0;
power_equip = 0;
@@ -2697,7 +2432,6 @@
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a5{
always_unpowered = 1;
- has_gravity = 1;
name = "The Hive";
power_environ = 0;
power_equip = 0;
@@ -2710,7 +2444,6 @@
/area/awaycontent/a3{
always_unpowered = 1;
ambientsounds = list('sound/ambience/ambimine.ogg');
- has_gravity = 1;
name = "Khonsu 19";
power_environ = 0;
power_equip = 0;
@@ -2724,7 +2457,6 @@
/area/awaycontent/a3{
always_unpowered = 1;
ambientsounds = list('sound/ambience/ambimine.ogg');
- has_gravity = 1;
name = "Khonsu 19";
power_environ = 0;
power_equip = 0;
@@ -2740,7 +2472,6 @@
/area/awaycontent/a3{
always_unpowered = 1;
ambientsounds = list('sound/ambience/ambimine.ogg');
- has_gravity = 1;
name = "Khonsu 19";
power_environ = 0;
power_equip = 0;
@@ -2760,7 +2491,6 @@
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a5{
always_unpowered = 1;
- has_gravity = 1;
name = "The Hive";
power_environ = 0;
power_equip = 0;
@@ -2773,7 +2503,6 @@
/area/awaycontent/a3{
always_unpowered = 1;
ambientsounds = list('sound/ambience/ambimine.ogg');
- has_gravity = 1;
name = "Khonsu 19";
power_environ = 0;
power_equip = 0;
@@ -2787,7 +2516,6 @@
/area/awaycontent/a3{
always_unpowered = 1;
ambientsounds = list('sound/ambience/ambimine.ogg');
- has_gravity = 1;
name = "Khonsu 19";
power_environ = 0;
power_equip = 0;
@@ -2802,7 +2530,6 @@
/area/awaycontent/a3{
always_unpowered = 1;
ambientsounds = list('sound/ambience/ambimine.ogg');
- has_gravity = 1;
name = "Khonsu 19";
power_environ = 0;
power_equip = 0;
@@ -2818,7 +2545,6 @@
/area/awaycontent/a3{
always_unpowered = 1;
ambientsounds = list('sound/ambience/ambimine.ogg');
- has_gravity = 1;
name = "Khonsu 19";
power_environ = 0;
power_equip = 0;
@@ -2833,7 +2559,6 @@
/area/awaycontent/a3{
always_unpowered = 1;
ambientsounds = list('sound/ambience/ambimine.ogg');
- has_gravity = 1;
name = "Khonsu 19";
power_environ = 0;
power_equip = 0;
@@ -2844,19 +2569,16 @@
/obj/machinery/light/small,
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"dZ" = (
/turf/simulated/wall/r_wall/rust,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"ea" = (
/turf/simulated/wall/r_wall,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"eb" = (
@@ -2867,14 +2589,12 @@
name = "plating"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"ec" = (
/obj/structure/sign/biohazard,
/turf/simulated/wall/r_wall,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"ed" = (
@@ -2883,14 +2603,12 @@
icon_state = "dark"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"ee" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"ef" = (
@@ -2899,7 +2617,6 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"eg" = (
@@ -2911,7 +2628,6 @@
icon_state = "whitehall"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"eh" = (
@@ -2922,7 +2638,6 @@
/obj/structure/alien/weeds,
/turf/simulated/floor/plasteel,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"ei" = (
@@ -2942,7 +2657,6 @@
icon_state = "white"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"ej" = (
@@ -2950,7 +2664,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/alien/weeds{
@@ -2961,7 +2674,6 @@
icon_state = "white"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"ek" = (
@@ -2974,12 +2686,11 @@
req_access = null
},
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/turf/simulated/floor/plating,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"el" = (
@@ -2996,7 +2707,6 @@
},
/turf/simulated/floor/engine,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"em" = (
@@ -3012,14 +2722,12 @@
},
/turf/simulated/floor/engine,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"en" = (
/obj/structure/alien/weeds,
/turf/simulated/floor/engine,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"eo" = (
@@ -3041,7 +2749,6 @@
},
/turf/simulated/floor/engine,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"ep" = (
@@ -3049,7 +2756,6 @@
desc = "A wall-mounted ignition device. This one has been applied with an acid-proof coating.";
id = "awayxenobio";
name = "Acid-Proof mounted igniter";
- pixel_x = 0;
pixel_y = 25
},
/obj/structure/alien/weeds{
@@ -3058,7 +2764,6 @@
/obj/structure/alien/resin/wall,
/turf/simulated/floor/engine,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"eq" = (
@@ -3066,7 +2771,6 @@
/obj/structure/alien/resin/wall,
/turf/simulated/floor/engine,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"er" = (
@@ -3079,7 +2783,6 @@
},
/turf/simulated/floor/engine,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"es" = (
@@ -3096,7 +2799,6 @@
},
/turf/simulated/floor/engine,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"et" = (
@@ -3105,13 +2807,11 @@
icon_state = "dark"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"eu" = (
/turf/simulated/floor/plasteel,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"ev" = (
@@ -3124,7 +2824,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"ew" = (
@@ -3137,7 +2836,6 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"ex" = (
@@ -3145,19 +2843,16 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/manifold/visible{
dir = 4;
- initialize_directions = 11;
- level = 2
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"ey" = (
@@ -3174,13 +2869,12 @@
icon_state = "white"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"ez" = (
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/obj/machinery/door/poddoor/preopen{
desc = "A heavy duty blast door that opens mechanically. This one has been applied with an acid-proof coating.";
@@ -3192,7 +2886,6 @@
/obj/structure/window/full/reinforced,
/turf/simulated/floor/plating,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"eA" = (
@@ -3203,7 +2896,6 @@
},
/turf/simulated/wall/r_wall,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"eB" = (
@@ -3220,14 +2912,12 @@
},
/turf/simulated/floor/engine,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"eC" = (
/obj/structure/alien/weeds/node,
/turf/simulated/floor/engine,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"eD" = (
@@ -3236,7 +2926,6 @@
},
/turf/simulated/floor/engine,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"eE" = (
@@ -3246,7 +2935,6 @@
/obj/structure/alien/resin/wall,
/turf/simulated/floor/engine,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"eF" = (
@@ -3256,7 +2944,6 @@
/obj/structure/alien/resin/wall,
/turf/simulated/floor/engine,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"eG" = (
@@ -3264,7 +2951,6 @@
/obj/structure/bed/nest,
/turf/simulated/floor/engine,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"eH" = (
@@ -3279,7 +2965,6 @@
},
/turf/simulated/floor/engine,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"eI" = (
@@ -3291,28 +2976,23 @@
},
/turf/simulated/floor/engine,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"eJ" = (
/turf/simulated/wall,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"eK" = (
/turf/simulated/wall/rust,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"eL" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitehall"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"eM" = (
@@ -3325,7 +3005,6 @@
/obj/structure/window/full/reinforced,
/turf/simulated/floor/plating,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"eN" = (
@@ -3345,7 +3024,6 @@
icon_state = "whitehall"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"eO" = (
@@ -3353,7 +3031,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/visible,
@@ -3364,7 +3041,6 @@
icon_state = "white"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"eP" = (
@@ -3389,7 +3065,6 @@
icon_state = "white"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"eQ" = (
@@ -3403,7 +3078,6 @@
},
/turf/simulated/floor/engine,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"eR" = (
@@ -3415,7 +3089,6 @@
},
/turf/simulated/floor/engine,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"eS" = (
@@ -3424,7 +3097,6 @@
},
/turf/simulated/floor/engine,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"eT" = (
@@ -3443,11 +3115,9 @@
on = 1
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitehall"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"eX" = (
@@ -3458,11 +3128,9 @@
dir = 10
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitehall"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"eY" = (
@@ -3471,8 +3139,8 @@
name = "P.A.C.M.A.N.-type portable generator"
},
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/turf/simulated/floor/plating,
/area/awaycontent/a7)
@@ -3491,7 +3159,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/effect/landmark/damageturf,
@@ -3499,8 +3166,8 @@
/area/awaycontent/a7)
"fb" = (
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/obj/machinery/power/smes{
charge = 1.5e+006;
@@ -3516,11 +3183,10 @@
dir = 4
},
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/obj/machinery/alarm/monitor{
- frequency = 1439;
locked = 0;
pixel_y = 23;
req_access = null
@@ -3532,7 +3198,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/effect/decal/cleanable/blood/tracks{
@@ -3545,7 +3210,6 @@
icon_state = "whitepurplecorner"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"fe" = (
@@ -3566,7 +3230,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/item/newspaper,
@@ -3581,7 +3244,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"fi" = (
@@ -3598,12 +3260,10 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"fj" = (
/obj/machinery/firealarm/no_alarm{
- dir = 2;
pixel_y = 24
},
/obj/structure/table,
@@ -3615,7 +3275,6 @@
/obj/structure/alien/weeds,
/turf/simulated/floor/plasteel,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"fk" = (
@@ -3624,7 +3283,6 @@
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"fl" = (
@@ -3632,7 +3290,6 @@
icon_state = "white"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"fm" = (
@@ -3640,7 +3297,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/visible,
@@ -3648,7 +3304,6 @@
icon_state = "white"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"fn" = (
@@ -3662,14 +3317,13 @@
icon_state = "white"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"fo" = (
/obj/structure/cable,
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/obj/machinery/door/poddoor/preopen{
desc = "A heavy duty blast door that opens mechanically. This one has been applied with an acid-proof coating.";
@@ -3680,7 +3334,6 @@
/obj/structure/window/full/reinforced,
/turf/simulated/floor/plating,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"fp" = (
@@ -3694,7 +3347,6 @@
},
/turf/simulated/floor/engine,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"fq" = (
@@ -3709,7 +3361,6 @@
},
/turf/simulated/floor/engine,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"fr" = (
@@ -3717,7 +3368,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plating,
@@ -3735,12 +3385,10 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "271";
- req_one_access_txt = "0"
+ req_access_txt = "271"
},
/obj/effect/decal/cleanable/blood/tracks{
desc = "Your instincts say you shouldn't be following these.";
@@ -3764,11 +3412,9 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"fv" = (
@@ -3784,7 +3430,6 @@
status = 2
},
/obj/machinery/alarm/monitor{
- frequency = 1439;
locked = 0;
pixel_y = 23;
req_access = null
@@ -3794,7 +3439,6 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"fw" = (
@@ -3813,7 +3457,6 @@
icon_state = "whitepurplecorner"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"fx" = (
@@ -3836,7 +3479,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/effect/decal/cleanable/dirt,
@@ -3848,13 +3490,11 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"fA" = (
@@ -3862,12 +3502,10 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"fB" = (
@@ -3875,14 +3513,12 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"fC" = (
@@ -3890,7 +3526,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/alien/weeds/node,
@@ -3898,7 +3533,6 @@
icon_state = "white"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"fD" = (
@@ -3915,7 +3549,6 @@
icon_state = "white"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"fE" = (
@@ -3936,7 +3569,6 @@
icon_state = "white"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"fF" = (
@@ -3961,12 +3593,10 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/engine,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"fG" = (
@@ -3980,7 +3610,6 @@
},
/turf/simulated/floor/engine,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"fH" = (
@@ -3997,7 +3626,6 @@
},
/turf/simulated/floor/engine,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"fI" = (
@@ -4012,7 +3640,6 @@
/obj/structure/alien/resin/wall,
/turf/simulated/floor/engine,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"fJ" = (
@@ -4025,7 +3652,6 @@
/obj/structure/alien/resin/wall,
/turf/simulated/floor/engine,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"fK" = (
@@ -4039,7 +3665,6 @@
/obj/structure/alien/weeds,
/turf/simulated/floor/engine,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"fL" = (
@@ -4059,7 +3684,6 @@
},
/turf/simulated/floor/engine,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"fM" = (
@@ -4086,7 +3710,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plating,
@@ -4099,7 +3722,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/door/firedoor,
@@ -4114,7 +3736,6 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"fR" = (
@@ -4122,7 +3743,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/structure/cable{
@@ -4134,11 +3754,9 @@
/obj/structure/alien/weeds,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"fS" = (
@@ -4157,7 +3775,6 @@
icon_state = "red"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"fU" = (
@@ -4173,7 +3790,6 @@
icon_state = "red"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"fV" = (
@@ -4189,7 +3805,6 @@
icon_state = "whitepurplecorner"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"fX" = (
@@ -4197,7 +3812,6 @@
/obj/structure/window/full/reinforced,
/turf/simulated/floor/plating,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"fY" = (
@@ -4215,7 +3829,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plating,
@@ -4225,19 +3838,17 @@
/area/awaycontent/a7)
"gb" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"gc" = (
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/obj/structure/grille,
/obj/machinery/door/poddoor/preopen{
@@ -4252,7 +3863,6 @@
},
/turf/simulated/floor/plating,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"gd" = (
@@ -4268,7 +3878,6 @@
},
/turf/simulated/floor/engine,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"ge" = (
@@ -4284,7 +3893,6 @@
},
/turf/simulated/floor/engine,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"gf" = (
@@ -4299,7 +3907,6 @@
},
/turf/simulated/floor/engine,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"gg" = (
@@ -4316,7 +3923,6 @@
},
/turf/simulated/floor/engine,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"gh" = (
@@ -4324,7 +3930,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/structure/cable{
@@ -4339,15 +3944,11 @@
/turf/simulated/floor/plating,
/area/awaycontent/a7)
"gi" = (
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
- req_one_access_txt = "0"
- },
+/obj/machinery/door/airlock/maintenance,
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plating,
@@ -4360,7 +3961,6 @@
icon_off = "secoff";
icon_opened = "secopen";
icon_state = "sec1";
- locked = 1;
name = "security officer's locker";
req_access_txt = "271"
},
@@ -4373,7 +3973,6 @@
pixel_y = -2
},
/obj/machinery/alarm/monitor{
- frequency = 1439;
locked = 0;
pixel_y = 23;
req_access = null
@@ -4383,20 +3982,17 @@
icon_state = "red"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"gk" = (
/obj/structure/reagent_dispensers/peppertank{
- pixel_x = -30;
- pixel_y = 0
+ pixel_x = -30
},
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "red"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"gl" = (
@@ -4405,7 +4001,6 @@
icon_state = "red"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"gm" = (
@@ -4420,17 +4015,14 @@
icon_state = "whitepurplecorner"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"gn" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/wall/r_wall/rust,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"go" = (
@@ -4441,7 +4033,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/structure/alien/weeds{
@@ -4449,31 +4040,25 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"gp" = (
/obj/machinery/door/firedoor,
/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
pixel_y = -29
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"gq" = (
@@ -4487,7 +4072,6 @@
icon_state = "white"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"gr" = (
@@ -4507,7 +4091,6 @@
icon_state = "white"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"gs" = (
@@ -4517,13 +4100,11 @@
icon_state = "white"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"gt" = (
/obj/structure/sink{
dir = 8;
- icon_state = "sink";
pixel_x = -12;
pixel_y = 2
},
@@ -4531,7 +4112,6 @@
icon_state = "white"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"gu" = (
@@ -4540,13 +4120,12 @@
icon_state = "white"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"gv" = (
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/obj/structure/disposalpipe/segment{
desc = "An underfloor disposal pipe. This one has been applied with an acid-proof coating.";
@@ -4563,7 +4142,6 @@
/obj/structure/window/full/reinforced,
/turf/simulated/floor/plating,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"gw" = (
@@ -4576,7 +4154,6 @@
/obj/structure/alien/resin/wall,
/turf/simulated/floor/engine,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"gx" = (
@@ -4591,23 +4168,19 @@
},
/turf/simulated/floor/engine,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"gy" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"gz" = (
/turf/simulated/mineral/random/labormineral,
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"gA" = (
@@ -4621,30 +4194,25 @@
icon_state = "white"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"gB" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"gC" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"gD" = (
@@ -4660,7 +4228,6 @@
icon_state = "white"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"gE" = (
@@ -4668,15 +4235,13 @@
dir = 4
},
/obj/machinery/newscaster/security_unit{
- pixel_x = -30;
- pixel_y = 0
+ pixel_x = -30
},
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "red"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"gF" = (
@@ -4694,7 +4259,6 @@
icon_state = "red"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"gG" = (
@@ -4703,7 +4267,6 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"gH" = (
@@ -4713,7 +4276,6 @@
/obj/item/shard,
/turf/simulated/floor/plating,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"gI" = (
@@ -4725,7 +4287,6 @@
icon_state = "white"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"gJ" = (
@@ -4743,7 +4304,6 @@
icon_state = "white"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"gK" = (
@@ -4781,7 +4341,6 @@
icon_state = "white"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"gL" = (
@@ -4804,7 +4363,6 @@
icon_state = "white"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"gN" = (
@@ -4817,7 +4375,6 @@
},
/turf/simulated/floor/engine,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"gO" = (
@@ -4828,14 +4385,13 @@
name = "Acid-Proof containment chamber blast door"
},
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/obj/structure/grille,
/obj/structure/window/full/reinforced,
/turf/simulated/floor/plating,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"gP" = (
@@ -4846,7 +4402,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/power/apc/noalarm{
@@ -4866,7 +4421,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/item/stack/rods,
@@ -4883,14 +4437,12 @@
icon_state = "red"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"gS" = (
/obj/structure/chair/office/dark,
/turf/simulated/floor/plasteel,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"gT" = (
@@ -4899,7 +4451,6 @@
icon_state = "whitepurplecorner"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"gU" = (
@@ -4911,7 +4462,6 @@
icon_state = "white"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"gV" = (
@@ -4924,7 +4474,6 @@
icon_state = "whitehall"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"gW" = (
@@ -4939,7 +4488,6 @@
icon_state = "whitehall"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"gX" = (
@@ -4965,7 +4513,6 @@
icon_state = "white"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"gY" = (
@@ -4976,7 +4523,6 @@
icon_state = "white"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"gZ" = (
@@ -4987,7 +4533,6 @@
icon_state = "whitehall"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"ha" = (
@@ -5000,7 +4545,6 @@
icon_state = "white"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"hb" = (
@@ -5019,13 +4563,11 @@
},
/turf/simulated/floor/engine,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"hc" = (
/obj/machinery/light{
active_power_usage = 0;
- dir = 2;
icon_state = "tube-broken";
status = 2
},
@@ -5039,7 +4581,6 @@
},
/turf/simulated/floor/engine,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"hd" = (
@@ -5047,7 +4588,6 @@
desc = "A wall-mounted ignition device. This one has been applied with an acid-proof coating.";
id = "awayxenobio";
name = "Acid-Proof mounted igniter";
- pixel_x = 0;
pixel_y = -25
},
/obj/structure/alien/weeds{
@@ -5056,7 +4596,6 @@
/obj/structure/alien/resin/wall,
/turf/simulated/floor/engine,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"he" = (
@@ -5067,7 +4606,6 @@
/obj/structure/cable,
/turf/simulated/floor/plating,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"hf" = (
@@ -5075,7 +4613,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/firealarm/no_alarm{
@@ -5085,11 +4622,9 @@
/obj/structure/alien/weeds,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"hg" = (
@@ -5109,15 +4644,13 @@
/obj/structure/table,
/obj/item/book/manual/security_space_law,
/obj/machinery/computer/security/telescreen/entertainment{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/turf/simulated/floor/plasteel{
dir = 10;
icon_state = "red"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"hj" = (
@@ -5132,7 +4665,6 @@
icon_state = "red"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"hk" = (
@@ -5142,7 +4674,6 @@
icon_state = "red"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"hl" = (
@@ -5150,7 +4681,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/effect/decal/cleanable/blood/oil{
@@ -5180,25 +4710,19 @@
status = 2
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitehall"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"hp" = (
/obj/structure/table,
-/obj/item/storage/box/gloves{
- pixel_x = 0;
- pixel_y = 0
- },
+/obj/item/storage/box/gloves,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "whitecorner"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"hq" = (
@@ -5214,11 +4738,9 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"hr" = (
@@ -5231,7 +4753,6 @@
icon_state = "white"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"hs" = (
@@ -5242,16 +4763,13 @@
pixel_y = 2
},
/obj/machinery/firealarm/no_alarm{
- dir = 2;
pixel_y = 24
},
/turf/simulated/floor/plasteel{
- tag = "icon-cafeteria (NORTHEAST)";
- icon_state = "cafeteria";
- dir = 5
+ dir = 5;
+ icon_state = "cafeteria"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"ht" = (
@@ -5263,7 +4781,6 @@
status = 2
},
/obj/machinery/alarm/monitor{
- frequency = 1439;
locked = 0;
pixel_y = 23;
req_access = null
@@ -5273,12 +4790,10 @@
name = "Personal Log — Gerald Rosswell"
},
/turf/simulated/floor/plasteel{
- tag = "icon-cafeteria (NORTHEAST)";
- icon_state = "cafeteria";
- dir = 5
+ dir = 5;
+ icon_state = "cafeteria"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"hu" = (
@@ -5293,7 +4808,6 @@
id = "Awaybiohazard";
name = "Biohazard Shutter Control";
pixel_x = -25;
- pixel_y = 0;
req_access_txt = "271"
},
/obj/machinery/light/small{
@@ -5308,16 +4822,13 @@
icon_state = "red"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"hw" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"hx" = (
@@ -5329,7 +4840,6 @@
/obj/structure/window/full/reinforced,
/turf/simulated/floor/plating,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"hy" = (
@@ -5341,7 +4851,6 @@
icon_state = "white"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"hz" = (
@@ -5365,7 +4874,6 @@
icon_state = "white"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"hA" = (
@@ -5377,15 +4885,11 @@
},
/turf/simulated/floor/plating,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"hB" = (
/obj/structure/table,
-/obj/item/storage/firstaid/fire{
- pixel_x = 0;
- pixel_y = 0
- },
+/obj/item/storage/firstaid/fire,
/obj/machinery/firealarm/no_alarm{
dir = 4;
pixel_x = 28
@@ -5395,28 +4899,23 @@
icon_state = "whitehall"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"hC" = (
/turf/simulated/floor/plasteel{
- tag = "icon-cafeteria (NORTHEAST)";
- icon_state = "cafeteria";
- dir = 5
+ dir = 5;
+ icon_state = "cafeteria"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"hD" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- tag = "icon-cafeteria (NORTHEAST)";
- icon_state = "cafeteria";
- dir = 5
+ dir = 5;
+ icon_state = "cafeteria"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"hE" = (
@@ -5428,19 +4927,15 @@
},
/obj/machinery/alarm/monitor{
dir = 8;
- frequency = 1439;
locked = 0;
pixel_x = 23;
- pixel_y = 0;
req_access = null
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"hF" = (
@@ -5450,7 +4945,6 @@
},
/obj/machinery/light/small{
active_power_usage = 0;
- dir = 2;
icon_state = "bulb-broken";
status = 2
},
@@ -5468,7 +4962,6 @@
icon_state = "whitepurplecorner"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"hG" = (
@@ -5477,7 +4970,6 @@
icon_state = "white"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"hH" = (
@@ -5492,17 +4984,12 @@
/area/awaycontent/a7)
"hI" = (
/obj/structure/table,
-/obj/item/storage/firstaid/regular{
- pixel_x = 0;
- pixel_y = 0
- },
+/obj/item/storage/firstaid/regular,
/obj/effect/decal/cleanable/dirt,
/obj/machinery/alarm/monitor{
dir = 8;
- frequency = 1439;
locked = 0;
pixel_x = 23;
- pixel_y = 0;
req_access = null
},
/turf/simulated/floor/plasteel{
@@ -5510,19 +4997,16 @@
icon_state = "whitehall"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"hJ" = (
/turf/simulated/wall/rust,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"hK" = (
/turf/simulated/wall,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"hL" = (
@@ -5530,7 +5014,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/effect/decal/cleanable/dirt,
@@ -5549,12 +5032,10 @@
"hN" = (
/obj/structure/chair,
/turf/simulated/floor/plasteel{
- tag = "icon-cafeteria (NORTHEAST)";
- icon_state = "cafeteria";
- dir = 5
+ dir = 5;
+ icon_state = "cafeteria"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"hO" = (
@@ -5570,7 +5051,6 @@
icon_state = "whitepurplecorner"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"hP" = (
@@ -5580,7 +5060,6 @@
icon_state = "whitehall"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"hQ" = (
@@ -5595,7 +5074,6 @@
icon_state = "freezerfloor"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"hR" = (
@@ -5606,7 +5084,6 @@
icon_state = "freezerfloor"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"hS" = (
@@ -5617,15 +5094,12 @@
icon_state = "freezerfloor"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"hT" = (
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
- pixel_x = 11;
- pixel_y = 0
+ pixel_x = 11
},
/obj/structure/urinal{
pixel_y = 29
@@ -5638,7 +5112,6 @@
icon_state = "freezerfloor"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"hU" = (
@@ -5650,7 +5123,6 @@
icon_state = "freezerfloor"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"hV" = (
@@ -5661,14 +5133,12 @@
icon_state = "freezerfloor"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"hW" = (
/obj/machinery/light/small,
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"hX" = (
@@ -5686,7 +5156,6 @@
/obj/item/clothing/suit/storage/labcoat,
/turf/simulated/floor/plasteel,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"hY" = (
@@ -5703,12 +5172,10 @@
pixel_y = -2
},
/turf/simulated/floor/plasteel{
- tag = "icon-cafeteria (NORTHEAST)";
- icon_state = "cafeteria";
- dir = 5
+ dir = 5;
+ icon_state = "cafeteria"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"hZ" = (
@@ -5718,12 +5185,10 @@
pixel_y = 9
},
/turf/simulated/floor/plasteel{
- tag = "icon-cafeteria (NORTHEAST)";
- icon_state = "cafeteria";
- dir = 5
+ dir = 5;
+ icon_state = "cafeteria"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"ia" = (
@@ -5737,12 +5202,10 @@
network = list("MO19X","MO19R")
},
/turf/simulated/floor/plasteel{
- tag = "icon-cafeteria (NORTHEAST)";
- icon_state = "cafeteria";
- dir = 5
+ dir = 5;
+ icon_state = "cafeteria"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"ib" = (
@@ -5751,12 +5214,10 @@
dir = 1
},
/turf/simulated/floor/plasteel{
- tag = "icon-cafeteria (NORTHEAST)";
- icon_state = "cafeteria";
- dir = 5
+ dir = 5;
+ icon_state = "cafeteria"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"ic" = (
@@ -5772,7 +5233,6 @@
icon_state = "white"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"id" = (
@@ -5784,11 +5244,9 @@
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"ie" = (
@@ -5802,7 +5260,6 @@
icon_state = "white"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"if" = (
@@ -5811,7 +5268,6 @@
icon_state = "white"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"ig" = (
@@ -5822,7 +5278,6 @@
icon_state = "whitehall"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"ih" = (
@@ -5830,7 +5285,6 @@
/obj/item/clothing/glasses/hud/health,
/obj/item/clothing/glasses/hud/health,
/obj/machinery/newscaster{
- pixel_x = 0;
pixel_y = -30
},
/turf/simulated/floor/plasteel{
@@ -5838,14 +5292,12 @@
icon_state = "whitehall"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"ii" = (
/obj/structure/closet/l3closet/general,
/obj/machinery/light/small{
active_power_usage = 0;
- dir = 2;
icon_state = "bulb-broken";
status = 2
},
@@ -5854,7 +5306,6 @@
icon_state = "whitehall"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"ij" = (
@@ -5864,16 +5315,13 @@
icon_state = "whitecorner"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"ik" = (
/obj/machinery/alarm/monitor{
dir = 4;
- frequency = 1439;
locked = 0;
pixel_x = -23;
- pixel_y = 0;
req_access = null
},
/obj/machinery/light/small{
@@ -5883,27 +5331,23 @@
icon_state = "freezerfloor"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"il" = (
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
- pixel_x = 11;
- pixel_y = 0
+ pixel_x = 11
},
/obj/structure/mirror{
+ broken = 1;
desc = "Oh no, seven years of bad luck!";
icon_state = "mirror_broke";
- pixel_x = 28;
- broken = 1
+ pixel_x = 28
},
/turf/simulated/floor/plasteel{
icon_state = "freezerfloor"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"im" = (
@@ -5911,7 +5355,6 @@
icon_state = "freezerfloor"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"in" = (
@@ -5923,7 +5366,6 @@
icon_state = "freezerfloor"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"io" = (
@@ -5934,7 +5376,6 @@
icon_state = "freezerfloor"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"ip" = (
@@ -5947,7 +5388,6 @@
icon_state = "white"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"iq" = (
@@ -5959,7 +5399,6 @@
icon_off = "secureresoff";
icon_opened = "secureresopen";
icon_state = "secureres1";
- locked = 1;
name = "scientist's locker";
req_access_txt = "271"
},
@@ -5969,7 +5408,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"ir" = (
@@ -5978,12 +5416,10 @@
pixel_y = 3
},
/turf/simulated/floor/plasteel{
- tag = "icon-cafeteria (NORTHEAST)";
- icon_state = "cafeteria";
- dir = 5
+ dir = 5;
+ icon_state = "cafeteria"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"is" = (
@@ -5991,7 +5427,6 @@
/obj/structure/window/full/reinforced,
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"it" = (
@@ -6001,7 +5436,6 @@
icon_state = "white"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"iu" = (
@@ -6012,7 +5446,6 @@
icon_state = "white"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"iv" = (
@@ -6021,13 +5454,11 @@
icon_state = "white"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"iw" = (
/obj/item/storage/secure/safe{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/effect/decal/cleanable/blood/splatter,
/obj/item/pen,
@@ -6040,7 +5471,6 @@
icon_state = "white"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"ix" = (
@@ -6054,7 +5484,6 @@
icon_state = "freezerfloor"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"iy" = (
@@ -6065,7 +5494,6 @@
icon_state = "freezerfloor"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"iz" = (
@@ -6076,7 +5504,6 @@
icon_state = "freezerfloor"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"iA" = (
@@ -6085,7 +5512,6 @@
icon_state = "freezerfloor"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"iB" = (
@@ -6097,7 +5523,6 @@
icon_state = "freezerfloor"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"iC" = (
@@ -6107,7 +5532,6 @@
icon_state = "bar"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"iD" = (
@@ -6117,7 +5541,6 @@
icon_state = "bar"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"iE" = (
@@ -6127,7 +5550,6 @@
icon_state = "bar"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"iF" = (
@@ -6138,7 +5560,6 @@
icon_state = "freezerfloor"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"iG" = (
@@ -6146,11 +5567,9 @@
req_access_txt = "271"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitehall"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"iH" = (
@@ -6164,17 +5583,14 @@
icon_state = "freezerfloor"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"iI" = (
/obj/machinery/computer/security/telescreen/entertainment{
- pixel_x = 0;
pixel_y = -32
},
/obj/machinery/light/small{
active_power_usage = 0;
- dir = 2;
icon_state = "bulb-broken";
status = 2
},
@@ -6184,26 +5600,21 @@
network = list("MO19","MO19R")
},
/turf/simulated/floor/plasteel{
- tag = "icon-cafeteria (NORTHEAST)";
- icon_state = "cafeteria";
- dir = 5
+ dir = 5;
+ icon_state = "cafeteria"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"iJ" = (
/obj/machinery/newscaster{
- pixel_x = 0;
pixel_y = -30
},
/turf/simulated/floor/plasteel{
- tag = "icon-cafeteria (NORTHEAST)";
- icon_state = "cafeteria";
- dir = 5
+ dir = 5;
+ icon_state = "cafeteria"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"iK" = (
@@ -6211,12 +5622,10 @@
/obj/item/radio/off,
/obj/item/laser_pointer,
/turf/simulated/floor/plasteel{
- tag = "icon-cafeteria (NORTHEAST)";
- icon_state = "cafeteria";
- dir = 5
+ dir = 5;
+ icon_state = "cafeteria"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"iL" = (
@@ -6224,7 +5633,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/effect/landmark/burnturf,
@@ -6236,16 +5644,13 @@
},
/obj/machinery/shower{
dir = 4;
- icon_state = "shower";
- name = "emergency shower";
- tag = "icon-shower (EAST)"
+ name = "emergency shower"
},
/obj/effect/decal/warning_stripes/northwest,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"iN" = (
@@ -6255,7 +5660,6 @@
icon_state = "white"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"iO" = (
@@ -6269,7 +5673,6 @@
icon_state = "white"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"iP" = (
@@ -6279,19 +5682,16 @@
icon_state = "white"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"iQ" = (
/obj/machinery/shower{
- dir = 1;
- pixel_y = 0
+ dir = 1
},
/turf/simulated/floor/plasteel{
icon_state = "freezerfloor"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"iR" = (
@@ -6303,7 +5703,6 @@
icon_state = "bar"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"iS" = (
@@ -6314,7 +5713,6 @@
icon_state = "bar"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"iT" = (
@@ -6328,30 +5726,21 @@
icon_state = "bar"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"iU" = (
-/obj/machinery/computer/security/telescreen/entertainment{
- pixel_x = 0;
- pixel_y = 0
- },
+/obj/machinery/computer/security/telescreen/entertainment,
/turf/simulated/wall/rust,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"iV" = (
-/obj/machinery/vending/boozeomat{
- req_access_txt = "0"
- },
+/obj/machinery/vending/boozeomat,
/turf/simulated/floor/plasteel{
- tag = "icon-cafeteria (NORTHEAST)";
- icon_state = "cafeteria";
- dir = 5
+ dir = 5;
+ icon_state = "cafeteria"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"iW" = (
@@ -6362,7 +5751,6 @@
},
/turf/simulated/floor/plating/airless,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"iX" = (
@@ -6374,29 +5762,24 @@
/obj/effect/landmark/burnturf,
/turf/simulated/floor/plating/airless,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"iY" = (
/turf/simulated/floor/plasteel{
- tag = "icon-cafeteria (NORTHEAST)";
- icon_state = "cafeteria";
- dir = 5
+ dir = 5;
+ icon_state = "cafeteria"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"iZ" = (
/obj/structure/table,
/obj/machinery/reagentgrinder,
/turf/simulated/floor/plasteel{
- tag = "icon-cafeteria (NORTHEAST)";
- icon_state = "cafeteria";
- dir = 5
+ dir = 5;
+ icon_state = "cafeteria"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"ja" = (
@@ -6407,7 +5790,6 @@
icon_state = "freezerfloor"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"jb" = (
@@ -6417,7 +5799,6 @@
/area/awaycontent/a3{
always_unpowered = 1;
ambientsounds = list('sound/ambience/ambimine.ogg');
- has_gravity = 1;
name = "Khonsu 19";
power_environ = 0;
power_equip = 0;
@@ -6435,13 +5816,11 @@
icon_state = "white"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"jd" = (
/obj/structure/sink{
dir = 8;
- icon_state = "sink";
pixel_x = -12;
pixel_y = 2
},
@@ -6451,7 +5830,6 @@
icon_state = "white"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"je" = (
@@ -6461,19 +5839,16 @@
},
/turf/simulated/floor/plating/airless,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"jf" = (
/obj/machinery/door/airlock{
- name = "Unisex Restrooms";
- req_access_txt = "0"
+ name = "Unisex Restrooms"
},
/turf/simulated/floor/plasteel{
icon_state = "freezerfloor"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"jg" = (
@@ -6482,7 +5857,6 @@
icon_state = "dark"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"jh" = (
@@ -6491,7 +5865,6 @@
icon_state = "dark"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"ji" = (
@@ -6500,7 +5873,6 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"jj" = (
@@ -6514,7 +5886,6 @@
icon_state = "bar"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"jk" = (
@@ -6523,7 +5894,6 @@
icon_state = "bar"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"jl" = (
@@ -6531,14 +5901,12 @@
icon_state = "bar"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"jm" = (
/obj/structure/chair/stool,
/turf/simulated/floor/carpet,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"jn" = (
@@ -6549,18 +5917,15 @@
icon_state = "white"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"jo" = (
/obj/effect/decal/cleanable/flour,
/turf/simulated/floor/plasteel{
- tag = "icon-cafeteria (NORTHEAST)";
- icon_state = "cafeteria";
- dir = 5
+ dir = 5;
+ icon_state = "cafeteria"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"jp" = (
@@ -6571,12 +5936,10 @@
/obj/structure/table,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- tag = "icon-cafeteria (NORTHEAST)";
- icon_state = "cafeteria";
- dir = 5
+ dir = 5;
+ icon_state = "cafeteria"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"jq" = (
@@ -6586,8 +5949,7 @@
pixel_x = 3
},
/obj/item/reagent_containers/food/condiment/saltshaker{
- pixel_x = -3;
- pixel_y = 0
+ pixel_x = -3
},
/obj/machinery/door/poddoor/shutters{
dir = 8;
@@ -6596,7 +5958,6 @@
},
/turf/simulated/floor/carpet,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"jr" = (
@@ -6607,19 +5968,16 @@
icon_off = "rdsecureoff";
icon_opened = "rdsecureopen";
icon_state = "rdsecure1";
- locked = 1;
name = "research director's locker";
req_access_txt = "271"
},
/obj/item/storage/backpack/satchel_tox,
/obj/item/clothing/gloves/color/latex,
/turf/simulated/floor/plasteel{
- tag = "icon-cafeteria (NORTHEAST)";
- icon_state = "cafeteria";
- dir = 5
+ dir = 5;
+ icon_state = "cafeteria"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"js" = (
@@ -6629,7 +5987,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"jt" = (
@@ -6638,12 +5995,10 @@
dir = 6
},
/turf/simulated/floor/plasteel{
- tag = "icon-cafeteria (NORTHEAST)";
- icon_state = "cafeteria";
- dir = 5
+ dir = 5;
+ icon_state = "cafeteria"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"ju" = (
@@ -6651,16 +6006,13 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plating/airless,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"jv" = (
@@ -6668,14 +6020,12 @@
/obj/effect/decal/cleanable/generic,
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"jw" = (
/obj/structure/chair,
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"jx" = (
@@ -6684,45 +6034,37 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"jy" = (
/obj/structure/sign/science{
- pixel_x = 0;
pixel_y = 32
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 9;
- icon_state = "purple";
- tag = "icon-purple (NORTHWEST)"
+ icon_state = "purple"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"jz" = (
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "purple";
- tag = "icon-purple (NORTHEAST)"
+ icon_state = "purple"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"jA" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "whitepurplecorner"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"jB" = (
@@ -6736,7 +6078,6 @@
/area/awaycontent/a3{
always_unpowered = 1;
ambientsounds = list('sound/ambience/ambimine.ogg');
- has_gravity = 1;
name = "Khonsu 19";
power_environ = 0;
power_equip = 0;
@@ -6752,7 +6093,6 @@
/area/awaycontent/a3{
always_unpowered = 1;
ambientsounds = list('sound/ambience/ambimine.ogg');
- has_gravity = 1;
name = "Khonsu 19";
power_environ = 0;
power_equip = 0;
@@ -6768,7 +6108,6 @@
/area/awaycontent/a3{
always_unpowered = 1;
ambientsounds = list('sound/ambience/ambimine.ogg');
- has_gravity = 1;
name = "Khonsu 19";
power_environ = 0;
power_equip = 0;
@@ -6785,14 +6124,12 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"jF" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"jG" = (
@@ -6801,13 +6138,11 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"jH" = (
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"jI" = (
@@ -6815,7 +6150,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"jJ" = (
@@ -6824,11 +6158,9 @@
on = 1
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"jK" = (
@@ -6842,19 +6174,16 @@
/obj/effect/landmark/burnturf,
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"jL" = (
/obj/machinery/alarm/monitor{
- frequency = 1439;
locked = 0;
pixel_y = 23;
req_access = null
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"jM" = (
@@ -6867,7 +6196,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"jN" = (
@@ -6876,7 +6204,6 @@
icon_state = "bar"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"jO" = (
@@ -6884,7 +6211,6 @@
/obj/structure/window/full/basic,
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"jP" = (
@@ -6893,7 +6219,6 @@
icon_state = "white"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"jQ" = (
@@ -6903,12 +6228,10 @@
},
/obj/item/reagent_containers/food/drinks/shaker,
/turf/simulated/floor/plasteel{
- tag = "icon-cafeteria (NORTHEAST)";
- icon_state = "cafeteria";
- dir = 5
+ dir = 5;
+ icon_state = "cafeteria"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"jR" = (
@@ -6918,23 +6241,19 @@
pixel_y = 3
},
/turf/simulated/floor/plasteel{
- tag = "icon-cafeteria (NORTHEAST)";
- icon_state = "cafeteria";
- dir = 5
+ dir = 5;
+ icon_state = "cafeteria"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"jS" = (
/obj/machinery/vending/dinnerware,
/turf/simulated/floor/plasteel{
- tag = "icon-cafeteria (NORTHEAST)";
- icon_state = "cafeteria";
- dir = 5
+ dir = 5;
+ icon_state = "cafeteria"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"jT" = (
@@ -6947,30 +6266,25 @@
},
/turf/simulated/floor/carpet,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"jU" = (
/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
pixel_y = 30
},
/obj/effect/landmark/burnturf,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"jV" = (
/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
pixel_y = 30
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"jW" = (
@@ -6978,24 +6292,20 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"jX" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- tag = "icon-cafeteria (NORTHEAST)";
- icon_state = "cafeteria";
- dir = 5
+ dir = 5;
+ icon_state = "cafeteria"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"jY" = (
@@ -7007,16 +6317,13 @@
locked = 1;
name = "Research Director's Office";
opacity = 0;
- req_access_txt = "271";
- req_one_access_txt = "0"
+ req_access_txt = "271"
},
/turf/simulated/floor/plasteel{
- tag = "icon-cafeteria (NORTHEAST)";
- icon_state = "cafeteria";
- dir = 5
+ dir = 5;
+ icon_state = "cafeteria"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"jZ" = (
@@ -7026,7 +6333,6 @@
icon_state = "white"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"ka" = (
@@ -7038,7 +6344,6 @@
icon_state = "white"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"kb" = (
@@ -7062,7 +6367,6 @@
name = "plating"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"ke" = (
@@ -7071,22 +6375,18 @@
name = "plating"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"kf" = (
/obj/machinery/atmospherics/unary/vent_pump{
dir = 1;
- on = 1;
- pressure_checks = 1
+ on = 1
},
/turf/simulated/floor/plasteel{
- tag = "icon-cafeteria (NORTHEAST)";
- icon_state = "cafeteria";
- dir = 5
+ dir = 5;
+ icon_state = "cafeteria"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"kg" = (
@@ -7096,7 +6396,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"kh" = (
@@ -7104,7 +6403,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/light/small{
@@ -7113,22 +6411,19 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"ki" = (
/obj/machinery/door/airlock/research{
id_tag = "";
name = "Research Division";
- req_access_txt = "271";
- req_one_access_txt = "0"
+ req_access_txt = "271"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"kj" = (
@@ -7139,24 +6434,20 @@
/obj/machinery/door_control{
id = "Awaybiohazard";
name = "Biohazard Shutter Control";
- pixel_x = 0;
pixel_y = 8;
req_access_txt = "271"
},
/obj/machinery/door_control{
id = "AwayRD";
name = "Privacy Shutter Control";
- pixel_x = 0;
pixel_y = -2;
req_access_txt = "271"
},
/turf/simulated/floor/plasteel{
- tag = "icon-cafeteria (NORTHEAST)";
- icon_state = "cafeteria";
- dir = 5
+ dir = 5;
+ icon_state = "cafeteria"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"kk" = (
@@ -7164,7 +6455,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/effect/decal/cleanable/dirt,
@@ -7175,13 +6465,11 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"km" = (
@@ -7189,11 +6477,9 @@
/obj/item/trash/candy,
/obj/item/trash/can,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "arrival"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"kn" = (
@@ -7201,7 +6487,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/effect/decal/cleanable/blood/oil{
@@ -7216,18 +6501,15 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"kp" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- tag = "icon-cafeteria (NORTHEAST)";
- icon_state = "cafeteria";
- dir = 5
+ dir = 5;
+ icon_state = "cafeteria"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"kq" = (
@@ -7235,12 +6517,10 @@
/obj/item/kitchen/rollingpin,
/obj/item/kitchen/knife,
/turf/simulated/floor/plasteel{
- tag = "icon-cafeteria (NORTHEAST)";
- icon_state = "cafeteria";
- dir = 5
+ dir = 5;
+ icon_state = "cafeteria"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"kr" = (
@@ -7251,46 +6531,37 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- tag = "icon-cafeteria (NORTHEAST)";
- icon_state = "cafeteria";
- dir = 5
+ dir = 5;
+ icon_state = "cafeteria"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"ks" = (
/obj/effect/decal/cleanable/plant_smudge,
/turf/simulated/floor/plasteel{
- tag = "icon-cafeteria (NORTHEAST)";
- icon_state = "cafeteria";
- dir = 5
+ dir = 5;
+ icon_state = "cafeteria"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"kt" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/obj/machinery/processor,
/obj/machinery/alarm/monitor{
dir = 8;
- frequency = 1439;
locked = 0;
pixel_x = 23;
- pixel_y = 0;
req_access = null
},
/turf/simulated/floor/plasteel{
- tag = "icon-cafeteria (NORTHEAST)";
- icon_state = "cafeteria";
- dir = 5
+ dir = 5;
+ icon_state = "cafeteria"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"ku" = (
@@ -7298,7 +6569,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/unary/vent_pump{
@@ -7309,32 +6579,26 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"kv" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "arrival"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"kw" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "arrival"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"kx" = (
/obj/machinery/light/small,
/obj/machinery/computer/security/telescreen/entertainment{
- pixel_x = 0;
pixel_y = -32
},
/obj/machinery/camera{
@@ -7343,11 +6607,9 @@
network = list("MO19")
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "arrival"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"ky" = (
@@ -7356,7 +6618,6 @@
icon_state = "whitecorner"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"kz" = (
@@ -7364,11 +6625,9 @@
pixel_y = -32
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "arrival"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"kA" = (
@@ -7376,17 +6635,14 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"kB" = (
@@ -7398,7 +6654,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"kC" = (
@@ -7406,31 +6661,27 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "purple";
- tag = "icon-purple (NORTH)"
+ icon_state = "purple"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"kD" = (
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/obj/machinery/power/apc/noalarm{
cell_type = 15000;
dir = 1;
locked = 0;
name = "Habitat APC";
- pixel_x = 0;
pixel_y = 25;
req_access = null;
start_charge = 100
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"kE" = (
@@ -7438,7 +6689,6 @@
name = "plating"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"kF" = (
@@ -7446,18 +6696,15 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/item/cigbutt,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"kG" = (
@@ -7465,18 +6712,15 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/landmark/damageturf,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"kH" = (
@@ -7484,19 +6728,16 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/landmark/damageturf,
/turf/simulated/floor/plating/airless{
name = "plating"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"kI" = (
@@ -7504,18 +6745,15 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"kJ" = (
@@ -7526,7 +6764,6 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"kK" = (
@@ -7537,7 +6774,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"kL" = (
@@ -7549,7 +6785,6 @@
icon_state = "bar"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"kM" = (
@@ -7563,7 +6798,6 @@
icon_state = "bar"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"kN" = (
@@ -7571,12 +6805,10 @@
/obj/item/trash/plate,
/obj/item/reagent_containers/food/snacks/badrecipe,
/turf/simulated/floor/plasteel{
- tag = "icon-cafeteria (NORTHEAST)";
- icon_state = "cafeteria";
- dir = 5
+ dir = 5;
+ icon_state = "cafeteria"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"kO" = (
@@ -7585,7 +6817,6 @@
icon_state = "arrival"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"kP" = (
@@ -7596,17 +6827,14 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"kQ" = (
@@ -7614,18 +6842,15 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/landmark/burnturf,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"kR" = (
@@ -7633,7 +6858,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/door/firedoor{
@@ -7643,13 +6867,11 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"kS" = (
@@ -7659,11 +6881,9 @@
opacity = 1
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"kT" = (
@@ -7676,7 +6896,6 @@
name = "plating"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"kU" = (
@@ -7685,17 +6904,14 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"kV" = (
@@ -7704,13 +6920,10 @@
name = "Door Bolt Control";
normaldoorcontrol = 1;
pixel_x = -25;
- pixel_y = 0;
- req_access_txt = "0";
specialfunctions = 4
},
/turf/simulated/floor/carpet,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"kW" = (
@@ -7718,27 +6931,20 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"kX" = (
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
- req_one_access_txt = "0"
- },
+/obj/machinery/door/airlock/maintenance,
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"kY" = (
@@ -7748,7 +6954,6 @@
icon_state = "blue"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"kZ" = (
@@ -7758,7 +6963,6 @@
icon_state = "blue"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"la" = (
@@ -7773,7 +6977,6 @@
icon_state = "blue"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"lb" = (
@@ -7783,13 +6986,11 @@
icon_state = "bar"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"lc" = (
/obj/structure/extinguisher_cabinet{
- pixel_x = 26;
- pixel_y = 0
+ pixel_x = 26
},
/obj/machinery/camera{
c_tag = "Kitchen";
@@ -7797,18 +6998,15 @@
network = list("MO19")
},
/turf/simulated/floor/plasteel{
- tag = "icon-cafeteria (NORTHEAST)";
- icon_state = "cafeteria";
- dir = 5
+ dir = 5;
+ icon_state = "cafeteria"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"ld" = (
/turf/simulated/wall/mineral/titanium,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"lg" = (
@@ -7818,18 +7016,15 @@
icon_state = "arrival"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"lh" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"li" = (
@@ -7837,16 +7032,13 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"lj" = (
@@ -7855,7 +7047,6 @@
},
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"lk" = (
@@ -7867,7 +7058,6 @@
/area/awaycontent/a3{
always_unpowered = 1;
ambientsounds = list('sound/ambience/ambimine.ogg');
- has_gravity = 1;
name = "Khonsu 19";
power_environ = 0;
power_equip = 0;
@@ -7885,7 +7075,6 @@
name = "plating"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"lm" = (
@@ -7896,20 +7085,17 @@
name = "plating"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"ln" = (
/obj/effect/landmark/damageturf,
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"lo" = (
/turf/simulated/floor/carpet,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"lp" = (
@@ -7919,7 +7105,6 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"lq" = (
@@ -7929,15 +7114,12 @@
/obj/structure/chair/wood,
/obj/machinery/alarm/monitor{
dir = 8;
- frequency = 1439;
locked = 0;
pixel_x = 23;
- pixel_y = 0;
req_access = null
},
/turf/simulated/floor/carpet,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"lr" = (
@@ -7948,17 +7130,14 @@
/obj/item/storage/box,
/obj/machinery/alarm/monitor{
dir = 4;
- frequency = 1439;
locked = 0;
pixel_x = -23;
- pixel_y = 0;
req_access = null
},
/turf/simulated/floor/plasteel{
icon_state = "bar"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"ls" = (
@@ -7969,7 +7148,6 @@
icon_state = "bar"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"lt" = (
@@ -7987,25 +7165,20 @@
icon_state = "bar"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"lu" = (
/obj/machinery/door_control{
id = "awaykitchen";
name = "Kitchen Shutters Control";
- pixel_x = -25;
- pixel_y = 0;
- req_access_txt = "0"
+ pixel_x = -25
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- tag = "icon-cafeteria (NORTHEAST)";
- icon_state = "cafeteria";
- dir = 5
+ dir = 5;
+ icon_state = "cafeteria"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"lv" = (
@@ -8013,7 +7186,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"lw" = (
@@ -8027,7 +7199,6 @@
temperature = 273.15
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"lx" = (
@@ -8036,7 +7207,6 @@
temperature = 273.15
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"ly" = (
@@ -8051,7 +7221,6 @@
temperature = 273.15
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"lE" = (
@@ -8062,18 +7231,15 @@
name = "floor"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"lF" = (
/obj/structure/shuttle/engine/propulsion{
dir = 4;
- icon_state = "burst_r";
- tag = "icon-burst_r (WEST)"
+ icon_state = "burst_r"
},
/turf/simulated/floor/plating/airless,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"lG" = (
@@ -8081,19 +7247,16 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"lH" = (
/obj/machinery/atmospherics/unary/vent_pump{
dir = 1;
- on = 1;
- pressure_checks = 1
+ on = 1
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"lI" = (
@@ -8101,7 +7264,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"lJ" = (
@@ -8109,26 +7271,20 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "purplecorner";
- tag = "icon-purplecorner (NORTH)"
+ icon_state = "purplecorner"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"lK" = (
/obj/structure/shuttle/engine/heater{
- tag = "icon-heater (EAST)";
- icon_state = "heater";
dir = 4
},
/obj/structure/window/reinforced{
@@ -8136,7 +7292,6 @@
},
/turf/simulated/floor/plating/airless,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"lL" = (
@@ -8146,7 +7301,6 @@
name = "floor"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"lM" = (
@@ -8154,32 +7308,27 @@
/obj/item/bedsheet,
/turf/simulated/floor/carpet,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"lN" = (
/obj/structure/table/wood,
/obj/item/lighter/zippo,
/obj/machinery/newscaster{
- pixel_x = 30;
- pixel_y = 0
+ pixel_x = 30
},
/turf/simulated/floor/carpet,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"lO" = (
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"lP" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"lQ" = (
@@ -8188,7 +7337,6 @@
},
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"lR" = (
@@ -8199,25 +7347,21 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/alarm/monitor{
- frequency = 1439;
locked = 0;
pixel_y = 23;
req_access = null
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "purplecorner"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"lS" = (
@@ -8225,7 +7369,6 @@
icon_state = "dark"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"lT" = (
@@ -8234,7 +7377,6 @@
icon_state = "dark"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"lU" = (
@@ -8245,7 +7387,6 @@
icon_state = "dark"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"lV" = (
@@ -8261,7 +7402,6 @@
temperature = 273.15
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"lX" = (
@@ -8269,7 +7409,6 @@
/obj/item/storage/lockbox,
/turf/simulated/floor/mineral/titanium/blue,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"lY" = (
@@ -8277,17 +7416,14 @@
/obj/item/radio/off,
/turf/simulated/floor/mineral/titanium/yellow,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"ma" = (
/obj/machinery/computer/security/telescreen/entertainment{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/turf/simulated/floor/mineral/titanium/yellow,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"mb" = (
@@ -8299,13 +7435,11 @@
},
/turf/simulated/floor/mineral/titanium/blue,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"mc" = (
/turf/simulated/floor/mineral/titanium/blue,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"md" = (
@@ -8314,12 +7448,10 @@
},
/turf/simulated/floor/mineral/titanium/blue,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"me" = (
/obj/machinery/newscaster{
- pixel_x = 0;
pixel_y = 30
},
/obj/machinery/light/small{
@@ -8327,25 +7459,21 @@
},
/turf/simulated/floor/mineral/titanium/blue,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"mf" = (
/obj/structure/closet/emcloset,
/turf/simulated/floor/mineral/titanium/blue,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"mg" = (
/obj/structure/shuttle/engine/propulsion{
dir = 4;
- icon_state = "burst_l";
- tag = "icon-burst_l (WEST)"
+ icon_state = "burst_l"
},
/turf/simulated/floor/plating/airless,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"mh" = (
@@ -8353,7 +7481,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"mi" = (
@@ -8362,7 +7489,6 @@
name = "floor"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"mj" = (
@@ -8371,7 +7497,6 @@
icon_state = "bar"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"mk" = (
@@ -8382,7 +7507,6 @@
},
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"ml" = (
@@ -8391,7 +7515,6 @@
icon_state = "bar"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"mm" = (
@@ -8401,7 +7524,6 @@
icon_state = "dark"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"mn" = (
@@ -8409,20 +7531,17 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "purplecorner"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"mo" = (
@@ -8430,13 +7549,11 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"mp" = (
@@ -8449,16 +7566,13 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"mq" = (
@@ -8466,7 +7580,6 @@
/obj/item/storage/box/donkpockets,
/turf/simulated/floor/mineral/titanium/blue,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"mr" = (
@@ -8478,13 +7591,11 @@
},
/turf/simulated/floor/mineral/titanium/yellow,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"ms" = (
/turf/simulated/floor/mineral/titanium/yellow,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"mt" = (
@@ -8493,7 +7604,6 @@
},
/turf/simulated/floor/mineral/titanium/blue,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"mu" = (
@@ -8505,7 +7615,6 @@
},
/turf/simulated/floor/mineral/titanium/blue,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"mv" = (
@@ -8517,7 +7626,6 @@
},
/turf/simulated/floor/mineral/titanium/yellow,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"mw" = (
@@ -8531,20 +7639,17 @@
name = "floor"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"mx" = (
/obj/structure/grille,
/obj/structure/sign/vacuum{
desc = "A warning sign which reads 'HOSTILE ATMOSPHERE AHEAD'";
- name = "\improper HOSTILE ATMOSPHERE AHEAD";
- pixel_x = 0
+ name = "\improper HOSTILE ATMOSPHERE AHEAD"
},
/obj/structure/window/full/reinforced,
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"my" = (
@@ -8557,7 +7662,6 @@
},
/turf/simulated/floor/plating/airless,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"mz" = (
@@ -8565,7 +7669,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"mA" = (
@@ -8575,17 +7678,13 @@
name = "Door Bolt Control";
normaldoorcontrol = 1;
pixel_x = -25;
- pixel_y = 0;
- req_access_txt = "0";
specialfunctions = 4
},
/obj/machinery/newscaster{
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/carpet,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"mB" = (
@@ -8594,7 +7693,6 @@
},
/turf/simulated/floor/carpet,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"mC" = (
@@ -8603,7 +7701,6 @@
icon_state = "dark"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"mD" = (
@@ -8615,7 +7712,6 @@
icon_state = "dark"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"mE" = (
@@ -8627,7 +7723,6 @@
icon_state = "dark"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"mF" = (
@@ -8641,14 +7736,12 @@
pixel_y = 8
},
/obj/item/reagent_containers/food/drinks/drinkingglass{
- pixel_x = 3;
- pixel_y = 0
+ pixel_x = 3
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"mG" = (
@@ -8657,14 +7750,12 @@
icon_state = "dark"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"mH" = (
/obj/machinery/computer/shuttle,
/turf/simulated/floor/mineral/titanium/blue,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"mI" = (
@@ -8673,7 +7764,6 @@
},
/turf/simulated/floor/mineral/titanium/yellow,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"mJ" = (
@@ -8682,7 +7772,6 @@
},
/turf/simulated/floor/mineral/titanium/yellow,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"mK" = (
@@ -8697,7 +7786,6 @@
},
/turf/simulated/floor/mineral/titanium/yellow,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"mL" = (
@@ -8706,7 +7794,6 @@
},
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"mM" = (
@@ -8714,7 +7801,6 @@
/obj/structure/window/basic,
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"mN" = (
@@ -8722,14 +7808,12 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"mO" = (
/obj/machinery/door/airlock/external,
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"mP" = (
@@ -8738,7 +7822,6 @@
},
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"mQ" = (
@@ -8748,7 +7831,6 @@
name = "floor"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"mR" = (
@@ -8760,7 +7842,6 @@
},
/turf/simulated/floor/plating/airless,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"mS" = (
@@ -8771,7 +7852,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"mT" = (
@@ -8784,7 +7864,6 @@
},
/turf/simulated/floor/carpet,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"mU" = (
@@ -8801,7 +7880,6 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"mV" = (
@@ -8810,15 +7888,12 @@
},
/obj/machinery/alarm/monitor{
dir = 8;
- frequency = 1439;
locked = 0;
pixel_x = 23;
- pixel_y = 0;
req_access = null
},
/turf/simulated/floor/carpet,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"mW" = (
@@ -8827,7 +7902,6 @@
/obj/item/pen,
/turf/simulated/floor/mineral/titanium/blue,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"mX" = (
@@ -8837,7 +7911,6 @@
/obj/structure/chair/comfy/shuttle,
/turf/simulated/floor/mineral/titanium/yellow,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"mZ" = (
@@ -8847,7 +7920,6 @@
/obj/structure/window/reinforced,
/turf/simulated/floor/mineral/titanium/yellow,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"na" = (
@@ -8856,14 +7928,12 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"nb" = (
/obj/machinery/portable_atmospherics/scrubber,
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"nc" = (
@@ -8874,7 +7944,6 @@
},
/turf/simulated/floor/carpet,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"nd" = (
@@ -8892,14 +7961,12 @@
name = "floor"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"ng" = (
/obj/structure/filingcabinet,
/turf/simulated/floor/mineral/titanium/blue,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"nh" = (
@@ -8909,18 +7976,15 @@
},
/turf/simulated/floor/mineral/titanium/blue,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"ni" = (
/obj/machinery/newscaster{
- pixel_x = 0;
pixel_y = -30
},
/obj/machinery/light/small,
/turf/simulated/floor/mineral/titanium/blue,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"nj" = (
@@ -8939,7 +8003,6 @@
name = "plating"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"nk" = (
@@ -8955,7 +8018,6 @@
name = "plating"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"nl" = (
@@ -8964,14 +8026,12 @@
/obj/structure/window/basic,
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"nm" = (
/obj/item/cigbutt,
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"nn" = (
@@ -8979,19 +8039,16 @@
/obj/item/trash/candy,
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"np" = (
/obj/structure/sign/vacuum{
desc = "A warning sign which reads 'HOSTILE ATMOSPHERE AHEAD'";
name = "\improper HOSTILE ATMOSPHERE AHEAD";
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"nq" = (
@@ -8999,7 +8056,6 @@
/obj/effect/landmark/damageturf,
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"nr" = (
@@ -9009,7 +8065,6 @@
/obj/effect/decal/warning_stripes/southeastcorner,
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"ns" = (
@@ -9022,14 +8077,12 @@
name = "floor"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"nt" = (
/obj/structure/grille,
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"nu" = (
@@ -9037,14 +8090,12 @@
/obj/item/stack/rods,
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"nv" = (
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"nx" = (
@@ -9057,7 +8108,6 @@
name = "plating"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"ny" = (
@@ -9077,7 +8127,6 @@
name = "floor"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"nz" = (
@@ -9087,7 +8136,6 @@
name = "floor"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"nA" = (
@@ -9095,16 +8143,13 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"nB" = (
@@ -9113,14 +8158,12 @@
},
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"nC" = (
/obj/structure/closet/emcloset,
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"nD" = (
@@ -9139,7 +8182,6 @@
/area/awaycontent/a3{
always_unpowered = 1;
ambientsounds = list('sound/ambience/ambimine.ogg');
- has_gravity = 1;
name = "Khonsu 19";
power_environ = 0;
power_equip = 0;
@@ -9149,10 +8191,8 @@
"nE" = (
/obj/machinery/alarm/monitor{
dir = 8;
- frequency = 1439;
locked = 0;
pixel_x = 23;
- pixel_y = 0;
req_access = null
},
/turf/simulated/floor/plasteel/airless{
@@ -9160,7 +8200,6 @@
name = "floor"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"nF" = (
@@ -9168,7 +8207,6 @@
/obj/effect/decal/warning_stripes/southeastcorner,
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"nG" = (
@@ -9177,7 +8215,6 @@
/obj/effect/decal/warning_stripes/southeast,
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"nH" = (
@@ -9185,7 +8222,6 @@
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"nI" = (
@@ -9196,8 +8232,6 @@
name = "Door Bolt Control";
normaldoorcontrol = 1;
pixel_x = -25;
- pixel_y = 0;
- req_access_txt = "0";
specialfunctions = 4
},
/obj/effect/decal/remains/human{
@@ -9206,7 +8240,6 @@
},
/turf/simulated/floor/carpet,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"nJ" = (
@@ -9217,7 +8250,6 @@
},
/turf/simulated/floor/carpet,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"nK" = (
@@ -9226,7 +8258,6 @@
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"nL" = (
@@ -9237,24 +8268,20 @@
},
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"nM" = (
/obj/machinery/suit_storage_unit/standard_unit,
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"nN" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"nO" = (
@@ -9268,7 +8295,6 @@
name = "floor"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"nP" = (
@@ -9278,7 +8304,6 @@
},
/turf/simulated/floor/carpet,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"nQ" = (
@@ -9290,7 +8315,6 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"nR" = (
@@ -9298,7 +8322,6 @@
/obj/structure/disposalpipe/trunk,
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"nS" = (
@@ -9306,7 +8329,6 @@
/obj/item/storage/box/lights/mixed,
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"nT" = (
@@ -9316,7 +8338,6 @@
name = "floor"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"nU" = (
@@ -9328,22 +8349,18 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"nV" = (
/obj/machinery/newscaster{
- pixel_x = 30;
- pixel_y = 0
+ pixel_x = 30
},
/turf/simulated/floor/carpet,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"nW" = (
@@ -9352,7 +8369,6 @@
/obj/structure/window/full/reinforced,
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"nX" = (
@@ -9362,8 +8378,7 @@
/obj/effect/decal/cleanable/dirt,
/obj/structure/noticeboard{
dir = 8;
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/item/paper{
info = "Welcome to Moon Outpost 19! Property of Nanotrasen Inc.
Staff Roster:
- Dr. Gerald Rosswell: Research Director & Acting Captain
- Dr. Sakuma Sano: Xenobiologist
- Dr. Mark Douglas: Xenobiologist
- Kenneth Cunningham: Security Officer
- Ivan Volodin: Engineer
- Mathias Kuester: Bartender
- Sven Edling: Chef
- Steve: Assistant
Please enjoy your stay, and report any abnormalities to an officer.";
@@ -9378,7 +8393,6 @@
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"nY" = (
@@ -9388,7 +8402,6 @@
name = "floor"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"nZ" = (
@@ -9401,13 +8414,11 @@
name = "plating"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"oa" = (
/turf/simulated/floor/plating/airless,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"ob" = (
@@ -9416,7 +8427,6 @@
},
/turf/simulated/floor/plating/airless,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"oc" = (
@@ -9429,7 +8439,6 @@
name = "floor"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"od" = (
@@ -9442,7 +8451,6 @@
/area/awaycontent/a3{
always_unpowered = 1;
ambientsounds = list('sound/ambience/ambimine.ogg');
- has_gravity = 1;
name = "Khonsu 19";
power_environ = 0;
power_equip = 0;
@@ -9457,7 +8465,6 @@
/area/awaycontent/a3{
always_unpowered = 1;
ambientsounds = list('sound/ambience/ambimine.ogg');
- has_gravity = 1;
name = "Khonsu 19";
power_environ = 0;
power_equip = 0;
@@ -9470,7 +8477,6 @@
/area/awaycontent/a3{
always_unpowered = 1;
ambientsounds = list('sound/ambience/ambimine.ogg');
- has_gravity = 1;
name = "Khonsu 19";
power_environ = 0;
power_equip = 0;
@@ -9488,7 +8494,6 @@
name = "floor"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"oh" = (
@@ -9497,7 +8502,6 @@
/area/awaycontent/a3{
always_unpowered = 1;
ambientsounds = list('sound/ambience/ambimine.ogg');
- has_gravity = 1;
name = "Khonsu 19";
power_environ = 0;
power_equip = 0;
@@ -9508,7 +8512,6 @@
/obj/structure/chair/comfy/black,
/turf/simulated/floor/plating/airless,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"oj" = (
@@ -9524,7 +8527,6 @@
/area/awaycontent/a3{
always_unpowered = 1;
ambientsounds = list('sound/ambience/ambimine.ogg');
- has_gravity = 1;
name = "Khonsu 19";
power_environ = 0;
power_equip = 0;
@@ -9533,18 +8535,15 @@
})
"ok" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"ol" = (
/turf/simulated/mineral,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"om" = (
@@ -9555,7 +8554,6 @@
/area/awaycontent/a3{
always_unpowered = 1;
ambientsounds = list('sound/ambience/ambimine.ogg');
- has_gravity = 1;
name = "Khonsu 19";
power_environ = 0;
power_equip = 0;
@@ -9570,7 +8568,6 @@
/area/awaycontent/a3{
always_unpowered = 1;
ambientsounds = list('sound/ambience/ambimine.ogg');
- has_gravity = 1;
name = "Khonsu 19";
power_environ = 0;
power_equip = 0;
@@ -9580,25 +8577,21 @@
"oo" = (
/obj/machinery/atmospherics/unary/vent_pump{
dir = 1;
- on = 1;
- pressure_checks = 1
+ on = 1
},
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"op" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "bar"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"oq" = (
@@ -9607,23 +8600,19 @@
name = "Diner"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"or" = (
/obj/structure/chair/stool,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/carpet,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"os" = (
@@ -9633,12 +8622,10 @@
on = 1
},
/turf/simulated/floor/plasteel{
- tag = "icon-cafeteria (NORTHEAST)";
- icon_state = "cafeteria";
- dir = 5
+ dir = 5;
+ icon_state = "cafeteria"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"ot" = (
@@ -9653,12 +8640,10 @@
name = "Serving Hatch"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/carpet,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"ou" = (
@@ -9666,14 +8651,12 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"ov" = (
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"ow" = (
@@ -9681,25 +8664,21 @@
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"ox" = (
/obj/machinery/atmospherics/unary/vent_pump{
dir = 1;
- on = 1;
- pressure_checks = 1
+ on = 1
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"oy" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"oz" = (
@@ -9714,7 +8693,6 @@
icon_state = "neutralcorner"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"oA" = (
@@ -9733,7 +8711,6 @@
/obj/item/clothing/under/suit_jacket/navy,
/turf/simulated/floor/carpet,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"oB" = (
@@ -9744,7 +8721,6 @@
icon_state = "blue"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"oC" = (
@@ -9753,7 +8729,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"oD" = (
@@ -9767,7 +8742,6 @@
name = "floor"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"oE" = (
@@ -9779,7 +8753,6 @@
icon_state = "showroomfloor"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"oF" = (
@@ -9793,7 +8766,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"oG" = (
@@ -9804,7 +8776,6 @@
name = "floor"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"oH" = (
@@ -9817,7 +8788,6 @@
icon_state = "dark"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"oI" = (
@@ -9832,24 +8802,18 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"oJ" = (
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
- req_one_access_txt = "0"
- },
+/obj/machinery/door/airlock/maintenance,
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"oK" = (
@@ -9873,7 +8837,6 @@
temperature = 273.15
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"oL" = (
@@ -9892,7 +8855,6 @@
temperature = 273.15
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"oM" = (
@@ -9916,7 +8878,6 @@
temperature = 273.15
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"oO" = (
@@ -9927,7 +8888,6 @@
/obj/machinery/meter,
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"oP" = (
@@ -9936,7 +8896,6 @@
},
/turf/simulated/wall,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"oQ" = (
@@ -9945,14 +8904,12 @@
},
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"oR" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel/airless{
dir = 8;
@@ -9960,14 +8917,12 @@
name = "floor"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"oT" = (
/obj/machinery/atmospherics/binary/valve,
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"oU" = (
@@ -9988,7 +8943,6 @@
name = "floor"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"oW" = (
@@ -10000,7 +8954,6 @@
},
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"oX" = (
@@ -10009,7 +8962,6 @@
},
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"oY" = (
@@ -10026,7 +8978,6 @@
name = "floor"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"oZ" = (
@@ -10045,7 +8996,6 @@
/obj/item/clothing/under/assistantformal,
/turf/simulated/floor/carpet,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"pa" = (
@@ -10054,17 +9004,14 @@
},
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"pe" = (
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "271";
- req_one_access_txt = "0"
+ req_access_txt = "271"
},
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"pg" = (
@@ -10083,14 +9030,12 @@
/obj/item/clothing/under/suit_jacket/burgundy,
/turf/simulated/floor/carpet,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"xB" = (
/obj/effect/spawner/window/shuttle,
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
diff --git a/_maps/map_files/RandomZLevels/spacebattle.dmm b/_maps/map_files/RandomZLevels/spacebattle.dmm
index 41249533907..b7463ed1f5f 100644
--- a/_maps/map_files/RandomZLevels/spacebattle.dmm
+++ b/_maps/map_files/RandomZLevels/spacebattle.dmm
@@ -10,32 +10,26 @@
/area/awaymission/spacebattle/syndicate2)
"ad" = (
/obj/structure/shuttle/engine/propulsion{
- tag = "icon-propulsion_r (NORTH)";
- icon_state = "propulsion_r";
- dir = 1
+ dir = 1;
+ icon_state = "propulsion_r"
},
/turf/space,
/area/awaymission/spacebattle/syndicate2)
"ae" = (
/obj/structure/shuttle/engine/propulsion{
- tag = "icon-propulsion (NORTH)";
- icon_state = "propulsion";
dir = 1
},
/turf/simulated/floor/plating/airless,
/area/awaymission/spacebattle/syndicate2)
"af" = (
/obj/structure/shuttle/engine/propulsion{
- tag = "icon-propulsion_l (NORTH)";
- icon_state = "propulsion_l";
- dir = 1
+ dir = 1;
+ icon_state = "propulsion_l"
},
/turf/space,
/area/awaymission/spacebattle/syndicate2)
"ai" = (
/obj/structure/shuttle/engine/heater{
- tag = "icon-heater (NORTH)";
- icon_state = "heater";
dir = 1
},
/obj/structure/window/reinforced,
@@ -99,25 +93,21 @@
/area/awaymission/spacebattle/syndicate3)
"aw" = (
/obj/structure/shuttle/engine/propulsion{
- tag = "icon-propulsion_r (NORTH)";
- icon_state = "propulsion_r";
- dir = 1
+ dir = 1;
+ icon_state = "propulsion_r"
},
/turf/simulated/floor/plating/airless,
/area/awaymission/spacebattle/syndicate3)
"ax" = (
/obj/structure/shuttle/engine/propulsion{
- tag = "icon-propulsion (NORTH)";
- icon_state = "propulsion";
dir = 1
},
/turf/simulated/floor/plating/airless,
/area/awaymission/spacebattle/syndicate3)
"ay" = (
/obj/structure/shuttle/engine/propulsion{
- tag = "icon-propulsion_l (NORTH)";
- icon_state = "propulsion_l";
- dir = 1
+ dir = 1;
+ icon_state = "propulsion_l"
},
/turf/simulated/floor/plating/airless,
/area/awaymission/spacebattle/syndicate3)
@@ -128,8 +118,6 @@
/area/awaymission/spacebattle/syndicate2)
"aC" = (
/obj/structure/shuttle/engine/heater{
- tag = "icon-heater (NORTH)";
- icon_state = "heater";
dir = 1
},
/obj/structure/window/reinforced,
@@ -171,25 +159,21 @@
/area/awaymission/spacebattle/syndicate1)
"aP" = (
/obj/structure/shuttle/engine/propulsion{
- tag = "icon-propulsion_r (NORTH)";
- icon_state = "propulsion_r";
- dir = 1
+ dir = 1;
+ icon_state = "propulsion_r"
},
/turf/simulated/floor/plating/airless,
/area/awaymission/spacebattle/syndicate1)
"aQ" = (
/obj/structure/shuttle/engine/propulsion{
- tag = "icon-propulsion (NORTH)";
- icon_state = "propulsion";
dir = 1
},
/turf/simulated/floor/plating/airless,
/area/awaymission/spacebattle/syndicate1)
"aR" = (
/obj/structure/shuttle/engine/propulsion{
- tag = "icon-propulsion_l (NORTH)";
- icon_state = "propulsion_l";
- dir = 1
+ dir = 1;
+ icon_state = "propulsion_l"
},
/turf/simulated/floor/plating/airless,
/area/awaymission/spacebattle/syndicate1)
@@ -199,8 +183,6 @@
/area/awaymission/spacebattle/syndicate3)
"aW" = (
/obj/structure/shuttle/engine/heater{
- tag = "icon-heater (NORTH)";
- icon_state = "heater";
dir = 1
},
/obj/structure/window/reinforced,
@@ -209,8 +191,6 @@
"aX" = (
/obj/structure/window/reinforced,
/obj/structure/shuttle/engine/heater{
- tag = "icon-heater (NORTH)";
- icon_state = "heater";
dir = 1
},
/obj/structure/window/reinforced{
@@ -221,8 +201,6 @@
"aY" = (
/obj/structure/window/reinforced,
/obj/structure/shuttle/engine/heater{
- tag = "icon-heater (NORTH)";
- icon_state = "heater";
dir = 1
},
/obj/structure/window/reinforced{
@@ -296,8 +274,7 @@
/obj/machinery/door/poddoor{
icon_state = "pdoor1";
id_tag = "spacebattlepod3";
- name = "Front Hull Door";
- opacity = 1
+ name = "Front Hull Door"
},
/turf/simulated/floor/plating,
/area/awaymission/spacebattle/syndicate2)
@@ -354,9 +331,8 @@
/area/awaymission/spacebattle/cruiser)
"bF" = (
/obj/structure/shuttle/engine/propulsion{
- tag = "icon-propulsion_r (NORTH)";
- icon_state = "propulsion_r";
- dir = 1
+ dir = 1;
+ icon_state = "propulsion_r"
},
/turf/simulated/floor/plating/airless,
/area/awaymission/spacebattle/cruiser)
@@ -366,17 +342,14 @@
/area/awaymission/spacebattle/cruiser)
"bH" = (
/obj/structure/shuttle/engine/propulsion{
- tag = "icon-propulsion_l (NORTH)";
- icon_state = "propulsion_l";
- dir = 1
+ dir = 1;
+ icon_state = "propulsion_l"
},
/turf/simulated/floor/plating/airless,
/area/awaymission/spacebattle/cruiser)
"bK" = (
/obj/structure/window/reinforced,
/obj/structure/shuttle/engine/heater{
- tag = "icon-heater (NORTH)";
- icon_state = "heater";
dir = 1
},
/obj/structure/window/reinforced{
@@ -390,8 +363,6 @@
"bM" = (
/obj/structure/window/reinforced,
/obj/structure/shuttle/engine/heater{
- tag = "icon-heater (NORTH)";
- icon_state = "heater";
dir = 1
},
/obj/structure/window/reinforced{
@@ -416,16 +387,13 @@
/area/awaymission/spacebattle/cruiser)
"bU" = (
/obj/structure/shuttle/engine/propulsion{
- tag = "icon-burst_l (EAST)";
- icon_state = "burst_l";
- dir = 4
+ dir = 4;
+ icon_state = "burst_l"
},
/turf/simulated/floor/plating/airless,
/area/awaymission/spacebattle/cruiser)
"bV" = (
/obj/structure/shuttle/engine/heater{
- tag = "icon-heater (WEST)";
- icon_state = "heater";
dir = 8
},
/obj/structure/window/reinforced{
@@ -453,8 +421,6 @@
/area/awaymission/spacebattle/cruiser)
"cc" = (
/obj/structure/shuttle/engine/propulsion{
- tag = "icon-propulsion (EAST)";
- icon_state = "propulsion";
dir = 4
},
/turf/simulated/floor/plating/airless,
@@ -468,9 +434,7 @@
density = 0;
icon_state = "open";
id_tag = "spacebattlepod";
- name = "Front Hull Door";
- opacity = 1;
- tag = "icon-pdoor0"
+ name = "Front Hull Door"
},
/turf/simulated/floor/plating,
/area/awaymission/spacebattle/cruiser)
@@ -556,54 +520,47 @@
/obj/structure/table/reinforced,
/obj/item/reagent_containers/food/snacks/sausage,
/turf/simulated/floor/plasteel{
- icon_state = "cafeteria";
- dir = 2
+ icon_state = "cafeteria"
},
/area/awaymission/spacebattle/cruiser)
"cA" = (
/obj/structure/table/reinforced,
/obj/item/reagent_containers/food/condiment/enzyme,
/turf/simulated/floor/plasteel{
- icon_state = "cafeteria";
- dir = 2
+ icon_state = "cafeteria"
},
/area/awaymission/spacebattle/cruiser)
"cB" = (
/obj/structure/table/reinforced,
/obj/item/kitchen/knife,
/turf/simulated/floor/plasteel{
- icon_state = "cafeteria";
- dir = 2
+ icon_state = "cafeteria"
},
/area/awaymission/spacebattle/cruiser)
"cC" = (
/obj/structure/table/reinforced,
/obj/item/kitchen/rollingpin,
/turf/simulated/floor/plasteel{
- icon_state = "cafeteria";
- dir = 2
+ icon_state = "cafeteria"
},
/area/awaymission/spacebattle/cruiser)
"cD" = (
/obj/structure/closet/secure_closet/freezer/kitchen,
/turf/simulated/floor/plasteel{
- icon_state = "cafeteria";
- dir = 2
+ icon_state = "cafeteria"
},
/area/awaymission/spacebattle/cruiser)
"cE" = (
/obj/structure/closet/secure_closet/freezer/fridge,
/turf/simulated/floor/plasteel{
- icon_state = "cafeteria";
- dir = 2
+ icon_state = "cafeteria"
},
/area/awaymission/spacebattle/cruiser)
"cF" = (
/obj/structure/table/reinforced,
/obj/machinery/kitchen_machine/microwave,
/turf/simulated/floor/plasteel{
- icon_state = "cafeteria";
- dir = 2
+ icon_state = "cafeteria"
},
/area/awaymission/spacebattle/cruiser)
"cG" = (
@@ -634,8 +591,7 @@
/area/awaymission/spacebattle/cruiser)
"cM" = (
/turf/simulated/floor/plasteel{
- icon_state = "cafeteria";
- dir = 2
+ icon_state = "cafeteria"
},
/area/awaymission/spacebattle/cruiser)
"cN" = (
@@ -652,31 +608,27 @@
"cQ" = (
/obj/machinery/door/airlock/titanium,
/turf/simulated/floor/plasteel{
- icon_state = "cafeteria";
- dir = 2
+ icon_state = "cafeteria"
},
/area/awaymission/spacebattle/cruiser)
"cR" = (
/obj/structure/table/reinforced,
/obj/item/reagent_containers/food/snacks/fries,
/turf/simulated/floor/plasteel{
- icon_state = "cafeteria";
- dir = 2
+ icon_state = "cafeteria"
},
/area/awaymission/spacebattle/cruiser)
"cS" = (
/obj/structure/table/reinforced,
/obj/item/reagent_containers/food/snacks/soup/stew,
/turf/simulated/floor/plasteel{
- icon_state = "cafeteria";
- dir = 2
+ icon_state = "cafeteria"
},
/area/awaymission/spacebattle/cruiser)
"cT" = (
/obj/structure/table/reinforced,
/turf/simulated/floor/plasteel{
- icon_state = "cafeteria";
- dir = 2
+ icon_state = "cafeteria"
},
/area/awaymission/spacebattle/cruiser)
"cU" = (
@@ -714,9 +666,8 @@
/area/awaymission/spacebattle/cruiser)
"dc" = (
/obj/structure/shuttle/engine/propulsion{
- tag = "icon-propulsion_r (EAST)";
- icon_state = "propulsion_r";
- dir = 4
+ dir = 4;
+ icon_state = "propulsion_r"
},
/turf/simulated/floor/plating/airless,
/area/awaymission/spacebattle/cruiser)
@@ -771,9 +722,7 @@
density = 0;
icon_state = "open";
id_tag = "spacebattlepod2";
- name = "Front Hull Door";
- opacity = 1;
- tag = "icon-pdoor0"
+ name = "Front Hull Door"
},
/turf/simulated/floor/plating,
/area/awaymission/spacebattle/cruiser)
@@ -800,14 +749,14 @@
"dw" = (
/obj/structure/rack,
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 9
+ dir = 9;
+ icon_state = "red"
},
/area/awaymission/spacebattle/cruiser)
"dx" = (
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 1
+ dir = 1;
+ icon_state = "red"
},
/area/awaymission/spacebattle/cruiser)
"dy" = (
@@ -815,15 +764,15 @@
name = "awaystart"
},
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 1
+ dir = 1;
+ icon_state = "red"
},
/area/awaymission/spacebattle/cruiser)
"dz" = (
/obj/structure/closet/secure_closet/security,
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 5
+ dir = 5;
+ icon_state = "red"
},
/area/awaymission/spacebattle/cruiser)
"dB" = (
@@ -902,15 +851,15 @@
"dS" = (
/obj/structure/rack,
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 8
+ dir = 8;
+ icon_state = "red"
},
/area/awaymission/spacebattle/cruiser)
"dT" = (
/obj/structure/closet/secure_closet/security,
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 4
+ dir = 4;
+ icon_state = "red"
},
/area/awaymission/spacebattle/cruiser)
"dV" = (
@@ -969,8 +918,8 @@
"eg" = (
/obj/structure/closet/l3closet/security,
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 4
+ dir = 4;
+ icon_state = "red"
},
/area/awaymission/spacebattle/cruiser)
"ej" = (
@@ -1029,8 +978,8 @@
/area/awaymission/spacebattle/cruiser)
"ev" = (
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 8
+ dir = 8;
+ icon_state = "red"
},
/area/awaymission/spacebattle/cruiser)
"ew" = (
@@ -1046,8 +995,8 @@
/area/awaymission/spacebattle/cruiser)
"ey" = (
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 4
+ dir = 4;
+ icon_state = "red"
},
/area/awaymission/spacebattle/cruiser)
"eA" = (
@@ -1067,7 +1016,6 @@
"eC" = (
/obj/structure/table/reinforced,
/turf/simulated/floor/plasteel{
- tag = "icon-bluefull";
icon_state = "bluefull"
},
/area/awaymission/spacebattle/cruiser)
@@ -1091,8 +1039,8 @@
/area/awaymission/spacebattle/syndicate4)
"eK" = (
/turf/simulated/floor/plasteel{
- icon_state = "blue";
- dir = 8
+ dir = 8;
+ icon_state = "blue"
},
/area/awaymission/spacebattle/cruiser)
"eL" = (
@@ -1108,7 +1056,6 @@
"eN" = (
/obj/machinery/computer/med_data,
/turf/simulated/floor/plasteel{
- tag = "icon-bluefull";
icon_state = "bluefull"
},
/area/awaymission/spacebattle/cruiser)
@@ -1162,7 +1109,6 @@
"eX" = (
/obj/machinery/computer/crew,
/turf/simulated/floor/plasteel{
- tag = "icon-bluefull";
icon_state = "bluefull"
},
/area/awaymission/spacebattle/cruiser)
@@ -1180,8 +1126,8 @@
/area/awaymission/spacebattle/cruiser)
"fa" = (
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 10
+ dir = 10;
+ icon_state = "red"
},
/area/awaymission/spacebattle/cruiser)
"fb" = (
@@ -1191,8 +1137,8 @@
/area/awaymission/spacebattle/cruiser)
"fc" = (
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 6
+ dir = 6;
+ icon_state = "red"
},
/area/awaymission/spacebattle/cruiser)
"fd" = (
@@ -1214,8 +1160,8 @@
"fg" = (
/mob/living/simple_animal/hostile/syndicate/ranged,
/turf/simulated/floor/plasteel{
- icon_state = "blue";
- dir = 8
+ dir = 8;
+ icon_state = "blue"
},
/area/awaymission/spacebattle/cruiser)
"fh" = (
@@ -1306,7 +1252,6 @@
"ft" = (
/obj/machinery/computer/shuttle,
/turf/simulated/floor/plasteel{
- tag = "icon-bluefull";
icon_state = "bluefull"
},
/area/awaymission/spacebattle/cruiser)
@@ -1385,7 +1330,6 @@
"fN" = (
/obj/machinery/computer/communications,
/turf/simulated/floor/plasteel{
- tag = "icon-bluefull";
icon_state = "bluefull"
},
/area/awaymission/spacebattle/cruiser)
@@ -1420,19 +1364,16 @@
/area/awaymission/spacebattle/cruiser)
"gq" = (
/obj/machinery/door_control{
- dir = 2;
id = "spacebattlestorage";
name = "Secure Storage";
- pixel_x = 24;
- pixel_y = 0
+ pixel_x = 24
},
/turf/simulated/floor/plating,
/area/awaymission/spacebattle/cruiser)
"gr" = (
/obj/machinery/computer/operating,
/turf/simulated/floor/plasteel{
- icon_state = "whitehall";
- dir = 2
+ icon_state = "whitehall"
},
/area/awaymission/spacebattle/cruiser)
"gs" = (
@@ -1440,32 +1381,28 @@
/obj/item/scalpel,
/obj/item/circular_saw,
/turf/simulated/floor/plasteel{
- icon_state = "whitehall";
- dir = 2
+ icon_state = "whitehall"
},
/area/awaymission/spacebattle/cruiser)
"gt" = (
/obj/structure/table/reinforced,
/obj/item/retractor,
/turf/simulated/floor/plasteel{
- icon_state = "whitehall";
- dir = 2
+ icon_state = "whitehall"
},
/area/awaymission/spacebattle/cruiser)
"gu" = (
/obj/structure/table/reinforced,
/obj/item/hemostat,
/turf/simulated/floor/plasteel{
- icon_state = "whitehall";
- dir = 2
+ icon_state = "whitehall"
},
/area/awaymission/spacebattle/cruiser)
"gv" = (
/obj/structure/table/reinforced,
/obj/item/scalpel,
/turf/simulated/floor/plasteel{
- icon_state = "whitehall";
- dir = 2
+ icon_state = "whitehall"
},
/area/awaymission/spacebattle/cruiser)
"gw" = (
@@ -1507,14 +1444,12 @@
"gI" = (
/obj/machinery/computer/security,
/turf/simulated/floor/plasteel{
- tag = "icon-bluefull";
icon_state = "bluefull"
},
/area/awaymission/spacebattle/cruiser)
"gJ" = (
/obj/machinery/computer/secure_data,
/turf/simulated/floor/plasteel{
- tag = "icon-bluefull";
icon_state = "bluefull"
},
/area/awaymission/spacebattle/cruiser)
@@ -1577,8 +1512,8 @@
"gT" = (
/obj/structure/table/reinforced,
/turf/simulated/floor/plasteel{
- icon_state = "blue";
- dir = 10
+ dir = 10;
+ icon_state = "blue"
},
/area/awaymission/spacebattle/cruiser)
"gU" = (
@@ -1629,8 +1564,6 @@
/area/awaymission/spacebattle/syndicate7)
"hg" = (
/obj/structure/shuttle/engine/heater{
- tag = "icon-heater (EAST)";
- icon_state = "heater";
dir = 4
},
/obj/structure/window/reinforced{
@@ -1641,8 +1574,7 @@
"hh" = (
/obj/structure/shuttle/engine/propulsion{
dir = 4;
- icon_state = "propulsion_l";
- tag = "icon-propulsion_l (WEST)"
+ icon_state = "propulsion_l"
},
/turf/simulated/floor/plating/airless,
/area/awaymission/spacebattle/syndicate7)
@@ -1743,8 +1675,6 @@
/area/awaymission/spacebattle/syndicate7)
"hO" = (
/obj/machinery/shower{
- tag = "icon-shower (EAST)";
- icon_state = "shower";
dir = 4
},
/obj/item/bikehorn/rubberducky,
@@ -1759,8 +1689,6 @@
/area/awaymission/spacebattle/cruiser)
"hQ" = (
/obj/machinery/shower{
- tag = "icon-shower (WEST)";
- icon_state = "shower";
dir = 8
},
/turf/simulated/floor/plasteel{
@@ -1801,8 +1729,6 @@
/area/awaymission/spacebattle/cruiser)
"hY" = (
/obj/machinery/shower{
- tag = "icon-shower (EAST)";
- icon_state = "shower";
dir = 4
},
/turf/simulated/floor/plasteel{
@@ -1811,8 +1737,6 @@
/area/awaymission/spacebattle/cruiser)
"hZ" = (
/obj/machinery/shower{
- tag = "icon-shower (WEST)";
- icon_state = "shower";
dir = 8
},
/obj/item/soap,
@@ -1862,9 +1786,7 @@
"ih" = (
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
- pixel_x = 11;
- pixel_y = 0
+ pixel_x = 11
},
/turf/simulated/floor/plasteel{
icon_state = "freezerfloor"
@@ -1873,14 +1795,14 @@
"ii" = (
/obj/machinery/sleeper,
/turf/simulated/floor/plasteel{
- icon_state = "whitehall";
- dir = 1
+ dir = 1;
+ icon_state = "whitehall"
},
/area/awaymission/spacebattle/cruiser)
"ik" = (
/turf/simulated/floor/plasteel{
- icon_state = "whitehall";
- dir = 1
+ dir = 1;
+ icon_state = "whitehall"
},
/area/awaymission/spacebattle/cruiser)
"il" = (
@@ -2023,7 +1945,6 @@
/area/awaymission/spacebattle/secret)
"je" = (
/turf/simulated/floor/plasteel{
- tag = "icon-alienvault";
icon_state = "alienvault"
},
/area/awaymission/spacebattle/secret)
@@ -2034,32 +1955,28 @@
"zS" = (
/obj/structure/shuttle/engine/propulsion{
dir = 4;
- icon_state = "propulsion_l";
- tag = "icon-propulsion_l (WEST)"
+ icon_state = "propulsion_l"
},
/turf/simulated/floor/plating/airless,
/area/space/nearstation)
"Jj" = (
/obj/structure/shuttle/engine/propulsion{
- tag = "icon-propulsion_l (NORTH)";
- icon_state = "propulsion_l";
- dir = 1
+ dir = 1;
+ icon_state = "propulsion_l"
},
/turf/simulated/floor/plating/airless,
/area/awaymission/spacebattle/syndicate2)
"Jw" = (
/obj/structure/shuttle/engine/propulsion{
- tag = "icon-propulsion_r (NORTH)";
- icon_state = "propulsion_r";
- dir = 1
+ dir = 1;
+ icon_state = "propulsion_r"
},
/turf/simulated/floor/plating/airless,
/area/awaymission/spacebattle/syndicate2)
"YV" = (
/obj/structure/shuttle/engine/propulsion{
dir = 8;
- icon_state = "burst_r";
- tag = "icon-burst_r (EAST)"
+ icon_state = "burst_r"
},
/turf/simulated/floor/plating/airless,
/area/awaymission/spacebattle/cruiser)
diff --git a/_maps/map_files/RandomZLevels/stationCollision.dmm b/_maps/map_files/RandomZLevels/stationCollision.dmm
index e6c7bfcd7b0..1273a706813 100644
--- a/_maps/map_files/RandomZLevels/stationCollision.dmm
+++ b/_maps/map_files/RandomZLevels/stationCollision.dmm
@@ -94,7 +94,6 @@
/obj/structure/window/reinforced/tinted,
/obj/structure/window/reinforced/tinted{
dir = 8;
- icon_state = "twindow";
tag = ""
},
/obj/structure/table,
@@ -131,7 +130,6 @@
/obj/structure/window/reinforced/tinted,
/obj/structure/window/reinforced/tinted{
dir = 4;
- icon_state = "twindow";
tag = ""
},
/obj/structure/closet/secure_closet/engineering_electrical,
@@ -165,8 +163,7 @@
"aI" = (
/obj/structure/shuttle/engine/propulsion{
dir = 8;
- icon_state = "burst_l";
- tag = "icon-burst_l (EAST)"
+ icon_state = "burst_l"
},
/turf/simulated/floor/plating/airless,
/area/awaymission/syndishuttle)
@@ -190,8 +187,6 @@
/area/awaymission/northblock)
"aP" = (
/obj/structure/shuttle/engine/heater{
- tag = "icon-heater (WEST)";
- icon_state = "heater";
dir = 8
},
/turf/simulated/floor/plating/airless,
@@ -277,16 +272,13 @@
/area/awaymission/northblock)
"bj" = (
/turf/simulated/floor/plasteel/airless{
- tag = "icon-bluecorner (WEST)";
- icon_state = "bluecorner";
- dir = 8
+ dir = 8;
+ icon_state = "bluecorner"
},
/area/awaymission/northblock)
"bk" = (
/turf/simulated/floor/plasteel/airless{
- tag = "icon-bluecorner";
- icon_state = "bluecorner";
- dir = 2
+ icon_state = "bluecorner"
},
/area/awaymission/northblock)
"bl" = (
@@ -297,9 +289,8 @@
/area/awaymission/northblock)
"bm" = (
/turf/simulated/floor/plasteel/airless{
- tag = "icon-blue (WEST)";
- icon_state = "blue";
- dir = 8
+ dir = 8;
+ icon_state = "blue"
},
/area/awaymission/northblock)
"bn" = (
@@ -314,8 +305,6 @@
/area/awaymission/syndishuttle)
"bq" = (
/obj/structure/shuttle/engine/heater{
- tag = "icon-heater (WEST)";
- icon_state = "heater";
dir = 8
},
/turf/simulated/floor/plating,
@@ -334,9 +323,8 @@
/area/awaymission/syndishuttle)
"bu" = (
/turf/simulated/floor/plasteel/airless{
- tag = "icon-blue (SOUTHEAST)";
- icon_state = "blue";
- dir = 6
+ dir = 6;
+ icon_state = "blue"
},
/area/awaymission/northblock)
"bv" = (
@@ -358,23 +346,19 @@
"bz" = (
/obj/structure/table,
/turf/simulated/floor/plasteel/airless{
- tag = "icon-bluecorner";
- icon_state = "bluecorner";
- dir = 2
+ icon_state = "bluecorner"
},
/area/awaymission/northblock)
"bA" = (
/turf/simulated/floor/plasteel/airless{
- tag = "icon-blue (SOUTHWEST)";
- icon_state = "blue";
- dir = 10
+ dir = 10;
+ icon_state = "blue"
},
/area/awaymission/northblock)
"bB" = (
/turf/simulated/floor/plasteel/airless{
- tag = "icon-blue (NORTHWEST)";
- icon_state = "blue";
- dir = 9
+ dir = 9;
+ icon_state = "blue"
},
/area/awaymission/northblock)
"bC" = (
@@ -387,9 +371,8 @@
/area/awaymission/northblock)
"bD" = (
/turf/simulated/floor/plasteel/airless{
- tag = "icon-blue (NORTH)";
- icon_state = "blue";
- dir = 1
+ dir = 1;
+ icon_state = "blue"
},
/area/awaymission/northblock)
"bF" = (
@@ -498,17 +481,14 @@
/area/awaymission/research)
"bV" = (
/obj/structure/shuttle/engine/heater{
- tag = "icon-heater (NORTH)";
- icon_state = "heater";
dir = 1
},
/turf/simulated/floor/plating,
/area/awaymission/syndishuttle)
"bX" = (
/turf/simulated/floor/plasteel/airless{
- tag = "icon-blue (NORTHEAST)";
- icon_state = "blue";
- dir = 5
+ dir = 5;
+ icon_state = "blue"
},
/area/awaymission/northblock)
"bY" = (
@@ -598,7 +578,6 @@
/obj/item/clothing/head/helmet/space/syndicate,
/obj/effect/decal/remains/human{
desc = "This guy seemed to have died in terrible way! Half his remains are dust.";
- icon_state = "remains";
name = "Syndicate agent remains"
},
/obj/effect/decal/cleanable/blood/splatter,
@@ -701,15 +680,12 @@
"cy" = (
/obj/structure/shuttle/engine/propulsion{
dir = 8;
- icon_state = "burst_l";
- tag = "icon-burst_l (EAST)"
+ icon_state = "burst_l"
},
/turf/simulated/floor/plating/airless,
/area/awaymission/research)
"cz" = (
/obj/structure/shuttle/engine/heater{
- tag = "icon-heater (WEST)";
- icon_state = "heater";
dir = 8
},
/obj/structure/window/reinforced,
@@ -750,7 +726,6 @@
/obj/machinery/power/emitter{
anchored = 1;
dir = 1;
- icon_state = "emitter";
state = 2
},
/turf/simulated/floor/plasteel{
@@ -784,8 +759,6 @@
/area/awaymission/research)
"cK" = (
/obj/structure/shuttle/engine/heater{
- tag = "icon-heater (WEST)";
- icon_state = "heater";
dir = 8
},
/obj/structure/window/reinforced{
@@ -800,7 +773,6 @@
"cL" = (
/obj/effect/decal/remains/human{
desc = "This guy seemed to have died in terrible way! Half his remains are dust.";
- icon_state = "remains";
name = "Syndicate agent remains"
},
/obj/item/clipboard{
@@ -837,7 +809,6 @@
/area/awaymission/research)
"cP" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/plasteel{
@@ -926,8 +897,6 @@
/area/awaymission/northblock)
"db" = (
/obj/machinery/shower{
- tag = "icon-shower (EAST)";
- icon_state = "shower";
dir = 4
},
/obj/structure/window/reinforced/tinted,
@@ -951,7 +920,6 @@
/area/awaymission/research)
"de" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/obj/structure/window/reinforced{
@@ -985,8 +953,8 @@
pixel_x = -28
},
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/turf/simulated/floor/plasteel,
/area/awaymission/midblock)
@@ -1005,7 +973,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/effect/decal/cleanable/blood/splatter,
@@ -1067,7 +1034,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel,
@@ -1093,7 +1059,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
@@ -1124,9 +1089,8 @@
anchored = 1
},
/turf/simulated/floor/plasteel/airless{
- tag = "icon-blue (EAST)";
- icon_state = "blue";
- dir = 4
+ dir = 4;
+ icon_state = "blue"
},
/area/awaymission/northblock)
"dx" = (
@@ -1143,7 +1107,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel/airless,
@@ -1153,13 +1116,11 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel/airless{
- tag = "icon-blue (EAST)";
- icon_state = "blue";
- dir = 4
+ dir = 4;
+ icon_state = "blue"
},
/area/awaymission/northblock)
"dA" = (
@@ -1167,7 +1128,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/effect/decal/warning_stripes/yellow,
@@ -1176,9 +1136,7 @@
"dB" = (
/obj/machinery/shower{
dir = 4;
- icon_state = "shower";
- pixel_y = -10;
- tag = "icon-shower (EAST)"
+ pixel_y = -10
},
/obj/structure/window/reinforced/tinted{
dir = 1
@@ -1243,7 +1201,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel,
@@ -1279,9 +1236,8 @@
"dM" = (
/obj/structure/table,
/turf/simulated/floor/plasteel/airless{
- tag = "icon-bluecorner (EAST)";
- icon_state = "bluecorner";
- dir = 4
+ dir = 4;
+ icon_state = "bluecorner"
},
/area/awaymission/northblock)
"dN" = (
@@ -1300,24 +1256,21 @@
},
/obj/structure/cable,
/turf/simulated/floor/plasteel/airless{
- tag = "icon-blue (NORTHWEST)";
- icon_state = "blue";
- dir = 9
+ dir = 9;
+ icon_state = "blue"
},
/area/awaymission/northblock)
"dP" = (
/obj/structure/window/reinforced,
/turf/simulated/floor/plasteel/airless{
- tag = "icon-blue (NORTH)";
- icon_state = "blue";
- dir = 1
+ dir = 1;
+ icon_state = "blue"
},
/area/awaymission/northblock)
"dQ" = (
/turf/simulated/floor/plasteel/airless{
- tag = "icon-bluecorner (EAST)";
- icon_state = "bluecorner";
- dir = 4
+ dir = 4;
+ icon_state = "bluecorner"
},
/area/awaymission/northblock)
"dR" = (
@@ -1412,25 +1365,22 @@
anchored = 1
},
/turf/simulated/floor/plasteel/airless{
- tag = "icon-blue (NORTH)";
- icon_state = "blue";
- dir = 1
+ dir = 1;
+ icon_state = "blue"
},
/area/awaymission/northblock)
"ee" = (
/obj/machinery/computer/crew,
/turf/simulated/floor/plasteel/airless{
- tag = "icon-bluecorner (EAST)";
- icon_state = "bluecorner";
- dir = 4
+ dir = 4;
+ icon_state = "bluecorner"
},
/area/awaymission/northblock)
"ef" = (
/obj/structure/table,
/turf/simulated/floor/plasteel/airless{
- tag = "icon-blue (NORTH)";
- icon_state = "blue";
- dir = 1
+ dir = 1;
+ icon_state = "blue"
},
/area/awaymission/northblock)
"eg" = (
@@ -1518,7 +1468,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel,
@@ -1528,7 +1477,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/effect/landmark/damageturf,
@@ -1548,7 +1496,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/effect/landmark/burnturf,
@@ -1576,7 +1523,6 @@
/area/awaymission/syndishuttle)
"ey" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/obj/effect/landmark/damageturf,
@@ -1635,8 +1581,6 @@
/area/awaymission/research)
"eH" = (
/obj/structure/shuttle/engine/heater{
- tag = "icon-heater (WEST)";
- icon_state = "heater";
dir = 8
},
/obj/structure/window/reinforced{
@@ -1761,7 +1705,6 @@
/obj/machinery/power/emitter{
anchored = 1;
dir = 1;
- icon_state = "emitter";
state = 2
},
/turf/simulated/floor/plasteel{
@@ -1795,7 +1738,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plating/airless,
@@ -1949,7 +1891,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/effect/landmark/damageturf,
@@ -2020,7 +1961,6 @@
"fA" = (
/obj/effect/decal/remains/human{
desc = "This guy seemed to have died in terrible way! Half his remains are dust.";
- icon_state = "remains";
name = "Syndicate agent remains"
},
/obj/item/ammo_casing/c10mm,
@@ -2039,7 +1979,6 @@
"fC" = (
/obj/effect/decal/remains/human{
desc = "This guy seemed to have died in terrible way! Half his remains are dust.";
- icon_state = "remains";
name = "Syndicate agent remains"
},
/obj/item/ammo_casing/c10mm,
@@ -2056,7 +1995,6 @@
"fD" = (
/obj/effect/decal/remains/human{
desc = "This guy seemed to have died in terrible way! Half his remains are dust.";
- icon_state = "remains";
name = "Syndicate agent remains"
},
/obj/item/ammo_casing/c10mm,
@@ -2068,7 +2006,6 @@
/area/awaymission/midblock)
"fE" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/turf/simulated/floor/plasteel/airless,
@@ -2102,8 +2039,8 @@
"fH" = (
/obj/effect/landmark/damageturf,
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 1
+ dir = 1;
+ icon_state = "red"
},
/area/awaymission/arrivalblock)
"fI" = (
@@ -2202,7 +2139,6 @@
"gf" = (
/obj/effect/decal/remains/human{
desc = "This guy seemed to have died in terrible way! Half his remains are dust.";
- icon_state = "remains";
name = "Syndicate agent remains"
},
/obj/item/ammo_casing/c10mm,
@@ -2232,12 +2168,10 @@
/obj/structure/closet/wardrobe/pjs,
/obj/structure/window/reinforced/tinted{
dir = 8;
- icon_state = "twindow";
tag = ""
},
/obj/structure/window/reinforced/tinted{
dir = 4;
- icon_state = "twindow";
tag = ""
},
/obj/machinery/light/small{
@@ -2353,7 +2287,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel,
@@ -2394,7 +2327,6 @@
"gM" = (
/obj/effect/decal/remains/human{
desc = "This guy seemed to have died in terrible way! Half his remains are dust.";
- icon_state = "remains";
name = "Syndicate agent remains"
},
/obj/effect/landmark/sc_bible_spawner,
@@ -2442,15 +2374,15 @@
"gV" = (
/obj/machinery/computer/security,
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 9
+ dir = 9;
+ icon_state = "red"
},
/area/awaymission/arrivalblock)
"gW" = (
/obj/machinery/computer/secure_data,
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 1
+ dir = 1;
+ icon_state = "red"
},
/area/awaymission/arrivalblock)
"gX" = (
@@ -2458,8 +2390,8 @@
/obj/item/melee/baton,
/obj/item/clothing/head/warden,
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 1
+ dir = 1;
+ icon_state = "red"
},
/area/awaymission/arrivalblock)
"gY" = (
@@ -2471,22 +2403,22 @@
dir = 8
},
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 1
+ dir = 1;
+ icon_state = "red"
},
/area/awaymission/arrivalblock)
"gZ" = (
/obj/structure/closet/secure_closet/security,
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 1
+ dir = 1;
+ icon_state = "red"
},
/area/awaymission/arrivalblock)
"ha" = (
/obj/structure/closet/secure_closet/security,
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 5
+ dir = 5;
+ icon_state = "red"
},
/area/awaymission/arrivalblock)
"hb" = (
@@ -2504,12 +2436,10 @@
"hd" = (
/obj/structure/window/reinforced/tinted{
dir = 4;
- icon_state = "twindow";
tag = ""
},
/obj/structure/window/reinforced/tinted{
dir = 8;
- icon_state = "twindow";
tag = ""
},
/turf/simulated/floor/plasteel,
@@ -2573,8 +2503,7 @@
/area/awaymission/midblock)
"hk" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/awaymission/midblock)
@@ -2611,8 +2540,8 @@
},
/obj/effect/decal/remains/human,
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 8
+ dir = 8;
+ icon_state = "red"
},
/area/awaymission/arrivalblock)
"hu" = (
@@ -2627,8 +2556,8 @@
name = "Windoor"
},
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 4
+ dir = 4;
+ icon_state = "red"
},
/area/awaymission/arrivalblock)
"hy" = (
@@ -2645,8 +2574,7 @@
/area/awaymission/midblock)
"hz" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/structure/cable{
d1 = 1;
@@ -2688,8 +2616,8 @@
/area/awaymission/midblock)
"hF" = (
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 8
+ dir = 8;
+ icon_state = "red"
},
/area/awaymission/arrivalblock)
"hG" = (
@@ -2710,8 +2638,8 @@
/area/awaymission/arrivalblock)
"hJ" = (
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 4
+ dir = 4;
+ icon_state = "red"
},
/area/awaymission/arrivalblock)
"hK" = (
@@ -2777,12 +2705,12 @@
pixel_x = -28
},
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 8
+ dir = 8;
+ icon_state = "red"
},
/area/awaymission/arrivalblock)
"hY" = (
@@ -2790,7 +2718,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel,
@@ -2803,7 +2730,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel,
@@ -2814,24 +2740,21 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 4
+ dir = 4;
+ icon_state = "red"
},
/area/awaymission/arrivalblock)
"ib" = (
/obj/machinery/door/airlock/security/glass{
- name = "Glass Airlock";
- req_access_txt = "0"
+ name = "Glass Airlock"
},
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel,
@@ -2841,7 +2764,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel/airless,
@@ -2849,8 +2771,8 @@
"id" = (
/obj/effect/landmark/damageturf,
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 5
+ dir = 5;
+ icon_state = "red"
},
/area/awaymission/arrivalblock)
"ie" = (
@@ -2907,15 +2829,14 @@
/area/awaymission/arrivalblock)
"im" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/plasteel,
/area/awaymission/arrivalblock)
"in" = (
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 10
+ dir = 10;
+ icon_state = "red"
},
/area/awaymission/arrivalblock)
"io" = (
@@ -2925,8 +2846,8 @@
/area/awaymission/arrivalblock)
"ip" = (
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 6
+ dir = 6;
+ icon_state = "red"
},
/area/awaymission/arrivalblock)
"iq" = (
@@ -3034,19 +2955,18 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 9
+ dir = 9;
+ icon_state = "red"
},
/area/awaymission/arrivalblock)
"iO" = (
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 1
+ dir = 1;
+ icon_state = "red"
},
/area/awaymission/arrivalblock)
"iP" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/obj/effect/decal/warning_stripes/east,
@@ -3054,15 +2974,13 @@
/area/awaymission/gateroom)
"iQ" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel,
/area/awaymission/gateroom)
"iR" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/turf/simulated/floor/plasteel/airless,
@@ -3098,8 +3016,7 @@
/area/awaymission/southblock)
"iX" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/turf/simulated/floor/plasteel/airless,
/area/awaymission/southblock)
@@ -3109,8 +3026,8 @@
"ja" = (
/obj/structure/closet/wardrobe/orange,
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 10
+ dir = 10;
+ icon_state = "red"
},
/area/awaymission/arrivalblock)
"jb" = (
@@ -3128,7 +3045,6 @@
/area/awaymission/arrivalblock)
"jd" = (
/obj/structure/shuttle/engine/propulsion{
- tag = "icon-propulsion_r";
icon_state = "propulsion_r"
},
/obj/structure/shuttle/engine/propulsion,
@@ -3143,15 +3059,12 @@
/area/awaymission/arrivalblock)
"jg" = (
/obj/structure/shuttle/engine/propulsion{
- tag = "icon-propulsion_l";
icon_state = "propulsion_l"
},
/obj/structure/shuttle/engine/propulsion{
- tag = "icon-burst_l";
icon_state = "burst_l"
},
/obj/structure/shuttle/engine/propulsion{
- tag = "icon-propulsion_l";
icon_state = "propulsion_l"
},
/obj/structure/shuttle/engine/propulsion,
@@ -3171,7 +3084,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel/airless,
@@ -3184,7 +3096,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel/airless,
@@ -3194,7 +3105,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/cable{
@@ -3256,8 +3166,7 @@
"jr" = (
/obj/machinery/door/airlock/medical/glass{
id_tag = null;
- name = "Glass Airlock";
- req_access_txt = "0"
+ name = "Glass Airlock"
},
/turf/simulated/floor/plasteel,
/area/awaymission/southblock)
@@ -3294,7 +3203,6 @@
"jA" = (
/obj/effect/decal/remains/human{
desc = "This guy seemed to have died in terrible way! Half his remains are dust.";
- icon_state = "remains";
name = "Syndicate agent remains"
},
/turf/simulated/floor/plasteel,
@@ -3339,16 +3247,16 @@
/area/awaymission/southblock)
"jH" = (
/turf/simulated/floor/plasteel{
- icon_state = "whitehall";
- dir = 1
+ dir = 1;
+ icon_state = "whitehall"
},
/area/awaymission/southblock)
"jI" = (
/obj/structure/table,
/obj/item/pen,
/turf/simulated/floor/plasteel{
- icon_state = "whitehall";
- dir = 1
+ dir = 1;
+ icon_state = "whitehall"
},
/area/awaymission/southblock)
"jJ" = (
@@ -3466,22 +3374,19 @@
"kc" = (
/obj/machinery/light/small,
/turf/simulated/floor/plasteel{
- icon_state = "whitehall";
- dir = 2
+ icon_state = "whitehall"
},
/area/awaymission/southblock)
"kd" = (
/turf/simulated/floor/plasteel{
- icon_state = "whitehall";
- dir = 2
+ icon_state = "whitehall"
},
/area/awaymission/southblock)
"ke" = (
/obj/structure/table,
/obj/item/paper_bin,
/turf/simulated/floor/plasteel{
- icon_state = "whitehall";
- dir = 2
+ icon_state = "whitehall"
},
/area/awaymission/southblock)
"kf" = (
@@ -3491,8 +3396,7 @@
/area/awaymission/southblock)
"kg" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/structure/cable{
d1 = 1;
@@ -3510,9 +3414,9 @@
/area/awaymission/gateroom)
"ki" = (
/obj/structure/cable{
+ d2 = 2;
icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
+ pixel_y = 1
},
/obj/machinery/gateway/centeraway{
calibrated = 0
@@ -3616,18 +3520,16 @@
/area/awaymission/gateroom)
"kA" = (
/obj/structure/shuttle/engine/propulsion{
- tag = "icon-propulsion_l (NORTH)";
- icon_state = "propulsion_l";
- dir = 1
+ dir = 1;
+ icon_state = "propulsion_l"
},
/obj/structure/window/reinforced,
/turf/simulated/floor/plating/airless,
/area/awaymission/arrivalblock)
"kB" = (
/obj/structure/shuttle/engine/propulsion{
- tag = "icon-propulsion_r (NORTH)";
- icon_state = "propulsion_r";
- dir = 1
+ dir = 1;
+ icon_state = "propulsion_r"
},
/obj/structure/window/reinforced,
/turf/simulated/floor/plating/airless,
@@ -3656,7 +3558,6 @@
/obj/item/clothing/under/syndicate,
/obj/effect/decal/remains/human{
desc = "This guy seemed to have died in terrible way! Half his remains are dust.";
- icon_state = "remains";
name = "Syndicate agent remains"
},
/obj/item/paper/sc_safehint_paper_hydro,
@@ -3671,8 +3572,8 @@
"kI" = (
/obj/structure/bed/roller,
/turf/simulated/floor/plasteel{
- icon_state = "whitehall";
- dir = 1
+ dir = 1;
+ icon_state = "whitehall"
},
/area/awaymission/southblock)
"kJ" = (
@@ -3690,7 +3591,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/effect/decal/warning_stripes/north,
@@ -3707,7 +3607,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/effect/decal/warning_stripes/north,
@@ -3718,7 +3617,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/effect/decal/warning_stripes/northeast,
@@ -3742,9 +3640,8 @@
/area/awaymission/arrivalblock)
"kR" = (
/turf/simulated/floor/plasteel{
- tag = "icon-whitehall (WEST)";
- icon_state = "whitehall";
- dir = 8
+ dir = 8;
+ icon_state = "whitehall"
},
/area/awaymission/southblock)
"kS" = (
@@ -3752,14 +3649,14 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "whitehall";
- dir = 4
+ dir = 4;
+ icon_state = "whitehall"
},
/area/awaymission/southblock)
"kT" = (
/turf/simulated/floor/plasteel{
- icon_state = "whitehall";
- dir = 4
+ dir = 4;
+ icon_state = "whitehall"
},
/area/awaymission/southblock)
"kU" = (
@@ -3791,7 +3688,6 @@
"kY" = (
/obj/structure/window/reinforced/tinted{
dir = 8;
- icon_state = "twindow";
tag = ""
},
/obj/structure/window/reinforced/tinted{
@@ -3813,8 +3709,8 @@
dir = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "whitehall";
- dir = 4
+ dir = 4;
+ icon_state = "whitehall"
},
/area/awaymission/southblock)
"ld" = (
@@ -3838,19 +3734,16 @@
/area/awaymission/arrivalblock)
"lh" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/turf/simulated/floor/plasteel{
- tag = "icon-whitehall (WEST)";
- icon_state = "whitehall";
- dir = 8
+ dir = 8;
+ icon_state = "whitehall"
},
/area/awaymission/southblock)
"li" = (
/obj/structure/window/reinforced/tinted{
dir = 8;
- icon_state = "twindow";
tag = ""
},
/turf/simulated/floor/plasteel,
@@ -3860,8 +3753,8 @@
/obj/structure/window/reinforced/tinted,
/obj/item/bedsheet/medical,
/turf/simulated/floor/plasteel{
- icon_state = "whitehall";
- dir = 4
+ dir = 4;
+ icon_state = "whitehall"
},
/area/awaymission/southblock)
"lt" = (
@@ -3909,8 +3802,8 @@
/obj/item/bedsheet/medical,
/obj/effect/decal/remains/human,
/turf/simulated/floor/plasteel{
- icon_state = "whitehall";
- dir = 4
+ dir = 4;
+ icon_state = "whitehall"
},
/area/awaymission/southblock)
"lA" = (
@@ -3990,13 +3883,12 @@
pixel_x = 31
},
/turf/simulated/floor/plasteel{
- icon_state = "whitehall";
- dir = 4
+ dir = 4;
+ icon_state = "whitehall"
},
/area/awaymission/southblock)
"lL" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/turf/simulated/floor/plasteel,
@@ -4015,7 +3907,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel,
@@ -4025,7 +3916,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/door/airlock/engineering,
@@ -4036,7 +3926,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel,
@@ -4046,7 +3935,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/cable{
@@ -4102,12 +3990,10 @@
"lY" = (
/obj/structure/window/reinforced/tinted{
dir = 8;
- icon_state = "twindow";
tag = ""
},
/turf/simulated/floor/plasteel{
- icon_state = "whitehall";
- dir = 2
+ icon_state = "whitehall"
},
/area/awaymission/southblock)
"lZ" = (
@@ -4115,8 +4001,7 @@
dir = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "whitehall";
- dir = 2
+ icon_state = "whitehall"
},
/area/awaymission/southblock)
"md" = (
@@ -4133,8 +4018,7 @@
/obj/machinery/power/apc/noalarm{
dir = 4;
name = "Gateroom APC";
- pixel_x = 28;
- pixel_y = 0
+ pixel_x = 28
},
/obj/structure/cable{
d2 = 8;
@@ -4152,8 +4036,7 @@
"JP" = (
/obj/structure/shuttle/engine/propulsion{
dir = 8;
- icon_state = "burst_l";
- tag = "icon-burst_l (EAST)"
+ icon_state = "burst_l"
},
/turf/simulated/floor/plating,
/area/awaymission/syndishuttle)
diff --git a/_maps/map_files/RandomZLevels/terrorspiders.dmm b/_maps/map_files/RandomZLevels/terrorspiders.dmm
index 706a69f5e17..837cabbf460 100644
--- a/_maps/map_files/RandomZLevels/terrorspiders.dmm
+++ b/_maps/map_files/RandomZLevels/terrorspiders.dmm
@@ -18,18 +18,15 @@
initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10;
- level = 1
+ dir = 10
},
/turf/simulated/floor/plasteel,
/area/awaymission/UO71/plaza)
"af" = (
/obj/machinery/alarm/monitor{
dir = 4;
- frequency = 1439;
locked = 0;
pixel_x = -23;
- pixel_y = 0;
req_access = null
},
/obj/machinery/light/small{
@@ -122,7 +119,6 @@
/area/awaymission/UO71/plaza)
"au" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/awaymission/UO71/plaza)
@@ -140,7 +136,6 @@
/area/awaymission/UO71/plaza)
"ax" = (
/obj/structure/chair/comfy/beige{
- icon_state = "comfychair";
dir = 4
},
/turf/simulated/floor/plasteel{
@@ -191,8 +186,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/table/wood,
/obj/machinery/newscaster{
- pixel_x = 30;
- pixel_y = 0
+ pixel_x = 30
},
/obj/item/gun/energy/laser/retro,
/obj/item/paper/terrorspiders8,
@@ -227,7 +221,6 @@
/area/awaymission/UO71/plaza)
"aH" = (
/obj/structure/chair/wood{
- icon_state = "wooden_chair";
dir = 1
},
/turf/simulated/floor/carpet,
@@ -239,10 +232,8 @@
"aJ" = (
/obj/machinery/alarm/monitor{
dir = 4;
- frequency = 1439;
locked = 0;
pixel_x = -23;
- pixel_y = 0;
req_access = null
},
/turf/simulated/floor/plasteel,
@@ -253,9 +244,7 @@
},
/area/awaymission/UO71/plaza)
"aL" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutral"
@@ -273,7 +262,6 @@
"aN" = (
/obj/machinery/door/airlock{
id_tag = "awaydormE1";
- locked = 0;
name = "Executive Dorm 1";
req_access_txt = "271"
},
@@ -310,16 +298,14 @@
/area/awaymission/UO71/plaza)
"aS" = (
/obj/structure/extinguisher_cabinet{
- pixel_x = -25;
- pixel_y = 0
+ pixel_x = -25
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaymission/UO71/plaza)
"aT" = (
/obj/structure/chair/comfy/beige{
- dir = 1;
- icon_state = "comfychair"
+ dir = 1
},
/turf/simulated/floor/plasteel{
icon_state = "grimy"
@@ -372,10 +358,7 @@
},
/area/awaymission/UO71/plaza)
"ba" = (
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
- req_one_access_txt = "0"
- },
+/obj/machinery/door/airlock/maintenance,
/turf/simulated/floor/plating,
/area/awaymission/UO71/plaza)
"bb" = (
@@ -387,7 +370,6 @@
/obj/machinery/light/small,
/obj/machinery/alarm/monitor{
dir = 1;
- frequency = 1439;
locked = 0;
pixel_y = -23;
req_access = null
@@ -398,8 +380,7 @@
/area/awaymission/UO71/plaza)
"bd" = (
/obj/machinery/door/airlock{
- name = "Unisex Restrooms";
- req_access_txt = "0"
+ name = "Unisex Restrooms"
},
/turf/simulated/floor/plasteel{
icon_state = "freezerfloor"
@@ -433,8 +414,7 @@
},
/obj/structure/table/wood,
/obj/machinery/newscaster{
- pixel_x = 30;
- pixel_y = 0
+ pixel_x = 30
},
/obj/item/gun/energy/laser/awaymission_aeg,
/turf/simulated/floor/carpet,
@@ -481,8 +461,7 @@
/area/awaymission/UO71/plaza)
"bl" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
+ dir = 5
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -500,8 +479,7 @@
/area/awaymission/UO71/plaza)
"bn" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10;
- level = 1
+ dir = 10
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -576,7 +554,6 @@
"bB" = (
/obj/machinery/door/airlock{
id_tag = "awaydormE2";
- locked = 0;
name = "Executive Dorm 2";
req_access_txt = "271"
},
@@ -653,10 +630,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
- req_one_access_txt = "0"
- },
+/obj/machinery/door/airlock/maintenance,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -718,8 +692,7 @@
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/damageturf,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10;
- level = 1
+ dir = 10
},
/turf/simulated/floor/plating,
/area/awaymission/UO71/plaza)
@@ -764,7 +737,6 @@
dir = 1
},
/obj/machinery/alarm/monitor{
- frequency = 1439;
locked = 0;
pixel_y = 23;
req_access = null
@@ -774,8 +746,7 @@
"ch" = (
/obj/structure/table/wood,
/obj/machinery/newscaster{
- pixel_x = -30;
- pixel_y = 0
+ pixel_x = -30
},
/turf/simulated/floor/carpet,
/area/awaymission/UO71/plaza)
@@ -800,8 +771,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/table/wood,
/obj/machinery/newscaster{
- pixel_x = 30;
- pixel_y = 0
+ pixel_x = 30
},
/turf/simulated/floor/carpet,
/area/awaymission/UO71/plaza)
@@ -810,13 +780,11 @@
dir = 1
},
/obj/machinery/alarm/monitor{
- frequency = 1439;
locked = 0;
pixel_y = 23;
req_access = null
},
/obj/structure/chair/wood{
- icon_state = "wooden_chair";
dir = 4
},
/turf/simulated/floor/carpet,
@@ -864,16 +832,13 @@
/area/awaymission/UO71/plaza)
"cs" = (
/obj/structure/chair/wood{
- icon_state = "wooden_chair";
dir = 1
},
/obj/machinery/door_control{
id = "awaydorm2";
name = "Door Bolt Control";
normaldoorcontrol = 1;
- pixel_x = 0;
pixel_y = -25;
- req_access_txt = "0";
specialfunctions = 4
},
/obj/machinery/atmospherics/unary/vent_pump{
@@ -907,9 +872,7 @@
id = "awaydorm1";
name = "Door Bolt Control";
normaldoorcontrol = 1;
- pixel_x = 0;
pixel_y = -25;
- req_access_txt = "0";
specialfunctions = 4
},
/turf/simulated/floor/carpet,
@@ -949,8 +912,7 @@
dir = 10
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10;
- level = 1
+ dir = 10
},
/turf/simulated/floor/plating,
/area/awaymission/UO71/plaza)
@@ -981,7 +943,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/airlock{
id_tag = "awaydorm1";
- locked = 0;
name = "Dorm 1";
req_access_txt = "271"
},
@@ -1049,22 +1010,17 @@
/area/awaymission/UO71/science)
"cW" = (
/obj/machinery/firealarm{
- dir = 2;
- pixel_x = 0;
pixel_y = 24
},
/turf/simulated/floor/plasteel,
/area/awaymission/UO71/plaza)
"cX" = (
-/obj/item/twohanded/required/kirbyplants{
- layer = 5
- },
+/obj/item/twohanded/required/kirbyplants,
/obj/effect/decal/cleanable/dirt,
/obj/machinery/light/small{
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "greencorner"
},
/area/awaymission/UO71/plaza)
@@ -1081,7 +1037,6 @@
/obj/structure/sign/deathsposal{
desc = "A warning sign which reads 'DISPOSAL: LEADS TO EXTERIOR'";
name = "\improper DISPOSAL: LEADS TO EXTERIOR";
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/plasteel{
@@ -1126,8 +1081,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -1189,7 +1143,6 @@
/area/awaymission/UO71/plaza)
"dm" = (
/obj/machinery/alarm/monitor{
- frequency = 1439;
locked = 0;
pixel_y = 23;
req_access = null
@@ -1253,8 +1206,6 @@
dir = 4
},
/obj/machinery/firealarm{
- dir = 2;
- pixel_x = 0;
pixel_y = 24
},
/obj/machinery/light/small{
@@ -1298,7 +1249,6 @@
"dv" = (
/obj/structure/chair,
/obj/structure/reagent_dispensers/peppertank{
- pixel_x = 0;
pixel_y = 30
},
/turf/simulated/floor/plasteel{
@@ -1314,7 +1264,6 @@
icon_off = "secoff";
icon_opened = "secopen";
icon_state = "sec1";
- locked = 1;
name = "security officer's locker";
req_access_txt = "271"
},
@@ -1347,21 +1296,16 @@
"dA" = (
/obj/machinery/atmospherics/unary/vent_pump{
dir = 1;
- external_pressure_bound = 101.325;
- on = 1;
- pressure_checks = 1
+ on = 1
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/awaymission/UO71/plaza)
"dB" = (
/obj/machinery/atmospherics/unary/vent_pump{
dir = 1;
- external_pressure_bound = 101.325;
- on = 1;
- pressure_checks = 1
+ on = 1
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -1449,8 +1393,7 @@
"dL" = (
/obj/machinery/door/airlock/maintenance{
name = "Security Checkpoint Maintenance";
- req_access_txt = "271";
- req_one_access_txt = "0"
+ req_access_txt = "271"
},
/turf/simulated/floor/plating,
/area/awaymission/UO71/plaza)
@@ -1493,9 +1436,7 @@
"dV" = (
/obj/machinery/atmospherics/unary/vent_pump{
dir = 1;
- external_pressure_bound = 101.325;
- on = 1;
- pressure_checks = 1
+ on = 1
},
/turf/simulated/floor/plasteel,
/area/awaymission/UO71/plaza)
@@ -1516,10 +1457,8 @@
"dZ" = (
/obj/machinery/alarm/monitor{
dir = 4;
- frequency = 1439;
locked = 0;
pixel_x = -23;
- pixel_y = 0;
req_access = null
},
/obj/effect/decal/cleanable/dirt,
@@ -1569,7 +1508,6 @@
/area/awaymission/UO71/plaza)
"ed" = (
/obj/structure/chair/office{
- icon_state = "chair";
dir = 4
},
/turf/simulated/floor/plasteel{
@@ -1587,7 +1525,6 @@
/area/awaymission/UO71/plaza)
"eg" = (
/obj/structure/chair/office{
- icon_state = "chair";
dir = 8
},
/turf/simulated/floor/plasteel{
@@ -1618,8 +1555,7 @@
pixel_y = 4
},
/obj/machinery/newscaster/security_unit{
- pixel_x = -30;
- pixel_y = 0
+ pixel_x = -30
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
@@ -1632,9 +1568,7 @@
/obj/machinery/door/firedoor,
/obj/item/folder/red,
/obj/machinery/door/window/southleft{
- base_state = "left";
dir = 8;
- icon_state = "left";
name = "Security Checkpoint";
req_access_txt = "271"
},
@@ -1651,7 +1585,6 @@
/area/awaymission/UO71/plaza)
"em" = (
/obj/structure/chair/office{
- icon_state = "chair";
dir = 4
},
/obj/effect/decal/cleanable/dirt,
@@ -1695,7 +1628,6 @@
pixel_y = 8
},
/obj/item/reagent_containers/spray/plantbgone{
- pixel_x = 0;
pixel_y = 3
},
/obj/item/watertank,
@@ -1762,7 +1694,6 @@
/area/awaymission/UO71/plaza)
"ez" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "greencorner"
},
/area/awaymission/UO71/plaza)
@@ -1775,14 +1706,12 @@
/area/awaymission/UO71/plaza)
"eB" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "green"
},
/area/awaymission/UO71/plaza)
"eC" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "green"
},
/area/awaymission/UO71/plaza)
@@ -1794,20 +1723,17 @@
},
/obj/machinery/power/apc/noalarm{
cell_type = 15000;
- dir = 2;
locked = 0;
name = "Hydroponics APC";
- pixel_x = 0;
pixel_y = -25;
req_access = null;
start_charge = 5
},
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "green"
},
/area/awaymission/UO71/plaza)
@@ -1815,12 +1741,10 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "green"
},
/area/awaymission/UO71/plaza)
@@ -1828,15 +1752,12 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
pixel_y = -28
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "green"
},
/area/awaymission/UO71/plaza)
@@ -1845,11 +1766,9 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "green"
},
/area/awaymission/UO71/plaza)
@@ -1857,11 +1776,9 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "green"
},
/area/awaymission/UO71/plaza)
@@ -1883,18 +1800,14 @@
},
/area/awaymission/UO71/plaza)
"eK" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutralcorner"
},
/area/awaymission/UO71/plaza)
"eL" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
@@ -1903,10 +1816,8 @@
"eM" = (
/obj/machinery/alarm/monitor{
dir = 8;
- frequency = 1439;
locked = 0;
pixel_x = 23;
- pixel_y = 0;
req_access = null
},
/obj/machinery/light/small{
@@ -1947,8 +1858,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -1989,8 +1899,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -2006,9 +1915,7 @@
"eV" = (
/obj/machinery/atmospherics/unary/vent_pump{
dir = 1;
- external_pressure_bound = 101.325;
- on = 1;
- pressure_checks = 1
+ on = 1
},
/obj/structure/chair/wood,
/turf/simulated/floor/carpet,
@@ -2034,9 +1941,7 @@
id = "awaydorm3";
name = "Door Bolt Control";
normaldoorcontrol = 1;
- pixel_x = 0;
pixel_y = 25;
- req_access_txt = "0";
specialfunctions = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -2125,7 +2030,6 @@
/obj/machinery/light/small,
/obj/machinery/alarm/monitor{
dir = 1;
- frequency = 1439;
locked = 0;
pixel_y = -23;
req_access = null
@@ -2139,15 +2043,12 @@
"fm" = (
/obj/structure/table/wood,
/obj/machinery/newscaster{
- pixel_x = 0;
pixel_y = -28
},
/turf/simulated/floor/carpet,
/area/awaymission/UO71/plaza)
"fn" = (
-/obj/item/twohanded/required/kirbyplants{
- layer = 5
- },
+/obj/item/twohanded/required/kirbyplants,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 8;
@@ -2156,7 +2057,6 @@
/area/awaymission/UO71/plaza)
"fo" = (
/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
pixel_y = -28
},
/obj/effect/decal/cleanable/dirt,
@@ -2165,7 +2065,6 @@
"fp" = (
/obj/machinery/firealarm{
dir = 1;
- pixel_x = 0;
pixel_y = -24
},
/obj/machinery/camera{
@@ -2189,7 +2088,6 @@
/obj/structure/sign/deathsposal{
desc = "A warning sign which reads 'DISPOSAL: LEADS TO EXTERIOR'";
name = "\improper DISPOSAL: LEADS TO EXTERIOR";
- pixel_x = 0;
pixel_y = -32
},
/turf/simulated/floor/plasteel{
@@ -2219,8 +2117,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -2262,16 +2159,14 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 5
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
+ dir = 5
},
/turf/simulated/floor/plating,
/area/awaymission/UO71/centralhall)
@@ -2280,8 +2175,7 @@
dir = 10
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10;
- level = 1
+ dir = 10
},
/turf/simulated/floor/plating,
/area/awaymission/UO71/centralhall)
@@ -2447,8 +2341,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -2476,7 +2369,6 @@
"gf" = (
/obj/machinery/camera{
c_tag = "Research Lab";
- dir = 2;
network = list("UO71")
},
/turf/simulated/floor/vault,
@@ -2494,12 +2386,8 @@
/area/awaymission/UO71/gateway)
"gi" = (
/obj/structure/table,
-/obj/item/storage/toolbox/mechanical{
- pixel_x = 0;
- pixel_y = 0
- },
+/obj/item/storage/toolbox/mechanical,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitehall"
},
/area/awaymission/UO71/science)
@@ -2514,7 +2402,6 @@
amount = 23
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitehall"
},
/area/awaymission/UO71/science)
@@ -2594,8 +2481,6 @@
/area/awaymission/UO71/science)
"gw" = (
/obj/machinery/firealarm{
- dir = 2;
- pixel_x = 0;
pixel_y = 24
},
/obj/item/robot_parts/l_arm,
@@ -2612,14 +2497,12 @@
/area/awaymission/UO71/prince)
"gy" = (
/obj/machinery/alarm/monitor{
- frequency = 1439;
locked = 0;
pixel_y = 23;
req_access = null
},
/obj/machinery/camera{
c_tag = "Research Lab";
- dir = 2;
network = list("UO71")
},
/turf/simulated/floor/plasteel{
@@ -2659,10 +2542,8 @@
"gC" = (
/obj/machinery/alarm/monitor{
dir = 8;
- frequency = 1439;
locked = 0;
pixel_x = 23;
- pixel_y = 0;
req_access = null
},
/obj/machinery/atmospherics/unary/vent_pump{
@@ -2707,7 +2588,6 @@
"gH" = (
/obj/structure/table/reinforced,
/obj/machinery/computer/security/telescreen/entertainment{
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/plasteel{
@@ -2736,9 +2616,7 @@
},
/area/awaymission/UO71/centralhall)
"gL" = (
-/obj/machinery/vending/boozeomat{
- req_access_txt = "0"
- },
+/obj/machinery/vending/boozeomat,
/turf/simulated/floor/plasteel{
icon_state = "bar"
},
@@ -2756,8 +2634,7 @@
/area/awaymission/UO71/centralhall)
"gN" = (
/obj/structure/extinguisher_cabinet{
- pixel_x = -25;
- pixel_y = 0
+ pixel_x = -25
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
@@ -2776,10 +2653,8 @@
"gP" = (
/obj/machinery/alarm/monitor{
dir = 8;
- frequency = 1439;
locked = 0;
pixel_x = 23;
- pixel_y = 0;
req_access = null
},
/obj/machinery/camera{
@@ -2824,11 +2699,8 @@
},
/area/awaymission/UO71/gateway)
"gT" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/obj/structure/chair{
- icon_state = "chair";
dir = 8
},
/turf/simulated/floor/plasteel{
@@ -2837,7 +2709,6 @@
/area/awaymission/UO71/gateway)
"gV" = (
/obj/structure/chair{
- icon_state = "chair";
dir = 8
},
/obj/effect/decal/cleanable/dirt,
@@ -2894,9 +2765,7 @@
/turf/simulated/floor/plasteel,
/area/awaymission/UO71/gateway)
"hc" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -2904,10 +2773,8 @@
"hd" = (
/obj/machinery/alarm/monitor{
dir = 4;
- frequency = 1439;
locked = 0;
pixel_x = -23;
- pixel_y = 0;
req_access = null
},
/obj/machinery/camera{
@@ -2944,7 +2811,6 @@
/area/awaymission/UO71/centralhall)
"hh" = (
/obj/structure/chair{
- icon_state = "chair";
dir = 8
},
/turf/simulated/floor/plasteel{
@@ -2998,8 +2864,7 @@
"hn" = (
/obj/structure/table,
/obj/item/reagent_containers/food/condiment/saltshaker{
- pixel_x = -3;
- pixel_y = 0
+ pixel_x = -3
},
/obj/item/reagent_containers/food/condiment/peppermill{
pixel_x = 3
@@ -3062,8 +2927,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
@@ -3094,8 +2958,8 @@
"hw" = (
/obj/machinery/gateway,
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -3105,15 +2969,12 @@
"hx" = (
/obj/machinery/alarm/monitor{
dir = 8;
- frequency = 1439;
locked = 0;
pixel_x = 23;
- pixel_y = 0;
req_access = null
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/chair{
- icon_state = "chair";
dir = 8
},
/turf/simulated/floor/plasteel{
@@ -3122,7 +2983,6 @@
/area/awaymission/UO71/gateway)
"hy" = (
/obj/structure/chair{
- icon_state = "chair";
dir = 8
},
/turf/simulated/floor/plasteel{
@@ -3161,10 +3021,8 @@
"hE" = (
/obj/machinery/alarm/monitor{
dir = 8;
- frequency = 1439;
locked = 0;
pixel_x = 23;
- pixel_y = 0;
req_access = null
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
@@ -3217,7 +3075,6 @@
/area/awaymission/UO71/centralhall)
"hL" = (
/obj/structure/chair{
- icon_state = "chair";
dir = 8
},
/obj/effect/decal/cleanable/dirt,
@@ -3310,8 +3167,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/machinery/door/window{
dir = 2;
@@ -3328,7 +3184,6 @@
"hZ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/chair{
- icon_state = "chair";
dir = 8
},
/obj/effect/decal/cleanable/dirt,
@@ -3370,14 +3225,12 @@
/area/awaymission/UO71/science)
"ih" = (
/obj/machinery/alarm/monitor{
- frequency = 1439;
locked = 0;
pixel_y = 23;
req_access = null
},
/obj/machinery/camera{
c_tag = "Gateway Ready Room";
- dir = 2;
network = list("UO71")
},
/obj/structure/table,
@@ -3442,9 +3295,7 @@
},
/area/awaymission/UO71/centralhall)
"ip" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
@@ -3490,8 +3341,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -3528,8 +3378,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel,
/area/awaymission/UO71/gateway)
@@ -3554,24 +3403,15 @@
icon_state = "white"
},
/area/awaymission/UO71/science)
-"iA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
- },
-/turf/simulated/wall,
-/area/awaymission/UO71/gateway)
"iB" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/mineral/random/labormineral,
/area/awaymission/UO71/outside)
"iE" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/structure/chair{
- icon_state = "chair";
dir = 8
},
/turf/simulated/floor/plasteel{
@@ -3583,7 +3423,6 @@
dir = 4
},
/obj/structure/chair{
- icon_state = "chair";
dir = 8
},
/turf/simulated/floor/plasteel{
@@ -3631,8 +3470,7 @@
"iS" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/awaymission/UO71/centralhall)
@@ -3642,10 +3480,8 @@
},
/obj/machinery/alarm/monitor{
dir = 4;
- frequency = 1439;
locked = 0;
pixel_x = -23;
- pixel_y = 0;
req_access = null
},
/turf/simulated/floor/plasteel{
@@ -3654,8 +3490,7 @@
/area/awaymission/UO71/centralhall)
"iU" = (
/obj/machinery/computer/security/telescreen/entertainment{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/machinery/light/small{
dir = 4
@@ -3680,7 +3515,6 @@
/obj/structure/sign/deathsposal{
desc = "A warning sign which reads 'DISPOSAL: LEADS TO EXTERIOR'";
name = "\improper DISPOSAL: LEADS TO EXTERIOR";
- pixel_x = 0;
pixel_y = -32
},
/turf/simulated/floor/plasteel{
@@ -3708,8 +3542,8 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
@@ -3797,10 +3631,8 @@
"jj" = (
/obj/machinery/atmospherics/unary/vent_pump{
dir = 1;
- external_pressure_bound = 101.325;
icon_state = "weld";
on = 1;
- pressure_checks = 1;
welded = 1
},
/obj/machinery/light/small{
@@ -3819,10 +3651,7 @@
"jo" = (
/obj/structure/table,
/obj/item/folder/white,
-/obj/item/disk/tech_disk{
- pixel_x = 0;
- pixel_y = 0
- },
+/obj/item/disk/tech_disk,
/obj/item/disk/design_disk,
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -3872,8 +3701,7 @@
"jv" = (
/obj/machinery/door/window/southright{
name = "Bar Door";
- req_access_txt = "271";
- req_one_access_txt = "0"
+ req_access_txt = "271"
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
@@ -3914,8 +3742,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -3972,10 +3799,8 @@
"jJ" = (
/obj/machinery/alarm/monitor{
dir = 8;
- frequency = 1439;
locked = 0;
pixel_x = 23;
- pixel_y = 0;
req_access = null
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
@@ -3998,8 +3823,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/airlock/research{
name = "Research Lab";
- req_access_txt = "271";
- req_one_access_txt = "0"
+ req_access_txt = "271"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
@@ -4022,8 +3846,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -4033,7 +3856,6 @@
/area/awaymission/UO71/science)
"jR" = (
/obj/structure/chair{
- icon_state = "chair";
dir = 4
},
/turf/simulated/floor/plasteel{
@@ -4057,15 +3879,14 @@
/area/awaymission/UO71/centralhall)
"jU" = (
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/obj/machinery/power/apc/noalarm{
cell_type = 15000;
dir = 1;
locked = 0;
name = "UO71 Bar APC";
- pixel_x = 0;
pixel_y = 25;
req_access = null;
start_charge = 100
@@ -4083,12 +3904,11 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/disposalpipe/junction{
- icon_state = "pipe-j2";
- dir = 2
+ dir = 2;
+ icon_state = "pipe-j2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -4105,8 +3925,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/light/small{
dir = 1
@@ -4123,8 +3942,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -4141,8 +3959,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -4150,10 +3967,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
- req_one_access_txt = "0"
- },
+/obj/machinery/door/airlock/maintenance,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -4183,8 +3997,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -4229,8 +4042,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/machinery/door/airlock/command{
name = "Gateway";
@@ -4275,8 +4087,8 @@
/obj/effect/decal/cleanable/dirt,
/obj/item/paper/terrorspiders5,
/turf/simulated/floor/plasteel{
- icon_state = "whitepurple";
- dir = 9
+ dir = 9;
+ icon_state = "whitepurple"
},
/area/awaymission/UO71/science)
"kp" = (
@@ -4285,8 +4097,8 @@
pixel_y = 8
},
/turf/simulated/floor/plasteel{
- icon_state = "whitepurple";
- dir = 5
+ dir = 5;
+ icon_state = "whitepurple"
},
/area/awaymission/UO71/science)
"kq" = (
@@ -4308,11 +4120,8 @@
/area/awaymission/UO71/science)
"ks" = (
/obj/effect/decal/cleanable/dirt,
-/obj/item/twohanded/required/kirbyplants{
- layer = 5
- },
+/obj/item/twohanded/required/kirbyplants,
/obj/machinery/light/small{
- icon_state = "bulb1";
dir = 4
},
/obj/machinery/atmospherics/unary/vent_pump{
@@ -4346,7 +4155,6 @@
/area/awaymission/UO71/centralhall)
"kv" = (
/obj/machinery/alarm/monitor{
- frequency = 1439;
locked = 0;
pixel_y = 23;
req_access = null
@@ -4379,8 +4187,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
@@ -4409,8 +4216,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -4441,7 +4247,6 @@
/area/awaymission/UO71/gateway)
"kF" = (
/obj/structure/chair{
- icon_state = "chair";
dir = 8
},
/obj/effect/decal/cleanable/dirt,
@@ -4467,9 +4272,9 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- icon_state = "whitepurplecorner";
dir = 4;
- heat_capacity = 1e+006
+ heat_capacity = 1e+006;
+ icon_state = "whitepurplecorner"
},
/area/awaymission/UO71/science)
"kJ" = (
@@ -4477,9 +4282,9 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "whitepurplecorner";
dir = 4;
- heat_capacity = 1e+006
+ heat_capacity = 1e+006;
+ icon_state = "whitepurplecorner"
},
/area/awaymission/UO71/science)
"kK" = (
@@ -4491,9 +4296,9 @@
},
/mob/living/simple_animal/hostile/poison/terror_spider/gray,
/turf/simulated/floor/plasteel{
- icon_state = "whitepurplecorner";
dir = 4;
- heat_capacity = 1e+006
+ heat_capacity = 1e+006;
+ icon_state = "whitepurplecorner"
},
/area/awaymission/UO71/science)
"kL" = (
@@ -4501,15 +4306,14 @@
dir = 4
},
/obj/machinery/alarm/monitor{
- frequency = 1439;
locked = 0;
pixel_y = 23;
req_access = null
},
/turf/simulated/floor/plasteel{
- icon_state = "whitepurplecorner";
dir = 4;
- heat_capacity = 1e+006
+ heat_capacity = 1e+006;
+ icon_state = "whitepurplecorner"
},
/area/awaymission/UO71/science)
"kM" = (
@@ -4520,9 +4324,9 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "whitepurplecorner";
dir = 4;
- heat_capacity = 1e+006
+ heat_capacity = 1e+006;
+ icon_state = "whitepurplecorner"
},
/area/awaymission/UO71/science)
"kN" = (
@@ -4531,9 +4335,9 @@
initialize_directions = 14
},
/turf/simulated/floor/plasteel{
- icon_state = "whitepurplecorner";
dir = 4;
- heat_capacity = 1e+006
+ heat_capacity = 1e+006;
+ icon_state = "whitepurplecorner"
},
/area/awaymission/UO71/science)
"kO" = (
@@ -4545,9 +4349,9 @@
dir = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "whitepurplecorner";
dir = 4;
- heat_capacity = 1e+006
+ heat_capacity = 1e+006;
+ icon_state = "whitepurplecorner"
},
/area/awaymission/UO71/science)
"kQ" = (
@@ -4560,16 +4364,14 @@
req_access_txt = "271"
},
/turf/simulated/floor/plasteel{
- icon_state = "whitepurplecorner";
dir = 4;
- heat_capacity = 1e+006
+ heat_capacity = 1e+006;
+ icon_state = "whitepurplecorner"
},
/area/awaymission/UO71/science)
"kR" = (
/obj/structure/closet/firecloset,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/obj/effect/decal/warning_stripes/southwest,
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -4611,18 +4413,16 @@
dir = 4
},
/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
pixel_y = 30
},
/turf/simulated/floor/plasteel{
- icon_state = "whitepurplecorner";
dir = 4;
- heat_capacity = 1e+006
+ heat_capacity = 1e+006;
+ icon_state = "whitepurplecorner"
},
/area/awaymission/UO71/science)
"kX" = (
/obj/machinery/alarm/monitor{
- frequency = 1439;
locked = 0;
pixel_y = 23;
req_access = null
@@ -4634,9 +4434,9 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "whitepurplecorner";
dir = 4;
- heat_capacity = 1e+006
+ heat_capacity = 1e+006;
+ icon_state = "whitepurplecorner"
},
/area/awaymission/UO71/science)
"kZ" = (
@@ -4645,24 +4445,24 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- icon_state = "whitepurplecorner";
dir = 4;
- heat_capacity = 1e+006
+ heat_capacity = 1e+006;
+ icon_state = "whitepurplecorner"
},
/area/awaymission/UO71/science)
"la" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- icon_state = "whitepurplecorner";
dir = 4;
- heat_capacity = 1e+006
+ heat_capacity = 1e+006;
+ icon_state = "whitepurplecorner"
},
/area/awaymission/UO71/science)
"lb" = (
/turf/simulated/floor/plasteel{
- icon_state = "whitepurplecorner";
dir = 4;
- heat_capacity = 1e+006
+ heat_capacity = 1e+006;
+ icon_state = "whitepurplecorner"
},
/area/awaymission/UO71/science)
"lc" = (
@@ -4734,8 +4534,7 @@
/obj/structure/table,
/obj/item/newspaper,
/obj/machinery/newscaster{
- pixel_x = 30;
- pixel_y = 0
+ pixel_x = 30
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
@@ -4762,7 +4561,6 @@
"ln" = (
/obj/machinery/firealarm{
dir = 1;
- pixel_x = 0;
pixel_y = -24
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -4794,7 +4592,6 @@
dir = 5
},
/obj/machinery/newscaster{
- pixel_x = 0;
pixel_y = -28
},
/turf/simulated/floor/plasteel{
@@ -4810,7 +4607,6 @@
},
/obj/machinery/alarm/monitor{
dir = 1;
- frequency = 1439;
locked = 0;
pixel_y = -23;
req_access = null
@@ -4839,8 +4635,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/structure/disposalpipe/junction,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -4883,8 +4678,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel,
/area/awaymission/UO71/gateway)
@@ -4906,8 +4700,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 6
@@ -4918,8 +4711,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
@@ -4928,8 +4720,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/plasteel{
@@ -4940,8 +4731,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/cable{
d1 = 2;
@@ -4955,8 +4745,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -4973,8 +4762,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -4987,14 +4775,12 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/awaymission/UO71/science)
@@ -5002,12 +4788,10 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/awaymission/UO71/science)
@@ -5015,12 +4799,10 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/firealarm{
dir = 1;
- pixel_x = 0;
pixel_y = -24
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -5032,7 +4814,6 @@
network = list("UO71")
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/awaymission/UO71/science)
@@ -5040,15 +4821,12 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/awaymission/UO71/science)
@@ -5056,8 +4834,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -5066,7 +4843,6 @@
dir = 1
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/awaymission/UO71/science)
@@ -5075,8 +4851,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -5086,7 +4861,6 @@
req_access_txt = "271"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/awaymission/UO71/science)
@@ -5094,8 +4868,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -5105,7 +4878,6 @@
wander = 0
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/awaymission/UO71/science)
@@ -5113,8 +4885,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/cable{
d1 = 2;
@@ -5132,7 +4903,6 @@
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/awaymission/UO71/science)
@@ -5143,10 +4913,8 @@
},
/obj/machinery/power/apc/noalarm{
cell_type = 15000;
- dir = 2;
locked = 0;
name = "UO71 Research Division APC";
- pixel_x = 0;
pixel_y = -25;
req_access = null;
start_charge = 100
@@ -5158,7 +4926,6 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/awaymission/UO71/science)
@@ -5166,21 +4933,17 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/disposalpipe/junction{
- dir = 8;
- icon_state = "pipe-j1"
+ dir = 8
},
/obj/machinery/firealarm{
dir = 1;
- pixel_x = 0;
pixel_y = -24
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/awaymission/UO71/science)
@@ -5205,7 +4968,6 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/awaymission/UO71/science)
@@ -5214,7 +4976,6 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/awaymission/UO71/science)
@@ -5224,14 +4985,12 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/awaymission/UO71/science)
"lW" = (
/obj/machinery/firealarm{
dir = 1;
- pixel_x = 0;
pixel_y = -24
},
/obj/machinery/camera{
@@ -5243,13 +5002,11 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/awaymission/UO71/science)
"lX" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/awaymission/UO71/science)
@@ -5258,7 +5015,6 @@
pixel_y = -12
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/awaymission/UO71/science)
@@ -5272,9 +5028,7 @@
},
/area/awaymission/UO71/science)
"ma" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel,
/area/awaymission/UO71/centralhall)
"mb" = (
@@ -5294,7 +5048,6 @@
/area/awaymission/UO71/centralhall)
"md" = (
/obj/structure/chair{
- icon_state = "chair";
dir = 4
},
/obj/effect/decal/cleanable/dirt,
@@ -5305,8 +5058,7 @@
"me" = (
/obj/structure/table,
/obj/item/reagent_containers/food/condiment/saltshaker{
- pixel_x = -3;
- pixel_y = 0
+ pixel_x = -3
},
/obj/item/reagent_containers/food/condiment/peppermill{
pixel_x = 3
@@ -5323,7 +5075,6 @@
/obj/structure/sign/deathsposal{
desc = "A warning sign which reads 'DISPOSAL: LEADS TO EXTERIOR'";
name = "\improper DISPOSAL: LEADS TO EXTERIOR";
- pixel_x = 0;
pixel_y = -32
},
/turf/simulated/floor/plasteel{
@@ -5335,8 +5086,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -5368,8 +5118,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -5388,8 +5137,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -5411,8 +5159,7 @@
"mq" = (
/obj/machinery/door/airlock/research{
name = "Research Lab";
- req_access_txt = "271";
- req_one_access_txt = "0"
+ req_access_txt = "271"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
@@ -5423,8 +5170,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -5471,7 +5217,6 @@
},
/obj/machinery/camera{
c_tag = "Engineering Secure Storage";
- dir = 2;
network = list("UO71")
},
/turf/simulated/floor/plating,
@@ -5505,7 +5250,6 @@
dir = 1
},
/obj/machinery/alarm/monitor{
- frequency = 1439;
locked = 0;
pixel_y = 23;
req_access = null
@@ -5515,8 +5259,7 @@
"mE" = (
/obj/structure/table/wood,
/obj/machinery/newscaster{
- pixel_x = -30;
- pixel_y = 0
+ pixel_x = -30
},
/obj/item/paper/terrorspiders4,
/obj/item/reagent_containers/food/pill/charcoal{
@@ -5548,7 +5291,6 @@
dir = 1
},
/obj/machinery/alarm/monitor{
- frequency = 1439;
locked = 0;
pixel_y = 23;
req_access = null
@@ -5562,8 +5304,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -5612,8 +5353,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -5630,7 +5370,6 @@
/area/awaymission/UO71/gateway)
"mN" = (
/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
pixel_y = -28
},
/obj/structure/rack{
@@ -5651,7 +5390,6 @@
/obj/item/clothing/shoes/magboots,
/obj/machinery/firealarm{
dir = 1;
- pixel_x = 0;
pixel_y = -24
},
/turf/simulated/floor/plasteel,
@@ -5660,10 +5398,8 @@
/obj/structure/cable,
/obj/machinery/power/apc/noalarm{
cell_type = 15000;
- dir = 2;
locked = 0;
name = "UO71 Gateway APC";
- pixel_x = 0;
pixel_y = -25;
req_access = null;
start_charge = 100
@@ -5716,8 +5452,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -5736,7 +5471,6 @@
icon_off = "rdsecureoff";
icon_opened = "rdsecureopen";
icon_state = "rdsecure1";
- locked = 1;
name = "research director's locker";
req_access_txt = "271"
},
@@ -5785,9 +5519,7 @@
/area/awaymission/UO71/science)
"nc" = (
/obj/effect/decal/cleanable/dirt,
-/obj/item/twohanded/required/kirbyplants{
- layer = 5
- },
+/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
dir = 5;
icon_state = "cafeteria"
@@ -5808,9 +5540,7 @@
/obj/item/book/manual/security_space_law,
/obj/machinery/atmospherics/unary/vent_pump{
dir = 1;
- external_pressure_bound = 101.325;
- on = 1;
- pressure_checks = 1
+ on = 1
},
/turf/simulated/floor/plasteel{
dir = 9;
@@ -5845,20 +5575,15 @@
/turf/simulated/floor/plasteel,
/area/awaymission/UO71/centralhall)
"ni" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/obj/machinery/door_control{
id = "awaydorm5";
name = "Door Bolt Control";
normaldoorcontrol = 1;
- pixel_x = 0;
pixel_y = -25;
- req_access_txt = "0";
specialfunctions = 4
},
/obj/structure/chair/wood{
- icon_state = "wooden_chair";
dir = 1
},
/turf/simulated/floor/carpet,
@@ -5886,9 +5611,7 @@
/turf/simulated/floor/carpet,
/area/awaymission/UO71/centralhall)
"nl" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/obj/structure/bed,
/obj/item/bedsheet,
/turf/simulated/floor/carpet,
@@ -5898,9 +5621,7 @@
id = "awaydorm7";
name = "Door Bolt Control";
normaldoorcontrol = 1;
- pixel_x = 0;
pixel_y = -25;
- req_access_txt = "0";
specialfunctions = 4
},
/turf/simulated/floor/carpet,
@@ -5936,7 +5657,6 @@
/area/awaymission/UO71/eng)
"ns" = (
/obj/structure/chair/comfy/black{
- icon_state = "comfychair";
dir = 4
},
/turf/simulated/floor/plasteel{
@@ -5946,7 +5666,6 @@
/area/awaymission/UO71/centralhall)
"nt" = (
/obj/structure/chair/comfy/black{
- icon_state = "comfychair";
dir = 8
},
/obj/effect/decal/cleanable/dirt,
@@ -5983,8 +5702,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -6008,9 +5726,7 @@
"nA" = (
/obj/machinery/atmospherics/unary/vent_pump{
dir = 1;
- external_pressure_bound = 101.325;
- on = 1;
- pressure_checks = 1
+ on = 1
},
/turf/simulated/floor/plasteel{
dir = 5;
@@ -6038,9 +5754,9 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "whitepurplecorner";
dir = 4;
- heat_capacity = 1e+006
+ heat_capacity = 1e+006;
+ icon_state = "whitepurplecorner"
},
/area/awaymission/UO71/science)
"nD" = (
@@ -6102,8 +5818,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -6120,8 +5835,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -6133,8 +5847,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -6142,10 +5855,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
- req_one_access_txt = "0"
- },
+/obj/machinery/door/airlock/maintenance,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -6175,8 +5885,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -6262,8 +5971,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
@@ -6323,8 +6031,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plating,
/area/awaymission/UO71/eng)
@@ -6339,8 +6046,7 @@
"od" = (
/obj/machinery/door/airlock/research{
name = "Research Lab";
- req_access_txt = "271";
- req_one_access_txt = "0"
+ req_access_txt = "271"
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -6368,8 +6074,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -6379,10 +6084,8 @@
"oh" = (
/obj/machinery/alarm/monitor{
dir = 4;
- frequency = 1439;
locked = 0;
pixel_x = -23;
- pixel_y = 0;
req_access = null
},
/obj/machinery/light/small{
@@ -6425,8 +6128,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/machinery/light/small{
dir = 4
@@ -6440,8 +6142,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -6458,8 +6159,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -6480,7 +6180,6 @@
},
/obj/machinery/computer/security/telescreen{
desc = "Used for monitoring the research division and the labs within.";
- dir = 2;
name = "research monitor";
network = list("UO71")
},
@@ -6527,10 +6226,8 @@
"or" = (
/obj/machinery/alarm/monitor{
dir = 4;
- frequency = 1439;
locked = 0;
pixel_x = -23;
- pixel_y = 0;
req_access = null
},
/obj/item/radio/off,
@@ -6560,8 +6257,7 @@
icon_state = "pipe-c"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
+ dir = 5
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -6575,10 +6271,8 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/alarm/monitor{
dir = 4;
- frequency = 1439;
locked = 0;
pixel_x = -23;
- pixel_y = 0;
req_access = null
},
/turf/simulated/floor/plasteel{
@@ -6590,8 +6284,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -6608,8 +6301,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -6627,8 +6319,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -6636,7 +6327,6 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/machinery/camera{
c_tag = "Dormitories";
- dir = 2;
network = list("UO71")
},
/turf/simulated/floor/plasteel{
@@ -6649,8 +6339,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -6670,8 +6359,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/light/small{
dir = 1
@@ -6693,8 +6381,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -6709,8 +6396,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -6725,11 +6411,9 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/alarm/monitor{
- frequency = 1439;
locked = 0;
pixel_y = 23;
req_access = null
@@ -6751,8 +6435,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -6770,8 +6453,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -6788,8 +6470,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -6809,8 +6490,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -6836,8 +6516,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -6854,8 +6533,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/disposalpipe/junction{
dir = 2;
@@ -6892,12 +6570,11 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/structure/disposalpipe/junction{
- icon_state = "pipe-y";
- dir = 8
+ dir = 8;
+ icon_state = "pipe-y"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/cleanable/dirt,
@@ -6907,8 +6584,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -6923,8 +6599,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/plating,
/area/awaymission/UO71/eng)
@@ -6934,8 +6609,7 @@
charge = 5e+006;
input_level = 30000;
inputting = 0;
- output_level = 25000;
- outputting = 1
+ output_level = 25000
},
/turf/simulated/floor/plating,
/area/awaymission/UO71/eng)
@@ -6945,8 +6619,7 @@
charge = 5e+006;
input_level = 10000;
inputting = 0;
- output_level = 25000;
- outputting = 1
+ output_level = 25000
},
/turf/simulated/floor/plating,
/area/awaymission/UO71/eng)
@@ -7034,7 +6707,6 @@
icon_off = "secoff";
icon_opened = "secopen";
icon_state = "sec1";
- locked = 1;
name = "security officer's locker";
req_access_txt = "271"
},
@@ -7065,8 +6737,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -7084,7 +6755,6 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/awaymission/UO71/centralhall)
@@ -7114,7 +6784,6 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
pixel_y = -28
},
/turf/simulated/floor/plasteel{
@@ -7125,7 +6794,6 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/awaymission/UO71/centralhall)
@@ -7138,7 +6806,6 @@
},
/obj/machinery/firealarm{
dir = 1;
- pixel_x = 0;
pixel_y = -24
},
/turf/simulated/floor/plasteel{
@@ -7157,7 +6824,6 @@
"pn" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/awaymission/UO71/centralhall)
@@ -7200,15 +6866,12 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/machinery/alarm/monitor{
dir = 8;
- frequency = 1439;
locked = 0;
pixel_x = 23;
- pixel_y = 0;
req_access = null
},
/obj/machinery/light/small{
@@ -7246,8 +6909,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/machinery/light/small{
dir = 8
@@ -7257,7 +6919,6 @@
/area/awaymission/UO71/eng)
"px" = (
/obj/machinery/power/terminal{
- icon_state = "term";
dir = 1
},
/obj/machinery/power/port_gen/pacman/super{
@@ -7270,14 +6931,13 @@
icon_state = "0-8"
},
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/turf/simulated/floor/plating,
/area/awaymission/UO71/eng)
"py" = (
/obj/machinery/power/terminal{
- icon_state = "term";
dir = 1
},
/obj/machinery/power/port_gen/pacman{
@@ -7285,8 +6945,8 @@
name = "P.A.C.M.A.N.-type portable generator"
},
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/turf/simulated/floor/plating,
/area/awaymission/UO71/eng)
@@ -7294,8 +6954,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/machinery/light/small{
dir = 4
@@ -7304,7 +6963,6 @@
/area/awaymission/UO71/eng)
"pA" = (
/obj/machinery/power/terminal{
- icon_state = "term";
dir = 1
},
/obj/machinery/power/port_gen/pacman{
@@ -7350,7 +7008,6 @@
/obj/structure/sign/deathsposal{
desc = "A warning sign which reads 'DISPOSAL: LEADS TO EXTERIOR'";
name = "\improper DISPOSAL: LEADS TO EXTERIOR";
- pixel_x = 0;
pixel_y = -32
},
/turf/simulated/floor/plasteel{
@@ -7389,9 +7046,7 @@
},
/area/awaymission/UO71/centralhall)
"pJ" = (
-/obj/item/twohanded/required/kirbyplants{
- layer = 5
- },
+/obj/item/twohanded/required/kirbyplants,
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
@@ -7430,8 +7085,7 @@
/area/awaymission/UO71/centralhall)
"pN" = (
/obj/machinery/door/airlock{
- name = "Unisex Restrooms";
- req_access_txt = "0"
+ name = "Unisex Restrooms"
},
/turf/simulated/floor/plasteel{
icon_state = "freezerfloor"
@@ -7439,15 +7093,11 @@
/area/awaymission/UO71/centralhall)
"pO" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
- req_one_access_txt = "0"
- },
+/obj/machinery/door/airlock/maintenance,
/turf/simulated/floor/plating,
/area/awaymission/UO71/centralhall)
"pP" = (
/obj/machinery/atmospherics/unary/vent_pump/high_volume{
- dir = 2;
external_pressure_bound = 0;
frequency = 1443;
icon_state = "in";
@@ -7461,7 +7111,6 @@
/area/awaymission/UO71/eng)
"pQ" = (
/obj/machinery/atmospherics/unary/outlet_injector/on{
- dir = 2;
frequency = 1443;
id = "UO71_air_in"
},
@@ -7508,8 +7157,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plating,
/area/awaymission/UO71/eng)
@@ -7528,8 +7176,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
/obj/effect/decal/cleanable/dirt,
@@ -7559,8 +7206,7 @@
"qf" = (
/obj/machinery/door/airlock/medical/glass{
id_tag = null;
- name = "Medical Storage";
- req_access_txt = "0"
+ name = "Medical Storage"
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -7570,8 +7216,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -7594,8 +7239,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -7628,17 +7272,13 @@
"ql" = (
/obj/machinery/atmospherics/unary/vent_pump{
dir = 1;
- external_pressure_bound = 101.325;
- on = 1;
- pressure_checks = 1
+ on = 1
},
/obj/machinery/door_control{
id = "awaydorm4";
name = "Door Bolt Control";
normaldoorcontrol = 1;
pixel_x = -25;
- pixel_y = 0;
- req_access_txt = "0";
specialfunctions = 4
},
/turf/simulated/floor/carpet,
@@ -7652,17 +7292,13 @@
"qn" = (
/obj/machinery/atmospherics/unary/vent_pump{
dir = 1;
- external_pressure_bound = 101.325;
- on = 1;
- pressure_checks = 1
+ on = 1
},
/obj/machinery/door_control{
id = "awaydorm6";
name = "Door Bolt Control";
normaldoorcontrol = 1;
pixel_x = 25;
- pixel_y = 0;
- req_access_txt = "0";
specialfunctions = 4
},
/turf/simulated/floor/carpet,
@@ -7694,7 +7330,6 @@
/area/awaymission/UO71/centralhall)
"qr" = (
/obj/machinery/meter{
- frequency = 1443;
id = "UO71_mair_out_meter";
layer = 3.3;
name = "Mixed Air Tank Out"
@@ -7705,7 +7340,6 @@
"qs" = (
/obj/machinery/atmospherics/pipe/simple/visible/cyan,
/obj/machinery/meter{
- frequency = 1443;
id = "UO71_mair_in_meter";
layer = 3.3;
name = "Mixed Air Tank In"
@@ -7755,9 +7389,7 @@
},
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
- pixel_x = 11;
- pixel_y = 0
+ pixel_x = 11
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
@@ -7768,8 +7400,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -7793,13 +7424,11 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/machinery/door/airlock/engineering/glass{
name = "SMES Room";
- req_access_txt = "271";
- req_one_access_txt = "0"
+ req_access_txt = "271"
},
/turf/simulated/floor/plating,
/area/awaymission/UO71/eng)
@@ -7816,9 +7445,7 @@
},
/area/awaymission/UO71/science)
"qC" = (
-/obj/machinery/atmospherics/unary/thermomachine/freezer/on/server{
- dir = 2
- },
+/obj/machinery/atmospherics/unary/thermomachine/freezer/on/server,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -7854,7 +7481,6 @@
"qH" = (
/obj/structure/table,
/obj/machinery/alarm/monitor{
- frequency = 1439;
locked = 0;
pixel_y = 23;
req_access = null
@@ -7862,7 +7488,6 @@
/obj/item/hand_labeler,
/obj/item/clothing/accessory/stethoscope,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitecorner"
},
/area/awaymission/UO71/medical)
@@ -7899,10 +7524,8 @@
},
/obj/machinery/alarm/monitor{
dir = 8;
- frequency = 1439;
locked = 0;
pixel_x = 23;
- pixel_y = 0;
req_access = null
},
/turf/simulated/floor/carpet,
@@ -7910,10 +7533,8 @@
"qN" = (
/obj/machinery/alarm/monitor{
dir = 8;
- frequency = 1439;
locked = 0;
pixel_x = 23;
- pixel_y = 0;
req_access = null
},
/turf/simulated/floor/carpet,
@@ -7931,10 +7552,8 @@
},
/obj/machinery/alarm/monitor{
dir = 4;
- frequency = 1439;
locked = 0;
pixel_x = -23;
- pixel_y = 0;
req_access = null
},
/turf/simulated/floor/plasteel{
@@ -7944,9 +7563,7 @@
"qQ" = (
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
- pixel_x = 11;
- pixel_y = 0
+ pixel_x = 11
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
@@ -7972,8 +7589,8 @@
/area/awaymission/UO71/eng)
"qU" = (
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/obj/machinery/computer/monitor/secret{
name = "primary power monitoring console"
@@ -7998,8 +7615,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/cable{
d1 = 2;
@@ -8035,7 +7651,6 @@
icon_off = "secureengoff";
icon_opened = "secureengopen";
icon_state = "secureeng1";
- locked = 1;
name = "engineer's locker";
req_access_txt = "271"
},
@@ -8072,8 +7687,7 @@
},
/obj/machinery/alarm/monitor/server{
dir = 4;
- pixel_x = -22;
- pixel_y = 0
+ pixel_x = -22
},
/obj/machinery/r_n_d/server/core{
id_with_download_string = "3";
@@ -8103,7 +7717,6 @@
"rc" = (
/obj/machinery/camera{
c_tag = "Atmospherics";
- dir = 2;
network = list("UO71")
},
/obj/structure/table,
@@ -8112,8 +7725,6 @@
pixel_y = 5
},
/obj/machinery/firealarm{
- dir = 2;
- pixel_x = 0;
pixel_y = 24
},
/obj/item/multitool,
@@ -8142,8 +7753,6 @@
node1_concentration = 0.8;
node2_concentration = 0.2;
on = 1;
- pixel_x = 0;
- pixel_y = 0;
req_access = null;
target_pressure = 4500
},
@@ -8164,8 +7773,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -8228,7 +7836,6 @@
/area/awaymission/UO71/medical)
"rq" = (
/obj/structure/chair{
- icon_state = "chair";
dir = 8
},
/obj/effect/landmark/damageturf,
@@ -8240,7 +7847,6 @@
"rt" = (
/obj/structure/table/wood,
/obj/machinery/newscaster{
- pixel_x = 0;
pixel_y = -28
},
/obj/item/pen,
@@ -8255,8 +7861,7 @@
"rv" = (
/obj/structure/table/wood,
/obj/machinery/newscaster{
- pixel_x = -30;
- pixel_y = 0
+ pixel_x = -30
},
/turf/simulated/floor/carpet,
/area/awaymission/UO71/centralhall)
@@ -8286,9 +7891,7 @@
},
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
- pixel_x = 11;
- pixel_y = 0
+ pixel_x = 11
},
/turf/simulated/floor/plasteel{
icon_state = "freezerfloor"
@@ -8301,7 +7904,6 @@
"rA" = (
/obj/machinery/alarm/monitor{
dir = 1;
- frequency = 1439;
locked = 0;
pixel_y = -23;
req_access = null
@@ -8316,8 +7918,7 @@
"rB" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/extinguisher_cabinet{
- pixel_x = -25;
- pixel_y = 0
+ pixel_x = -25
},
/turf/simulated/floor/plasteel,
/area/awaymission/UO71/centralhall)
@@ -8326,7 +7927,6 @@
dir = 4
},
/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
pixel_y = -30
},
/obj/effect/decal/cleanable/dirt,
@@ -8338,9 +7938,7 @@
/turf/simulated/floor/plating,
/area/awaymission/UO71/centralhall)
"rE" = (
-/obj/item/twohanded/required/kirbyplants{
- layer = 5
- },
+/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
dir = 5;
icon_state = "yellow"
@@ -8357,8 +7955,6 @@
/area/awaymission/UO71/eng)
"rH" = (
/obj/machinery/firealarm{
- dir = 2;
- pixel_x = 0;
pixel_y = 24
},
/obj/structure/dispenser{
@@ -8377,7 +7973,6 @@
/obj/item/storage/box,
/obj/item/storage/box,
/obj/structure/reagent_dispensers/peppertank{
- pixel_x = 0;
pixel_y = 30
},
/turf/simulated/floor/plasteel{
@@ -8391,20 +7986,16 @@
},
/obj/structure/table,
/obj/item/tank/internals/emergency_oxygen{
- pixel_x = -8;
- pixel_y = 0
+ pixel_x = -8
},
/obj/item/tank/internals/emergency_oxygen{
- pixel_x = -8;
- pixel_y = 0
+ pixel_x = -8
},
/obj/item/clothing/mask/breath{
- pixel_x = 4;
- pixel_y = 0
+ pixel_x = 4
},
/obj/item/clothing/mask/breath{
- pixel_x = 4;
- pixel_y = 0
+ pixel_x = 4
},
/obj/machinery/newscaster{
pixel_y = 32
@@ -8417,16 +8008,14 @@
/area/awaymission/UO71/eng)
"rK" = (
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/obj/machinery/power/apc/noalarm{
cell_type = 15000;
dir = 8;
- locked = 1;
name = "UO71 Engineering APC";
pixel_x = -25;
- pixel_y = 0;
req_access = null;
start_charge = 100
},
@@ -8448,8 +8037,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/structure/cable{
d1 = 1;
@@ -8458,23 +8046,14 @@
},
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
dir = 6;
- initialize_directions = 6;
- level = 2
- },
-/turf/simulated/floor/plasteel,
-/area/awaymission/UO71/eng)
-"rN" = (
-/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 4;
- level = 2
+ initialize_directions = 6
},
/turf/simulated/floor/plasteel,
/area/awaymission/UO71/eng)
"rO" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 4;
- level = 2
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/awaymission/UO71/eng)
@@ -8549,7 +8128,6 @@
/obj/effect/decal/cleanable/dirt,
/obj/machinery/firealarm{
dir = 1;
- pixel_x = 0;
pixel_y = -24
},
/turf/simulated/floor/plasteel{
@@ -8624,8 +8202,7 @@
"sh" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/structure/table,
/obj/machinery/recharger{
@@ -8695,8 +8272,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -8719,8 +8295,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/public/glass{
@@ -8732,8 +8307,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -8751,8 +8325,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -8770,11 +8343,9 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/alarm/monitor{
- frequency = 1439;
locked = 0;
pixel_y = 23;
req_access = null
@@ -8794,8 +8365,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -8812,8 +8382,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -8821,9 +8390,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "yellowcorner"
@@ -8834,8 +8401,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -8844,8 +8410,7 @@
dir = 4
},
/obj/machinery/door/airlock/engineering/glass{
- name = "Engineering Reception";
- req_access_txt = "0"
+ name = "Engineering Reception"
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
@@ -8854,8 +8419,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -8872,8 +8436,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -8885,8 +8448,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -8998,11 +8560,9 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/machinery/meter{
- frequency = 1443;
id = "UO71_dloop_atm_meter";
name = "Distribution Loop"
},
@@ -9019,8 +8579,7 @@
"sJ" = (
/obj/machinery/atmospherics/binary/pump{
dir = 8;
- name = "Mix to Distro";
- on = 0
+ name = "Mix to Distro"
},
/turf/simulated/floor/plasteel,
/area/awaymission/UO71/eng)
@@ -9106,10 +8665,8 @@
/obj/machinery/power/apc/noalarm{
cell_type = 15000;
dir = 8;
- locked = 1;
name = "UO71 Medical APC";
pixel_x = -25;
- pixel_y = 0;
req_access = null;
start_charge = 100
},
@@ -9158,7 +8715,6 @@
/obj/effect/decal/cleanable/dirt,
/obj/machinery/firealarm{
dir = 1;
- pixel_x = 0;
pixel_y = -24
},
/obj/machinery/atmospherics/unary/vent_pump{
@@ -9208,8 +8764,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
@@ -9229,9 +8784,7 @@
"tc" = (
/obj/machinery/atmospherics/unary/vent_pump{
dir = 1;
- external_pressure_bound = 101.325;
- on = 1;
- pressure_checks = 1
+ on = 1
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -9248,7 +8801,6 @@
},
/obj/machinery/firealarm{
dir = 1;
- pixel_x = 0;
pixel_y = -24
},
/turf/simulated/floor/plasteel{
@@ -9277,8 +8829,7 @@
dir = 4
},
/obj/machinery/door/airlock/engineering/glass{
- name = "Engineering Reception";
- req_access_txt = "0"
+ name = "Engineering Reception"
},
/turf/simulated/floor/plasteel,
/area/awaymission/UO71/eng)
@@ -9312,8 +8863,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
@@ -9331,9 +8881,7 @@
},
/obj/machinery/atmospherics/unary/vent_pump{
dir = 1;
- external_pressure_bound = 101.325;
- on = 1;
- pressure_checks = 1
+ on = 1
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
@@ -9373,9 +8921,7 @@
/turf/simulated/floor/plasteel,
/area/awaymission/UO71/eng)
"tp" = (
-/obj/machinery/atmospherics/binary/valve{
- dir = 2
- },
+/obj/machinery/atmospherics/binary/valve,
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plating,
/area/awaymission/UO71/science)
@@ -9390,8 +8936,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/visible/purple{
dir = 1
@@ -9400,7 +8945,6 @@
/area/awaymission/UO71/eng)
"ts" = (
/obj/machinery/atmospherics/binary/pump{
- dir = 2;
name = "Mix to Filter";
on = 1
},
@@ -9435,8 +8979,7 @@
layer = 3.3
},
/obj/machinery/atmospherics/pipe/simple/visible/green{
- dir = 4;
- level = 2
+ dir = 4
},
/turf/simulated/wall,
/area/awaymission/UO71/eng)
@@ -9502,7 +9045,6 @@
dir = 4
},
/obj/machinery/alarm/monitor{
- frequency = 1439;
locked = 0;
pixel_y = 23;
req_access = null
@@ -9516,8 +9058,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -9563,8 +9104,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/machinery/light/small{
dir = 4
@@ -9583,9 +9123,7 @@
/turf/simulated/floor/plasteel,
/area/awaymission/UO71/centralhall)
"tS" = (
-/obj/machinery/atmospherics/unary/portables_connector{
- dir = 2
- },
+/obj/machinery/atmospherics/unary/portables_connector,
/obj/structure/window/reinforced{
dir = 4;
layer = 2.9
@@ -9597,9 +9135,7 @@
},
/area/awaymission/UO71/eng)
"tT" = (
-/obj/machinery/atmospherics/unary/portables_connector{
- dir = 2
- },
+/obj/machinery/atmospherics/unary/portables_connector,
/obj/machinery/portable_atmospherics/pump,
/turf/simulated/floor/plasteel{
dir = 1;
@@ -9619,8 +9155,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -9686,8 +9221,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/visible/purple{
dir = 4;
@@ -9704,7 +9238,6 @@
/area/awaymission/UO71/eng)
"ud" = (
/obj/machinery/meter{
- frequency = 1443;
id = "UO71_wloop_atm_meter";
name = "Waste Loop"
},
@@ -9732,8 +9265,7 @@
icon_state = "pipe-c"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 5
@@ -9765,15 +9297,13 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -9785,8 +9315,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/machinery/door/poddoor/preopen{
id_tag = "UO71_Engineering";
@@ -9802,8 +9331,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -9812,8 +9340,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
},
/turf/simulated/floor/plating,
/area/awaymission/UO71/science)
@@ -9821,8 +9348,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -9845,14 +9371,12 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/obj/structure/disposalpipe/junction{
- icon_state = "pipe-j1";
dir = 4
},
/obj/structure/cable{
@@ -9872,8 +9396,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -9941,10 +9464,8 @@
"uy" = (
/obj/machinery/atmospherics/unary/vent_pump{
dir = 1;
- external_pressure_bound = 101.325;
icon_state = "weld";
on = 1;
- pressure_checks = 1;
welded = 1
},
/turf/simulated/floor/plasteel,
@@ -9957,8 +9478,7 @@
/area/awaymission/UO71/bridge)
"uA" = (
/obj/machinery/shower{
- dir = 1;
- pixel_y = 0
+ dir = 1
},
/obj/item/bikehorn/rubberducky,
/turf/simulated/floor/plasteel{
@@ -9977,8 +9497,7 @@
/area/awaymission/UO71/eng)
"uD" = (
/obj/machinery/shower{
- dir = 1;
- pixel_y = 0
+ dir = 1
},
/turf/simulated/floor/plasteel{
icon_state = "freezerfloor"
@@ -9988,8 +9507,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
@@ -10010,8 +9528,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -10047,7 +9564,6 @@
icon_off = "secoff";
icon_opened = "secopen";
icon_state = "sec1";
- locked = 1;
name = "security officer's locker";
req_access_txt = "271"
},
@@ -10084,8 +9600,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/binary/pump{
dir = 1;
@@ -10178,8 +9693,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -10198,8 +9712,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 9
@@ -10236,10 +9749,7 @@
/turf/simulated/floor/plasteel,
/area/awaymission/UO71/eng)
"vb" = (
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
- req_one_access_txt = "0"
- },
+/obj/machinery/door/airlock/maintenance,
/turf/simulated/floor/plating,
/area/awaymission/UO71/centralhall)
"vc" = (
@@ -10287,8 +9797,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
@@ -10309,8 +9818,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/machinery/door/airlock/engineering{
name = "Engineering";
@@ -10327,18 +9835,14 @@
/turf/simulated/wall/rust,
/area/awaymission/UO71/mining)
"vm" = (
-/obj/machinery/atmospherics/binary/valve{
- dir = 2
- },
+/obj/machinery/atmospherics/binary/valve,
/turf/simulated/floor/plating,
/area/awaymission/UO71/science)
"vn" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/vending/engivend{
- req_access_txt = "0"
- },
+/obj/machinery/vending/engivend,
/obj/machinery/camera{
c_tag = "Engineering Foyer";
dir = 1;
@@ -10358,7 +9862,6 @@
"vp" = (
/obj/machinery/atmospherics/unary/cryo_cell,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitehall"
},
/area/awaymission/UO71/medical)
@@ -10367,14 +9870,12 @@
/obj/item/defibrillator,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitecorner"
},
/area/awaymission/UO71/medical)
"vr" = (
/obj/machinery/computer/operating,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitehall"
},
/area/awaymission/UO71/medical)
@@ -10384,7 +9885,6 @@
dir = 1
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitehall"
},
/area/awaymission/UO71/medical)
@@ -10429,8 +9929,7 @@
/area/awaymission/UO71/centralhall)
"vz" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/structure/chair/office/dark{
dir = 8
@@ -10460,8 +9959,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -10545,9 +10043,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/item/twohanded/required/kirbyplants{
- layer = 5
- },
+/obj/item/twohanded/required/kirbyplants,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
@@ -10555,10 +10051,8 @@
"vL" = (
/obj/machinery/alarm/monitor{
dir = 4;
- frequency = 1439;
locked = 0;
pixel_x = -23;
- pixel_y = 0;
req_access = null
},
/obj/effect/decal/cleanable/dirt,
@@ -10574,8 +10068,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
@@ -10585,8 +10078,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
@@ -10601,7 +10093,6 @@
},
/obj/machinery/firealarm{
dir = 1;
- pixel_x = 0;
pixel_y = -24
},
/obj/structure/closet/secure_closet/miner{
@@ -10661,7 +10152,6 @@
desc = "A remote control-switch for heavy lockdown doors.";
id = "UO71_Containment";
name = "Science Containment Doors";
- pixel_x = 0;
pixel_y = -2;
req_access_txt = "271";
wires = 1
@@ -10674,7 +10164,6 @@
desc = "A remote control-switch for heavy lockdown doors.";
id = "UO71_Queen";
name = "Terror Queen Containment Doors";
- pixel_x = 0;
pixel_y = -2;
req_access_txt = "271";
wires = 1
@@ -10687,7 +10176,6 @@
desc = "A remote control-switch for heavy lockdown doors.";
id = "UO71_Armory";
name = "Armory Doors";
- pixel_x = 0;
pixel_y = -2;
req_access_txt = "271";
wires = 1
@@ -10704,7 +10192,6 @@
/area/awaymission/UO71/centralhall)
"wa" = (
/obj/machinery/conveyor{
- dir = 2;
id = "UO71_mining"
},
/obj/effect/decal/warning_stripes/east,
@@ -10728,8 +10215,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
@@ -10756,8 +10242,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -10795,8 +10280,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/cable{
d1 = 2;
@@ -10817,8 +10301,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -10862,8 +10345,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel,
/area/awaymission/UO71/eng)
@@ -10871,8 +10353,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/door/airlock/engineering{
name = "Engineering";
@@ -10884,17 +10365,14 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/alarm/monitor{
dir = 8;
- frequency = 1439;
locked = 0;
pixel_x = 23;
- pixel_y = 0;
req_access = null
},
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
@@ -10902,8 +10380,7 @@
"wt" = (
/obj/machinery/atmospherics/pipe/manifold/visible{
dir = 4;
- initialize_directions = 11;
- level = 2
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -10958,8 +10435,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/door/airlock/mining/glass{
@@ -10979,7 +10455,6 @@
/area/awaymission/UO71/mining)
"wD" = (
/obj/machinery/conveyor{
- dir = 2;
id = "UO71_mining"
},
/obj/structure/sign/nosmoking_2{
@@ -11011,8 +10486,7 @@
/area/awaymission/UO71/mining)
"wH" = (
/obj/machinery/mineral/processing_unit{
- dir = 1;
- output_dir = 2
+ dir = 1
},
/obj/effect/decal/warning_stripes/northeast,
/turf/simulated/floor/plating,
@@ -11021,8 +10495,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -11085,7 +10558,6 @@
/area/awaymission/UO71/mining)
"wN" = (
/obj/machinery/conveyor{
- dir = 2;
id = "UO71_mining"
},
/obj/machinery/light/small{
@@ -11100,7 +10572,6 @@
},
/obj/machinery/firealarm{
dir = 1;
- pixel_x = 0;
pixel_y = -24
},
/turf/simulated/floor/plasteel{
@@ -11129,10 +10600,7 @@
/area/awaymission/UO71/medical)
"wS" = (
/obj/structure/bed,
-/obj/item/storage/box/gloves{
- pixel_x = 0;
- pixel_y = 0
- },
+/obj/item/storage/box/gloves,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "whitecorner"
@@ -11145,9 +10613,7 @@
},
/area/awaymission/UO71/medical)
"wU" = (
-/obj/item/twohanded/required/kirbyplants{
- layer = 5
- },
+/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel,
/area/awaymission/UO71/bridge)
"wV" = (
@@ -11163,7 +10629,6 @@
"wX" = (
/obj/machinery/firealarm{
dir = 1;
- pixel_x = 0;
pixel_y = -24
},
/turf/simulated/floor/plasteel,
@@ -11230,8 +10695,8 @@
/obj/structure/grille,
/obj/structure/window/full/reinforced,
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/obj/structure/cable{
d2 = 8;
@@ -11244,8 +10709,8 @@
/obj/structure/window/full/reinforced,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/turf/simulated/floor/plating,
/area/awaymission/UO71/eng)
@@ -11253,8 +10718,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
/obj/structure/cable{
@@ -11268,7 +10732,6 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralfull"
},
/area/awaymission/UO71/eng)
@@ -11312,9 +10775,7 @@
id = "awaydorm8";
name = "Door Bolt Control";
normaldoorcontrol = 1;
- pixel_x = 0;
pixel_y = -25;
- req_access_txt = "0";
specialfunctions = 4
},
/turf/simulated/floor/carpet,
@@ -11335,8 +10796,8 @@
"xo" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/turf/simulated/floor/plasteel,
/area/awaymission/UO71/mining)
@@ -11359,7 +10820,6 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralfull"
},
/area/awaymission/UO71/eng)
@@ -11368,7 +10828,6 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralfull"
},
/area/awaymission/UO71/eng)
@@ -11381,7 +10840,6 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralfull"
},
/area/awaymission/UO71/eng)
@@ -11389,8 +10847,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/structure/disposalpipe/segment{
dir = 8;
@@ -11398,7 +10855,6 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralfull"
},
/area/awaymission/UO71/eng)
@@ -11438,8 +10894,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
@@ -11447,13 +10902,11 @@
"xz" = (
/obj/structure/filingcabinet/chestdrawer,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralfull"
},
/area/awaymission/UO71/eng)
"xA" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralfull"
},
/area/awaymission/UO71/eng)
@@ -11461,7 +10914,6 @@
/obj/structure/chair/office,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralfull"
},
/area/awaymission/UO71/eng)
@@ -11477,21 +10929,17 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralfull"
},
/area/awaymission/UO71/eng)
"xE" = (
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
- pixel_x = 11;
- pixel_y = 0
+ pixel_x = 11
},
/obj/machinery/light/small,
/obj/structure/mirror{
@@ -11523,9 +10971,7 @@
id = "awaydorm9";
name = "Door Bolt Control";
normaldoorcontrol = 1;
- pixel_x = 0;
pixel_y = 25;
- req_access_txt = "0";
specialfunctions = 4
},
/turf/simulated/floor/carpet,
@@ -11534,8 +10980,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -11563,7 +11008,6 @@
},
/obj/item/stamp/ce,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralfull"
},
/area/awaymission/UO71/eng)
@@ -11579,7 +11023,6 @@
amount = 50
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralfull"
},
/area/awaymission/UO71/eng)
@@ -11587,7 +11030,6 @@
/obj/structure/table/reinforced,
/obj/item/folder/yellow,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralfull"
},
/area/awaymission/UO71/eng)
@@ -11595,23 +11037,19 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/machinery/light/small{
dir = 4
},
/obj/machinery/alarm/monitor{
dir = 8;
- frequency = 1439;
locked = 0;
pixel_x = 23;
- pixel_y = 0;
req_access = null
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralfull"
},
/area/awaymission/UO71/eng)
@@ -11643,10 +11081,8 @@
/obj/structure/cable,
/obj/machinery/power/apc/noalarm{
cell_type = 15000;
- dir = 2;
locked = 0;
name = "UO71 Mining APC";
- pixel_x = 0;
pixel_y = -25;
req_access = null;
start_charge = 1
@@ -11669,7 +11105,6 @@
/obj/item/storage/backpack/satchel_eng,
/obj/item/clothing/gloves/fingerless,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "browncorner"
},
/area/awaymission/UO71/mining)
@@ -11692,11 +11127,9 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "brown"
},
/area/awaymission/UO71/mining)
@@ -11706,7 +11139,6 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "brown"
},
/area/awaymission/UO71/mining)
@@ -11719,7 +11151,6 @@
pixel_x = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralfull"
},
/area/awaymission/UO71/eng)
@@ -11730,7 +11161,6 @@
icon_state = "2-4"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralfull"
},
/area/awaymission/UO71/eng)
@@ -11740,23 +11170,19 @@
pixel_y = 3
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralfull"
},
/area/awaymission/UO71/eng)
"xX" = (
/obj/structure/bookcase/manuals/engineering,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralfull"
},
/area/awaymission/UO71/eng)
"xY" = (
/obj/machinery/atmospherics/unary/vent_pump{
dir = 1;
- external_pressure_bound = 101.325;
- on = 1;
- pressure_checks = 1
+ on = 1
},
/obj/machinery/newscaster{
pixel_y = -28
@@ -11768,7 +11194,6 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralfull"
},
/area/awaymission/UO71/eng)
@@ -11783,8 +11208,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel,
/area/awaymission/UO71/mining)
@@ -11800,7 +11224,6 @@
"yb" = (
/obj/machinery/computer/station_alert,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralfull"
},
/area/awaymission/UO71/eng)
@@ -11810,7 +11233,6 @@
},
/obj/structure/cable,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralfull"
},
/area/awaymission/UO71/eng)
@@ -11834,7 +11256,6 @@
req_access_txt = "271"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralfull"
},
/area/awaymission/UO71/eng)
@@ -11849,8 +11270,7 @@
"yf" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
@@ -11869,8 +11289,7 @@
icon_state = "space";
layer = 4;
name = "EXTERNAL AIRLOCK";
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/machinery/light/small{
dir = 4
@@ -11907,8 +11326,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel,
/area/awaymission/UO71/mining)
@@ -11941,10 +11359,8 @@
"yr" = (
/obj/machinery/alarm/monitor{
dir = 4;
- frequency = 1439;
locked = 0;
pixel_x = -23;
- pixel_y = 0;
req_access = null
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -11967,8 +11383,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel,
/area/awaymission/UO71/mining)
@@ -12046,8 +11461,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel,
/area/awaymission/UO71/mining)
@@ -12062,14 +11476,12 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel,
/area/awaymission/UO71/mining)
"yF" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/obj/effect/decal/cleanable/dirt,
@@ -12102,7 +11514,6 @@
/area/awaymission/UO71/mining)
"yI" = (
/obj/machinery/mech_bay_recharge_port{
- icon_state = "recharge_port";
dir = 8
},
/obj/structure/cable{
@@ -12135,8 +11546,8 @@
"yM" = (
/obj/machinery/computer/mech_bay_power_console,
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/turf/simulated/floor/plasteel,
/area/awaymission/UO71/mining)
@@ -12258,8 +11669,7 @@
/area/awaymission/UO71/queen)
"zk" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
@@ -12316,8 +11726,7 @@
/area/awaymission/UO71/loot)
"zu" = (
/obj/machinery/newscaster{
- pixel_x = 30;
- pixel_y = 0
+ pixel_x = 30
},
/turf/simulated/floor/carpet,
/area/awaymission/UO71/loot)
@@ -12417,7 +11826,6 @@
"zX" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/chair/wood{
- icon_state = "wooden_chair";
dir = 4
},
/turf/simulated/floor/wood,
@@ -12428,7 +11836,6 @@
/area/awaymission/UO71/queen)
"zZ" = (
/obj/structure/chair/wood{
- icon_state = "wooden_chair";
dir = 4
},
/turf/simulated/floor/wood,
@@ -12448,7 +11855,6 @@
/area/awaymission/UO71/queen)
"Ac" = (
/obj/structure/chair/wood{
- icon_state = "wooden_chair";
dir = 1
},
/turf/simulated/floor/wood,
@@ -12560,10 +11966,7 @@
/turf/simulated/floor/plasteel,
/area/awaymission/UO71/plaza)
"Iq" = (
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
- req_one_access_txt = "0"
- },
+/obj/machinery/door/airlock/maintenance,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -12656,9 +12059,7 @@
/obj/item/bedsheet,
/obj/machinery/atmospherics/unary/vent_pump{
dir = 1;
- external_pressure_bound = 101.325;
- on = 1;
- pressure_checks = 1
+ on = 1
},
/turf/simulated/floor/carpet,
/area/awaymission/UO71/plaza)
@@ -12704,7 +12105,6 @@
dir = 10
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/awaymission/UO71/science)
@@ -16378,7 +15778,7 @@ fM
gX
hA
fL
-iA
+ix
fM
fM
fL
@@ -27792,7 +27192,7 @@ pz
pZ
qy
qX
-rN
+tu
sI
ts
uc
@@ -27942,7 +27342,7 @@ np
nT
np
rc
-rN
+tu
sO
tv
ue
diff --git a/_maps/map_files/RandomZLevels/undergroundoutpost45.dmm b/_maps/map_files/RandomZLevels/undergroundoutpost45.dmm
index 4222dec00eb..200307625ab 100644
--- a/_maps/map_files/RandomZLevels/undergroundoutpost45.dmm
+++ b/_maps/map_files/RandomZLevels/undergroundoutpost45.dmm
@@ -3,7 +3,6 @@
/turf/simulated/wall/indestructible/rock,
/area/awaycontent/a7{
always_unpowered = 1;
- has_gravity = 1;
name = "UO45 Caves";
power_environ = 0;
power_equip = 0;
@@ -14,7 +13,6 @@
/turf/simulated/mineral/random/labormineral,
/area/awaycontent/a7{
always_unpowered = 1;
- has_gravity = 1;
name = "UO45 Caves";
power_environ = 0;
power_equip = 0;
@@ -24,13 +22,11 @@
"ad" = (
/turf/simulated/wall/r_wall,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"ae" = (
/turf/simulated/wall/mineral/titanium,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"ai" = (
@@ -40,7 +36,6 @@
icon_state = "dark"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"aj" = (
@@ -52,7 +47,6 @@
},
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"ak" = (
@@ -61,7 +55,6 @@
icon_state = "dark"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"al" = (
@@ -70,35 +63,30 @@
id = "UO45_useless";
name = "B1";
pixel_x = 6;
- pixel_y = -24;
- req_access_txt = "0"
+ pixel_y = -24
},
/obj/machinery/door_control{
desc = "A remote control-switch for the elevator doors.";
id = "UO45_Elevator";
name = "Elevator Doors";
pixel_x = -6;
- pixel_y = -24;
- req_access_txt = "0"
+ pixel_y = -24
},
/obj/machinery/door_control{
desc = "A remote control-switch to send the elevator to the ground floor.";
id = "UO45_useless";
name = "G1";
pixel_x = 6;
- pixel_y = -34;
- req_access_txt = "0"
+ pixel_y = -34
},
/obj/effect/landmark/burnturf,
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"am" = (
/turf/simulated/wall/r_wall/rust,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"an" = (
@@ -109,18 +97,15 @@
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"ao" = (
/obj/effect/landmark/damageturf,
/turf/simulated/floor/plasteel{
icon_state = "darkblue";
- tag = "icon-darkblue";
temperature = 273.15
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"ap" = (
@@ -128,7 +113,6 @@
icon_state = "dark"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"aq" = (
@@ -141,7 +125,6 @@
},
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"ar" = (
@@ -152,42 +135,35 @@
/obj/effect/landmark/damageturf,
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"as" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
icon_state = "darkblue";
- tag = "icon-darkblue";
temperature = 273.15
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"at" = (
/obj/effect/landmark/damageturf,
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"au" = (
/turf/simulated/floor/plasteel{
- tag = "icon-darkblue (SOUTHEAST)";
- icon_state = "darkblue";
- dir = 6
+ dir = 6;
+ icon_state = "darkblue"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"ax" = (
/obj/effect/landmark/burnturf,
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"ay" = (
@@ -195,29 +171,24 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"aB" = (
/turf/simulated/wall,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"aC" = (
/turf/simulated/wall/rust,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"aD" = (
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "floorgrime";
- tag = "icon-floorgrime (WEST)"
+ icon_state = "floorgrime"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"aE" = (
@@ -227,7 +198,6 @@
icon_state = "dark"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"aF" = (
@@ -236,20 +206,17 @@
id = "UO45_useless";
name = "Call Elevator";
pixel_x = -6;
- pixel_y = 24;
- req_access_txt = "0"
+ pixel_y = 24
},
/obj/machinery/door_control{
desc = "A remote control-switch for the elevator doors.";
id = "UO45_Elevator";
name = "Elevator Doors";
pixel_x = 6;
- pixel_y = 24;
- req_access_txt = "0"
+ pixel_y = 24
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"aG" = (
@@ -259,13 +226,11 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"aH" = (
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"aI" = (
@@ -274,7 +239,6 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"aJ" = (
@@ -283,18 +247,14 @@
icon_state = "dark"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"aK" = (
-/obj/item/twohanded/required/kirbyplants{
- layer = 5
- },
+/obj/item/twohanded/required/kirbyplants,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"aL" = (
@@ -307,14 +267,12 @@
icon_state = "dark"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"aM" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"aN" = (
@@ -323,7 +281,6 @@
icon_state = "dark"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"aO" = (
@@ -333,7 +290,6 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"aP" = (
@@ -341,17 +297,14 @@
/obj/structure/window/full/reinforced,
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"aQ" = (
/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"aR" = (
@@ -361,18 +314,15 @@
icon_state = "neutralcorner"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"aS" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"aT" = (
@@ -381,13 +331,10 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"aU" = (
/obj/structure/chair/comfy/beige{
- tag = "icon-comfychair (EAST)";
- icon_state = "comfychair";
dir = 4
},
/obj/effect/landmark{
@@ -397,7 +344,6 @@
icon_state = "grimy"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"aV" = (
@@ -409,7 +355,6 @@
icon_state = "neutral"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"aW" = (
@@ -419,7 +364,6 @@
icon_state = "grimy"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"aX" = (
@@ -429,7 +373,6 @@
icon_state = "grimy"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"aY" = (
@@ -438,7 +381,6 @@
icon_state = "neutral"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"aZ" = (
@@ -450,7 +392,6 @@
icon_state = "grimy"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"ba" = (
@@ -468,7 +409,6 @@
icon_state = "neutral"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"bb" = (
@@ -478,7 +418,6 @@
icon_state = "grimy"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"bc" = (
@@ -487,7 +426,6 @@
icon_state = "grimy"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"bd" = (
@@ -498,16 +436,13 @@
icon_state = "grimy"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"be" = (
/obj/machinery/alarm/monitor{
dir = 4;
- frequency = 1439;
locked = 0;
pixel_x = -23;
- pixel_y = 0;
req_access = null
},
/obj/effect/landmark{
@@ -515,7 +450,6 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"bf" = (
@@ -526,13 +460,10 @@
icon_state = "grimy"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"bg" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/obj/effect/landmark{
name = "awaystart"
},
@@ -541,7 +472,6 @@
icon_state = "neutral"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"bh" = (
@@ -549,7 +479,6 @@
icon_state = "grimy"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"bi" = (
@@ -561,7 +490,6 @@
icon_state = "neutral"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"bj" = (
@@ -572,7 +500,6 @@
icon_state = "freezerfloor"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"bk" = (
@@ -584,30 +511,25 @@
icon_state = "freezerfloor"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"bl" = (
/obj/structure/extinguisher_cabinet{
- pixel_x = -25;
- pixel_y = 0
+ pixel_x = -25
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"bm" = (
/obj/structure/chair/comfy/beige{
- dir = 1;
- icon_state = "comfychair"
+ dir = 1
},
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"bn" = (
@@ -617,7 +539,6 @@
icon_state = "neutral"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"bo" = (
@@ -633,7 +554,6 @@
icon_state = "grimy"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"bp" = (
@@ -646,7 +566,6 @@
icon_state = "grimy"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"bq" = (
@@ -656,13 +575,11 @@
icon_state = "neutral"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"br" = (
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"bs" = (
@@ -671,17 +588,12 @@
icon_state = "freezerfloor"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"bt" = (
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
- req_one_access_txt = "0"
- },
+/obj/machinery/door/airlock/maintenance,
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"bu" = (
@@ -689,14 +601,12 @@
icon_state = "freezerfloor"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"bv" = (
/obj/machinery/light/small,
/obj/machinery/alarm/monitor{
dir = 1;
- frequency = 1439;
locked = 0;
pixel_y = -23;
req_access = null
@@ -705,19 +615,16 @@
icon_state = "freezerfloor"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"bw" = (
/obj/machinery/door/airlock{
- name = "Unisex Restrooms";
- req_access_txt = "0"
+ name = "Unisex Restrooms"
},
/turf/simulated/floor/plasteel{
icon_state = "freezerfloor"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"bx" = (
@@ -732,7 +639,6 @@
icon_state = "neutral"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"by" = (
@@ -742,7 +648,6 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"bz" = (
@@ -753,7 +658,6 @@
icon_state = "freezerfloor"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"bA" = (
@@ -764,7 +668,6 @@
icon_state = "freezerfloor"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"bB" = (
@@ -773,7 +676,6 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"bC" = (
@@ -785,20 +687,17 @@
icon_state = "neutral"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"bD" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
+ dir = 5
},
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutralcorner"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"bE" = (
@@ -810,20 +709,17 @@
icon_state = "neutral"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"bF" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10;
- level = 1
+ dir = 10
},
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutral"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"bG" = (
@@ -835,7 +731,6 @@
icon_state = "neutralcorner"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"bH" = (
@@ -847,17 +742,14 @@
icon_state = "neutral"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"bI" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"bJ" = (
@@ -871,7 +763,6 @@
icon_state = "freezerfloor"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"bK" = (
@@ -886,7 +777,6 @@
icon_state = "freezerfloor"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"bL" = (
@@ -895,21 +785,18 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"bM" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"bN" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"bO" = (
@@ -919,7 +806,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"bP" = (
@@ -928,7 +814,6 @@
},
/turf/simulated/wall,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"bQ" = (
@@ -937,7 +822,6 @@
},
/turf/simulated/wall,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"bR" = (
@@ -946,18 +830,15 @@
},
/turf/simulated/wall/rust,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"bS" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 14;
- tag = "icon-manifold-r-f (NORTH)"
+ initialize_directions = 14
},
/turf/simulated/wall,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"bT" = (
@@ -967,35 +848,29 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"bU" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"bV" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 14;
- tag = "icon-manifold-r-f (NORTH)"
+ initialize_directions = 14
},
/turf/simulated/wall/rust,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"bW" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10;
- level = 1
+ dir = 10
},
/turf/simulated/wall,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"bX" = (
@@ -1009,7 +884,6 @@
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a7{
always_unpowered = 1;
- has_gravity = 1;
name = "UO45 Caves";
power_environ = 0;
power_equip = 0;
@@ -1023,7 +897,6 @@
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a7{
always_unpowered = 1;
- has_gravity = 1;
name = "UO45 Caves";
power_environ = 0;
power_equip = 0;
@@ -1034,14 +907,12 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"ca" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"cb" = (
@@ -1051,7 +922,6 @@
/obj/effect/landmark/damageturf,
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"cc" = (
@@ -1060,7 +930,6 @@
},
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"cd" = (
@@ -1069,7 +938,6 @@
},
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"ce" = (
@@ -1079,32 +947,25 @@
/obj/effect/landmark/burnturf,
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"cf" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 1;
- initialize_directions = 14;
- tag = "icon-manifold-b-f (NORTH)"
+ initialize_directions = 14
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"cg" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
- req_one_access_txt = "0"
- },
+/obj/machinery/door/airlock/maintenance,
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"ch" = (
@@ -1114,14 +975,12 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"ci" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"cj" = (
@@ -1130,18 +989,15 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"ck" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 1;
- initialize_directions = 14;
- tag = "icon-manifold-b-f (NORTH)"
+ initialize_directions = 14
},
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"cl" = (
@@ -1152,7 +1008,6 @@
/obj/effect/landmark/damageturf,
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"cm" = (
@@ -1163,7 +1018,6 @@
/obj/effect/landmark/damageturf,
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"cn" = (
@@ -1171,7 +1025,6 @@
/obj/effect/landmark/damageturf,
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"co" = (
@@ -1181,21 +1034,18 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"cp" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/wall/rust,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"cq" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/wall,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"cr" = (
@@ -1203,14 +1053,12 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"cs" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/wall/rust,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"ct" = (
@@ -1219,21 +1067,18 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"cu" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"cv" = (
/obj/machinery/portable_atmospherics/canister/air,
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"cw" = (
@@ -1241,7 +1086,6 @@
/obj/item/storage/box/lights/mixed,
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"cx" = (
@@ -1249,7 +1093,6 @@
dir = 1
},
/obj/machinery/alarm/monitor{
- frequency = 1439;
locked = 0;
pixel_y = 23;
req_access = null
@@ -1259,23 +1102,19 @@
},
/turf/simulated/floor/carpet,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"cy" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 7;
- tag = "icon-manifold-b-f (WEST)"
+ initialize_directions = 7
},
/obj/structure/table/wood,
/obj/machinery/newscaster{
- pixel_x = -30;
- pixel_y = 0
+ pixel_x = -30
},
/turf/simulated/floor/carpet,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"cz" = (
@@ -1295,14 +1134,12 @@
/obj/item/clothing/under/pj/blue,
/turf/simulated/floor/carpet,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"cA" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 7;
- tag = "icon-manifold-b-f (WEST)"
+ initialize_directions = 7
},
/obj/structure/closet/secure_closet{
desc = "It's a secure locker for personnel. The first card swiped gains control.";
@@ -1319,19 +1156,16 @@
/obj/item/clothing/under/suit_jacket/female,
/turf/simulated/floor/carpet,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"cB" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/table/wood,
/obj/machinery/newscaster{
- pixel_x = 30;
- pixel_y = 0
+ pixel_x = 30
},
/turf/simulated/floor/carpet,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"cC" = (
@@ -1339,7 +1173,6 @@
dir = 1
},
/obj/machinery/alarm/monitor{
- frequency = 1439;
locked = 0;
pixel_y = 23;
req_access = null
@@ -1348,13 +1181,10 @@
dir = 10
},
/obj/structure/chair/wood{
- tag = "icon-wooden_chair (EAST)";
- icon_state = "wooden_chair";
dir = 4
},
/turf/simulated/floor/carpet,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"cD" = (
@@ -1363,7 +1193,6 @@
/obj/effect/landmark/damageturf,
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"cE" = (
@@ -1371,7 +1200,6 @@
/obj/item/clothing/mask/breath,
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"cF" = (
@@ -1381,14 +1209,12 @@
/obj/effect/landmark/damageturf,
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"cG" = (
/obj/structure/reagent_dispensers/watertank,
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"cH" = (
@@ -1398,40 +1224,31 @@
/obj/effect/landmark/burnturf,
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"cI" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/carpet,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"cJ" = (
/obj/machinery/atmospherics/unary/vent_pump{
dir = 1;
- external_pressure_bound = 101.325;
- on = 1;
- pressure_checks = 1
+ on = 1
},
/obj/structure/chair/wood{
- tag = "icon-wooden_chair (NORTH)";
- icon_state = "wooden_chair";
dir = 1
},
/obj/machinery/door_control{
id = "awaydorm2";
name = "Door Bolt Control";
normaldoorcontrol = 1;
- pixel_x = 0;
pixel_y = -25;
- req_access_txt = "0";
specialfunctions = 4
},
/turf/simulated/floor/carpet,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"cK" = (
@@ -1442,21 +1259,17 @@
/obj/item/bedsheet,
/turf/simulated/floor/carpet,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"cL" = (
/obj/machinery/atmospherics/unary/vent_pump{
dir = 1;
- external_pressure_bound = 101.325;
- on = 1;
- pressure_checks = 1
+ on = 1
},
/obj/structure/bed,
/obj/item/bedsheet,
/turf/simulated/floor/carpet,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"cM" = (
@@ -1467,14 +1280,11 @@
id = "awaydorm1";
name = "Door Bolt Control";
normaldoorcontrol = 1;
- pixel_x = 0;
pixel_y = -25;
- req_access_txt = "0";
specialfunctions = 4
},
/turf/simulated/floor/carpet,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"cN" = (
@@ -1483,7 +1293,6 @@
},
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"cO" = (
@@ -1493,30 +1302,25 @@
},
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"cP" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 1;
- initialize_directions = 14;
- tag = "icon-manifold-b-f (NORTH)"
+ initialize_directions = 14
},
/obj/effect/landmark/burnturf,
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"cQ" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 14;
- tag = "icon-manifold-r-f (NORTH)"
+ initialize_directions = 14
},
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"cR" = (
@@ -1526,7 +1330,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"cS" = (
@@ -1535,13 +1338,10 @@
},
/obj/machinery/portable_atmospherics/scrubber,
/obj/structure/window/basic{
- tag = "icon-window (WEST)";
- icon_state = "window";
dir = 8
},
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"cT" = (
@@ -1551,7 +1351,6 @@
/obj/effect/landmark/burnturf,
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"cU" = (
@@ -1560,13 +1359,10 @@
},
/obj/structure/reagent_dispensers/fueltank,
/obj/structure/window/basic{
- tag = "icon-window (EAST)";
- icon_state = "window";
dir = 4
},
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"cV" = (
@@ -1576,31 +1372,26 @@
/obj/machinery/portable_atmospherics/scrubber,
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"cW" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10;
- level = 1
+ dir = 10
},
/turf/simulated/wall/rust,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"cX" = (
/obj/item/stack/rods,
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"cY" = (
/obj/structure/grille,
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"cZ" = (
@@ -1608,7 +1399,6 @@
/obj/structure/grille,
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"da" = (
@@ -1619,7 +1409,6 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"db" = (
@@ -1629,7 +1418,6 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"dc" = (
@@ -1640,7 +1428,6 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"dd" = (
@@ -1651,7 +1438,6 @@
/obj/item/poster/random_contraband,
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"de" = (
@@ -1660,16 +1446,13 @@
},
/obj/machinery/alarm/monitor{
dir = 4;
- frequency = 1439;
locked = 0;
pixel_x = -23;
- pixel_y = 0;
req_access = null
},
/obj/effect/landmark/burnturf,
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"df" = (
@@ -1678,7 +1461,6 @@
},
/turf/simulated/wall,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"dg" = (
@@ -1687,7 +1469,6 @@
},
/turf/simulated/wall/rust,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"dh" = (
@@ -1698,7 +1479,6 @@
/obj/item/stack/rods,
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"di" = (
@@ -1707,7 +1487,6 @@
},
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"dj" = (
@@ -1716,7 +1495,6 @@
/obj/effect/landmark/burnturf,
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"dk" = (
@@ -1726,7 +1504,6 @@
/obj/effect/landmark/damageturf,
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"dl" = (
@@ -1735,7 +1512,6 @@
},
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"dm" = (
@@ -1743,7 +1519,6 @@
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel,
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"dn" = (
@@ -1752,39 +1527,29 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"do" = (
/obj/machinery/firealarm/no_alarm{
- dir = 2;
- pixel_x = 0;
pixel_y = 24
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"dp" = (
-/obj/item/twohanded/required/kirbyplants{
- layer = 5
- },
+/obj/item/twohanded/required/kirbyplants,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "greencorner";
- tag = "icon-greencorner"
+ icon_state = "greencorner"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"dq" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/wall,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"dr" = (
@@ -1794,7 +1559,6 @@
icon_state = "vault"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"ds" = (
@@ -1803,7 +1567,6 @@
/obj/structure/sign/deathsposal{
desc = "A warning sign which reads 'DISPOSAL: LEADS TO EXTERIOR'";
name = "\improper DISPOSAL: LEADS TO EXTERIOR";
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/plasteel{
@@ -1811,7 +1574,6 @@
icon_state = "vault"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"dt" = (
@@ -1823,7 +1585,6 @@
icon_state = "vault"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"du" = (
@@ -1833,7 +1594,6 @@
icon_state = "vault"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"dv" = (
@@ -1844,14 +1604,12 @@
icon_state = "vault"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"dw" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/wall/r_wall,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"dx" = (
@@ -1861,7 +1619,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"dy" = (
@@ -1880,7 +1637,6 @@
/obj/effect/landmark/damageturf,
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"dz" = (
@@ -1889,7 +1645,6 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"dA" = (
@@ -1898,7 +1653,6 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"dB" = (
@@ -1907,7 +1661,6 @@
icon_state = "green"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"dC" = (
@@ -1916,7 +1669,6 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"dD" = (
@@ -1932,7 +1684,6 @@
icon_state = "green"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"dE" = (
@@ -1947,7 +1698,6 @@
icon_state = "green"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"dF" = (
@@ -1960,12 +1710,10 @@
icon_state = "green"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"dG" = (
/obj/machinery/alarm/monitor{
- frequency = 1439;
locked = 0;
pixel_y = 23;
req_access = null
@@ -1981,21 +1729,18 @@
icon_state = "green"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"dH" = (
/obj/structure/disposalpipe/junction{
dir = 4;
- icon_state = "pipe-j2";
- tag = "icon-pipe-j1 (WEST)"
+ icon_state = "pipe-j2"
},
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "green"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"dI" = (
@@ -2007,7 +1752,6 @@
icon_state = "green"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"dJ" = (
@@ -2021,7 +1765,6 @@
icon_state = "green"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"dK" = (
@@ -2038,7 +1781,6 @@
icon_state = "green"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"dL" = (
@@ -2049,8 +1791,6 @@
dir = 4
},
/obj/machinery/firealarm/no_alarm{
- dir = 2;
- pixel_x = 0;
pixel_y = 24
},
/turf/simulated/floor/plasteel{
@@ -2058,7 +1798,6 @@
icon_state = "green"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"dM" = (
@@ -2081,7 +1820,6 @@
icon_state = "vault"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"dN" = (
@@ -2090,7 +1828,6 @@
icon_state = "green"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"dO" = (
@@ -2098,7 +1835,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/structure/disposalpipe/segment,
@@ -2106,18 +1842,15 @@
/obj/effect/landmark/damageturf,
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"dP" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 7;
- tag = "icon-manifold-r-f (WEST)"
+ initialize_directions = 7
},
/obj/structure/chair,
/obj/structure/reagent_dispensers/peppertank{
- pixel_x = 0;
pixel_y = 30
},
/turf/simulated/floor/plasteel{
@@ -2125,7 +1858,6 @@
icon_state = "red"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"dQ" = (
@@ -2136,7 +1868,6 @@
icon_off = "secoff";
icon_opened = "secopen";
icon_state = "sec1";
- locked = 1;
name = "security officer's locker";
req_access_txt = "201"
},
@@ -2148,7 +1879,6 @@
icon_state = "red"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"dR" = (
@@ -2158,7 +1888,6 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"dS" = (
@@ -2170,7 +1899,6 @@
icon_state = "red"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"dT" = (
@@ -2178,37 +1906,29 @@
icon_state = "neutral"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"dU" = (
/obj/machinery/atmospherics/unary/vent_pump{
dir = 1;
- external_pressure_bound = 101.325;
- on = 1;
- pressure_checks = 1
+ on = 1
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"dV" = (
/obj/machinery/atmospherics/unary/vent_pump{
dir = 1;
- external_pressure_bound = 101.325;
- on = 1;
- pressure_checks = 1
+ on = 1
},
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralcorner"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"dW" = (
@@ -2217,7 +1937,6 @@
icon_state = "neutral"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"dX" = (
@@ -2229,7 +1948,6 @@
icon_state = "green"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"dY" = (
@@ -2239,7 +1957,6 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"dZ" = (
@@ -2248,7 +1965,6 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"ea" = (
@@ -2262,7 +1978,6 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"eb" = (
@@ -2272,7 +1987,6 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"ec" = (
@@ -2281,7 +1995,6 @@
icon_state = "dark"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"ed" = (
@@ -2290,11 +2003,9 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "floorgrime";
- tag = "icon-floorgrime (WEST)"
+ icon_state = "floorgrime"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"ee" = (
@@ -2317,7 +2028,6 @@
icon_state = "vault"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"ef" = (
@@ -2326,12 +2036,10 @@
},
/obj/machinery/door/airlock/maintenance{
name = "Security Checkpoint Maintenance";
- req_access_txt = "201";
- req_one_access_txt = "0"
+ req_access_txt = "201"
},
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"eg" = (
@@ -2340,7 +2048,6 @@
},
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"eh" = (
@@ -2352,21 +2059,18 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"ei" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 1;
- initialize_directions = 14;
- tag = "icon-manifold-b-f (NORTH)"
+ initialize_directions = 14
},
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "red"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"ej" = (
@@ -2375,7 +2079,6 @@
icon_state = "red"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"ek" = (
@@ -2384,7 +2087,6 @@
icon_state = "redcorner"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"el" = (
@@ -2392,7 +2094,6 @@
/obj/structure/window/full/basic,
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"em" = (
@@ -2401,7 +2102,6 @@
icon_state = "neutral"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"en" = (
@@ -2411,14 +2111,12 @@
icon_state = "neutral"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"eo" = (
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"ep" = (
@@ -2429,19 +2127,15 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"eq" = (
/obj/machinery/atmospherics/unary/vent_pump{
dir = 1;
- external_pressure_bound = 101.325;
- on = 1;
- pressure_checks = 1
+ on = 1
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"er" = (
@@ -2451,7 +2145,6 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"es" = (
@@ -2462,18 +2155,15 @@
icon_state = "vault"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"et" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 7;
- tag = "icon-manifold-r-f (WEST)"
+ initialize_directions = 7
},
/turf/simulated/wall,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"eu" = (
@@ -2490,12 +2180,10 @@
/obj/effect/landmark/damageturf,
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"ev" = (
/turf/simulated/floor/plating{
- carbon_dioxide = 0;
icon_plating = "asteroidplating";
icon_state = "asteroidplating";
nitrogen = 0;
@@ -2504,7 +2192,6 @@
},
/area/awaycontent/a7{
always_unpowered = 1;
- has_gravity = 1;
name = "UO45 Caves";
power_environ = 0;
power_equip = 0;
@@ -2514,10 +2201,8 @@
"ew" = (
/obj/machinery/alarm/monitor{
dir = 4;
- frequency = 1439;
locked = 0;
pixel_x = -23;
- pixel_y = 0;
req_access = null
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -2528,7 +2213,6 @@
icon_state = "red"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"ex" = (
@@ -2548,7 +2232,6 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"ey" = (
@@ -2558,7 +2241,6 @@
icon_state = "red"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"ez" = (
@@ -2567,13 +2249,10 @@
icon_state = "red"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"eA" = (
/obj/structure/chair/office{
- tag = "icon-chair (EAST)";
- icon_state = "chair";
dir = 4
},
/turf/simulated/floor/plasteel{
@@ -2581,27 +2260,22 @@
icon_state = "neutral"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"eB" = (
/obj/structure/flora/ausbushes/brflowers,
/turf/simulated/floor/grass,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"eC" = (
/obj/structure/flora/ausbushes/ppflowers,
/turf/simulated/floor/grass,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"eD" = (
/obj/structure/chair/office{
- tag = "icon-chair (WEST)";
- icon_state = "chair";
dir = 8
},
/turf/simulated/floor/plasteel{
@@ -2609,18 +2283,15 @@
icon_state = "neutral"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"eE" = (
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "floorgrime";
- tag = "icon-floorgrime (WEST)"
+ icon_state = "floorgrime"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"eF" = (
@@ -2633,18 +2304,15 @@
icon_state = "vault"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"eG" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 7;
- tag = "icon-manifold-b-f (WEST)"
+ initialize_directions = 7
},
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"eH" = (
@@ -2654,7 +2322,6 @@
},
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"eI" = (
@@ -2665,14 +2332,12 @@
/obj/machinery/door/airlock/external,
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"eJ" = (
/obj/machinery/door/airlock/external,
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"eK" = (
@@ -2681,7 +2346,6 @@
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a7{
always_unpowered = 1;
- has_gravity = 1;
name = "UO45 Caves";
power_environ = 0;
power_equip = 0;
@@ -2695,8 +2359,7 @@
pixel_y = 4
},
/obj/machinery/newscaster/security_unit{
- pixel_x = -30;
- pixel_y = 0
+ pixel_x = -30
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
@@ -2704,7 +2367,6 @@
icon_state = "red"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"eM" = (
@@ -2712,15 +2374,12 @@
/obj/machinery/door/firedoor,
/obj/item/folder/red,
/obj/machinery/door/window/southleft{
- base_state = "left";
dir = 8;
- icon_state = "left";
name = "Security Checkpoint";
req_access_txt = "201"
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"eN" = (
@@ -2732,13 +2391,10 @@
icon_state = "red"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"eO" = (
/obj/structure/chair/office{
- tag = "icon-chair (EAST)";
- icon_state = "chair";
dir = 4
},
/obj/effect/decal/cleanable/dirt,
@@ -2747,14 +2403,12 @@
icon_state = "neutral"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"eP" = (
/obj/structure/flora/ausbushes/ywflowers,
/turf/simulated/floor/grass,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"eQ" = (
@@ -2763,29 +2417,24 @@
icon_state = "greencorner"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"eR" = (
/obj/structure/table/reinforced,
/obj/machinery/door/firedoor,
/obj/machinery/door/window/southleft{
- base_state = "left";
dir = 4;
- icon_state = "left";
name = "Hydroponics Desk";
req_access_txt = "201"
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"eS" = (
/obj/structure/chair/stool,
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"eT" = (
@@ -2793,7 +2442,6 @@
/obj/item/reagent_containers/glass/bucket,
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"eU" = (
@@ -2807,7 +2455,6 @@
pixel_y = 8
},
/obj/item/reagent_containers/spray/plantbgone{
- pixel_x = 0;
pixel_y = 3
},
/obj/item/watertank,
@@ -2816,7 +2463,6 @@
icon_state = "vault"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"eV" = (
@@ -2826,7 +2472,6 @@
icon_state = "green"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"eW" = (
@@ -2837,12 +2482,10 @@
icon_state = "space";
layer = 4;
name = "EXTERNAL AIRLOCK";
- pixel_x = 0;
pixel_y = -32
},
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"eX" = (
@@ -2859,7 +2502,6 @@
icon_state = "red"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"eY" = (
@@ -2871,7 +2513,6 @@
icon_state = "red"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"eZ" = (
@@ -2883,7 +2524,6 @@
icon_state = "red"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"fa" = (
@@ -2892,7 +2532,6 @@
icon_state = "redcorner"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"fb" = (
@@ -2902,17 +2541,13 @@
icon_state = "neutral"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"fc" = (
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "greencorner";
- tag = "icon-greencorner"
+ icon_state = "greencorner"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"fd" = (
@@ -2927,7 +2562,6 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"fe" = (
@@ -2937,26 +2571,21 @@
icon_state = "green"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"ff" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "green"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"fg" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "green"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"fh" = (
@@ -2967,24 +2596,20 @@
},
/obj/machinery/power/apc/noalarm{
cell_type = 15000;
- dir = 2;
locked = 0;
name = "Hydroponics APC";
- pixel_x = 0;
pixel_y = -25;
req_access = null;
start_charge = 100
},
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "green"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"fi" = (
@@ -2992,16 +2617,13 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "green"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"fj" = (
@@ -3009,19 +2631,15 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
pixel_y = -28
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "green"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"fk" = (
@@ -3030,15 +2648,12 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "green"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"fl" = (
@@ -3046,15 +2661,12 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "green"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"fm" = (
@@ -3069,21 +2681,18 @@
icon_state = "green"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"fn" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/wall/r_wall/rust,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"fo" = (
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a7{
always_unpowered = 1;
- has_gravity = 1;
name = "UO45 Caves";
power_environ = 0;
power_equip = 0;
@@ -3094,7 +2703,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/wall/r_wall,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"fq" = (
@@ -3103,44 +2711,34 @@
icon_state = "neutral"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"fr" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutralcorner"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"fs" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"ft" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/obj/machinery/alarm/monitor{
dir = 8;
- frequency = 1439;
locked = 0;
pixel_x = 23;
- pixel_y = 0;
req_access = null
},
/turf/simulated/floor/plasteel{
@@ -3148,7 +2746,6 @@
icon_state = "green"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"fu" = (
@@ -3161,7 +2758,6 @@
icon_state = "dark"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"fv" = (
@@ -3174,7 +2770,6 @@
icon_state = "vault"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"fw" = (
@@ -3183,7 +2778,6 @@
icon_state = "dark"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"fx" = (
@@ -3191,7 +2785,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -3203,7 +2796,6 @@
},
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"fy" = (
@@ -3220,7 +2812,6 @@
icon_state = "dark"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"fz" = (
@@ -3228,7 +2819,6 @@
/obj/effect/landmark/burnturf,
/turf/simulated/floor/plating,
/area/awaycontent/a6{
- has_gravity = 1;
name = "UO45 Gateway"
})
"fA" = (
@@ -3236,7 +2826,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -3244,31 +2833,25 @@
},
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"fB" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 7;
- tag = "icon-manifold-r-f (WEST)"
+ initialize_directions = 7
},
/turf/simulated/floor/carpet,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"fC" = (
/obj/machinery/atmospherics/unary/vent_pump{
dir = 1;
- external_pressure_bound = 101.325;
- on = 1;
- pressure_checks = 1
+ on = 1
},
/obj/structure/chair/wood,
/turf/simulated/floor/carpet,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"fD" = (
@@ -3281,7 +2864,6 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"fE" = (
@@ -3292,14 +2874,11 @@
id = "awaydorm3";
name = "Door Bolt Control";
normaldoorcontrol = 1;
- pixel_x = 0;
pixel_y = 25;
- req_access_txt = "0";
specialfunctions = 4
},
/turf/simulated/floor/carpet,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"fF" = (
@@ -3308,18 +2887,15 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"fG" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 14;
- tag = "icon-manifold-r-f (NORTH)"
+ initialize_directions = 14
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"fH" = (
@@ -3328,7 +2904,6 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"fI" = (
@@ -3345,7 +2920,6 @@
icon_state = "greencorner"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"fJ" = (
@@ -3355,7 +2929,6 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"fK" = (
@@ -3370,7 +2943,6 @@
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a7{
always_unpowered = 1;
- has_gravity = 1;
name = "UO45 Caves";
power_environ = 0;
power_equip = 0;
@@ -3380,14 +2952,12 @@
"fL" = (
/turf/simulated/wall/r_wall,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"fM" = (
/obj/machinery/smartfridge,
/turf/simulated/wall,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"fN" = (
@@ -3402,19 +2972,16 @@
icon_state = "dark"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"fO" = (
/turf/simulated/wall/rust,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"fP" = (
/turf/simulated/wall,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"fQ" = (
@@ -3422,7 +2989,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/structure/disposalpipe/segment,
@@ -3430,14 +2996,12 @@
/obj/effect/landmark/burnturf,
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"fR" = (
/obj/machinery/light/small,
/obj/machinery/alarm/monitor{
dir = 1;
- frequency = 1439;
locked = 0;
pixel_y = -23;
req_access = null
@@ -3448,18 +3012,15 @@
/obj/structure/dresser,
/turf/simulated/floor/carpet,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"fS" = (
/obj/structure/table/wood,
/obj/machinery/newscaster{
- pixel_x = 0;
pixel_y = -28
},
/turf/simulated/floor/carpet,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"fT" = (
@@ -3467,7 +3028,6 @@
/obj/item/bedsheet,
/turf/simulated/floor/carpet,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"fU" = (
@@ -3475,24 +3035,20 @@
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel,
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"fV" = (
/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
pixel_y = -28
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"fW" = (
/obj/machinery/firealarm/no_alarm{
dir = 1;
- pixel_x = 0;
pixel_y = -24
},
/obj/machinery/camera{
@@ -3502,7 +3058,6 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"fX" = (
@@ -3511,7 +3066,6 @@
icon_state = "dark"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"fY" = (
@@ -3522,14 +3076,12 @@
/obj/structure/sign/deathsposal{
desc = "A warning sign which reads 'DISPOSAL: LEADS TO EXTERIOR'";
name = "\improper DISPOSAL: LEADS TO EXTERIOR";
- pixel_x = 0;
pixel_y = -32
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"fZ" = (
@@ -3538,7 +3090,6 @@
icon_state = "dark"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"ga" = (
@@ -3546,7 +3097,6 @@
icon_state = "showroomfloor"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"gb" = (
@@ -3557,7 +3107,6 @@
icon_state = "showroomfloor"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"gc" = (
@@ -3565,34 +3114,28 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"gd" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
+ dir = 5
},
/turf/simulated/wall/r_wall,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"ge" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10;
- level = 1
+ dir = 10
},
/turf/simulated/wall/r_wall,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"gf" = (
@@ -3603,7 +3146,6 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"gg" = (
@@ -3611,7 +3153,6 @@
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a7{
always_unpowered = 1;
- has_gravity = 1;
name = "UO45 Caves";
power_environ = 0;
power_equip = 0;
@@ -3621,7 +3162,6 @@
"gh" = (
/turf/simulated/wall/r_wall/rust,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"gi" = (
@@ -3632,7 +3172,6 @@
icon_state = "showroomfloor"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"gj" = (
@@ -3642,7 +3181,6 @@
},
/turf/simulated/floor/plating,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"gk" = (
@@ -3650,7 +3188,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/structure/disposalpipe/segment,
@@ -3659,21 +3196,18 @@
},
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"gl" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"gm" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"gn" = (
@@ -3688,7 +3222,6 @@
icon_state = "showroomfloor"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"go" = (
@@ -3711,7 +3244,6 @@
icon_state = "showroomfloor"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"gp" = (
@@ -3721,7 +3253,6 @@
/obj/effect/landmark/burnturf,
/turf/simulated/floor/plasteel,
/area/awaycontent/a6{
- has_gravity = 1;
name = "UO45 Gateway"
})
"gq" = (
@@ -3729,7 +3260,6 @@
/obj/item/stack/rods,
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"gr" = (
@@ -3746,7 +3276,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"gs" = (
@@ -3754,7 +3283,6 @@
/obj/structure/window/full/reinforced,
/turf/simulated/floor/plating,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"gt" = (
@@ -3763,13 +3291,11 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"gu" = (
/turf/simulated/floor/plasteel,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"gv" = (
@@ -3781,47 +3307,39 @@
icon_state = "showroomfloor"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"gw" = (
/turf/simulated/wall/r_wall,
/area/awaycontent/a6{
- has_gravity = 1;
name = "UO45 Gateway"
})
"gx" = (
/turf/simulated/wall/r_wall/rust,
/area/awaycontent/a6{
- has_gravity = 1;
name = "UO45 Gateway"
})
"gy" = (
/turf/simulated/wall/rust,
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"gz" = (
/turf/simulated/wall,
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"gA" = (
/turf/simulated/wall/r_wall,
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"gB" = (
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "floorgrime";
- tag = "icon-floorgrime (WEST)"
+ icon_state = "floorgrime"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"gC" = (
@@ -3830,7 +3348,6 @@
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a7{
always_unpowered = 1;
- has_gravity = 1;
name = "UO45 Caves";
power_environ = 0;
power_equip = 0;
@@ -3841,22 +3358,18 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"gE" = (
/obj/machinery/vending/dinnerware,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"gF" = (
@@ -3871,11 +3384,9 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"gG" = (
@@ -3884,11 +3395,9 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"gH" = (
@@ -3896,11 +3405,9 @@
/obj/machinery/reagentgrinder,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"gI" = (
@@ -3908,7 +3415,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/structure/disposalpipe/segment,
@@ -3916,7 +3422,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"gJ" = (
@@ -3924,7 +3429,6 @@
icon_state = "dark"
},
/area/awaycontent/a6{
- has_gravity = 1;
name = "UO45 Gateway"
})
"gK" = (
@@ -3933,33 +3437,25 @@
icon_state = "dark"
},
/area/awaycontent/a6{
- has_gravity = 1;
name = "UO45 Gateway"
})
"gL" = (
/turf/simulated/wall,
/area/awaycontent/a6{
- has_gravity = 1;
name = "UO45 Gateway"
})
"gM" = (
/turf/simulated/wall/rust,
/area/awaycontent/a6{
- has_gravity = 1;
name = "UO45 Gateway"
})
"gN" = (
/obj/structure/table,
-/obj/item/storage/toolbox/mechanical{
- pixel_x = 0;
- pixel_y = 0
- },
+/obj/item/storage/toolbox/mechanical,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitehall"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"gO" = (
@@ -3973,21 +3469,17 @@
amount = 23
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitehall"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"gP" = (
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"gQ" = (
@@ -3998,11 +3490,9 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"gR" = (
@@ -4010,7 +3500,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/structure/disposalpipe/segment,
@@ -4021,7 +3510,6 @@
/obj/effect/landmark/damageturf,
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"gS" = (
@@ -4033,7 +3521,6 @@
icon_state = "vault"
},
/area/awaycontent/a6{
- has_gravity = 1;
name = "UO45 Gateway"
})
"gT" = (
@@ -4045,7 +3532,6 @@
icon_state = "vault"
},
/area/awaycontent/a6{
- has_gravity = 1;
name = "UO45 Gateway"
})
"gU" = (
@@ -4057,7 +3543,6 @@
icon_state = "vault"
},
/area/awaycontent/a6{
- has_gravity = 1;
name = "UO45 Gateway"
})
"gV" = (
@@ -4065,7 +3550,6 @@
/obj/structure/window/full/reinforced,
/turf/simulated/floor/plating,
/area/awaycontent/a6{
- has_gravity = 1;
name = "UO45 Gateway"
})
"gW" = (
@@ -4079,7 +3563,6 @@
icon_state = "dark"
},
/area/awaycontent/a6{
- has_gravity = 1;
name = "UO45 Gateway"
})
"gX" = (
@@ -4089,7 +3572,6 @@
icon_state = "dark"
},
/area/awaycontent/a6{
- has_gravity = 1;
name = "UO45 Gateway"
})
"gY" = (
@@ -4098,25 +3580,20 @@
icon_state = "white"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"gZ" = (
/obj/machinery/firealarm/no_alarm{
- dir = 2;
- pixel_x = 0;
pixel_y = 24
},
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"ha" = (
/obj/machinery/alarm/monitor{
- frequency = 1439;
locked = 0;
pixel_y = 23;
req_access = null
@@ -4126,14 +3603,12 @@
},
/obj/machinery/camera{
c_tag = "Research Lab";
- dir = 2;
network = list("UO45","UO45R")
},
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"hb" = (
@@ -4141,7 +3616,6 @@
icon_state = "white"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"hc" = (
@@ -4163,13 +3637,11 @@
icon_state = "whitehall"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"hd" = (
/turf/simulated/wall/r_wall/rust,
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"he" = (
@@ -4177,7 +3649,6 @@
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a7{
always_unpowered = 1;
- has_gravity = 1;
name = "UO45 Caves";
power_environ = 0;
power_equip = 0;
@@ -4190,21 +3661,17 @@
},
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"hg" = (
/obj/machinery/alarm/monitor{
dir = 8;
- frequency = 1439;
locked = 0;
pixel_x = 23;
- pixel_y = 0;
req_access = null
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"hh" = (
@@ -4217,7 +3684,6 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"hi" = (
@@ -4226,7 +3692,6 @@
},
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"hj" = (
@@ -4236,7 +3701,6 @@
icon_state = "bar"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"hk" = (
@@ -4245,7 +3709,6 @@
icon_state = "bar"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"hl" = (
@@ -4254,7 +3717,6 @@
icon_state = "bar"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"hm" = (
@@ -4263,7 +3725,6 @@
icon_state = "bar"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"hn" = (
@@ -4274,7 +3735,6 @@
icon_state = "bar"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"ho" = (
@@ -4284,18 +3744,14 @@
icon_state = "bar"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"hp" = (
-/obj/machinery/vending/boozeomat{
- req_access_txt = "0"
- },
+/obj/machinery/vending/boozeomat,
/turf/simulated/floor/plasteel{
icon_state = "bar"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"hq" = (
@@ -4306,46 +3762,37 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"hr" = (
/obj/structure/extinguisher_cabinet{
- pixel_x = -25;
- pixel_y = 0
+ pixel_x = -25
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"hs" = (
/obj/structure/table,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"ht" = (
/obj/machinery/alarm/monitor{
dir = 8;
- frequency = 1439;
locked = 0;
pixel_x = 23;
- pixel_y = 0;
req_access = null
},
/obj/machinery/camera{
@@ -4360,11 +3807,9 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"hu" = (
@@ -4376,7 +3821,6 @@
icon_state = "vault"
},
/area/awaycontent/a6{
- has_gravity = 1;
name = "UO45 Gateway"
})
"hv" = (
@@ -4388,7 +3832,6 @@
icon_state = "vault"
},
/area/awaycontent/a6{
- has_gravity = 1;
name = "UO45 Gateway"
})
"hw" = (
@@ -4399,29 +3842,21 @@
icon_state = "dark"
},
/area/awaycontent/a6{
- has_gravity = 1;
name = "UO45 Gateway"
})
"hx" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/obj/structure/chair{
- tag = "icon-chair (WEST)";
- icon_state = "chair";
dir = 8
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/awaycontent/a6{
- has_gravity = 1;
name = "UO45 Gateway"
})
"hy" = (
/obj/structure/chair{
- tag = "icon-chair (WEST)";
- icon_state = "chair";
dir = 8
},
/obj/effect/decal/cleanable/dirt,
@@ -4429,7 +3864,6 @@
icon_state = "dark"
},
/area/awaycontent/a6{
- has_gravity = 1;
name = "UO45 Gateway"
})
"hz" = (
@@ -4441,14 +3875,12 @@
/obj/effect/landmark/burnturf,
/turf/simulated/floor/plasteel,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"hA" = (
/obj/structure/closet/firecloset,
/turf/simulated/floor/plating,
/area/awaycontent/a6{
- has_gravity = 1;
name = "UO45 Gateway"
})
"hB" = (
@@ -4459,7 +3891,6 @@
/obj/item/storage/box/lights/mixed,
/turf/simulated/floor/plating,
/area/awaycontent/a6{
- has_gravity = 1;
name = "UO45 Gateway"
})
"hC" = (
@@ -4467,7 +3898,6 @@
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel,
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"hD" = (
@@ -4476,7 +3906,6 @@
icon_state = "white"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"hE" = (
@@ -4502,18 +3931,14 @@
icon_state = "white"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"hF" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"hG" = (
@@ -4529,7 +3954,6 @@
icon_state = "white"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"hH" = (
@@ -4537,7 +3961,6 @@
/obj/structure/window/full/reinforced,
/turf/simulated/floor/plating,
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"hI" = (
@@ -4554,21 +3977,18 @@
icon_state = "whitehall"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"hJ" = (
/obj/structure/table,
/obj/item/trash/chips,
/obj/machinery/computer/security/telescreen/entertainment{
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/plasteel{
icon_state = "bar"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"hK" = (
@@ -4576,20 +3996,16 @@
icon_state = "bar"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"hL" = (
/obj/structure/chair{
- tag = "icon-chair (WEST)";
- icon_state = "chair";
dir = 8
},
/turf/simulated/floor/plasteel{
icon_state = "bar"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"hM" = (
@@ -4599,7 +4015,6 @@
icon_state = "bar"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"hN" = (
@@ -4608,7 +4023,6 @@
icon_state = "bar"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"hO" = (
@@ -4619,7 +4033,6 @@
icon_state = "bar"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"hP" = (
@@ -4632,7 +4045,6 @@
icon_state = "bar"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"hQ" = (
@@ -4648,25 +4060,21 @@
icon_state = "bar"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"hR" = (
/obj/structure/table,
/obj/item/reagent_containers/food/condiment/saltshaker{
- pixel_x = -3;
- pixel_y = 0
+ pixel_x = -3
},
/obj/item/reagent_containers/food/condiment/peppermill{
pixel_x = 3
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"hS" = (
@@ -4676,11 +4084,9 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"hT" = (
@@ -4690,11 +4096,9 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"hU" = (
@@ -4702,11 +4106,9 @@
/obj/item/reagent_containers/food/snacks/mint,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"hV" = (
@@ -4718,7 +4120,6 @@
},
/turf/simulated/floor/plating,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"hW" = (
@@ -4730,11 +4131,9 @@
/obj/item/book/manual/chef_recipes,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"hX" = (
@@ -4743,7 +4142,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"hY" = (
@@ -4751,18 +4149,15 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- tag = "icon-manifold-b-f (EAST)"
+ initialize_directions = 11
},
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"hZ" = (
@@ -4774,7 +4169,6 @@
icon_state = "vault"
},
/area/awaycontent/a6{
- has_gravity = 1;
name = "UO45 Gateway"
})
"ia" = (
@@ -4786,63 +4180,52 @@
icon_state = "vault"
},
/area/awaycontent/a6{
- has_gravity = 1;
name = "UO45 Gateway"
})
"ib" = (
/obj/machinery/gateway,
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "vault"
},
/area/awaycontent/a6{
- has_gravity = 1;
name = "UO45 Gateway"
})
"ic" = (
/obj/machinery/alarm/monitor{
dir = 8;
- frequency = 1439;
locked = 0;
pixel_x = 23;
- pixel_y = 0;
req_access = null
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/chair{
- tag = "icon-chair (WEST)";
- icon_state = "chair";
dir = 8
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/awaycontent/a6{
- has_gravity = 1;
name = "UO45 Gateway"
})
"id" = (
/obj/structure/chair{
- tag = "icon-chair (WEST)";
- icon_state = "chair";
dir = 8
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/awaycontent/a6{
- has_gravity = 1;
name = "UO45 Gateway"
})
"ie" = (
/obj/machinery/portable_atmospherics/scrubber,
/turf/simulated/floor/plating,
/area/awaycontent/a6{
- has_gravity = 1;
name = "UO45 Gateway"
})
"if" = (
@@ -4850,13 +4233,11 @@
/obj/item/clothing/mask/breath,
/turf/simulated/floor/plating,
/area/awaycontent/a6{
- has_gravity = 1;
name = "UO45 Gateway"
})
"ig" = (
/turf/simulated/floor/plating,
/area/awaycontent/a6{
- has_gravity = 1;
name = "UO45 Gateway"
})
"ih" = (
@@ -4866,20 +4247,17 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"ii" = (
/obj/machinery/r_n_d/circuit_imprinter,
/turf/simulated/floor/plasteel,
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"ij" = (
/turf/simulated/floor/plasteel,
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"ik" = (
@@ -4888,7 +4266,6 @@
icon_state = "white"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"il" = (
@@ -4903,7 +4280,6 @@
icon_state = "whitehall"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"im" = (
@@ -4913,13 +4289,10 @@
icon_state = "bar"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"in" = (
/obj/structure/chair{
- tag = "icon-chair (WEST)";
- icon_state = "chair";
dir = 8
},
/obj/effect/decal/cleanable/dirt,
@@ -4927,7 +4300,6 @@
icon_state = "bar"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"io" = (
@@ -4937,7 +4309,6 @@
icon_state = "bar"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"ip" = (
@@ -4948,7 +4319,6 @@
icon_state = "bar"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"iq" = (
@@ -4959,11 +4329,9 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"ir" = (
@@ -4971,26 +4339,21 @@
/obj/item/kitchen/rollingpin,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"is" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/obj/machinery/processor,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"it" = (
@@ -4999,7 +4362,6 @@
icon_state = "dark"
},
/area/awaycontent/a6{
- has_gravity = 1;
name = "UO45 Gateway"
})
"iu" = (
@@ -5011,7 +4373,6 @@
icon_state = "dark"
},
/area/awaycontent/a6{
- has_gravity = 1;
name = "UO45 Gateway"
})
"iv" = (
@@ -5021,7 +4382,6 @@
icon_state = "dark"
},
/area/awaycontent/a6{
- has_gravity = 1;
name = "UO45 Gateway"
})
"iw" = (
@@ -5029,7 +4389,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/door/window{
@@ -5041,14 +4400,11 @@
icon_state = "dark"
},
/area/awaycontent/a6{
- has_gravity = 1;
name = "UO45 Gateway"
})
"ix" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/chair{
- tag = "icon-chair (WEST)";
- icon_state = "chair";
dir = 8
},
/obj/effect/decal/cleanable/dirt,
@@ -5059,7 +4415,6 @@
icon_state = "dark"
},
/area/awaycontent/a6{
- has_gravity = 1;
name = "UO45 Gateway"
})
"iy" = (
@@ -5068,7 +4423,6 @@
},
/turf/simulated/floor/plating,
/area/awaycontent/a6{
- has_gravity = 1;
name = "UO45 Gateway"
})
"iz" = (
@@ -5083,7 +4437,6 @@
icon_state = "white"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"iA" = (
@@ -5098,7 +4451,6 @@
icon_state = "white"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"iB" = (
@@ -5110,7 +4462,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a6{
- has_gravity = 1;
name = "UO45 Gateway"
})
"iC" = (
@@ -5124,7 +4475,6 @@
icon_state = "white"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"iD" = (
@@ -5136,7 +4486,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a6{
- has_gravity = 1;
name = "UO45 Gateway"
})
"iE" = (
@@ -5149,7 +4498,6 @@
icon_state = "whitehall"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"iF" = (
@@ -5158,7 +4506,6 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"iG" = (
@@ -5168,7 +4515,6 @@
icon_state = "bar"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"iH" = (
@@ -5178,7 +4524,6 @@
icon_state = "bar"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"iI" = (
@@ -5188,7 +4533,6 @@
icon_state = "bar"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"iJ" = (
@@ -5197,24 +4541,19 @@
icon_state = "bar"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"iK" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"iL" = (
@@ -5224,11 +4563,9 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"iM" = (
@@ -5250,11 +4587,9 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"iN" = (
@@ -5262,7 +4597,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -5274,7 +4608,6 @@
/obj/effect/landmark/damageturf,
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"iO" = (
@@ -5283,16 +4616,13 @@
/obj/effect/landmark/damageturf,
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"iP" = (
/obj/machinery/alarm/monitor{
dir = 4;
- frequency = 1439;
locked = 0;
pixel_x = -23;
- pixel_y = 0;
req_access = null
},
/obj/machinery/camera{
@@ -5303,7 +4633,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a6{
- has_gravity = 1;
name = "UO45 Gateway"
})
"iQ" = (
@@ -5311,7 +4640,6 @@
/obj/machinery/recharger,
/turf/simulated/floor/plasteel,
/area/awaycontent/a6{
- has_gravity = 1;
name = "UO45 Gateway"
})
"iR" = (
@@ -5319,12 +4647,10 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a6{
- has_gravity = 1;
name = "UO45 Gateway"
})
"iS" = (
@@ -5335,7 +4661,6 @@
},
/turf/simulated/floor/plating,
/area/awaycontent/a6{
- has_gravity = 1;
name = "UO45 Gateway"
})
"iT" = (
@@ -5343,21 +4668,17 @@
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel,
/area/awaycontent/a6{
- has_gravity = 1;
name = "UO45 Gateway"
})
"iU" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/structure/chair{
- tag = "icon-chair (WEST)";
- icon_state = "chair";
dir = 8
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/awaycontent/a6{
- has_gravity = 1;
name = "UO45 Gateway"
})
"iV" = (
@@ -5368,15 +4689,12 @@
dir = 4
},
/obj/structure/chair{
- tag = "icon-chair (WEST)";
- icon_state = "chair";
dir = 8
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/awaycontent/a6{
- has_gravity = 1;
name = "UO45 Gateway"
})
"iW" = (
@@ -5385,7 +4703,6 @@
},
/turf/simulated/wall,
/area/awaycontent/a6{
- has_gravity = 1;
name = "UO45 Gateway"
})
"iX" = (
@@ -5397,19 +4714,16 @@
icon_state = "white"
},
/area/awaycontent/a6{
- has_gravity = 1;
name = "UO45 Gateway"
})
"iY" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10;
- level = 1
+ dir = 10
},
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/awaycontent/a6{
- has_gravity = 1;
name = "UO45 Gateway"
})
"iZ" = (
@@ -5431,7 +4745,6 @@
icon_state = "white"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"ja" = (
@@ -5443,14 +4756,12 @@
icon_state = "white"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"jb" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"jc" = (
@@ -5459,33 +4770,27 @@
},
/obj/machinery/alarm/monitor{
dir = 4;
- frequency = 1439;
locked = 0;
pixel_x = -23;
- pixel_y = 0;
req_access = null
},
/turf/simulated/floor/plasteel{
icon_state = "bar"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"jd" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/obj/machinery/computer/security/telescreen/entertainment{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/turf/simulated/floor/plasteel{
icon_state = "bar"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"je" = (
@@ -5493,11 +4798,9 @@
/obj/structure/disposalpipe/junction,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"jf" = (
@@ -5508,16 +4811,13 @@
/obj/structure/sign/deathsposal{
desc = "A warning sign which reads 'DISPOSAL: LEADS TO EXTERIOR'";
name = "\improper DISPOSAL: LEADS TO EXTERIOR";
- pixel_x = 0;
pixel_y = -32
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"jg" = (
@@ -5533,11 +4833,9 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"jh" = (
@@ -5548,7 +4846,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a6{
- has_gravity = 1;
name = "UO45 Gateway"
})
"ji" = (
@@ -5556,7 +4853,6 @@
/obj/effect/decal/warning_stripes/northeast,
/turf/simulated/floor/plasteel,
/area/awaycontent/a6{
- has_gravity = 1;
name = "UO45 Gateway"
})
"jj" = (
@@ -5565,7 +4861,6 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a6{
- has_gravity = 1;
name = "UO45 Gateway"
})
"jk" = (
@@ -5573,7 +4868,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -5581,7 +4875,6 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a6{
- has_gravity = 1;
name = "UO45 Gateway"
})
"jl" = (
@@ -5592,7 +4885,6 @@
},
/turf/simulated/floor/plating,
/area/awaycontent/a6{
- has_gravity = 1;
name = "UO45 Gateway"
})
"jm" = (
@@ -5602,7 +4894,6 @@
/obj/structure/chair/stool,
/turf/simulated/floor/plasteel,
/area/awaycontent/a6{
- has_gravity = 1;
name = "UO45 Gateway"
})
"jn" = (
@@ -5613,7 +4904,6 @@
icon_state = "dark"
},
/area/awaycontent/a6{
- has_gravity = 1;
name = "UO45 Gateway"
})
"jo" = (
@@ -5622,7 +4912,6 @@
icon_state = "dark"
},
/area/awaycontent/a6{
- has_gravity = 1;
name = "UO45 Gateway"
})
"jp" = (
@@ -5633,7 +4922,6 @@
icon_state = "white"
},
/area/awaycontent/a6{
- has_gravity = 1;
name = "UO45 Gateway"
})
"jq" = (
@@ -5648,7 +4936,6 @@
icon_state = "dark"
},
/area/awaycontent/a6{
- has_gravity = 1;
name = "UO45 Gateway"
})
"jr" = (
@@ -5661,23 +4948,18 @@
icon_state = "white"
},
/area/awaycontent/a6{
- has_gravity = 1;
name = "UO45 Gateway"
})
"js" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/table,
/obj/item/folder/white,
-/obj/item/disk/tech_disk{
- pixel_x = 0;
- pixel_y = 0
- },
+/obj/item/disk/tech_disk,
/obj/item/disk/design_disk,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"jt" = (
@@ -5687,7 +4969,6 @@
icon_state = "white"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"ju" = (
@@ -5697,7 +4978,6 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"jv" = (
@@ -5708,7 +4988,6 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"jw" = (
@@ -5720,7 +4999,6 @@
icon_state = "bar"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"jx" = (
@@ -5729,21 +5007,18 @@
icon_state = "bar"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"jy" = (
/obj/machinery/door/window/southright{
name = "Bar Door";
- req_access_txt = "201";
- req_one_access_txt = "0"
+ req_access_txt = "201"
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
icon_state = "bar"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"jz" = (
@@ -5753,7 +5028,6 @@
icon_state = "bar"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"jA" = (
@@ -5767,7 +5041,6 @@
icon_state = "bar"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"jB" = (
@@ -5775,8 +5048,7 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 7;
- tag = "icon-manifold-r-f (WEST)"
+ initialize_directions = 7
},
/obj/machinery/door/airlock{
name = "Kitchen";
@@ -5786,7 +5058,6 @@
icon_state = "bar"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"jC" = (
@@ -5795,7 +5066,6 @@
},
/turf/simulated/wall,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"jD" = (
@@ -5804,14 +5074,12 @@
},
/turf/simulated/wall/rust,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"jE" = (
/obj/effect/landmark/burnturf,
/turf/simulated/floor/plasteel,
/area/awaycontent/a6{
- has_gravity = 1;
name = "UO45 Gateway"
})
"jF" = (
@@ -5820,7 +5088,6 @@
},
/turf/simulated/wall/r_wall,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"jG" = (
@@ -5842,7 +5109,6 @@
icon_state = "white"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"jH" = (
@@ -5865,14 +5131,12 @@
icon_state = "white"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"jI" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a6{
- has_gravity = 1;
name = "UO45 Gateway"
})
"jJ" = (
@@ -5882,7 +5146,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a6{
- has_gravity = 1;
name = "UO45 Gateway"
})
"jK" = (
@@ -5894,35 +5157,29 @@
icon_state = "white"
},
/area/awaycontent/a6{
- has_gravity = 1;
name = "UO45 Gateway"
})
"jL" = (
/obj/machinery/alarm/monitor{
dir = 8;
- frequency = 1439;
locked = 0;
pixel_x = 23;
- pixel_y = 0;
req_access = null
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- tag = "icon-manifold-r-f (EAST)"
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/awaycontent/a6{
- has_gravity = 1;
name = "UO45 Gateway"
})
"jM" = (
/obj/machinery/light/small,
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"jN" = (
@@ -5931,7 +5188,6 @@
/obj/structure/window/full/basic,
/turf/simulated/floor/plating,
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"jO" = (
@@ -5939,7 +5195,6 @@
/obj/structure/window/full/basic,
/turf/simulated/floor/plating,
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"jP" = (
@@ -5948,14 +5203,12 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/airlock/research{
name = "Research Lab";
- req_access_txt = "201";
- req_one_access_txt = "0"
+ req_access_txt = "201"
},
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"jQ" = (
@@ -5964,7 +5217,6 @@
},
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"jR" = (
@@ -5972,7 +5224,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"jS" = (
@@ -5980,7 +5231,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -5992,20 +5242,16 @@
/obj/effect/landmark/burnturf,
/turf/simulated/floor/plating,
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"jT" = (
/obj/structure/chair{
- tag = "icon-chair (EAST)";
- icon_state = "chair";
dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "bar"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"jU" = (
@@ -6015,7 +5261,6 @@
icon_state = "bar"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"jV" = (
@@ -6026,20 +5271,18 @@
icon_state = "bar"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"jW" = (
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/obj/machinery/power/apc/noalarm{
cell_type = 15000;
dir = 1;
locked = 0;
name = "UO45 Bar APC";
- pixel_x = 0;
pixel_y = 25;
req_access = null;
start_charge = 100
@@ -6048,7 +5291,6 @@
icon_state = "bar"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"jX" = (
@@ -6062,12 +5304,11 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/junction{
- icon_state = "pipe-j2";
- dir = 2
+ dir = 2;
+ icon_state = "pipe-j2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -6077,7 +5318,6 @@
icon_state = "bar"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"jY" = (
@@ -6085,7 +5325,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/light/small{
@@ -6099,7 +5338,6 @@
icon_state = "bar"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"jZ" = (
@@ -6107,7 +5345,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -6118,7 +5355,6 @@
},
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"ka" = (
@@ -6126,7 +5362,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -6135,13 +5370,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
- req_one_access_txt = "0"
- },
+/obj/machinery/door/airlock/maintenance,
/turf/simulated/floor/plating,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"kb" = (
@@ -6149,7 +5380,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/structure/disposalpipe/segment,
@@ -6157,7 +5387,6 @@
/obj/effect/landmark/damageturf,
/turf/simulated/floor/plating,
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"kc" = (
@@ -6165,7 +5394,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -6177,7 +5405,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"kd" = (
@@ -6197,7 +5424,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"ke" = (
@@ -6206,26 +5432,21 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/door/airlock/command{
icon_state = "door_closed";
- lockdownbyai = 0;
- locked = 0;
name = "Gateway Chamber";
req_access_txt = "201"
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a6{
- has_gravity = 1;
name = "UO45 Gateway"
})
"kf" = (
/obj/machinery/suit_storage_unit/engine,
/turf/simulated/floor/plating,
/area/awaycontent/a6{
- has_gravity = 1;
name = "UO45 Gateway"
})
"kg" = (
@@ -6234,7 +5455,6 @@
icon_state = "white"
},
/area/awaycontent/a6{
- has_gravity = 1;
name = "UO45 Gateway"
})
"kh" = (
@@ -6243,30 +5463,24 @@
icon_state = "white"
},
/area/awaycontent/a6{
- has_gravity = 1;
name = "UO45 Gateway"
})
"ki" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- tag = "icon-whitepurplecorner (EAST)";
- icon_state = "whitepurplecorner";
- dir = 4
+ dir = 4;
+ icon_state = "whitepurplecorner"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"kj" = (
-/obj/item/twohanded/required/kirbyplants{
- layer = 5
- },
+/obj/item/twohanded/required/kirbyplants,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"kk" = (
@@ -6276,7 +5490,6 @@
icon_state = "whitepurplecorner"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"kl" = (
@@ -6287,7 +5500,6 @@
icon_state = "whitepurple"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"km" = (
@@ -6296,7 +5508,6 @@
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel,
/area/awaycontent/a6{
- has_gravity = 1;
name = "UO45 Gateway"
})
"kn" = (
@@ -6306,7 +5517,6 @@
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel,
/area/awaycontent/a6{
- has_gravity = 1;
name = "UO45 Gateway"
})
"ko" = (
@@ -6317,19 +5527,16 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"kp" = (
/obj/machinery/alarm/monitor{
- frequency = 1439;
locked = 0;
pixel_y = 23;
req_access = null
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"kq" = (
@@ -6339,7 +5546,6 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"kr" = (
@@ -6348,7 +5554,6 @@
icon_state = "bar"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"ks" = (
@@ -6359,7 +5564,6 @@
icon_state = "bar"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"kt" = (
@@ -6370,7 +5574,6 @@
icon_state = "bar"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"ku" = (
@@ -6378,14 +5581,12 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- tag = "icon-manifold-r-f (EAST)"
+ initialize_directions = 11
},
/obj/machinery/firealarm/no_alarm{
dir = 4;
@@ -6396,7 +5597,6 @@
icon_state = "bar"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"kv" = (
@@ -6408,7 +5608,6 @@
icon_state = "bar"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"kw" = (
@@ -6427,7 +5626,6 @@
/obj/effect/landmark/damageturf,
/turf/simulated/floor/plating,
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"kx" = (
@@ -6440,14 +5638,12 @@
/obj/item/multitool,
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"ky" = (
/obj/structure/closet/l3closet/general,
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "UO45 Central Hall"
})
"kz" = (
@@ -6455,18 +5651,15 @@
/obj/item/storage/belt/utility,
/obj/item/clothing/head/welding,
/obj/structure/sign/biohazard{
- pixel_x = 0;
pixel_y = 32
},
/obj/item/assembly/prox_sensor,
/obj/item/assembly/prox_sensor,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "warndark";
- tag = "icon-warndark (EAST)"
+ icon_state = "warndark"
},
/area/awaycontent/a6{
- has_gravity = 1;
name = "UO45 Gateway"
})
"kA" = (
@@ -6479,7 +5672,6 @@
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel,
/area/awaycontent/a6{
- has_gravity = 1;
name = "UO45 Gateway"
})
"kB" = (
@@ -6493,27 +5685,21 @@
icon_state = "white"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"kC" = (
/obj/structure/chair{
- tag = "icon-chair (WEST)";
- icon_state = "chair";
dir = 8
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"kD" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/portable_atmospherics/scrubber,
/obj/structure/window/basic{
- tag = "icon-window (EAST)";
- icon_state = "window";
dir = 4
},
/obj/effect/decal/cleanable/dirt,
@@ -6521,7 +5707,6 @@
icon_state = "white"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"kE" = (
@@ -6539,7 +5724,6 @@
icon_state = "white"
},
/area/awaycontent/a6{
- has_gravity = 1;
name = "UO45 Gateway"
})
"kF" = (
@@ -6555,7 +5739,6 @@
icon_state = "white"
},
/area/awaycontent/a6{
- has_gravity = 1;
name = "UO45 Gateway"
})
"kG" = (
@@ -6564,7 +5747,6 @@
icon_state = "white"
},
/area/awaycontent/a6{
- has_gravity = 1;
name = "UO45 Gateway"
})
"kH" = (
@@ -6572,12 +5754,10 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- tag = "icon-whitepurplecorner (EAST)";
- icon_state = "whitepurplecorner";
- dir = 4
+ dir = 4;
+ icon_state = "whitepurplecorner"
},
/area/awaycontent/a6{
- has_gravity = 1;
name = "UO45 Gateway"
})
"kI" = (
@@ -6586,12 +5766,10 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- tag = "icon-whitepurplecorner (EAST)";
- icon_state = "whitepurplecorner";
- dir = 4
+ dir = 4;
+ icon_state = "whitepurplecorner"
},
/area/awaycontent/a6{
- has_gravity = 1;
name = "UO45 Gateway"
})
"kJ" = (
@@ -6602,17 +5780,14 @@
on = 1
},
/turf/simulated/floor/plasteel{
- tag = "icon-whitepurplecorner (EAST)";
- icon_state = "whitepurplecorner";
- dir = 4
+ dir = 4;
+ icon_state = "whitepurplecorner"
},
/area/awaycontent/a6{
- has_gravity = 1;
name = "UO45 Gateway"
})
"kK" = (
/obj/machinery/alarm/monitor{
- frequency = 1439;
locked = 0;
pixel_y = 23;
req_access = null
@@ -6624,28 +5799,23 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- tag = "icon-whitepurplecorner (EAST)";
- icon_state = "whitepurplecorner";
dir = 4;
- heat_capacity = 1e+006
+ heat_capacity = 1e+006;
+ icon_state = "whitepurplecorner"
},
/area/awaycontent/a6{
- has_gravity = 1;
name = "UO45 Gateway"
})
"kL" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 14;
- tag = "icon-manifold-r-f (NORTH)"
+ initialize_directions = 14
},
/turf/simulated/floor/plasteel{
- tag = "icon-whitepurplecorner (EAST)";
- icon_state = "whitepurplecorner";
- dir = 4
+ dir = 4;
+ icon_state = "whitepurplecorner"
},
/area/awaycontent/a6{
- has_gravity = 1;
name = "UO45 Gateway"
})
"kM" = (
@@ -6658,12 +5828,10 @@
req_access_txt = "201"
},
/turf/simulated/floor/plasteel{
- tag = "icon-whitepurplecorner (EAST)";
- icon_state = "whitepurplecorner";
- dir = 4
+ dir = 4;
+ icon_state = "whitepurplecorner"
},
/area/awaycontent/a6{
- has_gravity = 1;
name = "UO45 Gateway"
})
"kN" = (
@@ -6672,20 +5840,17 @@
icon_state = "white"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"kO" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 14;
- tag = "icon-manifold-r-f (NORTH)"
+ initialize_directions = 14
},
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"kP" = (
@@ -6696,7 +5861,6 @@
icon_state = "white"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"kQ" = (
@@ -6709,7 +5873,6 @@
icon_state = "white"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"kR" = (
@@ -6717,12 +5880,10 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- tag = "icon-whitepurplecorner (EAST)";
- icon_state = "whitepurplecorner";
- dir = 4
+ dir = 4;
+ icon_state = "whitepurplecorner"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"kS" = (
@@ -6731,32 +5892,26 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- tag = "icon-whitepurplecorner (EAST)";
- icon_state = "whitepurplecorner";
- dir = 4
+ dir = 4;
+ icon_state = "whitepurplecorner"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"kT" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 14;
- tag = "icon-manifold-r-f (NORTH)"
+ initialize_directions = 14
},
/turf/simulated/floor/plasteel{
- tag = "icon-whitepurplecorner (EAST)";
- icon_state = "whitepurplecorner";
- dir = 4
+ dir = 4;
+ icon_state = "whitepurplecorner"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"kU" = (
/obj/machinery/alarm/monitor{
- frequency = 1439;
locked = 0;
pixel_y = 23;
req_access = null
@@ -6768,12 +5923,10 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- tag = "icon-whitepurplecorner (EAST)";
- icon_state = "whitepurplecorner";
- dir = 4
+ dir = 4;
+ icon_state = "whitepurplecorner"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"kV" = (
@@ -6782,37 +5935,30 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- tag = "icon-whitepurplecorner (EAST)";
- icon_state = "whitepurplecorner";
- dir = 4
+ dir = 4;
+ icon_state = "whitepurplecorner"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"kW" = (
/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
pixel_y = 30
},
/turf/simulated/floor/plasteel{
- tag = "icon-whitepurplecorner (EAST)";
- icon_state = "whitepurplecorner";
- dir = 4
+ dir = 4;
+ icon_state = "whitepurplecorner"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"kX" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- tag = "icon-whitepurplecorner (EAST)";
- icon_state = "whitepurplecorner";
- dir = 4
+ dir = 4;
+ icon_state = "whitepurplecorner"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"kY" = (
@@ -6821,7 +5967,6 @@
icon_state = "whitepurple"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"kZ" = (
@@ -6829,7 +5974,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/structure/disposalpipe/segment,
@@ -6838,7 +5982,6 @@
icon_state = "white"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"la" = (
@@ -6850,7 +5993,6 @@
icon_state = "warnwhite"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"lb" = (
@@ -6866,7 +6008,6 @@
icon_state = "warnwhite"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"lc" = (
@@ -6878,7 +6019,6 @@
icon_state = "warnwhite"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"ld" = (
@@ -6887,25 +6027,21 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"le" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 7;
- tag = "icon-manifold-b-f (WEST)"
+ initialize_directions = 7
},
/obj/structure/sign/science{
pixel_x = -32
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "purplecorner";
- tag = "icon-purplecorner (WEST)"
+ icon_state = "purplecorner"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"lf" = (
@@ -6915,25 +6051,21 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"lg" = (
/obj/machinery/firealarm/no_alarm{
dir = 1;
- pixel_x = 0;
pixel_y = -24
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"lh" = (
/obj/machinery/light/small,
/turf/simulated/floor/plasteel,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"li" = (
@@ -6944,7 +6076,6 @@
icon_state = "bar"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"lj" = (
@@ -6952,14 +6083,12 @@
dir = 5
},
/obj/machinery/newscaster{
- pixel_x = 0;
pixel_y = -28
},
/turf/simulated/floor/plasteel{
icon_state = "bar"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"lk" = (
@@ -6971,7 +6100,6 @@
},
/obj/machinery/alarm/monitor{
dir = 1;
- frequency = 1439;
locked = 0;
pixel_y = -23;
req_access = null
@@ -6980,7 +6108,6 @@
icon_state = "bar"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"ll" = (
@@ -6996,7 +6123,6 @@
icon_state = "bar"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"lm" = (
@@ -7004,7 +6130,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/structure/disposalpipe/junction,
@@ -7013,7 +6138,6 @@
icon_state = "bar"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"ln" = (
@@ -7022,20 +6146,17 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- tag = "icon-manifold-b-f (EAST)"
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
icon_state = "bar"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"lo" = (
/turf/simulated/wall/r_wall,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"lp" = (
@@ -7053,11 +6174,9 @@
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "warndark";
- tag = "icon-warndark (EAST)"
+ icon_state = "warndark"
},
/area/awaycontent/a6{
- has_gravity = 1;
name = "UO45 Gateway"
})
"lq" = (
@@ -7065,7 +6184,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/unary/vent_pump{
@@ -7074,7 +6192,6 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a6{
- has_gravity = 1;
name = "UO45 Gateway"
})
"lr" = (
@@ -7086,7 +6203,6 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a6{
- has_gravity = 1;
name = "UO45 Gateway"
})
"ls" = (
@@ -7094,7 +6210,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -7102,7 +6217,6 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a6{
- has_gravity = 1;
name = "UO45 Gateway"
})
"lt" = (
@@ -7110,7 +6224,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/cable{
@@ -7120,7 +6233,6 @@
tag = ""
},
/obj/machinery/alarm/monitor{
- frequency = 1439;
locked = 0;
pixel_y = 23;
req_access = null
@@ -7130,12 +6242,10 @@
},
/obj/machinery/camera{
c_tag = "Gateway Ready Room";
- dir = 2;
network = list("UO45","UO45R")
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a6{
- has_gravity = 1;
name = "UO45 Gateway"
})
"lu" = (
@@ -7143,7 +6253,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -7152,7 +6261,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a6{
- has_gravity = 1;
name = "UO45 Gateway"
})
"lv" = (
@@ -7160,7 +6268,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
@@ -7168,7 +6275,6 @@
icon_state = "white"
},
/area/awaycontent/a6{
- has_gravity = 1;
name = "UO45 Gateway"
})
"lw" = (
@@ -7177,7 +6283,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -7185,14 +6290,11 @@
},
/obj/machinery/door/airlock/command{
icon_state = "door_closed";
- lockdownbyai = 0;
- locked = 0;
name = "Gateway Ready Room";
req_access_txt = "201"
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a6{
- has_gravity = 1;
name = "UO45 Gateway"
})
"lx" = (
@@ -7201,7 +6303,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -7215,7 +6316,6 @@
icon_state = "white"
},
/area/awaycontent/a6{
- has_gravity = 1;
name = "UO45 Gateway"
})
"ly" = (
@@ -7223,19 +6323,16 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 1;
- initialize_directions = 14;
- tag = "icon-manifold-b-f (NORTH)"
+ initialize_directions = 14
},
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/awaycontent/a6{
- has_gravity = 1;
name = "UO45 Gateway"
})
"lz" = (
@@ -7243,18 +6340,15 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/awaycontent/a6{
- has_gravity = 1;
name = "UO45 Gateway"
})
"lA" = (
@@ -7262,16 +6356,13 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/awaycontent/a6{
- has_gravity = 1;
name = "UO45 Gateway"
})
"lB" = (
@@ -7279,12 +6370,10 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/firealarm/no_alarm{
dir = 1;
- pixel_x = 0;
pixel_y = -24
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -7296,11 +6385,9 @@
network = list("UO45","UO45R")
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/awaycontent/a6{
- has_gravity = 1;
name = "UO45 Gateway"
})
"lC" = (
@@ -7308,7 +6395,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -7318,11 +6404,9 @@
dir = 1
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/awaycontent/a6{
- has_gravity = 1;
name = "UO45 Gateway"
})
"lD" = (
@@ -7331,7 +6415,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -7342,11 +6425,9 @@
req_access_txt = "201"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/awaycontent/a6{
- has_gravity = 1;
name = "UO45 Gateway"
})
"lE" = (
@@ -7354,7 +6435,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -7362,11 +6442,9 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/awaycontent/a6{
- has_gravity = 1;
name = "UO45 Gateway"
})
"lF" = (
@@ -7374,7 +6452,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/cable{
@@ -7389,16 +6466,13 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 1;
- initialize_directions = 14;
- tag = "icon-manifold-b-f (NORTH)"
+ initialize_directions = 14
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"lG" = (
@@ -7406,7 +6480,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -7414,11 +6487,9 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"lH" = (
@@ -7428,10 +6499,8 @@
},
/obj/machinery/power/apc/noalarm{
cell_type = 15000;
- dir = 2;
locked = 0;
name = "UO45 Research Division APC";
- pixel_x = 0;
pixel_y = -25;
req_access = null;
start_charge = 100
@@ -7443,11 +6512,9 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"lI" = (
@@ -7455,27 +6522,21 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/light,
/obj/structure/disposalpipe/junction{
- dir = 8;
- icon_state = "pipe-j1";
- tag = "icon-pipe-j1 (EAST)"
+ dir = 8
},
/obj/machinery/firealarm/no_alarm{
dir = 1;
- pixel_x = 0;
pixel_y = -24
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"lJ" = (
@@ -7485,14 +6546,12 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 1;
- initialize_directions = 14;
- tag = "icon-manifold-b-f (NORTH)"
+ initialize_directions = 14
},
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"lK" = (
@@ -7504,11 +6563,9 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"lL" = (
@@ -7517,11 +6574,9 @@
on = 1
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"lM" = (
@@ -7530,17 +6585,14 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"lN" = (
/obj/machinery/firealarm/no_alarm{
dir = 1;
- pixel_x = 0;
pixel_y = -24
},
/obj/machinery/camera{
@@ -7549,20 +6601,16 @@
network = list("UO45","UO45R")
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"lO" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"lP" = (
@@ -7574,27 +6622,21 @@
icon_state = "white"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"lQ" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"lR" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "purple";
- tag = "icon-purple (WEST)"
+ icon_state = "purple"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"lS" = (
@@ -7604,13 +6646,10 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"lT" = (
/obj/structure/chair{
- tag = "icon-chair (EAST)";
- icon_state = "chair";
dir = 4
},
/obj/effect/decal/cleanable/dirt,
@@ -7618,14 +6657,12 @@
icon_state = "bar"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"lU" = (
/obj/structure/table,
/obj/item/reagent_containers/food/condiment/saltshaker{
- pixel_x = -3;
- pixel_y = 0
+ pixel_x = -3
},
/obj/item/reagent_containers/food/condiment/peppermill{
pixel_x = 3
@@ -7634,7 +6671,6 @@
icon_state = "bar"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"lV" = (
@@ -7645,14 +6681,12 @@
/obj/structure/sign/deathsposal{
desc = "A warning sign which reads 'DISPOSAL: LEADS TO EXTERIOR'";
name = "\improper DISPOSAL: LEADS TO EXTERIOR";
- pixel_x = 0;
pixel_y = -32
},
/turf/simulated/floor/plasteel{
icon_state = "bar"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"lW" = (
@@ -7661,7 +6695,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/structure/disposalpipe/segment,
@@ -7671,7 +6704,6 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"lX" = (
@@ -7682,7 +6714,6 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"lY" = (
@@ -7691,12 +6722,10 @@
},
/obj/machinery/camera{
c_tag = "Engineering Secure Storage";
- dir = 2;
network = list("UO45")
},
/turf/simulated/floor/plating,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"lZ" = (
@@ -7715,14 +6744,12 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"ma" = (
/obj/machinery/suit_storage_unit/standard_unit,
/turf/simulated/floor/plating,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"mb" = (
@@ -7738,17 +6765,14 @@
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "warndark";
- tag = "icon-warndark (EAST)"
+ icon_state = "warndark"
},
/area/awaycontent/a6{
- has_gravity = 1;
name = "UO45 Gateway"
})
"mc" = (
/turf/simulated/floor/plasteel,
/area/awaycontent/a6{
- has_gravity = 1;
name = "UO45 Gateway"
})
"md" = (
@@ -7756,7 +6780,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/structure/disposalpipe/segment,
@@ -7765,7 +6788,6 @@
/obj/effect/landmark/damageturf,
/turf/simulated/floor/plating,
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"me" = (
@@ -7773,35 +6795,29 @@
icon_state = "white"
},
/area/awaycontent/a6{
- has_gravity = 1;
name = "UO45 Gateway"
})
"mf" = (
/obj/machinery/atmospherics/unary/vent_pump{
dir = 1;
- external_pressure_bound = 101.325;
- on = 1;
- pressure_checks = 1
+ on = 1
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/awaycontent/a6{
- has_gravity = 1;
name = "UO45 Gateway"
})
"mg" = (
/obj/structure/table,
/obj/item/newspaper,
/obj/machinery/newscaster{
- pixel_x = 30;
- pixel_y = 0
+ pixel_x = 30
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"mh" = (
@@ -7812,7 +6828,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"mi" = (
@@ -7824,11 +6839,9 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"mj" = (
@@ -7840,7 +6853,6 @@
},
/turf/simulated/floor/plating,
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"mk" = (
@@ -7853,7 +6865,6 @@
},
/turf/simulated/floor/plating,
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"ml" = (
@@ -7862,23 +6873,19 @@
icon_state = "whitepurplecorner"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"mm" = (
/obj/structure/closet/firecloset,
/obj/machinery/light/small,
/obj/structure/sign/securearea{
- pixel_x = 0;
pixel_y = -32
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "warnwhite"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"mn" = (
@@ -7888,7 +6895,6 @@
icon_state = "warnwhite"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"mo" = (
@@ -7898,22 +6904,18 @@
icon_state = "warnwhite"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"mp" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/sign/securearea{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "purplecorner";
- tag = "icon-purplecorner (NORTH)"
+ icon_state = "purplecorner"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"mq" = (
@@ -7921,7 +6923,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -7936,7 +6937,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"mr" = (
@@ -7946,18 +6946,15 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"ms" = (
/obj/structure/table/wood,
/obj/machinery/newscaster{
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/carpet,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"mt" = (
@@ -7965,7 +6962,6 @@
/obj/item/bedsheet,
/turf/simulated/floor/carpet,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"mu" = (
@@ -7973,25 +6969,21 @@
dir = 1
},
/obj/machinery/alarm/monitor{
- frequency = 1439;
locked = 0;
pixel_y = 23;
req_access = null
},
/turf/simulated/floor/carpet,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"mv" = (
/obj/structure/table/wood,
/obj/machinery/newscaster{
- pixel_x = -30;
- pixel_y = 0
+ pixel_x = -30
},
/turf/simulated/floor/carpet,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"mw" = (
@@ -8010,7 +7002,6 @@
/obj/item/clothing/under/pj/red,
/turf/simulated/floor/carpet,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"mx" = (
@@ -8018,7 +7009,6 @@
dir = 1
},
/obj/machinery/alarm/monitor{
- frequency = 1439;
locked = 0;
pixel_y = 23;
req_access = null
@@ -8028,7 +7018,6 @@
},
/turf/simulated/floor/carpet,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"my" = (
@@ -8036,14 +7025,12 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"mz" = (
@@ -8055,14 +7042,12 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"mA" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"mB" = (
@@ -8078,7 +7063,6 @@
},
/turf/simulated/floor/plating,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"mC" = (
@@ -8089,12 +7073,10 @@
/obj/item/flashlight,
/turf/simulated/floor/plating,
/area/awaycontent/a6{
- has_gravity = 1;
name = "UO45 Gateway"
})
"mD" = (
/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
pixel_y = -28
},
/obj/structure/rack{
@@ -8104,13 +7086,11 @@
/obj/item/tank/jetpack/carbondioxide,
/turf/simulated/floor/plating,
/area/awaycontent/a6{
- has_gravity = 1;
name = "UO45 Gateway"
})
"mE" = (
/obj/machinery/firealarm/no_alarm{
dir = 1;
- pixel_x = 0;
pixel_y = -24
},
/obj/structure/rack{
@@ -8120,17 +7100,14 @@
/obj/item/clothing/shoes/magboots,
/turf/simulated/floor/plating,
/area/awaycontent/a6{
- has_gravity = 1;
name = "UO45 Gateway"
})
"mF" = (
/obj/structure/cable,
/obj/machinery/power/apc/noalarm{
cell_type = 15000;
- dir = 2;
locked = 0;
name = "UO45 Gateway APC";
- pixel_x = 0;
pixel_y = -25;
req_access = null;
start_charge = 100
@@ -8143,21 +7120,18 @@
/obj/item/clothing/shoes/magboots,
/turf/simulated/floor/plating,
/area/awaycontent/a6{
- has_gravity = 1;
name = "UO45 Gateway"
})
"mG" = (
/obj/structure/reagent_dispensers/fueltank,
/turf/simulated/floor/plating,
/area/awaycontent/a6{
- has_gravity = 1;
name = "UO45 Gateway"
})
"mH" = (
/obj/structure/reagent_dispensers/watertank,
/turf/simulated/floor/plating,
/area/awaycontent/a6{
- has_gravity = 1;
name = "UO45 Gateway"
})
"mI" = (
@@ -8168,7 +7142,6 @@
icon_off = "rdsecureoff";
icon_opened = "rdsecureopen";
icon_state = "rdsecure1";
- locked = 1;
name = "research director's locker";
req_access_txt = "201"
},
@@ -8178,11 +7151,9 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"mJ" = (
@@ -8191,14 +7162,12 @@
},
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"mK" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/wall/r_wall/rust,
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"mL" = (
@@ -8206,7 +7175,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/structure/disposalpipe/segment,
@@ -8217,7 +7185,6 @@
},
/turf/simulated/floor/plating,
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"mM" = (
@@ -8228,11 +7195,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"mN" = (
@@ -8242,46 +7207,36 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"mO" = (
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"mP" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"mQ" = (
/obj/effect/decal/cleanable/dirt,
-/obj/item/twohanded/required/kirbyplants{
- layer = 5
- },
+/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"mR" = (
@@ -8292,7 +7247,6 @@
icon_state = "red"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"mS" = (
@@ -8310,7 +7264,6 @@
icon_state = "red"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"mT" = (
@@ -8323,7 +7276,6 @@
icon_state = "red"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"mU" = (
@@ -8334,17 +7286,14 @@
icon_state = "neutral"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"mV" = (
/turf/simulated/floor/plasteel{
- tag = "icon-whitepurplecorner (EAST)";
- icon_state = "whitepurplecorner";
- dir = 4
+ dir = 4;
+ icon_state = "whitepurplecorner"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"mW" = (
@@ -8355,7 +7304,6 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"mX" = (
@@ -8367,30 +7315,22 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"mY" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/obj/machinery/door_control{
id = "awaydorm5";
name = "Door Bolt Control";
normaldoorcontrol = 1;
- pixel_x = 0;
pixel_y = -25;
- req_access_txt = "0";
specialfunctions = 4
},
/obj/structure/chair/wood{
- tag = "icon-wooden_chair (NORTH)";
- icon_state = "wooden_chair";
dir = 1
},
/turf/simulated/floor/carpet,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"mZ" = (
@@ -8409,7 +7349,6 @@
/obj/item/clothing/under/suit_jacket/navy,
/turf/simulated/floor/carpet,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"na" = (
@@ -8418,18 +7357,14 @@
},
/turf/simulated/floor/carpet,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"nb" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/obj/structure/bed,
/obj/item/bedsheet,
/turf/simulated/floor/carpet,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"nc" = (
@@ -8437,14 +7372,11 @@
id = "awaydorm7";
name = "Door Bolt Control";
normaldoorcontrol = 1;
- pixel_x = 0;
pixel_y = -25;
- req_access_txt = "0";
specialfunctions = 4
},
/turf/simulated/floor/carpet,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"nd" = (
@@ -8454,13 +7386,10 @@
icon_state = "neutral"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"ne" = (
/obj/structure/chair/comfy/black{
- tag = "icon-comfychair (EAST)";
- icon_state = "comfychair";
dir = 4
},
/turf/simulated/floor/plasteel{
@@ -8468,13 +7397,10 @@
icon_state = "neutral"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"nf" = (
/obj/structure/chair/comfy/black{
- tag = "icon-comfychair (WEST)";
- icon_state = "comfychair";
dir = 8
},
/obj/effect/decal/cleanable/dirt,
@@ -8483,7 +7409,6 @@
icon_state = "neutral"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"ng" = (
@@ -8495,7 +7420,6 @@
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"nh" = (
@@ -8508,11 +7432,9 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"ni" = (
@@ -8522,13 +7444,11 @@
},
/turf/simulated/floor/plating,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"nj" = (
/turf/simulated/wall/r_wall/rust,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"nk" = (
@@ -8536,7 +7456,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/structure/disposalpipe/segment,
@@ -8544,34 +7463,27 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"nl" = (
/obj/machinery/atmospherics/unary/vent_pump{
dir = 1;
- external_pressure_bound = 101.325;
- on = 1;
- pressure_checks = 1
+ on = 1
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"nm" = (
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"nn" = (
@@ -8579,11 +7491,9 @@
/obj/structure/chair,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"no" = (
@@ -8595,7 +7505,6 @@
icon_state = "red"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"np" = (
@@ -8604,7 +7513,6 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"nq" = (
@@ -8621,7 +7529,6 @@
icon_state = "red"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"nr" = (
@@ -8630,7 +7537,6 @@
/obj/effect/landmark/damageturf,
/turf/simulated/floor/plating,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"ns" = (
@@ -8638,12 +7544,10 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- tag = "icon-whitepurplecorner (EAST)";
- icon_state = "whitepurplecorner";
- dir = 4
+ dir = 4;
+ icon_state = "whitepurplecorner"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"nt" = (
@@ -8662,7 +7566,6 @@
},
/turf/simulated/floor/plating,
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"nu" = (
@@ -8670,7 +7573,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -8681,7 +7583,6 @@
},
/turf/simulated/floor/plating,
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"nv" = (
@@ -8702,7 +7603,6 @@
icon_state = "neutral"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"nw" = (
@@ -8710,7 +7610,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -8719,13 +7618,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
- req_one_access_txt = "0"
- },
+/obj/machinery/door/airlock/maintenance,
/turf/simulated/floor/plating,
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"nx" = (
@@ -8733,7 +7628,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -8741,15 +7635,13 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- tag = "icon-manifold-b-f (EAST)"
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 9;
icon_state = "neutral"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"ny" = (
@@ -8761,7 +7653,6 @@
icon_state = "dark"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"nz" = (
@@ -8770,7 +7661,6 @@
icon_state = "dark"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"nA" = (
@@ -8779,14 +7669,12 @@
icon_state = "neutral"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"nB" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/wall,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"nC" = (
@@ -8797,7 +7685,6 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"nD" = (
@@ -8808,7 +7695,6 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"nE" = (
@@ -8820,7 +7706,6 @@
icon_state = "neutral"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"nF" = (
@@ -8829,7 +7714,6 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"nG" = (
@@ -8842,7 +7726,6 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"nH" = (
@@ -8854,7 +7737,6 @@
},
/turf/simulated/floor/plating,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"nI" = (
@@ -8862,18 +7744,15 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- tag = "icon-manifold-r-f (EAST)"
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"nJ" = (
@@ -8883,7 +7762,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"nK" = (
@@ -8903,12 +7781,10 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plating,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"nL" = (
@@ -8920,16 +7796,13 @@
},
/turf/simulated/floor/plating,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"nM" = (
/obj/machinery/alarm/monitor{
dir = 4;
- frequency = 1439;
locked = 0;
pixel_x = -23;
- pixel_y = 0;
req_access = null
},
/obj/machinery/light/small{
@@ -8940,18 +7813,15 @@
/obj/item/laser_pointer,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"nN" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/wall/r_wall,
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"nO" = (
@@ -8959,14 +7829,12 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plating,
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"nP" = (
@@ -8984,11 +7852,9 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"nQ" = (
@@ -8998,17 +7864,14 @@
},
/obj/machinery/computer/security/telescreen{
desc = "Used for monitoring the research division and the labs within.";
- dir = 2;
name = "research monitor";
network = list("UO45R")
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"nR" = (
@@ -9021,11 +7884,9 @@
/obj/item/pen,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"nS" = (
@@ -9044,20 +7905,16 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"nT" = (
/obj/machinery/alarm/monitor{
dir = 4;
- frequency = 1439;
locked = 0;
pixel_x = -23;
- pixel_y = 0;
req_access = null
},
/obj/machinery/light{
@@ -9072,7 +7929,6 @@
icon_state = "red"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"nU" = (
@@ -9081,7 +7937,6 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"nV" = (
@@ -9090,7 +7945,6 @@
icon_state = "red"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"nW" = (
@@ -9110,7 +7964,6 @@
icon_state = "neutralcorner"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"nX" = (
@@ -9119,7 +7972,6 @@
},
/turf/simulated/wall/r_wall,
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"nY" = (
@@ -9128,7 +7980,6 @@
},
/turf/simulated/wall/r_wall,
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"nZ" = (
@@ -9137,7 +7988,6 @@
},
/turf/simulated/wall/r_wall/rust,
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"oa" = (
@@ -9150,10 +8000,8 @@
},
/obj/machinery/alarm/monitor{
dir = 4;
- frequency = 1439;
locked = 0;
pixel_x = -23;
- pixel_y = 0;
req_access = null
},
/turf/simulated/floor/plasteel{
@@ -9161,7 +8009,6 @@
icon_state = "neutral"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"ob" = (
@@ -9169,7 +8016,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -9183,7 +8029,6 @@
icon_state = "neutral"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"oc" = (
@@ -9191,7 +8036,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -9206,7 +8050,6 @@
icon_state = "neutral"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"od" = (
@@ -9214,7 +8057,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -9223,7 +8065,6 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/machinery/camera{
c_tag = "Dormitories";
- dir = 2;
network = list("UO45")
},
/turf/simulated/floor/plasteel{
@@ -9231,7 +8072,6 @@
icon_state = "neutralcorner"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"oe" = (
@@ -9240,7 +8080,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -9254,7 +8093,6 @@
icon_state = "neutral"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"of" = (
@@ -9262,7 +8100,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/light/small{
@@ -9273,8 +8110,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 14;
- tag = "icon-manifold-r-f (NORTH)"
+ initialize_directions = 14
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
@@ -9282,7 +8118,6 @@
icon_state = "neutralcorner"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"og" = (
@@ -9290,7 +8125,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -9302,7 +8136,6 @@
icon_state = "neutralcorner"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"oh" = (
@@ -9310,7 +8143,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -9322,7 +8154,6 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"oi" = (
@@ -9330,11 +8161,9 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/alarm/monitor{
- frequency = 1439;
locked = 0;
pixel_y = 23;
req_access = null
@@ -9344,8 +8173,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 14;
- tag = "icon-manifold-r-f (NORTH)"
+ initialize_directions = 14
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
@@ -9353,7 +8181,6 @@
icon_state = "neutral"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"oj" = (
@@ -9361,7 +8188,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -9376,7 +8202,6 @@
icon_state = "neutralcorner"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"ok" = (
@@ -9384,7 +8209,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -9398,7 +8222,6 @@
icon_state = "neutralcorner"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"ol" = (
@@ -9406,7 +8229,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -9423,7 +8245,6 @@
icon_state = "neutral"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"om" = (
@@ -9431,7 +8252,6 @@
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"on" = (
@@ -9439,7 +8259,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -9450,7 +8269,6 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"oo" = (
@@ -9458,7 +8276,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/junction{
@@ -9473,7 +8290,6 @@
icon_state = "neutral"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"op" = (
@@ -9482,7 +8298,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -9496,7 +8311,6 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"oq" = (
@@ -9504,12 +8318,10 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plating,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"or" = (
@@ -9523,19 +8335,16 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/structure/disposalpipe/junction{
- tag = "icon-pipe-y (WEST)";
- icon_state = "pipe-y";
- dir = 8
+ dir = 8;
+ icon_state = "pipe-y"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"os" = (
@@ -9543,7 +8352,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -9551,12 +8359,10 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- tag = "icon-manifold-b-f (EAST)"
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"ot" = (
@@ -9564,7 +8370,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/structure/disposalpipe/segment,
@@ -9572,7 +8377,6 @@
/obj/effect/landmark/burnturf,
/turf/simulated/floor/plating,
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"ou" = (
@@ -9581,12 +8385,10 @@
charge = 1.5e+006;
input_level = 30000;
inputting = 0;
- output_level = 7000;
- outputting = 1
+ output_level = 7000
},
/turf/simulated/floor/plating,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"ov" = (
@@ -9595,23 +8397,19 @@
charge = 1.5e+006;
input_level = 10000;
inputting = 0;
- output_level = 7000;
- outputting = 1
+ output_level = 7000
},
/turf/simulated/floor/plating,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"ow" = (
/obj/structure/filingcabinet/chestdrawer,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"ox" = (
@@ -9623,7 +8421,6 @@
desc = "A remote control-switch whichs locks the research division down in the event of a biohazard leak or contamination.";
id = "UO45_biohazard";
name = "Biohazard Door Control";
- pixel_x = 0;
pixel_y = 8;
req_access_txt = "201"
},
@@ -9631,28 +8428,23 @@
desc = "A remote control-switch that controls the privacy shutters.";
id = "UO45_rdprivacy";
name = "Privacy Shutter Control";
- pixel_x = 0;
pixel_y = -2;
req_access_txt = "201"
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"oy" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"oz" = (
@@ -9663,28 +8455,23 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"oA" = (
/obj/machinery/computer/aifixer,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"oB" = (
/obj/structure/reagent_dispensers/peppertank{
- pixel_x = -30;
- pixel_y = 0
+ pixel_x = -30
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
@@ -9692,7 +8479,6 @@
icon_state = "red"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"oC" = (
@@ -9704,14 +8490,12 @@
icon_state = "white"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"oD" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"oE" = (
@@ -9723,7 +8507,6 @@
icon_state = "neutral"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"oF" = (
@@ -9731,11 +8514,9 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"oG" = (
@@ -9748,7 +8529,6 @@
icon_state = "neutralcorner"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"oH" = (
@@ -9757,36 +8537,30 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
pixel_y = -28
},
/turf/simulated/floor/plasteel{
icon_state = "neutral"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"oI" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 1;
- initialize_directions = 14;
- tag = "icon-manifold-b-f (NORTH)"
+ initialize_directions = 14
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"oJ" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"oK" = (
@@ -9798,7 +8572,6 @@
},
/obj/machinery/firealarm/no_alarm{
dir = 1;
- pixel_x = 0;
pixel_y = -24
},
/turf/simulated/floor/plasteel{
@@ -9806,7 +8579,6 @@
icon_state = "neutralcorner"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"oL" = (
@@ -9817,17 +8589,14 @@
icon_state = "neutral"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"oM" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"oN" = (
@@ -9835,7 +8604,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/light/small{
@@ -9846,7 +8614,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"oO" = (
@@ -9858,7 +8625,6 @@
icon_state = "neutralcorner"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"oP" = (
@@ -9870,7 +8636,6 @@
icon_state = "neutral"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"oQ" = (
@@ -9883,7 +8648,6 @@
icon_state = "neutral"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"oR" = (
@@ -9891,7 +8655,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/light/small{
@@ -9900,7 +8663,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"oS" = (
@@ -9908,7 +8670,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/light/small{
@@ -9916,7 +8677,6 @@
},
/turf/simulated/floor/plating,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"oT" = (
@@ -9924,15 +8684,12 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/alarm/monitor{
dir = 8;
- frequency = 1439;
locked = 0;
pixel_x = 23;
- pixel_y = 0;
req_access = null
},
/obj/machinery/light/small{
@@ -9946,19 +8703,16 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"oU" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 7;
- tag = "icon-manifold-b-f (WEST)"
+ initialize_directions = 7
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"oV" = (
@@ -9966,7 +8720,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/structure/disposalpipe/segment,
@@ -9974,12 +8727,10 @@
/obj/effect/landmark/burnturf,
/turf/simulated/floor/plating,
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"oW" = (
/obj/machinery/power/terminal{
- icon_state = "term";
dir = 1
},
/obj/machinery/power/port_gen/pacman/super{
@@ -9992,17 +8743,15 @@
icon_state = "0-8"
},
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/turf/simulated/floor/plating,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"oX" = (
/obj/machinery/power/terminal{
- icon_state = "term";
dir = 1
},
/obj/machinery/power/port_gen/pacman{
@@ -10010,12 +8759,11 @@
name = "P.A.C.M.A.N.-type portable generator"
},
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/turf/simulated/floor/plating,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"oY" = (
@@ -10026,21 +8774,17 @@
/obj/structure/sign/deathsposal{
desc = "A warning sign which reads 'DISPOSAL: LEADS TO EXTERIOR'";
name = "\improper DISPOSAL: LEADS TO EXTERIOR";
- pixel_x = 0;
pixel_y = -32
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"oZ" = (
/obj/machinery/power/terminal{
- icon_state = "term";
dir = 1
},
/obj/machinery/power/port_gen/pacman{
@@ -10053,14 +8797,12 @@
},
/turf/simulated/floor/plating,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"pa" = (
/obj/machinery/portable_atmospherics/canister/air,
/turf/simulated/floor/engine/air,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"pb" = (
@@ -10071,7 +8813,6 @@
},
/turf/simulated/floor/engine/air,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"pc" = (
@@ -10082,11 +8823,9 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"pd" = (
@@ -10103,7 +8842,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"pe" = (
@@ -10113,11 +8851,9 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"pf" = (
@@ -10126,11 +8862,9 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"pg" = (
@@ -10139,7 +8873,6 @@
desc = "A remote control-switch whichs locks the research division down in the event of a biohazard leak or contamination.";
id = "UO45_biohazard";
name = "Biohazard Door Control";
- pixel_x = 0;
pixel_y = -24;
req_access_txt = "201"
},
@@ -10148,7 +8881,6 @@
icon_state = "red"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"ph" = (
@@ -10158,7 +8890,6 @@
icon_state = "red"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"pi" = (
@@ -10169,13 +8900,10 @@
icon_off = "secoff";
icon_opened = "secopen";
icon_state = "sec1";
- locked = 1;
name = "security officer's locker";
req_access_txt = "201"
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/obj/item/restraints/handcuffs,
/obj/item/flash,
/obj/item/reagent_containers/spray/pepper,
@@ -10184,7 +8912,6 @@
icon_state = "red"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"pj" = (
@@ -10199,7 +8926,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"pk" = (
@@ -10208,20 +8934,16 @@
icon_state = "neutralcorner"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"pl" = (
-/obj/item/twohanded/required/kirbyplants{
- layer = 5
- },
+/obj/item/twohanded/required/kirbyplants,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 10;
icon_state = "neutral"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"pm" = (
@@ -10237,19 +8959,16 @@
icon_state = "neutral"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"pn" = (
/obj/machinery/door/airlock{
- name = "Unisex Restrooms";
- req_access_txt = "0"
+ name = "Unisex Restrooms"
},
/turf/simulated/floor/plasteel{
icon_state = "freezerfloor"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"po" = (
@@ -10259,7 +8978,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"pp" = (
@@ -10270,14 +8988,12 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"pq" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/wall/rust,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"pr" = (
@@ -10288,7 +9004,6 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"ps" = (
@@ -10304,18 +9019,13 @@
},
/turf/simulated/floor/plating,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"pt" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
- req_one_access_txt = "0"
- },
+/obj/machinery/door/airlock/maintenance,
/turf/simulated/floor/plating,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"pu" = (
@@ -10336,7 +9046,6 @@
},
/turf/simulated/floor/plating,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"pv" = (
@@ -10345,21 +9054,18 @@
},
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"pw" = (
/obj/machinery/light/small,
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a6{
- has_gravity = 1;
name = "UO45 Gateway"
})
"px" = (
/obj/machinery/light/small,
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"py" = (
@@ -10368,7 +9074,6 @@
},
/turf/simulated/wall/rust,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"pz" = (
@@ -10377,7 +9082,6 @@
},
/turf/simulated/wall/r_wall,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"pA" = (
@@ -10385,7 +9089,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/visible/purple{
@@ -10393,7 +9096,6 @@
},
/turf/simulated/floor/plating,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"pB" = (
@@ -10405,7 +9107,6 @@
},
/turf/simulated/floor/plating,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"pC" = (
@@ -10413,12 +9114,10 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plating,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"pD" = (
@@ -10430,7 +9129,6 @@
icon_state = "dark"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"pE" = (
@@ -10441,12 +9139,10 @@
icon_state = "freezerfloor"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"pF" = (
/obj/machinery/atmospherics/unary/vent_pump/high_volume{
- dir = 2;
external_pressure_bound = 0;
frequency = 1443;
icon_state = "in";
@@ -10458,18 +9154,15 @@
},
/turf/simulated/floor/engine/air,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"pG" = (
/obj/machinery/atmospherics/unary/outlet_injector/on{
- dir = 2;
frequency = 1443;
id = "UO45_air_in"
},
/turf/simulated/floor/engine/air,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"pH" = (
@@ -10477,7 +9170,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/structure/disposalpipe/segment,
@@ -10485,14 +9177,12 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"pI" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/wall/r_wall,
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"pJ" = (
@@ -10504,7 +9194,6 @@
icon_state = "white"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"pK" = (
@@ -10515,21 +9204,18 @@
icon_state = "neutral"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"pL" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/wall,
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"pM" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/wall/rust,
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"pN" = (
@@ -10539,7 +9225,6 @@
icon_state = "neutral"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"pO" = (
@@ -10549,7 +9234,6 @@
icon_state = "neutral"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"pP" = (
@@ -10564,7 +9248,6 @@
icon_state = "freezerfloor"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"pQ" = (
@@ -10572,28 +9255,22 @@
icon_state = "freezerfloor"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"pR" = (
/obj/machinery/atmospherics/unary/vent_pump{
dir = 1;
- external_pressure_bound = 101.325;
- on = 1;
- pressure_checks = 1
+ on = 1
},
/obj/machinery/door_control{
id = "awaydorm4";
name = "Door Bolt Control";
normaldoorcontrol = 1;
pixel_x = -25;
- pixel_y = 0;
- req_access_txt = "0";
specialfunctions = 4
},
/turf/simulated/floor/carpet,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"pS" = (
@@ -10602,35 +9279,28 @@
},
/turf/simulated/floor/carpet,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"pT" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/wall,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"pU" = (
/obj/machinery/atmospherics/unary/vent_pump{
dir = 1;
- external_pressure_bound = 101.325;
- on = 1;
- pressure_checks = 1
+ on = 1
},
/obj/machinery/door_control{
id = "awaydorm6";
name = "Door Bolt Control";
normaldoorcontrol = 1;
pixel_x = 25;
- pixel_y = 0;
- req_access_txt = "0";
specialfunctions = 4
},
/turf/simulated/floor/carpet,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"pV" = (
@@ -10641,7 +9311,6 @@
/obj/item/bedsheet,
/turf/simulated/floor/carpet,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"pW" = (
@@ -10652,7 +9321,6 @@
icon_state = "freezerfloor"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"pX" = (
@@ -10661,16 +9329,13 @@
},
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
- pixel_x = 11;
- pixel_y = 0
+ pixel_x = 11
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
icon_state = "freezerfloor"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"pY" = (
@@ -10678,7 +9343,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/structure/disposalpipe/segment,
@@ -10686,7 +9350,6 @@
/obj/effect/landmark/damageturf,
/turf/simulated/floor/plating,
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"pZ" = (
@@ -10694,18 +9357,15 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/door/airlock/engineering/glass{
name = "SMES Room";
- req_access_txt = "201";
- req_one_access_txt = "0"
+ req_access_txt = "201"
},
/obj/machinery/atmospherics/pipe/simple/visible/purple,
/turf/simulated/floor/plating,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"qa" = (
@@ -10716,7 +9376,6 @@
/obj/effect/landmark/burnturf,
/turf/simulated/floor/plating,
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"qb" = (
@@ -10725,7 +9384,6 @@
},
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a6{
- has_gravity = 1;
name = "UO45 Gateway"
})
"qc" = (
@@ -10733,7 +9391,6 @@
/obj/structure/window/full/reinforced,
/turf/simulated/floor/plating,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"qd" = (
@@ -10742,14 +9399,12 @@
icon_state = "dark"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"qe" = (
/obj/structure/grille,
/obj/structure/window/full/reinforced,
/obj/machinery/meter{
- frequency = 1443;
id = "UO45_mair_out_meter";
layer = 3.3;
name = "Mixed Air Tank Out"
@@ -10757,7 +9412,6 @@
/obj/machinery/atmospherics/pipe/simple/visible/cyan,
/turf/simulated/floor/plating,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"qf" = (
@@ -10765,32 +9419,26 @@
/obj/structure/window/full/reinforced,
/obj/machinery/atmospherics/pipe/simple/visible/cyan,
/obj/machinery/meter{
- frequency = 1443;
id = "UO45_mair_in_meter";
layer = 3.3;
name = "Mixed Air Tank In"
},
/turf/simulated/floor/plating,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"qg" = (
-/obj/machinery/atmospherics/unary/thermomachine/freezer/on/server{
- dir = 2
- },
+/obj/machinery/atmospherics/unary/thermomachine/freezer/on/server,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"qh" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/wall/r_wall/rust,
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"qi" = (
@@ -10810,7 +9458,6 @@
temperature = 80
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"qj" = (
@@ -10825,13 +9472,10 @@
temperature = 80
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"qk" = (
/obj/structure/toilet{
- tag = "icon-toilet00 (WEST)";
- icon_state = "toilet00";
dir = 8
},
/obj/effect/decal/cleanable/dirt,
@@ -10839,7 +9483,6 @@
icon_state = "freezerfloor"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"ql" = (
@@ -10852,16 +9495,13 @@
},
/turf/simulated/floor/plating,
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"qm" = (
/obj/machinery/light/small,
/obj/structure/sink{
dir = 8;
- icon_state = "sink";
- pixel_x = -11;
- pixel_y = 0
+ pixel_x = -11
},
/obj/structure/mirror{
pixel_x = -28
@@ -10870,7 +9510,6 @@
icon_state = "freezerfloor"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"qn" = (
@@ -10880,11 +9519,9 @@
/obj/item/clothing/glasses/hud/health,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitecorner"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"qo" = (
@@ -10896,13 +9533,11 @@
icon_state = "whitehall"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"qp" = (
/obj/structure/table,
/obj/machinery/alarm/monitor{
- frequency = 1439;
locked = 0;
pixel_y = 23;
req_access = null
@@ -10911,11 +9546,9 @@
/obj/item/hand_labeler,
/obj/item/clothing/accessory/stethoscope,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitehall"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"qq" = (
@@ -10925,7 +9558,6 @@
icon_state = "whitehall"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"qr" = (
@@ -10934,39 +9566,32 @@
},
/obj/machinery/alarm/monitor{
dir = 4;
- frequency = 1439;
locked = 0;
pixel_x = -23;
- pixel_y = 0;
req_access = null
},
/turf/simulated/floor/plasteel{
icon_state = "freezerfloor"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"qs" = (
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
- pixel_x = 11;
- pixel_y = 0
+ pixel_x = 11
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
icon_state = "freezerfloor"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"qt" = (
/obj/structure/chair/wood,
/turf/simulated/floor/carpet,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"qu" = (
@@ -10975,29 +9600,23 @@
},
/obj/machinery/alarm/monitor{
dir = 8;
- frequency = 1439;
locked = 0;
pixel_x = 23;
- pixel_y = 0;
req_access = null
},
/turf/simulated/floor/carpet,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"qv" = (
/obj/machinery/alarm/monitor{
dir = 8;
- frequency = 1439;
locked = 0;
pixel_x = 23;
- pixel_y = 0;
req_access = null
},
/turf/simulated/floor/carpet,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"qw" = (
@@ -11007,7 +9626,6 @@
/obj/structure/dresser,
/turf/simulated/floor/carpet,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"qx" = (
@@ -11016,7 +9634,6 @@
icon_state = "dark"
},
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"qy" = (
@@ -11025,7 +9642,6 @@
icon_state = "dark"
},
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"qz" = (
@@ -11033,7 +9649,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"qA" = (
@@ -11043,7 +9658,6 @@
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a7{
always_unpowered = 1;
- has_gravity = 1;
name = "UO45 Caves";
power_environ = 0;
power_equip = 0;
@@ -11057,7 +9671,6 @@
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a7{
always_unpowered = 1;
- has_gravity = 1;
name = "UO45 Caves";
power_environ = 0;
power_equip = 0;
@@ -11070,13 +9683,12 @@
},
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"qD" = (
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/obj/machinery/computer/monitor/secret{
name = "primary power monitoring console"
@@ -11089,7 +9701,6 @@
icon_state = "yellow"
},
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"qE" = (
@@ -11097,7 +9708,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/cable{
@@ -11112,7 +9722,6 @@
icon_state = "yellow"
},
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"qF" = (
@@ -11132,7 +9741,6 @@
icon_state = "yellow"
},
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"qG" = (
@@ -11148,7 +9756,6 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"qH" = (
@@ -11159,7 +9766,6 @@
icon_off = "secureengoff";
icon_opened = "secureengopen";
icon_state = "secureeng1";
- locked = 1;
name = "engineer's locker";
req_access_txt = "201"
},
@@ -11178,7 +9784,6 @@
icon_state = "yellow"
},
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"qI" = (
@@ -11193,11 +9798,9 @@
/obj/machinery/atmospherics/pipe/simple/visible/cyan,
/turf/simulated/floor/plasteel{
dir = 9;
- icon_state = "arrival";
- tag = "icon-arrival (NORTHWEST)"
+ icon_state = "arrival"
},
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"qJ" = (
@@ -11206,7 +9809,6 @@
},
/obj/machinery/camera{
c_tag = "Atmospherics";
- dir = 2;
network = list("UO45")
},
/obj/structure/table,
@@ -11215,8 +9817,6 @@
pixel_y = 5
},
/obj/machinery/firealarm/no_alarm{
- dir = 2;
- pixel_x = 0;
pixel_y = 24
},
/obj/item/multitool,
@@ -11228,7 +9828,6 @@
icon_state = "yellowcorner"
},
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"qK" = (
@@ -11238,7 +9837,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"qL" = (
@@ -11247,8 +9845,6 @@
node1_concentration = 0.8;
node2_concentration = 0.2;
on = 1;
- pixel_x = 0;
- pixel_y = 0;
req_access = null;
target_pressure = 4500
},
@@ -11257,7 +9853,6 @@
icon_state = "arrival"
},
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"qM" = (
@@ -11265,7 +9860,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"qN" = (
@@ -11276,7 +9870,6 @@
icon_state = "dark"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"qO" = (
@@ -11291,7 +9884,6 @@
icon_state = "dark"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"qP" = (
@@ -11299,14 +9891,12 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"qQ" = (
@@ -11315,8 +9905,7 @@
},
/obj/machinery/alarm/monitor/server{
dir = 4;
- pixel_x = -22;
- pixel_y = 0
+ pixel_x = -22
},
/obj/machinery/r_n_d/server/core{
id_with_download_string = "3";
@@ -11330,7 +9919,6 @@
temperature = 80
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"qR" = (
@@ -11346,7 +9934,6 @@
temperature = 80
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"qS" = (
@@ -11362,7 +9949,6 @@
icon_state = "dark"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"qT" = (
@@ -11371,8 +9957,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 7;
- tag = "icon-manifold-b-f (WEST)"
+ initialize_directions = 7
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
@@ -11380,7 +9965,6 @@
icon_state = "whitehall"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"qU" = (
@@ -11394,7 +9978,6 @@
icon_state = "white"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"qV" = (
@@ -11407,7 +9990,6 @@
icon_state = "whitehall"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"qW" = (
@@ -11415,7 +9997,6 @@
/obj/effect/landmark/burnturf,
/turf/simulated/floor/plating,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"qX" = (
@@ -11429,7 +10010,6 @@
icon_state = "freezerfloor"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"qY" = (
@@ -11441,19 +10021,16 @@
icon_state = "freezerfloor"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"qZ" = (
/obj/structure/table/wood,
/obj/machinery/newscaster{
- pixel_x = 0;
pixel_y = -28
},
/obj/item/pen,
/turf/simulated/floor/carpet,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"ra" = (
@@ -11462,7 +10039,6 @@
},
/turf/simulated/floor/carpet,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"rb" = (
@@ -11471,15 +10047,12 @@
},
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
- pixel_x = 11;
- pixel_y = 0
+ pixel_x = 11
},
/turf/simulated/floor/plasteel{
icon_state = "freezerfloor"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"rc" = (
@@ -11488,7 +10061,6 @@
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"rd" = (
@@ -11500,14 +10072,12 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"re" = (
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plating,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"rf" = (
@@ -11515,7 +10085,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -11527,18 +10096,15 @@
/obj/effect/landmark/damageturf,
/turf/simulated/floor/plating,
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"rg" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/extinguisher_cabinet{
- pixel_x = -25;
- pixel_y = 0
+ pixel_x = -25
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"rh" = (
@@ -11547,25 +10113,19 @@
/obj/machinery/atmospherics/pipe/simple/hidden/purple,
/turf/simulated/floor/plating,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"ri" = (
-/obj/item/twohanded/required/kirbyplants{
- layer = 5
- },
+/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
dir = 5;
icon_state = "yellow"
},
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"rj" = (
/obj/machinery/firealarm/no_alarm{
- dir = 2;
- pixel_x = 0;
pixel_y = 24
},
/obj/structure/dispenser{
@@ -11576,7 +10136,6 @@
icon_state = "red"
},
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"rk" = (
@@ -11587,7 +10146,6 @@
/obj/item/storage/box,
/obj/item/storage/box,
/obj/structure/reagent_dispensers/peppertank{
- pixel_x = 0;
pixel_y = 30
},
/turf/simulated/floor/plasteel{
@@ -11595,13 +10153,11 @@
icon_state = "red"
},
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"rl" = (
/turf/simulated/floor/plasteel,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"rm" = (
@@ -11610,20 +10166,16 @@
},
/obj/structure/table,
/obj/item/tank/internals/emergency_oxygen{
- pixel_x = -8;
- pixel_y = 0
+ pixel_x = -8
},
/obj/item/tank/internals/emergency_oxygen{
- pixel_x = -8;
- pixel_y = 0
+ pixel_x = -8
},
/obj/item/clothing/mask/breath{
- pixel_x = 4;
- pixel_y = 0
+ pixel_x = 4
},
/obj/item/clothing/mask/breath{
- pixel_x = 4;
- pixel_y = 0
+ pixel_x = 4
},
/obj/machinery/newscaster{
pixel_y = 32
@@ -11634,7 +10186,6 @@
icon_state = "red"
},
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"rn" = (
@@ -11649,7 +10200,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"ro" = (
@@ -11660,7 +10210,6 @@
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"rp" = (
@@ -11669,21 +10218,18 @@
},
/turf/simulated/wall/r_wall,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"rq" = (
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/obj/machinery/power/apc/noalarm{
cell_type = 15000;
dir = 8;
- locked = 1;
name = "UO45 Engineering APC";
pixel_x = -25;
- pixel_y = 0;
req_access = list(201);
start_charge = 100
},
@@ -11693,7 +10239,6 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"rr" = (
@@ -11704,7 +10249,6 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"rs" = (
@@ -11712,7 +10256,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/structure/cable{
@@ -11723,40 +10266,25 @@
},
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
dir = 6;
- initialize_directions = 6;
- level = 2
+ initialize_directions = 6
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a3{
- has_gravity = 1;
- name = "UO45 Engineering"
- })
-"rt" = (
-/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 4;
- level = 2
- },
-/turf/simulated/floor/plasteel,
-/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"ru" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 4;
- level = 2
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"rv" = (
/obj/machinery/light,
/obj/machinery/alarm/monitor{
dir = 1;
- frequency = 1439;
locked = 0;
pixel_y = -23;
req_access = null
@@ -11768,13 +10296,11 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"rw" = (
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 4;
- level = 2
+ dir = 4
},
/obj/machinery/atmospherics/binary/pump{
dir = 1;
@@ -11783,7 +10309,6 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"rx" = (
@@ -11793,7 +10318,6 @@
/obj/effect/landmark/damageturf,
/turf/simulated/floor/plating,
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"ry" = (
@@ -11804,7 +10328,6 @@
icon_state = "dark"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"rz" = (
@@ -11813,7 +10336,6 @@
icon_state = "dark"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"rA" = (
@@ -11828,7 +10350,6 @@
temperature = 80
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"rB" = (
@@ -11836,13 +10357,11 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/junction{
dir = 4;
- icon_state = "pipe-j2";
- tag = "icon-pipe-j1 (WEST)"
+ icon_state = "pipe-j2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -11851,7 +10370,6 @@
/obj/effect/landmark/damageturf,
/turf/simulated/floor/plating,
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"rC" = (
@@ -11864,7 +10382,6 @@
},
/turf/simulated/floor/plating,
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"rD" = (
@@ -11880,7 +10397,6 @@
icon_state = "whitehall"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"rE" = (
@@ -11893,34 +10409,27 @@
},
/turf/simulated/floor/plating,
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"rF" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 7;
- tag = "icon-manifold-r-f (WEST)"
+ initialize_directions = 7
},
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"rG" = (
/obj/structure/table,
-/obj/item/storage/box/gloves{
- pixel_x = 0;
- pixel_y = 0
- },
+/obj/item/storage/box/gloves,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "whitehall"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"rH" = (
@@ -11937,7 +10446,6 @@
},
/turf/simulated/floor/plating,
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"rI" = (
@@ -11949,7 +10457,6 @@
icon_state = "white"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"rJ" = (
@@ -11957,7 +10464,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -11969,7 +10475,6 @@
/obj/effect/landmark/damageturf,
/turf/simulated/floor/plating,
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"rK" = (
@@ -11980,7 +10485,6 @@
icon_state = "freezerfloor"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"rL" = (
@@ -11988,7 +10492,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -12001,7 +10504,6 @@
/obj/effect/landmark/burnturf,
/turf/simulated/floor/plating,
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"rM" = (
@@ -12009,7 +10511,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -12023,7 +10524,6 @@
icon_state = "yellowcorner"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"rN" = (
@@ -12031,7 +10531,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -12046,7 +10545,6 @@
icon_state = "yellowcorner"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"rO" = (
@@ -12072,14 +10570,12 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"rP" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 7;
- tag = "icon-manifold-b-f (WEST)"
+ initialize_directions = 7
},
/obj/machinery/camera{
c_tag = "Engineering Hallway";
@@ -12088,7 +10584,6 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"rQ" = (
@@ -12096,7 +10591,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -12104,15 +10598,13 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 1;
- initialize_directions = 14;
- tag = "icon-manifold-b-f (NORTH)"
+ initialize_directions = 14
},
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "yellowcorner"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"rR" = (
@@ -12126,13 +10618,11 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"rS" = (
@@ -12140,11 +10630,9 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/alarm/monitor{
- frequency = 1439;
locked = 0;
pixel_y = 23;
req_access = null
@@ -12160,7 +10648,6 @@
icon_state = "yellowcorner"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"rT" = (
@@ -12168,7 +10655,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -12183,7 +10669,6 @@
icon_state = "yellow"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"rU" = (
@@ -12191,7 +10676,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -12200,15 +10684,12 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "yellowcorner"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"rV" = (
@@ -12216,7 +10697,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -12230,7 +10710,6 @@
icon_state = "yellow"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"rW" = (
@@ -12243,7 +10722,6 @@
icon_state = "yellow"
},
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"rX" = (
@@ -12252,7 +10730,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -12262,27 +10739,23 @@
dir = 4
},
/obj/machinery/door/airlock/engineering/glass{
- name = "Engineering Reception";
- req_access_txt = "0"
+ name = "Engineering Reception"
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"rY" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 1;
- initialize_directions = 14;
- tag = "icon-manifold-b-f (NORTH)"
+ initialize_directions = 14
},
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "red"
},
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"rZ" = (
@@ -12290,7 +10763,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -12299,7 +10771,6 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/plasteel,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"sa" = (
@@ -12307,7 +10778,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -12318,7 +10788,6 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"sb" = (
@@ -12333,7 +10802,6 @@
icon_state = "red"
},
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"sc" = (
@@ -12352,7 +10820,6 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"sd" = (
@@ -12360,13 +10827,11 @@
dir = 4
},
/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
pixel_y = -30
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"se" = (
@@ -12380,9 +10845,7 @@
name = "Privacy Shutters"
},
/obj/machinery/door/window/southleft{
- base_state = "left";
dir = 4;
- icon_state = "left";
name = "Engineering Reception";
req_access_txt = "201"
},
@@ -12393,7 +10856,6 @@
/obj/item/pen,
/turf/simulated/floor/plasteel,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"sf" = (
@@ -12406,18 +10868,15 @@
icon_state = "green"
},
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"sg" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 1;
- initialize_directions = 14;
- tag = "icon-manifold-b-f (NORTH)"
+ initialize_directions = 14
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"sh" = (
@@ -12428,7 +10887,6 @@
/obj/structure/sign/deathsposal{
desc = "A warning sign which reads 'DISPOSAL: LEADS TO EXTERIOR'";
name = "\improper DISPOSAL: LEADS TO EXTERIOR";
- pixel_x = 0;
pixel_y = -32
},
/turf/simulated/floor/plasteel{
@@ -12436,7 +10894,6 @@
icon_state = "whitecorner"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"si" = (
@@ -12451,7 +10908,6 @@
},
/turf/simulated/floor/plating,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"sj" = (
@@ -12460,7 +10916,6 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"sk" = (
@@ -12468,11 +10923,9 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/meter{
- frequency = 1443;
id = "UO45_dloop_atm_meter";
name = "Distribution Loop"
},
@@ -12480,7 +10933,6 @@
/obj/machinery/atmospherics/pipe/manifold/visible/cyan,
/turf/simulated/floor/plasteel,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"sl" = (
@@ -12489,18 +10941,15 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"sm" = (
/obj/machinery/atmospherics/binary/pump{
dir = 8;
- name = "Mix to Distro";
- on = 0
+ name = "Mix to Distro"
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"sn" = (
@@ -12509,14 +10958,12 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"so" = (
/obj/machinery/atmospherics/pipe/manifold/visible/yellow,
/turf/simulated/floor/plasteel,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"sp" = (
@@ -12526,7 +10973,6 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"sq" = (
@@ -12540,7 +10986,6 @@
},
/turf/simulated/floor/plating,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"sr" = (
@@ -12551,7 +10996,6 @@
icon_state = "whitehall"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"ss" = (
@@ -12572,7 +11016,6 @@
oxygen = 0.01
},
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"st" = (
@@ -12585,7 +11028,6 @@
oxygen = 0.01
},
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"su" = (
@@ -12594,14 +11036,12 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"sv" = (
/obj/structure/reagent_dispensers/fueltank,
/turf/simulated/floor/plating,
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"sw" = (
@@ -12612,7 +11052,6 @@
icon_state = "whitehall"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"sx" = (
@@ -12626,7 +11065,6 @@
icon_state = "whitecorner"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"sy" = (
@@ -12645,7 +11083,6 @@
icon_state = "whitehall"
},
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"sz" = (
@@ -12657,7 +11094,6 @@
icon_state = "freezerfloor"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"sA" = (
@@ -12669,7 +11105,6 @@
icon_state = "freezerfloor"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"sB" = (
@@ -12680,7 +11115,6 @@
icon_state = "freezerfloor"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"sC" = (
@@ -12692,15 +11126,12 @@
icon_state = "cautioncorner"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"sD" = (
/obj/machinery/atmospherics/unary/vent_pump{
dir = 1;
- external_pressure_bound = 101.325;
- on = 1;
- pressure_checks = 1
+ on = 1
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -12710,7 +11141,6 @@
icon_state = "cautioncorner"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"sE" = (
@@ -12718,17 +11148,14 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 7;
- tag = "icon-manifold-r-f (WEST)"
+ initialize_directions = 7
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"sF" = (
@@ -12738,7 +11165,6 @@
},
/obj/machinery/firealarm/no_alarm{
dir = 1;
- pixel_x = 0;
pixel_y = -24
},
/turf/simulated/floor/plasteel{
@@ -12746,7 +11172,6 @@
icon_state = "cautioncorner"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"sG" = (
@@ -12756,7 +11181,6 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"sH" = (
@@ -12768,7 +11192,6 @@
icon_state = "yellow"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"sI" = (
@@ -12778,7 +11201,6 @@
icon_state = "cautioncorner"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"sJ" = (
@@ -12791,21 +11213,18 @@
icon_state = "yellow"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"sK" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 14;
- tag = "icon-manifold-r-f (NORTH)"
+ initialize_directions = 14
},
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "yellow"
},
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"sL" = (
@@ -12814,12 +11233,10 @@
dir = 4
},
/obj/machinery/door/airlock/engineering/glass{
- name = "Engineering Reception";
- req_access_txt = "0"
+ name = "Engineering Reception"
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"sM" = (
@@ -12831,9 +11248,7 @@
},
/obj/machinery/atmospherics/unary/vent_pump{
dir = 1;
- external_pressure_bound = 101.325;
- on = 1;
- pressure_checks = 1
+ on = 1
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
@@ -12841,7 +11256,6 @@
icon_state = "red"
},
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"sN" = (
@@ -12850,14 +11264,12 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"sO" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 14;
- tag = "icon-manifold-r-f (NORTH)"
+ initialize_directions = 14
},
/obj/structure/table,
/obj/item/book/manual/security_space_law,
@@ -12866,7 +11278,6 @@
icon_state = "red"
},
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"sP" = (
@@ -12874,18 +11285,15 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 14;
- tag = "icon-manifold-r-f (NORTH)"
+ initialize_directions = 14
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"sQ" = (
@@ -12894,7 +11302,6 @@
},
/turf/simulated/floor/plating,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"sR" = (
@@ -12917,7 +11324,6 @@
/obj/item/folder/red,
/turf/simulated/floor/plasteel,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"sS" = (
@@ -12937,7 +11343,6 @@
icon_state = "green"
},
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"sT" = (
@@ -12947,7 +11352,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"sU" = (
@@ -12956,7 +11360,6 @@
/obj/effect/landmark/burnturf,
/turf/simulated/floor/plating,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"sV" = (
@@ -12966,7 +11369,6 @@
/obj/machinery/atmospherics/pipe/simple/visible/cyan,
/turf/simulated/floor/plasteel,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"sW" = (
@@ -12974,7 +11376,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/manifold/visible/purple{
@@ -12982,18 +11383,15 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"sX" = (
/obj/machinery/atmospherics/binary/pump{
- dir = 2;
name = "Mix to Filter";
on = 1
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"sY" = (
@@ -13002,7 +11400,6 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"sZ" = (
@@ -13011,7 +11408,6 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"ta" = (
@@ -13021,14 +11417,12 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"tb" = (
/obj/machinery/atmospherics/pipe/simple/visible/cyan,
/turf/simulated/floor/plasteel,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"tc" = (
@@ -13037,7 +11431,6 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"td" = (
@@ -13047,12 +11440,10 @@
layer = 3.3
},
/obj/machinery/atmospherics/pipe/simple/visible/green{
- dir = 4;
- level = 2
+ dir = 4
},
/turf/simulated/floor/plating,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"te" = (
@@ -13063,13 +11454,11 @@
icon_state = "space";
layer = 4;
name = "EXTERNAL AIRLOCK";
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/effect/landmark/damageturf,
/turf/simulated/floor/plating,
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"tf" = (
@@ -13084,7 +11473,6 @@
oxygen = 0.01
},
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"tg" = (
@@ -13099,7 +11487,6 @@
oxygen = 0.01
},
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"th" = (
@@ -13107,7 +11494,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -13115,12 +11501,10 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 7;
- tag = "icon-manifold-b-f (WEST)"
+ initialize_directions = 7
},
/turf/simulated/floor/plating,
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"ti" = (
@@ -13137,7 +11521,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"tj" = (
@@ -13148,7 +11531,6 @@
icon_state = "freezerfloor"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"tk" = (
@@ -13157,7 +11539,6 @@
},
/turf/simulated/floor/plating,
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"tl" = (
@@ -13177,7 +11558,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"tm" = (
@@ -13185,14 +11565,11 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/plating,
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"tn" = (
/obj/machinery/light/small,
-/obj/machinery/atmospherics/unary/portables_connector{
- dir = 2
- },
+/obj/machinery/atmospherics/unary/portables_connector,
/obj/structure/window/reinforced{
dir = 4;
layer = 2.9
@@ -13200,11 +11577,9 @@
/obj/machinery/portable_atmospherics/scrubber,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "escape";
- tag = "icon-escape (NORTH)"
+ icon_state = "escape"
},
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"to" = (
@@ -13213,7 +11588,6 @@
},
/turf/simulated/wall/r_wall,
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"tp" = (
@@ -13223,7 +11597,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/wall/r_wall,
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"tq" = (
@@ -13232,18 +11605,15 @@
},
/turf/simulated/wall/r_wall/rust,
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"tr" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 1;
- initialize_directions = 14;
- tag = "icon-manifold-b-f (NORTH)"
+ initialize_directions = 14
},
/turf/simulated/wall/r_wall/rust,
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"ts" = (
@@ -13251,7 +11621,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/structure/disposalpipe/segment,
@@ -13260,20 +11629,16 @@
},
/turf/simulated/floor/plating,
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"tt" = (
-/obj/machinery/atmospherics/unary/portables_connector{
- dir = 2
- },
+/obj/machinery/atmospherics/unary/portables_connector,
/obj/machinery/portable_atmospherics/pump,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "arrival"
},
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"tu" = (
@@ -13281,7 +11646,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/light/small{
@@ -13289,12 +11653,10 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- tag = "icon-manifold-r-f (EAST)"
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"tv" = (
@@ -13304,7 +11666,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"tw" = (
@@ -13319,7 +11680,6 @@
icon_state = "yellow"
},
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"tx" = (
@@ -13327,7 +11687,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/structure/disposalpipe/segment,
@@ -13336,7 +11695,6 @@
icon_state = "yellow"
},
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"ty" = (
@@ -13356,14 +11714,12 @@
icon_state = "red"
},
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"tz" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 7;
- tag = "icon-manifold-r-f (WEST)"
+ initialize_directions = 7
},
/obj/item/screwdriver{
pixel_y = 10
@@ -13374,7 +11730,6 @@
icon_state = "red"
},
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"tA" = (
@@ -13382,28 +11737,23 @@
/obj/effect/decal/warning_stripes/northwest,
/turf/simulated/floor/plating,
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"tB" = (
/obj/machinery/atmospherics/unary/vent_pump{
dir = 1;
- external_pressure_bound = 101.325;
- on = 1;
- pressure_checks = 1
+ on = 1
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/burnturf,
/turf/simulated/floor/plating,
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"tC" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"tD" = (
@@ -13415,7 +11765,6 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"tE" = (
@@ -13430,7 +11779,6 @@
},
/turf/simulated/floor/plating,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"tF" = (
@@ -13438,7 +11786,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/manifold/visible/purple{
@@ -13447,7 +11794,6 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"tG" = (
@@ -13457,12 +11803,10 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"tH" = (
/obj/machinery/meter{
- frequency = 1443;
id = "UO45_wloop_atm_meter";
name = "Waste Loop"
},
@@ -13471,7 +11815,6 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"tI" = (
@@ -13482,7 +11825,6 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"tJ" = (
@@ -13494,29 +11836,23 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"tK" = (
/obj/structure/chair{
- tag = "icon-chair (WEST)";
- icon_state = "chair";
dir = 8
},
/obj/effect/landmark/damageturf,
/turf/simulated/floor/plating,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"tL" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
+ dir = 5
},
/turf/simulated/wall/rust,
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"tM" = (
@@ -13530,7 +11866,6 @@
/obj/machinery/atmospherics/pipe/simple/visible/universal,
/turf/simulated/floor/plating,
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"tN" = (
@@ -13539,7 +11874,6 @@
},
/turf/simulated/wall,
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"tO" = (
@@ -13548,7 +11882,6 @@
},
/turf/simulated/wall/rust,
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"tP" = (
@@ -13556,7 +11889,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -13567,7 +11899,6 @@
},
/turf/simulated/floor/plating,
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"tQ" = (
@@ -13587,7 +11918,6 @@
/obj/machinery/portable_atmospherics/scrubber,
/turf/simulated/floor/plating,
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"tR" = (
@@ -13595,7 +11925,6 @@
/obj/effect/landmark/damageturf,
/turf/simulated/floor/plating,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"tS" = (
@@ -13603,7 +11932,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -13613,32 +11941,27 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"tT" = (
/obj/machinery/shower{
- dir = 1;
- pixel_y = 0
+ dir = 1
},
/obj/item/bikehorn/rubberducky,
/turf/simulated/floor/plasteel{
icon_state = "freezerfloor"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"tU" = (
/obj/machinery/shower{
- dir = 1;
- pixel_y = 0
+ dir = 1
},
/turf/simulated/floor/plasteel{
icon_state = "freezerfloor"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"tV" = (
@@ -13654,13 +11977,11 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 14;
- tag = "icon-manifold-r-f (NORTH)"
+ initialize_directions = 14
},
/obj/item/stack/rods,
/turf/simulated/floor/plating,
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"tW" = (
@@ -13668,7 +11989,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -13680,7 +12000,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plating,
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"tX" = (
@@ -13689,7 +12008,6 @@
},
/turf/simulated/wall/r_wall,
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"tY" = (
@@ -13697,7 +12015,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -13706,7 +12023,6 @@
icon_state = "browncorner"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"tZ" = (
@@ -13717,7 +12033,6 @@
icon_state = "browncorner"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"ua" = (
@@ -13728,7 +12043,6 @@
icon_state = "red"
},
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"ub" = (
@@ -13750,7 +12064,6 @@
icon_off = "secoff";
icon_opened = "secopen";
icon_state = "sec1";
- locked = 1;
name = "security officer's locker";
req_access_txt = "201"
},
@@ -13761,7 +12074,6 @@
icon_state = "red"
},
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"uc" = (
@@ -13769,7 +12081,6 @@
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a7{
always_unpowered = 1;
- has_gravity = 1;
name = "UO45 Caves";
power_environ = 0;
power_equip = 0;
@@ -13781,7 +12092,6 @@
/obj/machinery/meter,
/turf/simulated/wall/r_wall,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"ue" = (
@@ -13789,7 +12099,6 @@
/obj/machinery/meter,
/turf/simulated/wall/r_wall,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"uf" = (
@@ -13798,7 +12107,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/structure/disposalpipe/segment,
@@ -13809,7 +12117,6 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"ug" = (
@@ -13818,7 +12125,6 @@
icon_state = "red"
},
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"uh" = (
@@ -13829,7 +12135,6 @@
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plating,
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"ui" = (
@@ -13844,7 +12149,6 @@
icon_state = "red"
},
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"uj" = (
@@ -13856,7 +12160,6 @@
/obj/effect/decal/warning_stripes/northeast,
/turf/simulated/floor/plating,
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"uk" = (
@@ -13867,7 +12170,6 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"ul" = (
@@ -13875,7 +12177,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/atmospherics/binary/pump{
@@ -13885,7 +12186,6 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"um" = (
@@ -13896,7 +12196,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"un" = (
@@ -13916,7 +12215,6 @@
icon_state = "red"
},
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"uo" = (
@@ -13936,7 +12234,6 @@
icon_state = "blue"
},
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"up" = (
@@ -13951,7 +12248,6 @@
icon_state = "blue"
},
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"uq" = (
@@ -13962,17 +12258,13 @@
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plating,
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"ur" = (
-/obj/machinery/atmospherics/binary/valve{
- dir = 2
- },
+/obj/machinery/atmospherics/binary/valve,
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plating,
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"us" = (
@@ -13983,7 +12275,6 @@
dir = 4
},
/obj/machinery/alarm/monitor{
- frequency = 1439;
locked = 0;
pixel_y = 23;
req_access = null
@@ -13991,7 +12282,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"ut" = (
@@ -14006,7 +12296,6 @@
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"uu" = (
@@ -14016,7 +12305,6 @@
/obj/effect/landmark/damageturf,
/turf/simulated/floor/plating,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"uv" = (
@@ -14031,13 +12319,11 @@
icon_state = "caution"
},
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"uw" = (
/turf/simulated/mineral/random/labormineral,
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"ux" = (
@@ -14045,14 +12331,12 @@
/obj/machinery/door/airlock/external,
/turf/simulated/floor/plating,
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"uy" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/wall,
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"uz" = (
@@ -14061,7 +12345,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/door/poddoor/preopen{
@@ -14074,24 +12357,18 @@
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"uA" = (
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
- req_one_access_txt = "0"
- },
+/obj/machinery/door/airlock/maintenance,
/turf/simulated/floor/plating,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"uB" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"uC" = (
@@ -14107,7 +12384,6 @@
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"uD" = (
@@ -14115,7 +12391,6 @@
/obj/effect/decal/warning_stripes/southwest,
/turf/simulated/floor/plating,
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"uE" = (
@@ -14123,24 +12398,20 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 7;
- tag = "icon-manifold-r-f (WEST)"
+ initialize_directions = 7
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"uF" = (
/turf/simulated/wall,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"uG" = (
@@ -14151,7 +12422,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"uH" = (
@@ -14159,7 +12429,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/door/airlock/engineering{
@@ -14169,14 +12438,12 @@
/obj/machinery/atmospherics/pipe/simple/visible/universal,
/turf/simulated/floor/plasteel,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"uI" = (
/obj/machinery/atmospherics/pipe/simple/visible/universal,
/turf/simulated/wall/r_wall,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"uJ" = (
@@ -14188,7 +12455,6 @@
/obj/machinery/atmospherics/pipe/simple/visible/green,
/turf/simulated/floor/plating,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"uK" = (
@@ -14200,16 +12466,12 @@
/obj/machinery/atmospherics/pipe/simple/visible/cyan,
/turf/simulated/floor/plating,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"uL" = (
-/obj/machinery/atmospherics/binary/valve{
- dir = 2
- },
+/obj/machinery/atmospherics/binary/valve,
/turf/simulated/floor/plating,
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"uM" = (
@@ -14220,7 +12482,6 @@
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plating,
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"uN" = (
@@ -14231,7 +12492,6 @@
/obj/effect/decal/warning_stripes/southeast,
/turf/simulated/floor/plating,
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"uO" = (
@@ -14239,7 +12499,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -14248,7 +12507,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"uP" = (
@@ -14258,7 +12516,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"uQ" = (
@@ -14269,14 +12526,12 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"uR" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"uS" = (
@@ -14286,7 +12541,6 @@
icon_state = "browncorner"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"uT" = (
@@ -14302,7 +12556,6 @@
icon_state = "caution"
},
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"uU" = (
@@ -14316,20 +12569,17 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"uV" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/structure/chair/office/dark{
dir = 8
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"uW" = (
@@ -14337,8 +12587,7 @@
dir = 4
},
/obj/structure/sign/securearea{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
@@ -14346,7 +12595,6 @@
icon_state = "yellow"
},
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"uX" = (
@@ -14354,7 +12602,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/structure/disposalpipe/segment,
@@ -14365,7 +12612,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"uY" = (
@@ -14376,7 +12622,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"uZ" = (
@@ -14389,9 +12634,7 @@
name = "HIGH VOLTAGE";
pixel_y = -32
},
-/obj/machinery/vending/engivend{
- req_access_txt = "0"
- },
+/obj/machinery/vending/engivend,
/obj/machinery/camera{
c_tag = "Engineering Foyer";
dir = 1;
@@ -14400,7 +12643,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"va" = (
@@ -14409,7 +12651,6 @@
},
/turf/simulated/wall,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"vb" = (
@@ -14422,7 +12663,6 @@
},
/turf/simulated/floor/plating,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"vc" = (
@@ -14434,7 +12674,6 @@
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"vd" = (
@@ -14445,7 +12684,6 @@
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"ve" = (
@@ -14456,7 +12694,6 @@
},
/turf/simulated/floor/engine/n2,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"vf" = (
@@ -14473,7 +12710,6 @@
},
/turf/simulated/floor/engine/n2,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"vg" = (
@@ -14484,7 +12720,6 @@
},
/turf/simulated/floor/engine/o2,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"vh" = (
@@ -14501,7 +12736,6 @@
},
/turf/simulated/floor/engine/o2,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"vi" = (
@@ -14512,7 +12746,6 @@
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"vj" = (
@@ -14523,7 +12756,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a4{
- has_gravity = 1;
name = "UO45 Mining"
})
"vk" = (
@@ -14531,7 +12763,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -14540,14 +12771,12 @@
icon_state = "brown"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"vl" = (
/obj/machinery/door/airlock/external,
/turf/simulated/floor/plating,
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"vm" = (
@@ -14557,7 +12786,6 @@
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a7{
always_unpowered = 1;
- has_gravity = 1;
name = "UO45 Caves";
power_environ = 0;
power_equip = 0;
@@ -14572,7 +12800,6 @@
},
/turf/simulated/floor/plating,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"vo" = (
@@ -14582,7 +12809,6 @@
icon_state = "brown"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"vp" = (
@@ -14592,7 +12818,6 @@
/obj/item/stack/rods,
/turf/simulated/floor/plating,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"vq" = (
@@ -14602,7 +12827,6 @@
},
/turf/simulated/floor/plating,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"vr" = (
@@ -14613,7 +12837,6 @@
icon_state = "caution"
},
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"vs" = (
@@ -14621,7 +12844,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
@@ -14629,7 +12851,6 @@
icon_state = "yellow"
},
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"vt" = (
@@ -14639,14 +12860,11 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/item/twohanded/required/kirbyplants{
- layer = 5
- },
+/obj/item/twohanded/required/kirbyplants,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a4{
- has_gravity = 1;
name = "UO45 Mining"
})
"vu" = (
@@ -14654,7 +12872,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -14666,7 +12883,6 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"vv" = (
@@ -14683,7 +12899,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"vw" = (
@@ -14691,7 +12906,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -14699,7 +12913,6 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"vx" = (
@@ -14707,7 +12920,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/cable{
@@ -14722,27 +12934,22 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 1;
- initialize_directions = 14;
- tag = "icon-manifold-b-f (NORTH)"
+ initialize_directions = 14
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"vy" = (
/obj/machinery/alarm/monitor{
dir = 4;
- frequency = 1439;
locked = 0;
pixel_x = -23;
- pixel_y = 0;
req_access = null
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a4{
- has_gravity = 1;
name = "UO45 Mining"
})
"vz" = (
@@ -14757,13 +12964,11 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a4{
- has_gravity = 1;
name = "UO45 Mining"
})
"vA" = (
@@ -14771,12 +12976,10 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"vB" = (
@@ -14784,7 +12987,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/door/airlock/engineering{
@@ -14793,7 +12995,6 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"vC" = (
@@ -14803,11 +13004,9 @@
/obj/machinery/computer/station_alert,
/turf/simulated/floor/plasteel{
dir = 10;
- icon_state = "caution";
- tag = "icon-caution (SOUTHWEST)"
+ icon_state = "caution"
},
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"vD" = (
@@ -14819,7 +13018,6 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"vE" = (
@@ -14830,14 +13028,12 @@
/obj/machinery/light/small,
/turf/simulated/floor/engine/n2,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"vF" = (
/obj/machinery/portable_atmospherics/canister/nitrogen,
/turf/simulated/floor/engine/n2,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"vG" = (
@@ -14848,14 +13044,12 @@
/obj/machinery/light/small,
/turf/simulated/floor/engine/o2,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"vH" = (
/obj/machinery/portable_atmospherics/canister/oxygen,
/turf/simulated/floor/engine/o2,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"vI" = (
@@ -14864,31 +13058,26 @@
},
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"vJ" = (
/turf/simulated/wall/r_wall/rust,
/area/awaycontent/a4{
- has_gravity = 1;
name = "UO45 Mining"
})
"vK" = (
/turf/simulated/wall/r_wall,
/area/awaycontent/a4{
- has_gravity = 1;
name = "UO45 Mining"
})
"vL" = (
/turf/simulated/wall,
/area/awaycontent/a4{
- has_gravity = 1;
name = "UO45 Mining"
})
"vM" = (
/turf/simulated/wall/rust,
/area/awaycontent/a4{
- has_gravity = 1;
name = "UO45 Mining"
})
"vN" = (
@@ -14898,7 +13087,6 @@
},
/turf/simulated/floor/plating,
/area/awaycontent/a4{
- has_gravity = 1;
name = "UO45 Mining"
})
"vO" = (
@@ -14907,7 +13095,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -14917,7 +13104,6 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a4{
- has_gravity = 1;
name = "UO45 Mining"
})
"vP" = (
@@ -14929,7 +13115,6 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a4{
- has_gravity = 1;
name = "UO45 Mining"
})
"vQ" = (
@@ -14938,13 +13123,11 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a4{
- has_gravity = 1;
name = "UO45 Mining"
})
"vR" = (
@@ -14953,7 +13136,6 @@
},
/obj/machinery/firealarm/no_alarm{
dir = 1;
- pixel_x = 0;
pixel_y = -24
},
/obj/structure/closet/secure_closet/miner{
@@ -14962,7 +13144,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a4{
- has_gravity = 1;
name = "UO45 Mining"
})
"vS" = (
@@ -14971,7 +13152,6 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"vT" = (
@@ -14989,17 +13169,14 @@
icon_state = "yellow"
},
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"vU" = (
/obj/machinery/conveyor{
- dir = 2;
id = "UO45_mining"
},
/turf/simulated/floor/plating,
/area/awaycontent/a4{
- has_gravity = 1;
name = "UO45 Mining"
})
"vV" = (
@@ -15007,7 +13184,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/structure/disposalpipe/segment,
@@ -15018,7 +13194,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"vW" = (
@@ -15030,7 +13205,6 @@
},
/turf/simulated/floor/plating,
/area/awaycontent/a4{
- has_gravity = 1;
name = "UO45 Mining"
})
"vX" = (
@@ -15038,12 +13212,10 @@
dir = 8
},
/obj/effect/decal/warning_stripes/yellow/partial{
- icon_state = "3";
dir = 8
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a4{
- has_gravity = 1;
name = "UO45 Mining"
})
"vY" = (
@@ -15052,35 +13224,29 @@
},
/turf/simulated/wall,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"vZ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/alarm/monitor{
dir = 8;
- frequency = 1439;
locked = 0;
pixel_x = 23;
- pixel_y = 0;
req_access = null
},
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a4{
- has_gravity = 1;
name = "UO45 Mining"
})
"wa" = (
/obj/machinery/conveyor{
- dir = 2;
id = "UO45_mining"
},
/obj/structure/sign/nosmoking_2{
@@ -15088,7 +13254,6 @@
},
/turf/simulated/floor/plating,
/area/awaycontent/a4{
- has_gravity = 1;
name = "UO45 Mining"
})
"wb" = (
@@ -15096,7 +13261,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a4{
- has_gravity = 1;
name = "UO45 Mining"
})
"wc" = (
@@ -15108,14 +13272,12 @@
},
/turf/simulated/floor/carpet,
/area/awaycontent/a4{
- has_gravity = 1;
name = "UO45 Mining"
})
"wd" = (
/obj/structure/table/wood,
/turf/simulated/floor/carpet,
/area/awaycontent/a4{
- has_gravity = 1;
name = "UO45 Mining"
})
"we" = (
@@ -15126,7 +13288,6 @@
/obj/item/bedsheet,
/turf/simulated/floor/carpet,
/area/awaycontent/a4{
- has_gravity = 1;
name = "UO45 Mining"
})
"wf" = (
@@ -15135,17 +13296,14 @@
},
/turf/simulated/wall,
/area/awaycontent/a4{
- has_gravity = 1;
name = "UO45 Mining"
})
"wg" = (
/obj/machinery/mineral/processing_unit{
- dir = 1;
- output_dir = 2
+ dir = 1
},
/turf/simulated/floor/plating,
/area/awaycontent/a4{
- has_gravity = 1;
name = "UO45 Mining"
})
"wh" = (
@@ -15153,7 +13311,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/structure/disposalpipe/segment,
@@ -15169,11 +13326,9 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralfull"
},
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"wi" = (
@@ -15181,17 +13336,14 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- tag = "icon-manifold-r-f (EAST)"
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a4{
- has_gravity = 1;
name = "UO45 Mining"
})
"wj" = (
@@ -15206,11 +13358,9 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralfull"
},
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"wk" = (
@@ -15220,7 +13370,6 @@
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a7{
always_unpowered = 1;
- has_gravity = 1;
name = "UO45 Caves";
power_environ = 0;
power_equip = 0;
@@ -15231,8 +13380,8 @@
/obj/structure/grille,
/obj/structure/window/full/reinforced,
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/obj/structure/cable{
d2 = 8;
@@ -15240,7 +13389,6 @@
},
/turf/simulated/floor/plating,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"wm" = (
@@ -15248,12 +13396,11 @@
/obj/structure/window/full/reinforced,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/turf/simulated/floor/plating,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"wn" = (
@@ -15261,17 +13408,14 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralfull"
},
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"wo" = (
/turf/simulated/wall/rust,
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"wp" = (
@@ -15281,7 +13425,6 @@
},
/turf/simulated/floor/carpet,
/area/awaycontent/a4{
- has_gravity = 1;
name = "UO45 Mining"
})
"wq" = (
@@ -15299,7 +13442,6 @@
},
/turf/simulated/floor/carpet,
/area/awaycontent/a4{
- has_gravity = 1;
name = "UO45 Mining"
})
"wr" = (
@@ -15312,7 +13454,6 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a4{
- has_gravity = 1;
name = "UO45 Mining"
})
"ws" = (
@@ -15323,14 +13464,11 @@
id = "awaydorm8";
name = "Door Bolt Control";
normaldoorcontrol = 1;
- pixel_x = 0;
pixel_y = -25;
- req_access_txt = "0";
specialfunctions = 4
},
/turf/simulated/floor/carpet,
/area/awaycontent/a4{
- has_gravity = 1;
name = "UO45 Mining"
})
"wt" = (
@@ -15339,7 +13477,6 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a4{
- has_gravity = 1;
name = "UO45 Mining"
})
"wu" = (
@@ -15349,7 +13486,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a4{
- has_gravity = 1;
name = "UO45 Mining"
})
"wv" = (
@@ -15357,24 +13493,20 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/awaycontent/a4{
- has_gravity = 1;
name = "UO45 Mining"
})
"ww" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- tag = "icon-manifold-b-f (EAST)"
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a4{
- has_gravity = 1;
name = "UO45 Mining"
})
"wx" = (
@@ -15382,7 +13514,6 @@
/obj/structure/window/full/reinforced,
/turf/simulated/floor/plating,
/area/awaycontent/a4{
- has_gravity = 1;
name = "UO45 Mining"
})
"wy" = (
@@ -15394,11 +13525,9 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralfull"
},
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"wz" = (
@@ -15406,7 +13535,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -15415,11 +13543,9 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralfull"
},
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"wA" = (
@@ -15431,7 +13557,6 @@
icon_state = "freezerfloor"
},
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"wB" = (
@@ -15450,7 +13575,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a4{
- has_gravity = 1;
name = "UO45 Mining"
})
"wC" = (
@@ -15460,7 +13584,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a4{
- has_gravity = 1;
name = "UO45 Mining"
})
"wD" = (
@@ -15473,26 +13596,21 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a4{
- has_gravity = 1;
name = "UO45 Mining"
})
"wE" = (
/obj/structure/filingcabinet/chestdrawer,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralfull"
},
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"wF" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralfull"
},
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"wG" = (
@@ -15500,24 +13618,20 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/awaycontent/a4{
- has_gravity = 1;
name = "UO45 Mining"
})
"wH" = (
/obj/structure/chair/office,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralfull"
},
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"wI" = (
@@ -15528,7 +13642,6 @@
icon_state = "freezerfloor"
},
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"wJ" = (
@@ -15536,24 +13649,19 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralfull"
},
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"wK" = (
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
- pixel_x = 11;
- pixel_y = 0
+ pixel_x = 11
},
/obj/machinery/light/small,
/obj/structure/mirror{
@@ -15563,7 +13671,6 @@
icon_state = "freezerfloor"
},
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"wL" = (
@@ -15577,7 +13684,6 @@
},
/turf/simulated/floor/plating,
/area/awaycontent/a4{
- has_gravity = 1;
name = "UO45 Mining"
})
"wM" = (
@@ -15588,18 +13694,15 @@
},
/obj/item/stamp/ce,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralfull"
},
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"wN" = (
/obj/structure/chair/wood,
/turf/simulated/floor/carpet,
/area/awaycontent/a4{
- has_gravity = 1;
name = "UO45 Mining"
})
"wO" = (
@@ -15612,7 +13715,6 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a4{
- has_gravity = 1;
name = "UO45 Mining"
})
"wP" = (
@@ -15623,14 +13725,11 @@
id = "awaydorm9";
name = "Door Bolt Control";
normaldoorcontrol = 1;
- pixel_x = 0;
pixel_y = 25;
- req_access_txt = "0";
specialfunctions = 4
},
/turf/simulated/floor/carpet,
/area/awaycontent/a4{
- has_gravity = 1;
name = "UO45 Mining"
})
"wQ" = (
@@ -15638,7 +13737,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -15646,7 +13744,6 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a4{
- has_gravity = 1;
name = "UO45 Mining"
})
"wR" = (
@@ -15658,22 +13755,18 @@
/obj/item/pen,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralfull"
},
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"wS" = (
/obj/structure/table/reinforced,
/obj/item/folder/yellow,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralfull"
},
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"wT" = (
@@ -15681,7 +13774,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/light/small{
@@ -15689,29 +13781,23 @@
},
/obj/machinery/alarm/monitor{
dir = 8;
- frequency = 1439;
locked = 0;
pixel_x = 23;
- pixel_y = 0;
req_access = null
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralfull"
},
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"wU" = (
/obj/structure/cable,
/obj/machinery/power/apc/noalarm{
cell_type = 15000;
- dir = 2;
locked = 0;
name = "UO45 Mining APC";
- pixel_x = 0;
pixel_y = -25;
req_access = null;
start_charge = 100
@@ -15734,16 +13820,13 @@
/obj/item/storage/backpack/satchel_eng,
/obj/item/clothing/gloves/fingerless,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "browncorner"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "UO45 Mining"
})
"wV" = (
/obj/machinery/conveyor{
- dir = 2;
id = "UO45_mining"
},
/obj/machinery/light/small{
@@ -15751,7 +13834,6 @@
},
/turf/simulated/floor/plating,
/area/awaycontent/a4{
- has_gravity = 1;
name = "UO45 Mining"
})
"wW" = (
@@ -15760,7 +13842,6 @@
/obj/item/bedsheet,
/turf/simulated/floor/carpet,
/area/awaycontent/a4{
- has_gravity = 1;
name = "UO45 Mining"
})
"wX" = (
@@ -15781,29 +13862,24 @@
},
/turf/simulated/floor/carpet,
/area/awaycontent/a4{
- has_gravity = 1;
name = "UO45 Mining"
})
"wY" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- tag = "icon-manifold-r-f (EAST)"
+ initialize_directions = 11
},
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "brown"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "UO45 Mining"
})
"wZ" = (
@@ -15812,11 +13888,9 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "brown"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "UO45 Mining"
})
"xa" = (
@@ -15828,11 +13902,9 @@
pixel_x = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralfull"
},
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"xb" = (
@@ -15843,11 +13915,9 @@
tag = ""
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralfull"
},
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"xc" = (
@@ -15856,29 +13926,23 @@
pixel_y = 3
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralfull"
},
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"xd" = (
/obj/structure/bookcase/manuals/engineering,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralfull"
},
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"xe" = (
/obj/machinery/atmospherics/unary/vent_pump{
dir = 1;
- external_pressure_bound = 101.325;
- on = 1;
- pressure_checks = 1
+ on = 1
},
/obj/machinery/newscaster{
pixel_y = -28
@@ -15891,21 +13955,17 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralfull"
},
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"xf" = (
/obj/machinery/computer/station_alert,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralfull"
},
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"xg" = (
@@ -15914,11 +13974,9 @@
},
/obj/structure/cable,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralfull"
},
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"xh" = (
@@ -15933,12 +13991,10 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a4{
- has_gravity = 1;
name = "UO45 Mining"
})
"xi" = (
@@ -15950,7 +14006,6 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a4{
- has_gravity = 1;
name = "UO45 Mining"
})
"xj" = (
@@ -15973,11 +14028,9 @@
req_access_txt = "201"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralfull"
},
/area/awaycontent/a3{
- has_gravity = 1;
name = "UO45 Engineering"
})
"xk" = (
@@ -15985,14 +14038,12 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a4{
- has_gravity = 1;
name = "UO45 Mining"
})
"xl" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- tag = "icon-manifold-r-f (EAST)"
+ initialize_directions = 11
},
/obj/structure/closet/crate,
/obj/item/stack/sheet/metal{
@@ -16004,7 +14055,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a4{
- has_gravity = 1;
name = "UO45 Mining"
})
"xm" = (
@@ -16015,7 +14065,6 @@
},
/turf/simulated/floor/plating,
/area/awaycontent/a4{
- has_gravity = 1;
name = "UO45 Mining"
})
"xn" = (
@@ -16023,12 +14072,10 @@
dir = 4
},
/obj/effect/decal/warning_stripes/yellow/partial{
- icon_state = "3";
dir = 4
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a4{
- has_gravity = 1;
name = "UO45 Mining"
})
"xo" = (
@@ -16036,7 +14083,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a4{
- has_gravity = 1;
name = "UO45 Mining"
})
"xp" = (
@@ -16053,14 +14099,12 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a4{
- has_gravity = 1;
name = "UO45 Mining"
})
"xq" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/awaycontent/a4{
- has_gravity = 1;
name = "UO45 Mining"
})
"xr" = (
@@ -16073,7 +14117,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a4{
- has_gravity = 1;
name = "UO45 Mining"
})
"xs" = (
@@ -16083,7 +14126,6 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a4{
- has_gravity = 1;
name = "UO45 Mining"
})
"xt" = (
@@ -16091,7 +14133,6 @@
/obj/structure/window/full/basic,
/turf/simulated/floor/plating,
/area/awaycontent/a4{
- has_gravity = 1;
name = "UO45 Mining"
})
"xu" = (
@@ -16100,28 +14141,23 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a4{
- has_gravity = 1;
name = "UO45 Mining"
})
"xv" = (
/obj/machinery/alarm/monitor{
dir = 4;
- frequency = 1439;
locked = 0;
pixel_x = -23;
- pixel_y = 0;
req_access = null
},
/obj/structure/closet/emcloset,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a4{
- has_gravity = 1;
name = "UO45 Mining"
})
"xw" = (
@@ -16131,20 +14167,16 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a4{
- has_gravity = 1;
name = "UO45 Mining"
})
"xx" = (
/obj/machinery/atmospherics/unary/vent_pump{
dir = 1;
- external_pressure_bound = 101.325;
- on = 1;
- pressure_checks = 1
+ on = 1
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a4{
- has_gravity = 1;
name = "UO45 Mining"
})
"xy" = (
@@ -16153,7 +14185,6 @@
},
/turf/simulated/wall/rust,
/area/awaycontent/a4{
- has_gravity = 1;
name = "UO45 Mining"
})
"xz" = (
@@ -16163,25 +14194,21 @@
/obj/effect/landmark/burnturf,
/turf/simulated/floor/plasteel,
/area/awaycontent/a4{
- has_gravity = 1;
name = "UO45 Mining"
})
"xA" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 7;
- tag = "icon-manifold-r-f (WEST)"
+ initialize_directions = 7
},
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a4{
- has_gravity = 1;
name = "UO45 Mining"
})
"xB" = (
@@ -16189,7 +14216,6 @@
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
/area/awaycontent/a4{
- has_gravity = 1;
name = "UO45 Mining"
})
"xC" = (
@@ -16200,7 +14226,6 @@
},
/turf/simulated/floor/plating,
/area/awaycontent/a4{
- has_gravity = 1;
name = "UO45 Mining"
})
"xD" = (
@@ -16208,13 +14233,11 @@
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
/area/awaycontent/a4{
- has_gravity = 1;
name = "UO45 Mining"
})
"xE" = (
/turf/simulated/floor/plasteel,
/area/awaycontent/a4{
- has_gravity = 1;
name = "UO45 Mining"
})
"xF" = (
@@ -16226,21 +14249,18 @@
icon_state = "space";
layer = 4;
name = "EXTERNAL AIRLOCK";
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
/area/awaycontent/a4{
- has_gravity = 1;
name = "UO45 Mining"
})
"xG" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a4{
- has_gravity = 1;
name = "UO45 Mining"
})
"xH" = (
@@ -16256,18 +14276,15 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a4{
- has_gravity = 1;
name = "UO45 Mining"
})
"xI" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 7;
- tag = "icon-manifold-b-f (WEST)"
+ initialize_directions = 7
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a4{
- has_gravity = 1;
name = "UO45 Mining"
})
"xJ" = (
@@ -16279,12 +14296,10 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a4{
- has_gravity = 1;
name = "UO45 Mining"
})
"xK" = (
@@ -16299,12 +14314,10 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a4{
- has_gravity = 1;
name = "UO45 Mining"
})
"xM" = (
@@ -16320,7 +14333,6 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a4{
- has_gravity = 1;
name = "UO45 Mining"
})
"xN" = (
@@ -16329,7 +14341,6 @@
},
/turf/simulated/wall,
/area/awaycontent/a4{
- has_gravity = 1;
name = "UO45 Mining"
})
"xO" = (
@@ -16338,7 +14349,6 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a4{
- has_gravity = 1;
name = "UO45 Mining"
})
"xQ" = (
@@ -16349,18 +14359,16 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a4{
- has_gravity = 1;
name = "UO45 Mining"
})
"xR" = (
/obj/machinery/computer/mech_bay_power_console,
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a4{
- has_gravity = 1;
name = "UO45 Mining"
})
"xS" = (
@@ -16378,13 +14386,10 @@
},
/turf/simulated/floor/mech_bay_recharge_floor,
/area/awaycontent/a4{
- has_gravity = 1;
name = "UO45 Mining"
})
"xT" = (
/obj/machinery/mech_bay_recharge_port{
- tag = "icon-recharge_port (WEST)";
- icon_state = "recharge_port";
dir = 8
},
/obj/structure/cable{
@@ -16393,7 +14398,6 @@
},
/turf/simulated/floor/plating,
/area/awaycontent/a4{
- has_gravity = 1;
name = "UO45 Mining"
})
"xY" = (
@@ -16402,7 +14406,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
/area/awaycontent/a4{
- has_gravity = 1;
name = "UO45 Mining"
})
"ye" = (
@@ -16415,12 +14418,10 @@
temperature = 273.15
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "UO45 Mining"
})
"yf" = (
/obj/structure/alien/weeds{
- tag = "icon-weeds2";
icon_state = "weeds2"
},
/obj/structure/bed/nest,
@@ -16428,7 +14429,6 @@
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a7{
always_unpowered = 1;
- has_gravity = 1;
name = "UO45 Caves";
power_environ = 0;
power_equip = 0;
@@ -16437,7 +14437,6 @@
})
"yg" = (
/obj/structure/alien/weeds{
- tag = "icon-weeds1";
icon_state = "weeds1"
},
/obj/effect/mob_spawn/human/miner,
@@ -16447,7 +14446,6 @@
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a7{
always_unpowered = 1;
- has_gravity = 1;
name = "UO45 Caves";
power_environ = 0;
power_equip = 0;
@@ -16460,7 +14458,6 @@
},
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a2{
- has_gravity = 1;
name = "UO45 Crew Quarters"
})
"yi" = (
@@ -16473,7 +14470,6 @@
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a7{
always_unpowered = 1;
- has_gravity = 1;
name = "UO45 Caves";
power_environ = 0;
power_equip = 0;
@@ -16486,7 +14482,6 @@
},
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a5{
- has_gravity = 1;
name = "UO45 Research"
})
"yk" = (
@@ -16495,7 +14490,6 @@
},
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a4{
- has_gravity = 1;
name = "UO45 Mining"
})
"yl" = (
@@ -16504,7 +14498,6 @@
},
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a4{
- has_gravity = 1;
name = "UO45 Mining"
})
"ym" = (
@@ -16512,7 +14505,6 @@
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a7{
always_unpowered = 1;
- has_gravity = 1;
name = "UO45 Caves";
power_environ = 0;
power_equip = 0;
@@ -16524,7 +14516,6 @@
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a7{
always_unpowered = 1;
- has_gravity = 1;
name = "UO45 Caves";
power_environ = 0;
power_equip = 0;
@@ -16533,14 +14524,12 @@
})
"yo" = (
/obj/structure/alien/weeds{
- tag = "icon-weeds1";
icon_state = "weeds1"
},
/obj/effect/mob_spawn/human/miner,
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a7{
always_unpowered = 1;
- has_gravity = 1;
name = "UO45 Caves";
power_environ = 0;
power_equip = 0;
@@ -16549,14 +14538,12 @@
})
"yp" = (
/obj/structure/alien/weeds{
- tag = "icon-weeds2";
icon_state = "weeds2"
},
/obj/structure/glowshroom/single,
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a7{
always_unpowered = 1;
- has_gravity = 1;
name = "UO45 Caves";
power_environ = 0;
power_equip = 0;
@@ -16565,14 +14552,12 @@
})
"yq" = (
/obj/structure/alien/weeds{
- tag = "icon-weeds2";
icon_state = "weeds2"
},
/obj/structure/bed/nest,
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a7{
always_unpowered = 1;
- has_gravity = 1;
name = "UO45 Caves";
power_environ = 0;
power_equip = 0;
@@ -16581,7 +14566,6 @@
})
"yr" = (
/obj/structure/alien/weeds{
- tag = "icon-weeds1";
icon_state = "weeds1"
},
/obj/effect/decal/cleanable/blood/gibs{
@@ -16591,7 +14575,6 @@
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a7{
always_unpowered = 1;
- has_gravity = 1;
name = "UO45 Caves";
power_environ = 0;
power_equip = 0;
@@ -16600,13 +14583,11 @@
})
"ys" = (
/obj/structure/alien/weeds{
- tag = "icon-weeds2";
icon_state = "weeds2"
},
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a7{
always_unpowered = 1;
- has_gravity = 1;
name = "UO45 Caves";
power_environ = 0;
power_equip = 0;
@@ -16621,7 +14602,6 @@
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a7{
always_unpowered = 1;
- has_gravity = 1;
name = "UO45 Caves";
power_environ = 0;
power_equip = 0;
@@ -16630,14 +14610,12 @@
})
"yu" = (
/obj/structure/alien/weeds{
- tag = "icon-weeds1";
icon_state = "weeds1"
},
/obj/structure/glowshroom/single,
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a7{
always_unpowered = 1;
- has_gravity = 1;
name = "UO45 Caves";
power_environ = 0;
power_equip = 0;
@@ -16650,7 +14628,6 @@
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a7{
always_unpowered = 1;
- has_gravity = 1;
name = "UO45 Caves";
power_environ = 0;
power_equip = 0;
@@ -16659,7 +14636,6 @@
})
"yw" = (
/obj/structure/alien/weeds{
- tag = "icon-weeds2";
icon_state = "weeds2"
},
/obj/effect/decal/cleanable/blood/tracks{
@@ -16671,7 +14647,6 @@
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a7{
always_unpowered = 1;
- has_gravity = 1;
name = "UO45 Caves";
power_environ = 0;
power_equip = 0;
@@ -16686,7 +14661,6 @@
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a7{
always_unpowered = 1;
- has_gravity = 1;
name = "UO45 Caves";
power_environ = 0;
power_equip = 0;
@@ -16695,13 +14669,11 @@
})
"yy" = (
/obj/structure/alien/weeds{
- tag = "icon-weeds1";
icon_state = "weeds1"
},
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a7{
always_unpowered = 1;
- has_gravity = 1;
name = "UO45 Caves";
power_environ = 0;
power_equip = 0;
@@ -16713,7 +14685,6 @@
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a7{
always_unpowered = 1;
- has_gravity = 1;
name = "UO45 Caves";
power_environ = 0;
power_equip = 0;
@@ -16722,7 +14693,6 @@
})
"yA" = (
/obj/structure/alien/weeds{
- tag = "icon-weeds2";
icon_state = "weeds2"
},
/obj/effect/decal/cleanable/blood/splatter{
@@ -16732,7 +14702,6 @@
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a7{
always_unpowered = 1;
- has_gravity = 1;
name = "UO45 Caves";
power_environ = 0;
power_equip = 0;
@@ -16741,7 +14710,6 @@
})
"yB" = (
/obj/structure/alien/weeds{
- tag = "icon-weeds2";
icon_state = "weeds2"
},
/obj/effect/decal/cleanable/blood/splatter{
@@ -16750,7 +14718,6 @@
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a7{
always_unpowered = 1;
- has_gravity = 1;
name = "UO45 Caves";
power_environ = 0;
power_equip = 0;
@@ -16765,7 +14732,6 @@
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a7{
always_unpowered = 1;
- has_gravity = 1;
name = "UO45 Caves";
power_environ = 0;
power_equip = 0;
@@ -16774,7 +14740,6 @@
})
"yD" = (
/obj/structure/alien/weeds{
- tag = "icon-weeds1";
icon_state = "weeds1"
},
/obj/effect/decal/cleanable/blood/tracks{
@@ -16787,7 +14752,6 @@
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a7{
always_unpowered = 1;
- has_gravity = 1;
name = "UO45 Caves";
power_environ = 0;
power_equip = 0;
@@ -16800,7 +14764,6 @@
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a7{
always_unpowered = 1;
- has_gravity = 1;
name = "UO45 Caves";
power_environ = 0;
power_equip = 0;
@@ -16815,7 +14778,6 @@
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a7{
always_unpowered = 1;
- has_gravity = 1;
name = "UO45 Caves";
power_environ = 0;
power_equip = 0;
@@ -16824,7 +14786,6 @@
})
"yG" = (
/obj/structure/alien/weeds{
- tag = "icon-weeds1";
icon_state = "weeds1"
},
/obj/effect/decal/cleanable/blood/tracks{
@@ -16837,7 +14798,6 @@
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a7{
always_unpowered = 1;
- has_gravity = 1;
name = "UO45 Caves";
power_environ = 0;
power_equip = 0;
@@ -16856,7 +14816,6 @@
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a7{
always_unpowered = 1;
- has_gravity = 1;
name = "UO45 Caves";
power_environ = 0;
power_equip = 0;
@@ -16870,7 +14829,6 @@
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a7{
always_unpowered = 1;
- has_gravity = 1;
name = "UO45 Caves";
power_environ = 0;
power_equip = 0;
@@ -16886,7 +14844,6 @@
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a7{
always_unpowered = 1;
- has_gravity = 1;
name = "UO45 Caves";
power_environ = 0;
power_equip = 0;
@@ -31965,7 +29922,7 @@ oS
pB
qc
qF
-rt
+sZ
sl
sX
tG
diff --git a/_maps/map_files/RandomZLevels/wildwest.dmm b/_maps/map_files/RandomZLevels/wildwest.dmm
index 50a7074a7a9..186e4bdc181 100644
--- a/_maps/map_files/RandomZLevels/wildwest.dmm
+++ b/_maps/map_files/RandomZLevels/wildwest.dmm
@@ -14,7 +14,6 @@
/area/awaymission/wwvault)
"ae" = (
/turf/simulated/floor{
- tag = "icon-cultdamage5";
icon_state = "cultdamage5"
},
/area/awaymission/wwvault)
@@ -24,7 +23,6 @@
/area/awaymission/wwvault)
"ag" = (
/turf/simulated/floor{
- tag = "icon-bcircuitoff";
icon_state = "bcircuitoff"
},
/area/awaymission/wwvault)
@@ -41,13 +39,11 @@
/area/awaymission/wwvault)
"aj" = (
/turf/simulated/floor{
- tag = "icon-cultdamage3";
icon_state = "cultdamage3"
},
/area/awaymission/wwvault)
"ak" = (
/turf/simulated/floor{
- tag = "icon-cultdamage6";
icon_state = "cultdamage6"
},
/area/awaymission/wwvault)
@@ -58,7 +54,6 @@
"am" = (
/mob/living/simple_animal/hostile/faithless,
/turf/simulated/floor{
- tag = "icon-bcircuitoff";
icon_state = "bcircuitoff"
},
/area/awaymission/wwvault)
@@ -72,21 +67,18 @@
/area/awaymission/wwvault)
"ao" = (
/turf/simulated/floor{
- tag = "icon-gcircuitoff";
icon_state = "gcircuitoff"
},
/area/awaymission/wwvault)
"ap" = (
/obj/machinery/wish_granter_dark,
/turf/simulated/floor{
- tag = "icon-gcircuitoff";
icon_state = "gcircuitoff"
},
/area/awaymission/wwvault)
"aq" = (
/obj/structure/cult/pylon,
/turf/simulated/floor{
- tag = "icon-gcircuitoff";
icon_state = "gcircuitoff"
},
/area/awaymission/wwvault)
@@ -95,7 +87,6 @@
dir = 9
},
/turf/simulated/floor{
- tag = "icon-gcircuitoff";
icon_state = "gcircuitoff"
},
/area/awaymission/wwvault)
@@ -104,7 +95,6 @@
dir = 5
},
/turf/simulated/floor{
- tag = "icon-gcircuitoff";
icon_state = "gcircuitoff"
},
/area/awaymission/wwvault)
@@ -113,7 +103,6 @@
dir = 1
},
/turf/simulated/floor{
- tag = "icon-gcircuitoff";
icon_state = "gcircuitoff"
},
/area/awaymission/wwvault)
@@ -122,7 +111,6 @@
dir = 8
},
/turf/simulated/floor{
- tag = "icon-gcircuitoff";
icon_state = "gcircuitoff"
},
/area/awaymission/wwvault)
@@ -131,7 +119,6 @@
dir = 4
},
/turf/simulated/floor{
- tag = "icon-gcircuitoff";
icon_state = "gcircuitoff"
},
/area/awaymission/wwvault)
@@ -140,7 +127,6 @@
calibrated = 0
},
/turf/simulated/floor{
- tag = "icon-gcircuitoff";
icon_state = "gcircuitoff"
},
/area/awaymission/wwvault)
@@ -149,7 +135,6 @@
dir = 10
},
/turf/simulated/floor{
- tag = "icon-gcircuitoff";
icon_state = "gcircuitoff"
},
/area/awaymission/wwvault)
@@ -158,34 +143,29 @@
dir = 6
},
/turf/simulated/floor{
- tag = "icon-gcircuitoff";
icon_state = "gcircuitoff"
},
/area/awaymission/wwvault)
"az" = (
/obj/machinery/gateway,
/turf/simulated/floor{
- tag = "icon-gcircuitoff";
icon_state = "gcircuitoff"
},
/area/awaymission/wwvault)
"aA" = (
/obj/effect/meatgrinder,
/turf/simulated/floor{
- tag = "icon-gcircuitoff";
icon_state = "gcircuitoff"
},
/area/awaymission/wwvault)
"aB" = (
/obj/structure/cult/pylon,
/turf/simulated/floor{
- tag = "icon-bcircuitoff";
icon_state = "bcircuitoff"
},
/area/awaymission/wwvault)
"aC" = (
/turf/simulated/floor{
- tag = "icon-cultdamage2";
icon_state = "cultdamage2"
},
/area/awaymission/wwvault)
@@ -222,8 +202,8 @@
"aI" = (
/obj/machinery/power/smes/magical,
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -342,7 +322,6 @@
/area/awaymission/wwmines)
"bd" = (
/obj/effect/decal/cleanable/blood/gibs/body{
- tag = "icon-gibup1";
icon_state = "gibup1"
},
/turf/simulated/floor/plating/ironsand,
@@ -419,7 +398,6 @@
/area/awaymission/wwmines)
"bv" = (
/obj/effect/decal/cleanable/blood/gibs/body{
- tag = "icon-gibup1";
icon_state = "gibup1"
},
/turf/simulated/floor/wood,
@@ -427,14 +405,12 @@
"bw" = (
/obj/structure/lattice,
/obj/structure/window/reinforced{
- tag = "icon-fwindow";
icon_state = "fwindow"
},
/turf/space,
/area/space/nearstation)
"bx" = (
/obj/structure/window/reinforced{
- tag = "icon-fwindow";
icon_state = "fwindow"
},
/turf/space,
@@ -442,9 +418,8 @@
"by" = (
/obj/structure/closet/secure_closet/freezer/fridge,
/turf/simulated/floor/plasteel{
- tag = "icon-cafeteria (NORTHEAST)";
- icon_state = "cafeteria";
- dir = 5
+ dir = 5;
+ icon_state = "cafeteria"
},
/area/awaymission/wwmines)
"bz" = (
@@ -453,9 +428,8 @@
/area/awaymission/wwmines)
"bA" = (
/turf/simulated/floor/plasteel{
- tag = "icon-cafeteria (NORTHEAST)";
- icon_state = "cafeteria";
- dir = 5
+ dir = 5;
+ icon_state = "cafeteria"
},
/area/awaymission/wwmines)
"bB" = (
@@ -472,9 +446,8 @@
"bE" = (
/mob/living/simple_animal/hostile/syndicate/ranged/wildwest,
/turf/simulated/floor/plasteel{
- tag = "icon-cafeteria (NORTHEAST)";
- icon_state = "cafeteria";
- dir = 5
+ dir = 5;
+ icon_state = "cafeteria"
},
/area/awaymission/wwmines)
"bF" = (
@@ -496,8 +469,6 @@
"bI" = (
/obj/structure/table/wood,
/obj/machinery/light/small{
- tag = "icon-bulb1 (NORTH)";
- icon_state = "bulb1";
dir = 1
},
/obj/item/gun/projectile/automatic/pistol,
@@ -505,8 +476,6 @@
/area/awaymission/wwmines)
"bJ" = (
/obj/machinery/light/small{
- tag = "icon-bulb1 (NORTH)";
- icon_state = "bulb1";
dir = 1
},
/turf/simulated/floor/carpet,
@@ -514,8 +483,6 @@
"bK" = (
/obj/structure/table/wood,
/obj/machinery/light/spot{
- tag = "icon-tube1 (NORTH)";
- icon_state = "tube1";
dir = 1
},
/turf/simulated/floor/wood,
@@ -523,8 +490,6 @@
"bL" = (
/obj/structure/table/wood,
/obj/machinery/light/small{
- tag = "icon-bulb1 (NORTH)";
- icon_state = "bulb1";
dir = 1
},
/obj/item/kitchen/knife/butcher,
@@ -541,16 +506,12 @@
"bO" = (
/obj/structure/table/wood,
/obj/machinery/light/small{
- tag = "icon-bulb1 (NORTH)";
- icon_state = "bulb1";
dir = 1
},
/turf/simulated/floor/wood,
/area/awaymission/wwmines)
"bP" = (
/obj/machinery/light/spot{
- tag = "icon-tube1 (NORTH)";
- icon_state = "tube1";
dir = 1
},
/turf/simulated/floor/wood,
@@ -558,30 +519,25 @@
"bQ" = (
/obj/structure/closet/secure_closet/freezer/kitchen,
/turf/simulated/floor/plasteel{
- tag = "icon-cafeteria (NORTHEAST)";
- icon_state = "cafeteria";
- dir = 5
+ dir = 5;
+ icon_state = "cafeteria"
},
/area/awaymission/wwmines)
"bR" = (
/obj/machinery/kitchen_machine/microwave,
/turf/simulated/floor/plasteel{
- tag = "icon-cafeteria (NORTHEAST)";
- icon_state = "cafeteria";
- dir = 5
+ dir = 5;
+ icon_state = "cafeteria"
},
/area/awaymission/wwmines)
"bS" = (
/obj/item/book/manual/chef_recipes,
/obj/machinery/light/small{
- tag = "icon-bulb1 (NORTH)";
- icon_state = "bulb1";
dir = 1
},
/turf/simulated/floor/plasteel{
- tag = "icon-cafeteria (NORTHEAST)";
- icon_state = "cafeteria";
- dir = 5
+ dir = 5;
+ icon_state = "cafeteria"
},
/area/awaymission/wwmines)
"bT" = (
@@ -592,28 +548,24 @@
/obj/item/reagent_containers/food/snacks/meat/syntiflesh,
/obj/item/reagent_containers/food/snacks/meat/syntiflesh,
/turf/simulated/floor/plasteel{
- tag = "icon-cafeteria (NORTHEAST)";
- icon_state = "cafeteria";
- dir = 5
+ dir = 5;
+ icon_state = "cafeteria"
},
/area/awaymission/wwmines)
"bU" = (
/obj/structure/lattice,
/obj/structure/window/reinforced{
- tag = "icon-fwindow (EAST)";
- icon_state = "fwindow";
- dir = 4
+ dir = 4;
+ icon_state = "fwindow"
},
/turf/space,
/area/space/nearstation)
"bV" = (
/obj/structure/window/reinforced{
- tag = "icon-fwindow (NORTH)";
- icon_state = "fwindow";
- dir = 1
+ dir = 1;
+ icon_state = "fwindow"
},
/obj/structure/window/reinforced{
- tag = "icon-fwindow";
icon_state = "fwindow"
},
/obj/structure/grille,
@@ -624,12 +576,10 @@
/area/awaymission/wwgov)
"bW" = (
/obj/structure/window/reinforced{
- tag = "icon-fwindow (NORTH)";
- icon_state = "fwindow";
- dir = 1
+ dir = 1;
+ icon_state = "fwindow"
},
/obj/structure/window/reinforced{
- tag = "icon-fwindow";
icon_state = "fwindow"
},
/obj/structure/grille,
@@ -637,19 +587,16 @@
/area/awaymission/wwgov)
"bX" = (
/obj/structure/window/reinforced{
- tag = "icon-fwindow (NORTH)";
- icon_state = "fwindow";
- dir = 1
+ dir = 1;
+ icon_state = "fwindow"
},
/obj/structure/window/reinforced{
- tag = "icon-fwindow";
icon_state = "fwindow"
},
/obj/structure/grille,
/obj/structure/window/reinforced{
- tag = "icon-fwindow (EAST)";
- icon_state = "fwindow";
- dir = 4
+ dir = 4;
+ icon_state = "fwindow"
},
/turf/simulated/floor/plating,
/area/awaymission/wwgov)
@@ -663,22 +610,18 @@
/area/awaymission/wwmines)
"ca" = (
/obj/structure/window/reinforced{
- tag = "icon-fwindow (WEST)";
- icon_state = "fwindow";
- dir = 8
+ dir = 8;
+ icon_state = "fwindow"
},
/turf/space,
/area/space/nearstation)
"cb" = (
/obj/machinery/light/small{
- tag = "icon-bulb1 (WEST)";
- icon_state = "bulb1";
dir = 8
},
/turf/simulated/floor/plasteel{
- tag = "icon-cafeteria (NORTHEAST)";
- icon_state = "cafeteria";
- dir = 5
+ dir = 5;
+ icon_state = "cafeteria"
},
/area/awaymission/wwmines)
"cc" = (
@@ -686,21 +629,17 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- tag = "icon-cafeteria (NORTHEAST)";
- icon_state = "cafeteria";
- dir = 5
+ dir = 5;
+ icon_state = "cafeteria"
},
/area/awaymission/wwmines)
"cd" = (
/obj/machinery/light/small{
- tag = "icon-bulb1 (EAST)";
- icon_state = "bulb1";
dir = 4
},
/turf/simulated/floor/plasteel{
- tag = "icon-cafeteria (NORTHEAST)";
- icon_state = "cafeteria";
- dir = 5
+ dir = 5;
+ icon_state = "cafeteria"
},
/area/awaymission/wwmines)
"ce" = (
@@ -708,9 +647,8 @@
dir = 8
},
/turf/simulated/floor/plasteel{
- tag = "icon-cafeteria (NORTHEAST)";
- icon_state = "cafeteria";
- dir = 5
+ dir = 5;
+ icon_state = "cafeteria"
},
/area/awaymission/wwmines)
"cf" = (
@@ -731,9 +669,8 @@
/area/awaymission/wwmines)
"cj" = (
/obj/structure/window/reinforced{
- tag = "icon-fwindow (EAST)";
- icon_state = "fwindow";
- dir = 4
+ dir = 4;
+ icon_state = "fwindow"
},
/turf/space,
/area/space/nearstation)
@@ -742,20 +679,17 @@
/area/awaymission/wwgov)
"cl" = (
/obj/structure/window/reinforced{
- tag = "icon-fwindow (WEST)";
- icon_state = "fwindow";
- dir = 8
+ dir = 8;
+ icon_state = "fwindow"
},
/obj/structure/window/reinforced{
- tag = "icon-fwindow (EAST)";
- icon_state = "fwindow";
- dir = 4
+ dir = 4;
+ icon_state = "fwindow"
},
/obj/structure/grille,
/obj/structure/window/reinforced{
- tag = "icon-fwindow (NORTH)";
- icon_state = "fwindow";
- dir = 1
+ dir = 1;
+ icon_state = "fwindow"
},
/turf/simulated/floor/plating,
/area/awaymission/wwgov)
@@ -764,14 +698,12 @@
/area/awaymission/wwgov)
"cn" = (
/obj/structure/window/reinforced{
- tag = "icon-fwindow (EAST)";
- icon_state = "fwindow";
- dir = 4
+ dir = 4;
+ icon_state = "fwindow"
},
/obj/structure/window/reinforced{
- tag = "icon-fwindow (WEST)";
- icon_state = "fwindow";
- dir = 8
+ dir = 8;
+ icon_state = "fwindow"
},
/obj/structure/grille,
/obj/structure/window/reinforced{
@@ -781,14 +713,12 @@
/area/awaymission/wwgov)
"co" = (
/obj/structure/window/reinforced{
- tag = "icon-fwindow (WEST)";
- icon_state = "fwindow";
- dir = 8
+ dir = 8;
+ icon_state = "fwindow"
},
/obj/structure/window/reinforced{
- tag = "icon-fwindow (EAST)";
- icon_state = "fwindow";
- dir = 4
+ dir = 4;
+ icon_state = "fwindow"
},
/obj/structure/grille,
/turf/simulated/floor/plating,
@@ -801,9 +731,8 @@
"cq" = (
/obj/effect/mob_spawn/human/cook,
/turf/simulated/floor/plasteel{
- tag = "icon-cafeteria (NORTHEAST)";
- icon_state = "cafeteria";
- dir = 5
+ dir = 5;
+ icon_state = "cafeteria"
},
/area/awaymission/wwmines)
"cr" = (
@@ -820,14 +749,12 @@
/area/awaymission/wwgov)
"cu" = (
/obj/structure/window/reinforced{
- tag = "icon-fwindow (EAST)";
- icon_state = "fwindow";
- dir = 4
+ dir = 4;
+ icon_state = "fwindow"
},
/obj/structure/window/reinforced{
- tag = "icon-fwindow (WEST)";
- icon_state = "fwindow";
- dir = 8
+ dir = 8;
+ icon_state = "fwindow"
},
/obj/structure/grille,
/turf/simulated/floor/plating,
@@ -851,9 +778,8 @@
name = "Planer Saul's Journal: Page 4"
},
/turf/simulated/floor/plasteel{
- tag = "icon-cafeteria (NORTHEAST)";
- icon_state = "cafeteria";
- dir = 5
+ dir = 5;
+ icon_state = "cafeteria"
},
/area/awaymission/wwmines)
"cz" = (
@@ -868,8 +794,6 @@
/area/awaymission/wwgov)
"cB" = (
/obj/machinery/light/small{
- tag = "icon-bulb1 (WEST)";
- icon_state = "bulb1";
dir = 8
},
/turf/simulated/floor/carpet,
@@ -880,7 +804,6 @@
/area/awaymission/wwgov)
"cD" = (
/obj/structure/bookcase{
- tag = "icon-book-5";
icon_state = "book-5"
},
/turf/simulated/floor/wood,
@@ -888,16 +811,12 @@
"cE" = (
/obj/item/storage/bag/money,
/obj/machinery/light/small{
- tag = "icon-bulb1 (NORTH)";
- icon_state = "bulb1";
dir = 1
},
/turf/simulated/floor/wood,
/area/awaymission/wwgov)
"cF" = (
/obj/machinery/light/small{
- tag = "icon-bulb1 (NORTH)";
- icon_state = "bulb1";
dir = 1
},
/turf/simulated/floor/wood,
@@ -907,9 +826,7 @@
/turf/simulated/floor/wood,
/area/awaymission/wwgov)
"cH" = (
-/obj/effect/mob_spawn/human/corpse/syndicatecommando{
- mob_name = "Syndicate Commando"
- },
+/obj/effect/mob_spawn/human/corpse/syndicatecommando,
/turf/simulated/floor/carpet,
/area/awaymission/wwgov)
"cI" = (
@@ -936,7 +853,6 @@
/area/awaymission/wwgov)
"cN" = (
/turf/simulated/floor/plasteel{
- tag = "icon-stage_bleft";
icon_state = "stage_bleft"
},
/area/awaymission/wwgov)
@@ -950,35 +866,29 @@
"cP" = (
/obj/structure/closet/secure_closet/freezer/kitchen,
/turf/simulated/floor/plasteel{
- tag = "icon-stage_bleft";
icon_state = "stage_bleft"
},
/area/awaymission/wwgov)
"cQ" = (
/obj/machinery/kitchen_machine/microwave,
/obj/machinery/light/small{
- tag = "icon-bulb1 (NORTH)";
- icon_state = "bulb1";
dir = 1
},
/turf/simulated/floor/plasteel{
- tag = "icon-stage_bleft";
icon_state = "stage_bleft"
},
/area/awaymission/wwgov)
"cR" = (
/obj/structure/closet/secure_closet/freezer/fridge,
/turf/simulated/floor/plasteel{
- tag = "icon-stage_bleft";
icon_state = "stage_bleft"
},
/area/awaymission/wwgov)
"cS" = (
/obj/structure/lattice,
/obj/structure/window/reinforced{
- tag = "icon-fwindow (WEST)";
- icon_state = "fwindow";
- dir = 8
+ dir = 8;
+ icon_state = "fwindow"
},
/turf/space,
/area/space/nearstation)
@@ -1013,26 +923,21 @@
/area/awaymission/wwgov)
"cY" = (
/obj/machinery/light/small{
- tag = "icon-bulb1 (EAST)";
- icon_state = "bulb1";
dir = 4
},
/turf/simulated/floor/wood,
/area/awaymission/wwmines)
"cZ" = (
/obj/structure/window/reinforced{
- tag = "icon-fwindow (WEST)";
- icon_state = "fwindow";
- dir = 8
+ dir = 8;
+ icon_state = "fwindow"
},
/obj/structure/window/reinforced{
- tag = "icon-fwindow (EAST)";
- icon_state = "fwindow";
- dir = 4
+ dir = 4;
+ icon_state = "fwindow"
},
/obj/structure/grille,
/obj/structure/window/reinforced{
- tag = "icon-fwindow";
icon_state = "fwindow"
},
/turf/simulated/floor/plating,
@@ -1048,24 +953,18 @@
"dc" = (
/obj/item/storage/toolbox/electrical,
/obj/machinery/light/small{
- tag = "icon-bulb1 (WEST)";
- icon_state = "bulb1";
dir = 8
},
/turf/simulated/floor/wood,
/area/awaymission/wwgov)
"dd" = (
/obj/machinery/light/small{
- tag = "icon-bulb1 (EAST)";
- icon_state = "bulb1";
dir = 4
},
/turf/simulated/floor/wood,
/area/awaymission/wwgov)
"de" = (
/obj/machinery/light/small{
- tag = "icon-bulb1 (WEST)";
- icon_state = "bulb1";
dir = 8
},
/turf/simulated/floor/wood,
@@ -1078,44 +977,34 @@
/area/space/nearstation)
"dg" = (
/obj/machinery/light/small{
- tag = "icon-bulb1 (WEST)";
- icon_state = "bulb1";
dir = 8
},
/turf/simulated/floor/plasteel{
- tag = "icon-stage_bleft";
icon_state = "stage_bleft"
},
/area/awaymission/wwgov)
"dh" = (
/mob/living/simple_animal/hostile/creature,
/turf/simulated/floor/plasteel{
- tag = "icon-stage_bleft";
icon_state = "stage_bleft"
},
/area/awaymission/wwgov)
"di" = (
/obj/machinery/light/small{
- tag = "icon-bulb1 (EAST)";
- icon_state = "bulb1";
dir = 4
},
/turf/simulated/floor/plasteel{
- tag = "icon-stage_bleft";
icon_state = "stage_bleft"
},
/area/awaymission/wwgov)
"dj" = (
/obj/structure/bookcase{
- tag = "icon-book-5";
icon_state = "book-5"
},
/turf/simulated/floor/wood,
/area/awaymission/wwmines)
"dk" = (
/obj/machinery/light/small{
- tag = "icon-bulb1 (NORTH)";
- icon_state = "bulb1";
dir = 1
},
/turf/simulated/floor/wood,
@@ -1132,16 +1021,12 @@
"dn" = (
/obj/effect/decal/cleanable/blood/splatter,
/obj/machinery/light/small{
- tag = "icon-bulb1 (EAST)";
- icon_state = "bulb1";
dir = 4
},
/turf/simulated/floor/wood,
/area/awaymission/wwmines)
"do" = (
/obj/machinery/light/small{
- tag = "icon-bulb1 (WEST)";
- icon_state = "bulb1";
dir = 8
},
/turf/simulated/floor/wood,
@@ -1161,18 +1046,15 @@
/area/awaymission/wwmines)
"ds" = (
/obj/structure/window/reinforced{
- tag = "icon-fwindow (EAST)";
- icon_state = "fwindow";
- dir = 4
+ dir = 4;
+ icon_state = "fwindow"
},
/obj/structure/window/reinforced{
- tag = "icon-fwindow (WEST)";
- icon_state = "fwindow";
- dir = 8
+ dir = 8;
+ icon_state = "fwindow"
},
/obj/structure/grille,
/obj/structure/window/reinforced{
- tag = "icon-fwindow";
icon_state = "fwindow"
},
/turf/simulated/floor/plating,
@@ -1183,14 +1065,12 @@
/area/awaymission/wwgov)
"du" = (
/obj/structure/window/reinforced{
- tag = "icon-fwindow (WEST)";
- icon_state = "fwindow";
- dir = 8
+ dir = 8;
+ icon_state = "fwindow"
},
/obj/structure/window/reinforced{
- tag = "icon-fwindow (EAST)";
- icon_state = "fwindow";
- dir = 4
+ dir = 4;
+ icon_state = "fwindow"
},
/obj/structure/grille,
/obj/structure/window/reinforced{
@@ -1212,21 +1092,18 @@
"dx" = (
/obj/item/reagent_containers/food/snacks/monkeysdelight,
/turf/simulated/floor/plasteel{
- tag = "icon-stage_bleft";
icon_state = "stage_bleft"
},
/area/awaymission/wwgov)
"dy" = (
/obj/item/reagent_containers/food/snacks/soup/stew,
/turf/simulated/floor/plasteel{
- tag = "icon-stage_bleft";
icon_state = "stage_bleft"
},
/area/awaymission/wwgov)
"dz" = (
/obj/item/kitchen/knife,
/turf/simulated/floor/plasteel{
- tag = "icon-stage_bleft";
icon_state = "stage_bleft"
},
/area/awaymission/wwgov)
@@ -1251,8 +1128,6 @@
dir = 4
},
/obj/machinery/light/small{
- tag = "icon-bulb1 (WEST)";
- icon_state = "bulb1";
dir = 8
},
/turf/simulated/floor/wood,
@@ -1262,28 +1137,23 @@
dir = 8
},
/obj/machinery/light/small{
- tag = "icon-bulb1 (EAST)";
- icon_state = "bulb1";
dir = 4
},
/turf/simulated/floor/wood,
/area/awaymission/wwmines)
"dG" = (
/obj/structure/window/reinforced{
- tag = "icon-fwindow (EAST)";
- icon_state = "fwindow";
- dir = 4
+ dir = 4;
+ icon_state = "fwindow"
},
/obj/structure/window/reinforced{
- tag = "icon-fwindow (WEST)";
- icon_state = "fwindow";
- dir = 8
+ dir = 8;
+ icon_state = "fwindow"
},
/obj/structure/grille,
/obj/structure/window/reinforced{
- tag = "icon-fwindow (NORTH)";
- icon_state = "fwindow";
- dir = 1
+ dir = 1;
+ icon_state = "fwindow"
},
/turf/simulated/floor/plating,
/area/awaymission/wwgov)
@@ -1293,27 +1163,21 @@
/area/awaymission/wwmines)
"dI" = (
/obj/machinery/light/small{
- tag = "icon-bulb1 (WEST)";
- icon_state = "bulb1";
dir = 8
},
/mob/living/simple_animal/hostile/creature,
/turf/simulated/floor/plasteel{
- tag = "icon-stage_bleft";
icon_state = "stage_bleft"
},
/area/awaymission/wwgov)
"dJ" = (
/obj/item/kitchen/rollingpin,
/turf/simulated/floor/plasteel{
- tag = "icon-stage_bleft";
icon_state = "stage_bleft"
},
/area/awaymission/wwgov)
"dK" = (
/obj/machinery/light/small{
- tag = "icon-bulb1 (NORTH)";
- icon_state = "bulb1";
dir = 1
},
/turf/simulated/floor/plating/ironsand,
@@ -1327,18 +1191,12 @@
/area/awaymission/wwmines)
"dM" = (
/obj/structure/mineral_door/wood,
-/turf/simulated/floor/plating/ironsand{
- tag = "icon-ironsand1";
- icon_state = "ironsand1"
- },
+/turf/simulated/floor/plating/ironsand,
/area/awaymission/wwmines)
"dN" = (
/obj/structure/mineral_door/wood,
/obj/effect/decal/cleanable/blood/tracks,
-/turf/simulated/floor/plating/ironsand{
- tag = "icon-ironsand1";
- icon_state = "ironsand1"
- },
+/turf/simulated/floor/plating/ironsand,
/area/awaymission/wwmines)
"dO" = (
/obj/structure/chair/comfy/beige{
@@ -1354,14 +1212,12 @@
"dQ" = (
/obj/item/reagent_containers/food/drinks/bottle/wine,
/turf/simulated/floor/plasteel{
- tag = "icon-stage_bleft";
icon_state = "stage_bleft"
},
/area/awaymission/wwgov)
"dR" = (
/obj/item/reagent_containers/food/drinks/bottle/patron,
/turf/simulated/floor/plasteel{
- tag = "icon-stage_bleft";
icon_state = "stage_bleft"
},
/area/awaymission/wwgov)
@@ -1372,7 +1228,6 @@
/obj/item/reagent_containers/food/drinks/drinkingglass,
/obj/machinery/light/small,
/turf/simulated/floor/plasteel{
- tag = "icon-stage_bleft";
icon_state = "stage_bleft"
},
/area/awaymission/wwgov)
@@ -1392,8 +1247,6 @@
/area/awaymission/wwmines)
"dW" = (
/obj/machinery/light/small{
- tag = "icon-bulb1 (NORTH)";
- icon_state = "bulb1";
dir = 1
},
/turf/simulated/floor/plating/ironsand,
@@ -1408,50 +1261,42 @@
/area/awaymission/wwgov)
"dZ" = (
/obj/structure/window/reinforced{
- tag = "icon-fwindow";
icon_state = "fwindow"
},
/obj/structure/window/reinforced{
- tag = "icon-fwindow (NORTH)";
- icon_state = "fwindow";
- dir = 1
+ dir = 1;
+ icon_state = "fwindow"
},
/obj/structure/grille,
/obj/structure/window/reinforced{
- tag = "icon-fwindow (WEST)";
- icon_state = "fwindow";
- dir = 8
+ dir = 8;
+ icon_state = "fwindow"
},
/turf/simulated/floor/plating,
/area/awaymission/wwgov)
"ea" = (
/obj/structure/window/reinforced{
- tag = "icon-fwindow";
icon_state = "fwindow"
},
/obj/structure/window/reinforced{
- tag = "icon-fwindow (NORTH)";
- icon_state = "fwindow";
- dir = 1
+ dir = 1;
+ icon_state = "fwindow"
},
/obj/structure/grille,
/turf/simulated/floor/plating,
/area/awaymission/wwgov)
"eb" = (
/obj/structure/window/reinforced{
- tag = "icon-fwindow";
icon_state = "fwindow"
},
/obj/structure/window/reinforced{
- tag = "icon-fwindow (NORTH)";
- icon_state = "fwindow";
- dir = 1
+ dir = 1;
+ icon_state = "fwindow"
},
/obj/structure/grille,
/obj/structure/window/reinforced{
- tag = "icon-fwindow (EAST)";
- icon_state = "fwindow";
- dir = 4
+ dir = 4;
+ icon_state = "fwindow"
},
/turf/simulated/floor/plating,
/area/awaymission/wwgov)
@@ -1459,7 +1304,6 @@
/obj/structure/toilet,
/mob/living/simple_animal/hostile/creature,
/turf/simulated/floor/plasteel{
- tag = "icon-white";
icon_state = "white"
},
/area/awaymission/wwgov)
@@ -1469,17 +1313,14 @@
/area/awaymission/wwgov)
"ee" = (
/obj/structure/window/reinforced{
- tag = "icon-fwindow (WEST)";
- icon_state = "fwindow";
- dir = 8
+ dir = 8;
+ icon_state = "fwindow"
},
/turf/simulated/floor/plating/ironsand,
/area/awaymission/wwgov)
"ef" = (
/obj/structure/largecrate,
/obj/machinery/light/small{
- tag = "icon-bulb1 (NORTH)";
- icon_state = "bulb1";
dir = 1
},
/turf/simulated/floor/wood,
@@ -1492,27 +1333,21 @@
/area/awaymission/wwgov)
"eh" = (
/obj/machinery/light/small{
- tag = "icon-bulb1 (NORTH)";
- icon_state = "bulb1";
dir = 1
},
/turf/simulated/floor/plasteel{
- tag = "icon-cafeteria (NORTHEAST)";
- icon_state = "cafeteria";
- dir = 5
+ dir = 5;
+ icon_state = "cafeteria"
},
/area/awaymission/wwmines)
"ei" = (
/obj/machinery/washing_machine,
/obj/machinery/light/small{
- tag = "icon-bulb1 (WEST)";
- icon_state = "bulb1";
dir = 8
},
/turf/simulated/floor/plasteel{
- tag = "icon-cafeteria (NORTHEAST)";
- icon_state = "cafeteria";
- dir = 5
+ dir = 5;
+ icon_state = "cafeteria"
},
/area/awaymission/wwmines)
"ej" = (
@@ -1528,7 +1363,6 @@
/area/awaymission/wwmines)
"em" = (
/obj/effect/decal/cleanable/blood/gibs/body{
- tag = "icon-gibdown1";
icon_state = "gibdown1"
},
/turf/simulated/floor/carpet,
@@ -1541,7 +1375,6 @@
/area/awaymission/wwmines)
"eo" = (
/obj/effect/decal/cleanable/blood/gibs/body{
- tag = "icon-gibdown1";
icon_state = "gibdown1"
},
/turf/simulated/floor/wood,
@@ -1571,8 +1404,6 @@
/area/awaymission/wwmines)
"eu" = (
/obj/machinery/light/small{
- tag = "icon-bulb1 (WEST)";
- icon_state = "bulb1";
dir = 8
},
/turf/simulated/floor/plating/ironsand,
@@ -1580,14 +1411,12 @@
"ev" = (
/obj/structure/window/reinforced,
/obj/structure/window/reinforced{
- tag = "icon-fwindow (WEST)";
- icon_state = "fwindow";
- dir = 8
+ dir = 8;
+ icon_state = "fwindow"
},
/obj/structure/window/reinforced{
- tag = "icon-fwindow (NORTH)";
- icon_state = "fwindow";
- dir = 1
+ dir = 1;
+ icon_state = "fwindow"
},
/obj/structure/grille,
/turf/simulated/floor/plating,
@@ -1595,21 +1424,18 @@
"ew" = (
/obj/structure/window/reinforced,
/obj/structure/window/reinforced{
- tag = "icon-fwindow (NORTH)";
- icon_state = "fwindow";
- dir = 1
+ dir = 1;
+ icon_state = "fwindow"
},
/obj/structure/grille,
/turf/simulated/floor/plating,
/area/awaymission/wwrefine)
"ex" = (
/obj/structure/window/reinforced{
- tag = "icon-fwindow (NORTH)";
- icon_state = "fwindow";
- dir = 1
+ dir = 1;
+ icon_state = "fwindow"
},
/obj/structure/window/reinforced{
- tag = "icon-fwindow";
icon_state = "fwindow"
},
/obj/structure/grille,
@@ -1617,14 +1443,11 @@
/area/awaymission/wwrefine)
"ey" = (
/obj/machinery/shower{
- tag = "icon-shower (EAST)";
- icon_state = "shower";
dir = 4
},
/turf/simulated/floor/plasteel{
- tag = "icon-cafeteria (NORTHEAST)";
- icon_state = "cafeteria";
- dir = 5
+ dir = 5;
+ icon_state = "cafeteria"
},
/area/awaymission/wwmines)
"ez" = (
@@ -1643,29 +1466,24 @@
"eC" = (
/obj/item/soap/syndie,
/turf/simulated/floor/plasteel{
- tag = "icon-cafeteria (NORTHEAST)";
- icon_state = "cafeteria";
- dir = 5
+ dir = 5;
+ icon_state = "cafeteria"
},
/area/awaymission/wwmines)
"eD" = (
/obj/machinery/shower{
- tag = "icon-shower (WEST)";
- icon_state = "shower";
dir = 8
},
/turf/simulated/floor/plasteel{
- tag = "icon-cafeteria (NORTHEAST)";
- icon_state = "cafeteria";
- dir = 5
+ dir = 5;
+ icon_state = "cafeteria"
},
/area/awaymission/wwmines)
"eE" = (
/obj/machinery/washing_machine,
/turf/simulated/floor/plasteel{
- tag = "icon-cafeteria (NORTHEAST)";
- icon_state = "cafeteria";
- dir = 5
+ dir = 5;
+ icon_state = "cafeteria"
},
/area/awaymission/wwmines)
"eF" = (
@@ -1696,34 +1514,29 @@
/area/awaymission/wwmines)
"eL" = (
/obj/structure/window/reinforced{
- tag = "icon-fwindow (NORTH)";
- icon_state = "fwindow";
- dir = 1
+ dir = 1;
+ icon_state = "fwindow"
},
/turf/space,
/area/space/nearstation)
"eM" = (
/obj/structure/lattice,
/obj/structure/window/reinforced{
- tag = "icon-fwindow (NORTH)";
- icon_state = "fwindow";
- dir = 1
+ dir = 1;
+ icon_state = "fwindow"
},
/turf/space,
/area/space/nearstation)
"eN" = (
/obj/structure/window/reinforced{
- tag = "icon-fwindow (EAST)";
- icon_state = "fwindow";
- dir = 4
+ dir = 4;
+ icon_state = "fwindow"
},
/obj/structure/window/reinforced{
- tag = "icon-fwindow (NORTH)";
- icon_state = "fwindow";
- dir = 1
+ dir = 1;
+ icon_state = "fwindow"
},
/obj/structure/window/reinforced{
- tag = "icon-fwindow";
icon_state = "fwindow"
},
/obj/structure/grille,
@@ -1731,9 +1544,8 @@
/area/awaymission/wwrefine)
"eO" = (
/obj/structure/window/reinforced{
- tag = "icon-fwindow (NORTH)";
- icon_state = "fwindow";
- dir = 1
+ dir = 1;
+ icon_state = "fwindow"
},
/obj/structure/window/reinforced{
dir = 4
@@ -1742,27 +1554,23 @@
/area/space/nearstation)
"eP" = (
/obj/structure/window/reinforced{
- tag = "icon-fwindow (NORTH)";
- icon_state = "fwindow";
- dir = 1
+ dir = 1;
+ icon_state = "fwindow"
},
/obj/structure/window/reinforced{
- tag = "icon-fwindow (WEST)";
- icon_state = "fwindow";
- dir = 8
+ dir = 8;
+ icon_state = "fwindow"
},
/turf/space,
/area/space/nearstation)
"eQ" = (
/obj/structure/window/reinforced{
- tag = "icon-fwindow (EAST)";
- icon_state = "fwindow";
- dir = 4
+ dir = 4;
+ icon_state = "fwindow"
},
/obj/structure/window/reinforced{
- tag = "icon-fwindow (NORTH)";
- icon_state = "fwindow";
- dir = 1
+ dir = 1;
+ icon_state = "fwindow"
},
/obj/structure/grille,
/turf/simulated/floor/plating,
@@ -1773,14 +1581,12 @@
/area/awaymission/wwrefine)
"eS" = (
/obj/structure/window/reinforced{
- tag = "icon-fwindow (WEST)";
- icon_state = "fwindow";
- dir = 8
+ dir = 8;
+ icon_state = "fwindow"
},
/obj/structure/window/reinforced{
- tag = "icon-fwindow (EAST)";
- icon_state = "fwindow";
- dir = 4
+ dir = 4;
+ icon_state = "fwindow"
},
/obj/structure/grille,
/turf/simulated/floor/plating,
@@ -1788,9 +1594,8 @@
"eT" = (
/obj/effect/mine/gas/plasma,
/turf/simulated/floor/plasteel{
- tag = "icon-cafeteria (NORTHEAST)";
- icon_state = "cafeteria";
- dir = 5
+ dir = 5;
+ icon_state = "cafeteria"
},
/area/awaymission/wwmines)
"eU" = (
@@ -1801,9 +1606,8 @@
/obj/effect/decal/cleanable/blood,
/obj/machinery/washing_machine,
/turf/simulated/floor/plasteel{
- tag = "icon-cafeteria (NORTHEAST)";
- icon_state = "cafeteria";
- dir = 5
+ dir = 5;
+ icon_state = "cafeteria"
},
/area/awaymission/wwmines)
"eW" = (
@@ -1846,14 +1650,12 @@
/area/awaymission/wwmines)
"fd" = (
/obj/structure/window/reinforced{
- tag = "icon-fwindow (WEST)";
- icon_state = "fwindow";
- dir = 8
+ dir = 8;
+ icon_state = "fwindow"
},
/obj/structure/window/reinforced{
- tag = "icon-fwindow (EAST)";
- icon_state = "fwindow";
- dir = 4
+ dir = 4;
+ icon_state = "fwindow"
},
/obj/structure/grille,
/obj/structure/window/reinforced,
@@ -1872,9 +1674,8 @@
"fg" = (
/obj/effect/decal/cleanable/blood,
/turf/simulated/floor/plasteel{
- tag = "icon-cafeteria (NORTHEAST)";
- icon_state = "cafeteria";
- dir = 5
+ dir = 5;
+ icon_state = "cafeteria"
},
/area/awaymission/wwmines)
"fh" = (
@@ -1894,7 +1695,6 @@
/area/awaymission/wwmines)
"fj" = (
/obj/effect/decal/cleanable/blood/gibs/body{
- tag = "icon-gibdown1";
icon_state = "gibdown1"
},
/turf/simulated/floor/plating/ironsand,
@@ -1906,9 +1706,8 @@
"fl" = (
/obj/machinery/light/small,
/turf/simulated/floor/plasteel{
- tag = "icon-cafeteria (NORTHEAST)";
- icon_state = "cafeteria";
- dir = 5
+ dir = 5;
+ icon_state = "cafeteria"
},
/area/awaymission/wwmines)
"fm" = (
@@ -1937,20 +1736,17 @@
/area/awaymission/wwmines)
"fq" = (
/obj/structure/window/reinforced{
- tag = "icon-fwindow (WEST)";
- icon_state = "fwindow";
- dir = 8
+ dir = 8;
+ icon_state = "fwindow"
},
/obj/structure/window/reinforced{
- tag = "icon-fwindow (EAST)";
- icon_state = "fwindow";
- dir = 4
+ dir = 4;
+ icon_state = "fwindow"
},
/obj/structure/grille,
/obj/structure/window/reinforced{
- tag = "icon-fwindow (NORTH)";
- icon_state = "fwindow";
- dir = 1
+ dir = 1;
+ icon_state = "fwindow"
},
/turf/simulated/floor/plating,
/area/awaymission/wwrefine)
@@ -1975,12 +1771,9 @@
/area/awaymission/wwrefine)
"fv" = (
/obj/effect/decal/cleanable/blood/gibs/body{
- tag = "icon-gibdown1";
icon_state = "gibdown1"
},
/obj/machinery/light/small{
- tag = "icon-bulb1 (WEST)";
- icon_state = "bulb1";
dir = 8
},
/turf/simulated/floor/wood,
@@ -1995,15 +1788,12 @@
dir = 8
},
/obj/effect/decal/cleanable/blood/gibs/body{
- tag = "icon-gibdown1";
icon_state = "gibdown1"
},
/turf/simulated/floor/carpet,
/area/awaymission/wwmines)
"fy" = (
-/obj/effect/mob_spawn/human/corpse/syndicatecommando{
- mob_name = "Syndicate Commando"
- },
+/obj/effect/mob_spawn/human/corpse/syndicatecommando,
/turf/simulated/floor/grass,
/area/awaymission/wwgov)
"fz" = (
@@ -2013,8 +1803,6 @@
icon_state = "cabinet_closed"
},
/obj/machinery/light/small{
- tag = "icon-bulb1 (NORTH)";
- icon_state = "bulb1";
dir = 1
},
/turf/simulated/floor/wood,
@@ -2052,28 +1840,24 @@
"fG" = (
/obj/structure/window/reinforced,
/obj/structure/window/reinforced{
- tag = "icon-fwindow (NORTH)";
- icon_state = "fwindow";
- dir = 1
+ dir = 1;
+ icon_state = "fwindow"
},
/obj/structure/grille,
/obj/structure/window/reinforced{
- tag = "icon-fwindow (WEST)";
- icon_state = "fwindow";
- dir = 8
+ dir = 8;
+ icon_state = "fwindow"
},
/turf/simulated/floor/plating,
/area/awaymission/wwrefine)
"fH" = (
/obj/structure/window/reinforced{
- tag = "icon-fwindow (WEST)";
- icon_state = "fwindow";
- dir = 8
+ dir = 8;
+ icon_state = "fwindow"
},
/obj/structure/window/reinforced{
- tag = "icon-fwindow (NORTH)";
- icon_state = "fwindow";
- dir = 1
+ dir = 1;
+ icon_state = "fwindow"
},
/obj/structure/grille,
/turf/simulated/floor/plating,
@@ -2091,15 +1875,13 @@
"fK" = (
/obj/structure/window/reinforced,
/obj/structure/window/reinforced{
- tag = "icon-fwindow (NORTH)";
- icon_state = "fwindow";
- dir = 1
+ dir = 1;
+ icon_state = "fwindow"
},
/obj/structure/grille,
/obj/structure/window/reinforced{
- tag = "icon-fwindow (EAST)";
- icon_state = "fwindow";
- dir = 4
+ dir = 4;
+ icon_state = "fwindow"
},
/turf/simulated/floor/plating,
/area/awaymission/wwrefine)
@@ -2111,7 +1893,6 @@
/area/awaymission/wwmines)
"fM" = (
/obj/effect/decal/cleanable/blood/gibs/body{
- tag = "icon-gibup1";
icon_state = "gibup1"
},
/turf/simulated/floor/carpet,
@@ -2130,8 +1911,6 @@
/area/awaymission/wwmines)
"fQ" = (
/obj/machinery/light/small{
- tag = "icon-bulb1 (NORTH)";
- icon_state = "bulb1";
dir = 1
},
/turf/simulated/floor/plasteel{
@@ -2188,8 +1967,6 @@
"fZ" = (
/obj/machinery/vending/cola,
/obj/machinery/light/small{
- tag = "icon-bulb1 (NORTH)";
- icon_state = "bulb1";
dir = 1
},
/turf/simulated/floor/plasteel{
@@ -2207,14 +1984,12 @@
"gb" = (
/obj/structure/window/reinforced,
/obj/structure/window/reinforced{
- tag = "icon-fwindow (NORTH)";
- icon_state = "fwindow";
- dir = 1
+ dir = 1;
+ icon_state = "fwindow"
},
/obj/structure/window/reinforced{
- tag = "icon-fwindow (EAST)";
- icon_state = "fwindow";
- dir = 4
+ dir = 4;
+ icon_state = "fwindow"
},
/obj/structure/grille,
/turf/simulated/floor/plating,
@@ -2222,15 +1997,12 @@
"gc" = (
/obj/structure/sink,
/obj/machinery/light/small{
- tag = "icon-bulb1 (NORTH)";
- icon_state = "bulb1";
dir = 1
},
/turf/simulated/floor/wood,
/area/awaymission/wwmines)
"gd" = (
/obj/effect/decal/cleanable/blood/gibs/body{
- tag = "icon-gibdown1";
icon_state = "gibdown1"
},
/turf/simulated/floor/plasteel{
@@ -2248,14 +2020,12 @@
"gf" = (
/obj/structure/window/reinforced,
/obj/structure/window/reinforced{
- tag = "icon-fwindow (EAST)";
- icon_state = "fwindow";
- dir = 4
+ dir = 4;
+ icon_state = "fwindow"
},
/obj/structure/window/reinforced{
- tag = "icon-fwindow (WEST)";
- icon_state = "fwindow";
- dir = 8
+ dir = 8;
+ icon_state = "fwindow"
},
/obj/structure/grille,
/turf/simulated/floor/plating,
@@ -2269,8 +2039,6 @@
/area/awaymission/wwmines)
"gh" = (
/obj/machinery/light/small{
- tag = "icon-bulb1 (EAST)";
- icon_state = "bulb1";
dir = 4
},
/turf/simulated/floor/plasteel{
@@ -2297,7 +2065,6 @@
/area/awaymission/wwgov)
"gl" = (
/obj/effect/decal/cleanable/blood/gibs/body{
- tag = "icon-gibdown1";
icon_state = "gibdown1"
},
/turf/simulated/wall/mineral/sandstone,
@@ -2325,19 +2092,16 @@
dir = 4
},
/obj/structure/window/reinforced{
- tag = "icon-fwindow";
icon_state = "fwindow"
},
/turf/space,
/area/space/nearstation)
"gp" = (
/obj/structure/window/reinforced{
- tag = "icon-fwindow (WEST)";
- icon_state = "fwindow";
- dir = 8
+ dir = 8;
+ icon_state = "fwindow"
},
/obj/structure/window/reinforced{
- tag = "icon-fwindow";
icon_state = "fwindow"
},
/turf/space,
@@ -2354,15 +2118,12 @@
dir = 4
},
/obj/machinery/light/small{
- tag = "icon-bulb1 (WEST)";
- icon_state = "bulb1";
dir = 8
},
/turf/simulated/floor/wood,
/area/awaymission/wwmines)
"gu" = (
/obj/effect/decal/cleanable/blood/gibs/body{
- tag = "icon-gibup1";
icon_state = "gibup1"
},
/turf/simulated/floor/plasteel{
@@ -2372,9 +2133,8 @@
/area/awaymission/wwmines)
"gv" = (
/obj/structure/window/reinforced{
- tag = "icon-fwindow (NORTH)";
- icon_state = "fwindow";
- dir = 1
+ dir = 1;
+ icon_state = "fwindow"
},
/turf/simulated/floor/grass,
/area/awaymission/wwgov)
@@ -2386,14 +2146,12 @@
/area/awaymission/wwrefine)
"gx" = (
/obj/structure/window/reinforced{
- tag = "icon-fwindow (NORTH)";
- icon_state = "fwindow";
- dir = 1
+ dir = 1;
+ icon_state = "fwindow"
},
/obj/structure/window/reinforced{
- tag = "icon-fwindow (WEST)";
- icon_state = "fwindow";
- dir = 8
+ dir = 8;
+ icon_state = "fwindow"
},
/turf/simulated/floor/grass,
/area/awaymission/wwgov)
@@ -2402,9 +2160,8 @@
dir = 4
},
/obj/structure/window/reinforced{
- tag = "icon-fwindow (NORTH)";
- icon_state = "fwindow";
- dir = 1
+ dir = 1;
+ icon_state = "fwindow"
},
/turf/simulated/floor/grass,
/area/awaymission/wwgov)
@@ -2416,9 +2173,8 @@
/area/awaymission/wwmines)
"gA" = (
/obj/structure/window/reinforced{
- tag = "icon-fwindow (WEST)";
- icon_state = "fwindow";
- dir = 8
+ dir = 8;
+ icon_state = "fwindow"
},
/obj/structure/lattice,
/turf/space,
@@ -2436,9 +2192,8 @@
/area/awaymission/wwmines)
"gE" = (
/obj/structure/window/reinforced{
- tag = "icon-fwindow (WEST)";
- icon_state = "fwindow";
- dir = 8
+ dir = 8;
+ icon_state = "fwindow"
},
/turf/simulated/floor/grass,
/area/awaymission/wwgov)
@@ -2451,7 +2206,6 @@
/area/awaymission/wwmines)
"gH" = (
/obj/structure/window/reinforced{
- tag = "icon-fwindow";
icon_state = "fwindow"
},
/turf/simulated/floor/grass,
@@ -2461,16 +2215,14 @@
dir = 4
},
/obj/structure/window/reinforced{
- tag = "icon-fwindow";
icon_state = "fwindow"
},
/turf/simulated/floor/grass,
/area/awaymission/wwgov)
"gJ" = (
/obj/structure/window/reinforced{
- tag = "icon-fwindow (WEST)";
- icon_state = "fwindow";
- dir = 8
+ dir = 8;
+ icon_state = "fwindow"
},
/turf/simulated/floor/plasteel,
/area/space/nearstation)
@@ -2490,8 +2242,6 @@
"gM" = (
/obj/machinery/photocopier,
/obj/machinery/light/small{
- tag = "icon-bulb1 (NORTH)";
- icon_state = "bulb1";
dir = 1
},
/turf/simulated/floor/wood,
@@ -2518,14 +2268,12 @@
dir = 4
},
/obj/effect/decal/cleanable/blood/gibs/body{
- tag = "icon-gibdown1";
icon_state = "gibdown1"
},
/turf/simulated/floor/wood,
/area/awaymission/wwmines)
"gR" = (
/obj/effect/decal/cleanable/blood/gibs/body{
- tag = "icon-gibup1";
icon_state = "gibup1"
},
/obj/structure/chair/wood,
@@ -2548,9 +2296,8 @@
/area/awaymission/wwgov)
"he" = (
/obj/structure/window/reinforced{
- tag = "icon-fwindow (WEST)";
- icon_state = "fwindow";
- dir = 8
+ dir = 8;
+ icon_state = "fwindow"
},
/obj/structure/window/reinforced,
/turf/simulated/floor/grass,
diff --git a/_maps/map_files/cyberiad/cyberiad.dmm b/_maps/map_files/cyberiad/cyberiad.dmm
index 332f6a22e6c..833ca217ea4 100644
--- a/_maps/map_files/cyberiad/cyberiad.dmm
+++ b/_maps/map_files/cyberiad/cyberiad.dmm
@@ -9,7 +9,6 @@
"aaQ" = (
/obj/docking_port/stationary/whiteship{
dir = 8;
- icon_state = "pinonfar";
id = "whiteship_cyberiad";
name = "North of Cyberiad"
},
@@ -31,8 +30,7 @@
"abO" = (
/obj/machinery/camera{
c_tag = "Brig Secure Armory Exterior East";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/turf/space,
/area/security/securearmoury)
@@ -54,7 +52,6 @@
"aca" = (
/obj/effect/decal/warning_stripes/northwest,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "redcorner"
},
/area/security/range)
@@ -157,9 +154,7 @@
/area/security/main)
"acB" = (
/obj/machinery/shower{
- dir = 8;
- icon_state = "shower";
- tag = "icon-shower (WEST)"
+ dir = 8
},
/obj/structure/curtain/open/shower/security,
/turf/simulated/floor/plasteel{
@@ -181,8 +176,7 @@
/area/security/range)
"acD" = (
/obj/machinery/door/airlock{
- name = "Toilet";
- req_access_txt = "0"
+ name = "Toilet"
},
/turf/simulated/floor/plasteel{
icon_state = "freezerfloor"
@@ -191,9 +185,7 @@
"acE" = (
/obj/structure/sink{
dir = 8;
- icon_state = "sink";
- pixel_x = -12;
- pixel_y = 0
+ pixel_x = -12
},
/obj/structure/mirror{
pixel_x = -28
@@ -239,14 +231,12 @@
/obj/effect/decal/warning_stripes/west,
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
@@ -257,10 +247,8 @@
/obj/structure/table/reinforced,
/obj/item/storage/box/flashbangs,
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/structure/window/reinforced{
dir = 1;
@@ -285,9 +273,7 @@
/obj/machinery/magnetic_controller{
autolink = 1;
name = "Firing Range Control Console";
- path = "w;e;e;w;s;n;n;s";
- pixel_x = 0;
- pixel_y = 0
+ path = "w;e;e;w;s;n;n;s"
},
/turf/simulated/wall,
/area/security/range)
@@ -302,8 +288,7 @@
/area/security/range)
"acR" = (
/obj/machinery/door/airlock{
- name = "Toilet";
- req_access_txt = "0"
+ name = "Toilet"
},
/turf/simulated/floor/plasteel{
icon_state = "freezerfloor"
@@ -342,8 +327,7 @@
/obj/structure/table,
/obj/item/storage/box/prisoner,
/obj/machinery/camera{
- c_tag = "Brig Labor Camp Airlock North";
- network = list("SS13")
+ c_tag = "Brig Labor Camp Airlock North"
},
/obj/structure/cable{
d1 = 4;
@@ -407,8 +391,7 @@
/obj/machinery/suit_storage_unit/security,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/security/securearmoury)
"adh" = (
@@ -417,30 +400,23 @@
layer = 2.9
},
/obj/machinery/camera{
- c_tag = "Brig Secure Armory";
- dir = 2;
- network = list("SS13")
+ c_tag = "Brig Secure Armory"
},
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/obj/machinery/suit_storage_unit/security,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/security/securearmoury)
"adi" = (
/obj/structure/table/reinforced,
/obj/item/gun/energy/laser/practice,
-/obj/machinery/recharger{
- pixel_y = 0
- },
+/obj/machinery/recharger,
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/turf/simulated/floor/plating,
@@ -460,9 +436,7 @@
dir = 1
},
/obj/machinery/camera{
- c_tag = "Firing Range";
- dir = 2;
- network = list("SS13")
+ c_tag = "Firing Range"
},
/obj/machinery/syndicatebomb/training,
/turf/simulated/floor/plasteel{
@@ -472,9 +446,7 @@
"adm" = (
/obj/structure/table/reinforced,
/obj/item/gun/energy/laser/practice,
-/obj/machinery/recharger{
- pixel_y = 0
- },
+/obj/machinery/recharger,
/obj/machinery/firealarm{
dir = 4;
pixel_x = 24
@@ -491,8 +463,7 @@
/area/security/permabrig)
"adp" = (
/obj/machinery/door/airlock{
- name = "Bathroom";
- req_access_txt = "0"
+ name = "Bathroom"
},
/turf/simulated/floor/plasteel{
icon_state = "freezerfloor"
@@ -507,7 +478,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/structure/cable{
@@ -592,14 +562,12 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel,
/area/security/range)
"adE" = (
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
@@ -626,27 +594,23 @@
"adG" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
icon_state = "floorgrime"
},
/area/security/range)
"adH" = (
-/obj/structure/table/wood,
-/obj/item/pen/multi,
/obj/machinery/light{
dir = 1;
on = 1
},
-/obj/item/paper_bin/nanotrasen,
+/obj/machinery/suit_storage_unit/security/hos,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -678,7 +642,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -695,7 +658,6 @@
},
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/turf/simulated/floor/plasteel,
@@ -709,8 +671,7 @@
"adO" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10;
- initialize_directions = 10;
- level = 1
+ initialize_directions = 10
},
/turf/simulated/floor/plasteel{
icon_state = "floorgrime"
@@ -735,7 +696,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/door/firedoor,
@@ -751,7 +711,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/door/firedoor,
@@ -811,7 +770,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/structure/cable{
@@ -828,7 +786,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel,
@@ -926,7 +883,6 @@
department = "Security";
departmentType = 5;
name = "Security Requests Console";
- pixel_x = 0;
pixel_y = 30
},
/turf/simulated/floor/plasteel{
@@ -940,14 +896,12 @@
},
/obj/machinery/camera{
c_tag = "Brig Security Equipment Lockers";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "rampbottom";
- tag = "icon-stage_stairs"
+ icon_state = "rampbottom"
},
/area/security/main)
"ael" = (
@@ -956,13 +910,11 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "rampbottom";
- tag = "icon-stage_stairs"
+ icon_state = "rampbottom"
},
/area/security/main)
"aem" = (
@@ -970,12 +922,10 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "floorgrime"
@@ -993,8 +943,7 @@
/obj/structure/disposalpipe/trunk,
/turf/simulated/floor/plasteel{
dir = 9;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTHWEST)"
+ icon_state = "whiteblue"
},
/area/security/medbay)
"aeq" = (
@@ -1002,8 +951,7 @@
/obj/item/bedsheet/blue,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whiteblue"
},
/area/security/medbay)
"aer" = (
@@ -1016,20 +964,16 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
+ icon_state = "whiteblue"
},
/area/security/medbay)
"aeu" = (
/obj/effect/decal/warning_stripes/north,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "red"
@@ -1047,8 +991,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
@@ -1067,8 +1010,7 @@
"aez" = (
/obj/effect/decal/warning_stripes/red/partial,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/security/main)
@@ -1084,13 +1026,11 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10;
- initialize_directions = 10;
- level = 1
+ initialize_directions = 10
},
/turf/simulated/floor/plasteel,
/area/security/main)
@@ -1102,8 +1042,7 @@
"aeD" = (
/obj/machinery/computer/secure_data,
/obj/item/radio/intercom/department/security{
- pixel_x = 25;
- pixel_y = 0
+ pixel_x = 25
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -1130,8 +1069,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/structure/fans/tiny,
/turf/simulated/floor/plating,
@@ -1168,8 +1106,7 @@
/obj/item/reagent_containers/glass/bottle/epinephrine,
/turf/simulated/floor/plasteel{
dir = 9;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTHWEST)"
+ icon_state = "whiteblue"
},
/area/security/medbay)
"aeK" = (
@@ -1179,25 +1116,21 @@
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/security/medbay)
"aeL" = (
/obj/structure/table/glass,
/obj/item/clothing/glasses/hud/health,
/obj/machinery/camera{
- c_tag = "Brig Medbay";
- dir = 2;
- network = list("SS13")
+ c_tag = "Brig Medbay"
},
/obj/structure/reagent_dispensers/peppertank{
pixel_y = 30
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
+ icon_state = "whiteblue"
},
/area/security/medbay)
"aeM" = (
@@ -1213,8 +1146,7 @@
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/security/medbay)
"aeN" = (
@@ -1224,8 +1156,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/structure/cable{
d1 = 2;
@@ -1248,7 +1179,6 @@
icon_state = "0-8"
},
/obj/machinery/firealarm{
- dir = 2;
pixel_y = 24
},
/obj/structure/table/glass,
@@ -1256,8 +1186,7 @@
/obj/item/storage/belt/medical,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whiteblue"
},
/area/security/medbay)
"aeR" = (
@@ -1275,7 +1204,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/atmospherics/unary/vent_pump/on,
@@ -1295,8 +1223,7 @@
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
+ icon_state = "whiteblue"
},
/area/security/medbay)
"aeU" = (
@@ -1323,14 +1250,10 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/item/radio/intercom{
- broadcasting = 0;
- name = "station intercom (General)";
- pixel_x = 25;
- pixel_y = 0
+ pixel_x = 25
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -1398,8 +1321,6 @@
/area/security/prisonershuttle)
"afa" = (
/obj/item/radio/intercom{
- broadcasting = 0;
- name = "station intercom (General)";
pixel_y = -27
},
/obj/structure/table,
@@ -1439,7 +1360,6 @@
/obj/machinery/computer/med_data/laptop,
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/obj/machinery/light{
@@ -1447,15 +1367,12 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (WEST)"
+ icon_state = "whiteblue"
},
/area/security/medbay)
"afe" = (
/obj/effect/decal/warning_stripes/north,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -1482,13 +1399,11 @@
/obj/machinery/sleeper,
/obj/item/radio/intercom{
dir = 8;
- name = "station intercom (General)";
pixel_x = 28
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whiteblue"
},
/area/security/medbay)
"afj" = (
@@ -1506,8 +1421,7 @@
cell_type = 5000;
dir = 8;
name = "west bump Important Area";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/obj/machinery/photocopier,
/turf/simulated/floor/plasteel{
@@ -1582,8 +1496,7 @@
},
/turf/simulated/floor/plasteel{
dir = 10;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whiteblue"
},
/area/security/medbay)
"afr" = (
@@ -1591,32 +1504,25 @@
dir = 5
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whiteblue"
},
/area/security/medbay)
"afs" = (
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whiteblue"
},
/area/security/medbay)
"aft" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/security/medbay)
"afu" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10;
- initialize_directions = 10;
- level = 1
+ initialize_directions = 10
},
/obj/structure/cable{
d1 = 1;
@@ -1625,24 +1531,20 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner (WEST)"
+ icon_state = "whitebluecorner"
},
/area/security/medbay)
"afv" = (
/obj/structure/closet/secure_closet/brigdoc,
/turf/simulated/floor/plasteel{
dir = 6;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whiteblue"
},
/area/security/medbay)
"afw" = (
/obj/structure/bed/roller,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whiteblue"
},
/area/security/medbay)
"afx" = (
@@ -1652,7 +1554,6 @@
},
/obj/item/clothing/suit/tracksuit/red,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "redcorner"
},
/area/security/main)
@@ -1676,8 +1577,7 @@
dir = 10
},
/turf/simulated/floor/plasteel{
- icon_state = "rampbottom";
- tag = "icon-stage_stairs"
+ icon_state = "rampbottom"
},
/area/security/podbay)
"afM" = (
@@ -1694,6 +1594,8 @@
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 4
},
+/obj/item/paper_bin/nanotrasen,
+/obj/item/pen/multi,
/turf/simulated/floor/carpet,
/area/security/hos)
"afN" = (
@@ -1701,8 +1603,7 @@
dir = 6
},
/turf/simulated/floor/plasteel{
- icon_state = "rampbottom";
- tag = "icon-stage_stairs"
+ icon_state = "rampbottom"
},
/area/security/podbay)
"afO" = (
@@ -1711,14 +1612,11 @@
"afS" = (
/obj/structure/closet/secure_closet/brig,
/obj/machinery/camera{
- c_tag = "Prisoner Lockers";
- dir = 2;
- network = list("SS13")
+ c_tag = "Prisoner Lockers"
},
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/obj/structure/cable{
@@ -1756,15 +1654,13 @@
/obj/machinery/door/airlock/medical/glass{
id_tag = null;
name = "Brig Medical Bay";
- req_access_txt = "0";
req_one_access_txt = "63"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whiteblue"
},
/area/security/medbay)
"afX" = (
@@ -1776,7 +1672,6 @@
/obj/machinery/door/airlock/medical/glass{
id_tag = null;
name = "Brig Medical Bay";
- req_access_txt = "0";
req_one_access_txt = "63"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -1787,8 +1682,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (WEST)"
+ icon_state = "whiteblue"
},
/area/security/medbay)
"agd" = (
@@ -1828,15 +1722,13 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 5
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/security/prisonlockers)
@@ -1846,7 +1738,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -1856,8 +1747,7 @@
/area/security/prisonlockers)
"agn" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -1881,8 +1771,7 @@
"agp" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4
@@ -1898,8 +1787,7 @@
/area/security/brig)
"agq" = (
/obj/machinery/camera{
- c_tag = "Brig Main Hall West 2";
- network = list("SS13")
+ c_tag = "Brig Main Hall West 2"
},
/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
@@ -1964,8 +1852,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 8
@@ -1999,7 +1886,6 @@
/area/security/brig)
"agO" = (
/obj/machinery/firealarm{
- dir = 2;
pixel_y = 24
},
/obj/machinery/light{
@@ -2059,8 +1945,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/security/securearmoury)
"agS" = (
@@ -2083,8 +1968,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/security/securearmoury)
"agT" = (
@@ -2096,12 +1980,10 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/obj/machinery/camera{
- c_tag = "Brig Main Hall Center";
- network = list("SS13")
+ c_tag = "Brig Main Hall Center"
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -2126,9 +2008,7 @@
dir = 4
},
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/plasteel{
@@ -2156,9 +2036,7 @@
/obj/structure/chair/stool,
/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "redfull"
},
/area/security/main)
"ahe" = (
@@ -2167,9 +2045,7 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "redfull"
},
/area/security/main)
"ahf" = (
@@ -2219,9 +2095,7 @@
/turf/simulated/floor/carpet,
/area/security/hos)
"ahu" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "white"
@@ -2241,7 +2115,6 @@
/area/security/brig)
"ahD" = (
/obj/item/radio/intercom/department/security{
- pixel_x = 0;
pixel_y = 25
},
/turf/simulated/floor/plasteel{
@@ -2276,8 +2149,6 @@
on = 1
},
/obj/item/radio/intercom{
- broadcasting = 0;
- name = "station intercom (General)";
pixel_y = 25
},
/obj/item/storage/box/chemimp{
@@ -2314,8 +2185,7 @@
pixel_y = 23
},
/obj/machinery/camera{
- c_tag = "Brig Main Hall East 1";
- network = list("SS13")
+ c_tag = "Brig Main Hall East 1"
},
/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
@@ -2367,13 +2237,10 @@
/obj/effect/decal/warning_stripes/southeastcorner,
/obj/item/radio/intercom{
dir = 8;
- name = "station intercom (General)";
pixel_x = -28
},
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/plasteel{
@@ -2389,7 +2256,6 @@
/area/security/securearmoury)
"ahW" = (
/obj/machinery/ai_status_display{
- pixel_x = 0;
pixel_y = 32
},
/obj/effect/decal/warning_stripes/northeast,
@@ -2409,8 +2275,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -2432,18 +2297,6 @@
},
/turf/simulated/floor/plasteel,
/area/security/podbay)
-"aib" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/security/brig)
"aic" = (
/obj/effect/decal/warning_stripes/north,
/obj/machinery/space_heater,
@@ -2454,8 +2307,7 @@
/area/security/podbay)
"aid" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -2467,12 +2319,10 @@
/area/security/brig)
"aie" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -2484,10 +2334,8 @@
dir = 8
},
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/turf/simulated/floor/plasteel{
dir = 10;
@@ -2496,8 +2344,7 @@
/area/security/armoury)
"aig" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -2568,8 +2415,7 @@
cell_type = 5000;
dir = 8;
name = "west bump Important Area";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -2604,8 +2450,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/security/securearmoury)
"aiq" = (
@@ -2623,21 +2468,18 @@
pixel_y = -3
},
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/security/securearmoury)
"air" = (
/obj/effect/decal/warning_stripes/west,
/obj/effect/decal/warning_stripes/east,
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -2645,8 +2487,7 @@
/area/security/securearmoury)
"ais" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/cable{
d1 = 1;
@@ -2662,8 +2503,7 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
@@ -2672,13 +2512,11 @@
/area/security/brig)
"aiu" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -2692,8 +2530,7 @@
cell_type = 5000;
dir = 8;
name = "west bump Important Area";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/obj/structure/cable{
d2 = 4;
@@ -2701,8 +2538,7 @@
},
/obj/machinery/camera{
c_tag = "Brig Armory";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -2711,32 +2547,14 @@
/area/security/armoury)
"aix" = (
/obj/item/radio/intercom{
- broadcasting = 0;
- name = "station intercom (General)";
pixel_y = 25
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel,
/area/security/prisonlockers)
-"aiy" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/security/brig)
"aiz" = (
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/turf/simulated/floor/plasteel{
@@ -2755,8 +2573,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -2771,27 +2588,20 @@
/obj/structure/window/reinforced{
dir = 8
},
-/obj/item/clothing/suit/armor/laserproof{
- pixel_x = 0;
- pixel_y = 0
- },
+/obj/item/clothing/suit/armor/laserproof,
/obj/item/gun/energy/ionrifle,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/security/securearmoury)
"aiD" = (
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/obj/machinery/camera{
- c_tag = "Brig Main Hall West 1";
- network = list("SS13")
+ c_tag = "Brig Main Hall West 1"
},
/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plasteel{
@@ -2811,13 +2621,11 @@
pixel_y = -3
},
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/security/securearmoury)
"aiO" = (
@@ -2836,8 +2644,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -2852,13 +2659,11 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -2869,8 +2674,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -2883,8 +2687,7 @@
"aiS" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 1
@@ -2900,12 +2703,10 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -2914,7 +2715,6 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkredcorners"
},
/area/security/brig)
@@ -2922,12 +2722,10 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -2948,12 +2746,10 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -2975,12 +2771,10 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -2996,13 +2790,11 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -3027,8 +2819,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
@@ -3077,7 +2868,6 @@
},
/obj/item/pen,
/obj/item/radio/intercom/locked/prison{
- pixel_x = 0;
pixel_y = 25
},
/turf/simulated/floor/plasteel{
@@ -3087,9 +2877,7 @@
"ajg" = (
/obj/machinery/washing_machine,
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/plasteel{
@@ -3152,7 +2940,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
@@ -3167,31 +2954,19 @@
tag = ""
},
/obj/machinery/ai_status_display{
- pixel_w = 0;
- pixel_x = 0;
pixel_y = -32
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkred"
},
/area/security/brig)
"ajq" = (
/obj/structure/rack,
-/obj/item/clothing/suit/armor/bulletproof{
- pixel_x = 0;
- pixel_y = 0
- },
+/obj/item/clothing/suit/armor/bulletproof,
/obj/item/clothing/head/helmet/alt,
-/obj/item/clothing/suit/armor/bulletproof{
- pixel_x = 0;
- pixel_y = 0
- },
+/obj/item/clothing/suit/armor/bulletproof,
/obj/item/clothing/head/helmet/alt,
-/obj/item/clothing/suit/armor/bulletproof{
- pixel_x = 0;
- pixel_y = 0
- },
+/obj/item/clothing/suit/armor/bulletproof,
/obj/item/clothing/head/helmet/alt,
/obj/structure/window/reinforced,
/obj/structure/window/reinforced{
@@ -3199,8 +2974,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/security/securearmoury)
"ajr" = (
@@ -3210,29 +2984,23 @@
pixel_x = -3;
pixel_y = 3
},
-/obj/item/gun/energy/gun/advtaser{
- pixel_x = 0;
- pixel_y = 0
- },
+/obj/item/gun/energy/gun/advtaser,
/obj/item/gun/energy/gun/advtaser{
pixel_x = 3;
pixel_y = -3
},
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/security/securearmoury)
"ajs" = (
/obj/structure/table,
/obj/machinery/cell_charger,
/obj/item/storage/toolbox/mechanical{
- pixel_x = 0;
pixel_y = 10
},
/obj/item/stock_parts/cell/high/plus,
@@ -3251,15 +3019,12 @@
/area/security/podbay)
"aju" = (
/obj/machinery/camera{
- c_tag = "Brig Podbay";
- dir = 2;
- network = list("SS13")
+ c_tag = "Brig Podbay"
},
/obj/machinery/door_control{
desc = "A remote control-switch for the pod doors.";
id = "secpodbay";
name = "Pod Door Control";
- pixel_x = 0;
pixel_y = 24;
req_access_txt = "71"
},
@@ -3271,9 +3036,7 @@
on = 1
},
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/engine,
@@ -3293,12 +3056,9 @@
/area/security/podbay)
"ajJ" = (
/obj/structure/sign/poster/official/random{
- pixel_x = 0;
pixel_y = 32
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "darkredcorners"
@@ -3314,13 +3074,11 @@
layer = 2.9
},
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/security/securearmoury)
"ajL" = (
@@ -3344,7 +3102,6 @@
tag = ""
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkred"
},
/area/security/brig)
@@ -3357,7 +3114,6 @@
},
/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkred"
},
/area/security/brig)
@@ -3375,7 +3131,6 @@
tag = "90Curve"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkred"
},
/area/security/brig)
@@ -3391,7 +3146,6 @@
tag = ""
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkred"
},
/area/security/brig)
@@ -3415,7 +3169,6 @@
tag = ""
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkred"
},
/area/security/brig)
@@ -3430,7 +3183,6 @@
tag = ""
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkredcorners"
},
/area/security/brig)
@@ -3457,7 +3209,6 @@
/area/security/brig)
"ajT" = (
/obj/structure/sign/poster/official/random{
- pixel_x = 0;
pixel_y = -32
},
/obj/structure/disposalpipe/segment{
@@ -3476,9 +3227,7 @@
/area/security/brig)
"ajU" = (
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/obj/machinery/atmospherics/unary/vent_pump/on,
@@ -3494,8 +3243,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -3514,8 +3262,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/cable{
d1 = 1;
@@ -3526,7 +3273,6 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkredcorners"
},
/area/security/brig)
@@ -3540,8 +3286,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -3549,7 +3294,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkredcorners"
},
/area/security/brig)
@@ -3575,8 +3319,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -3587,7 +3330,6 @@
icon_state = "2-8"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkredcorners"
},
/area/security/brig)
@@ -3595,15 +3337,13 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkredcorners"
},
/area/security/brig)
@@ -3617,8 +3357,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/cable{
d1 = 1;
@@ -3637,8 +3376,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/cable{
d1 = 1;
@@ -3649,7 +3387,6 @@
dir = 4
},
/obj/structure/sign/poster/official/random{
- pixel_x = 0;
pixel_y = -32
},
/turf/simulated/floor/plasteel{
@@ -3661,8 +3398,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
dir = 8;
@@ -3681,12 +3417,10 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkredcorners"
},
/area/security/brig)
@@ -3700,8 +3434,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -3730,8 +3463,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/cable{
d1 = 2;
@@ -3768,13 +3500,11 @@
/obj/item/clothing/suit/armor/riot,
/obj/item/clothing/suit/armor/riot,
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/security/securearmoury)
"aku" = (
@@ -3788,20 +3518,16 @@
/obj/item/shield/riot,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/security/securearmoury)
"akv" = (
/obj/structure/table,
-/obj/item/taperecorder{
- pixel_y = 0
- },
+/obj/item/taperecorder,
/obj/machinery/light_switch{
pixel_x = -25
},
/obj/item/radio/intercom/department/security{
- pixel_x = 0;
pixel_y = 28
},
/turf/simulated/floor/plasteel,
@@ -3864,9 +3590,7 @@
/area/security/brig)
"akE" = (
/obj/machinery/door/window/eastright{
- base_state = "right";
dir = 1;
- icon_state = "right";
name = "Security Delivery";
req_access_txt = "1"
},
@@ -3881,7 +3605,6 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/obj/structure/cable{
@@ -3912,7 +3635,6 @@
dir = 8
},
/obj/machinery/firealarm{
- dir = 2;
pixel_y = 24
},
/obj/effect/landmark/start{
@@ -3971,7 +3693,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/door/poddoor{
@@ -3988,13 +3709,11 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "ramptop";
- tag = "icon-stage_stairs"
+ icon_state = "ramptop"
},
/area/security/permabrig)
"akS" = (
@@ -4029,8 +3748,7 @@
/obj/machinery/hologram/holopad,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -4042,7 +3760,6 @@
},
/obj/structure/disposalpipe/sortjunction{
dir = 1;
- icon_state = "pipe-j1s";
name = "Brig HoS Office";
sortType = 7
},
@@ -4089,7 +3806,6 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkredcorners"
},
/area/security/brig)
@@ -4129,8 +3845,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/disposalpipe/sortjunction{
dir = 1;
@@ -4177,9 +3892,7 @@
opacity = 0
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "cult"
},
/area/lawoffice)
"ale" = (
@@ -4244,8 +3957,7 @@
/area/security/securearmoury)
"alk" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/machinery/light,
/obj/machinery/door_control{
@@ -4338,7 +4050,6 @@
/obj/item/storage/fancy/cigarettes/cigpack_robust,
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/obj/machinery/light{
@@ -4346,8 +4057,7 @@
},
/obj/machinery/camera{
c_tag = "Brig Briefing Room West";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/security/main)
@@ -4355,11 +4065,9 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "redcorner"
},
/area/security/main)
@@ -4402,8 +4110,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
icon_state = "red"
@@ -4461,10 +4168,8 @@
"alG" = (
/obj/machinery/vending/cigarette,
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/turf/simulated/floor/plasteel,
/area/security/main)
@@ -4485,8 +4190,7 @@
/obj/structure/grille,
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'.";
- name = "KEEP CLEAR: DOCKING AREA";
- pixel_y = 0
+ name = "KEEP CLEAR: DOCKING AREA"
},
/turf/simulated/floor/plating/airless,
/area/security/podbay)
@@ -4518,8 +4222,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/light_switch{
pixel_y = -25
@@ -4611,9 +4314,7 @@
/obj/structure/closet,
/obj/item/radio/intercom{
dir = 0;
- name = "station intercom (General)";
- pixel_x = -28;
- pixel_y = 0
+ pixel_x = -28
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -4772,8 +4473,6 @@
dir = 4
},
/obj/item/radio/intercom{
- broadcasting = 0;
- name = "station intercom (General)";
pixel_y = 25
},
/turf/simulated/floor/plasteel{
@@ -4787,7 +4486,6 @@
/obj/item/folder/red,
/obj/item/pen,
/obj/item/radio/intercom/department/security{
- pixel_x = 0;
pixel_y = -28
},
/obj/machinery/atmospherics/unary/vent_scrubber/on{
@@ -4825,17 +4523,6 @@
},
/turf/simulated/floor/plasteel,
/area/security/main)
-"amo" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0;
- tag = ""
- },
-/obj/structure/lattice/catwalk,
-/turf/space,
-/area/solar/auxstarboard)
"amp" = (
/obj/structure/chair{
dir = 8
@@ -4848,8 +4535,7 @@
},
/obj/machinery/camera{
c_tag = "Brig Briefing Room East";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/obj/effect/landmark/start{
name = "Security Officer"
@@ -4873,19 +4559,14 @@
name = "Head of Security"
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "redfull"
},
/area/security/main)
"ams" = (
/obj/item/radio/intercom/locked/prison{
- pixel_x = -25;
- pixel_y = 0
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
+ pixel_x = -25
},
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plating,
/area/security/permabrig)
"amt" = (
@@ -4894,8 +4575,7 @@
department = "Head of Security's Desk";
departmentType = 5;
name = "Head of Security Requests Console";
- pixel_x = 30;
- pixel_y = 0
+ pixel_x = 30
},
/obj/machinery/computer/brigcells,
/turf/simulated/floor/plasteel{
@@ -4905,8 +4585,7 @@
"amu" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10;
- initialize_directions = 10;
- level = 1
+ initialize_directions = 10
},
/turf/simulated/floor/carpet,
/area/security/hos)
@@ -4957,9 +4636,7 @@
/area/security/warden)
"amA" = (
/obj/structure/table,
-/obj/machinery/recharger{
- pixel_y = 0
- },
+/obj/machinery/recharger,
/obj/machinery/alarm{
pixel_y = 23
},
@@ -4968,9 +4645,7 @@
on = 1
},
/obj/machinery/camera{
- c_tag = "Brig Warden's Office";
- dir = 2;
- network = list("SS13")
+ c_tag = "Brig Warden's Office"
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -4991,9 +4666,7 @@
"amC" = (
/obj/structure/closet/secure_closet/warden,
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/plasteel{
@@ -5044,8 +4717,7 @@
pixel_y = -8
},
/obj/item/assembly/timer{
- pixel_y = -6;
- pixel_z = 3
+ pixel_y = -6
},
/obj/item/flash,
/turf/simulated/floor/plasteel{
@@ -5085,9 +4757,7 @@
/area/maintenance/fsmaint)
"amL" = (
/obj/machinery/shower{
- dir = 8;
- icon_state = "shower";
- tag = "icon-shower (WEST)"
+ dir = 8
},
/obj/structure/curtain/open/shower,
/turf/simulated/floor/plating,
@@ -5113,9 +4783,7 @@
},
/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "redfull"
},
/area/security/main)
"amO" = (
@@ -5131,8 +4799,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/cable{
d1 = 2;
@@ -5154,13 +4821,10 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "redfull"
},
/area/security/main)
"amR" = (
@@ -5169,8 +4833,7 @@
},
/obj/machinery/camera{
c_tag = "Brig Pod Pilot's Office";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -5268,7 +4931,6 @@
network = list("Prison","SS13")
},
/obj/structure/sign/poster/official/random{
- pixel_x = 0;
pixel_y = 32
},
/obj/machinery/atmospherics/unary/vent_pump/on,
@@ -5284,7 +4946,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
@@ -5307,15 +4968,12 @@
/turf/simulated/floor/plasteel,
/area/security/prisonlockers)
"anj" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plating,
/area/security/permabrig)
"ank" = (
/obj/structure/closet/secure_closet/brig,
/obj/machinery/firealarm{
- dir = 2;
pixel_y = 24
},
/turf/simulated/floor/plasteel,
@@ -5330,8 +4988,7 @@
},
/obj/machinery/flasher{
id = "permaflash1";
- pixel_x = 28;
- pixel_y = 0
+ pixel_x = 28
},
/turf/simulated/floor/plasteel{
dir = 6;
@@ -5348,7 +5005,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
@@ -5359,8 +5015,7 @@
"anp" = (
/obj/structure/bed,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
+ dir = 5
},
/turf/simulated/floor/plating,
/area/security/permabrig)
@@ -5396,8 +5051,7 @@
"ant" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6;
- level = 1
+ dir = 6
},
/turf/simulated/floor/plating,
/area/security/permabrig)
@@ -5408,11 +5062,9 @@
network = list("Prison","SS13")
},
/obj/item/radio/intercom/locked/prison{
- pixel_x = -25;
- pixel_y = 0
+ pixel_x = -25
},
/obj/structure/sign/poster/official/random{
- pixel_x = 0;
pixel_y = 32
},
/obj/machinery/atmospherics/unary/vent_pump/on,
@@ -5444,7 +5096,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/door/poddoor{
@@ -5479,8 +5130,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -5491,8 +5141,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -5505,8 +5154,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/cable{
d1 = 1;
@@ -5562,8 +5210,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -5573,8 +5220,7 @@
"anF" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
@@ -5584,7 +5230,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/structure/lattice/catwalk,
@@ -5597,7 +5242,6 @@
/obj/machinery/door/firedoor,
/obj/structure/disposalpipe/sortjunction{
dir = 1;
- icon_state = "pipe-j1s";
name = "Brig Equipment Storage";
sortType = 8
},
@@ -5647,15 +5291,11 @@
"anM" = (
/obj/structure/chair/stool,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "redfull"
},
/area/security/main)
"anN" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel,
/area/security/permabrig)
"anO" = (
@@ -5665,7 +5305,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plasteel,
@@ -5678,8 +5317,7 @@
},
/obj/machinery/alarm{
dir = 4;
- pixel_x = -25;
- pixel_y = 0
+ pixel_x = -25
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 6
@@ -5694,8 +5332,7 @@
/area/security/permabrig)
"anQ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/security/main)
@@ -5712,15 +5349,13 @@
req_access_txt = "1"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/security/main)
"anS" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 5;
@@ -5729,8 +5364,7 @@
/area/security/main)
"anT" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 9
@@ -5748,8 +5382,7 @@
/obj/item/book/manual/sop_security,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
@@ -5801,9 +5434,7 @@
pixel_y = 2
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "cult"
},
/area/lawoffice)
"aoa" = (
@@ -5813,18 +5444,14 @@
},
/obj/item/radio/intercom{
dir = 8;
- name = "station intercom (General)";
- pixel_x = -28;
- pixel_y = 0
+ pixel_x = -28
},
/obj/machinery/light{
dir = 1;
in_use = 1
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "cult"
},
/area/lawoffice)
"aob" = (
@@ -5833,15 +5460,12 @@
name = "Internal Affairs Agent"
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "cult"
},
/area/lawoffice)
"aoc" = (
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/obj/machinery/light{
@@ -5853,7 +5477,6 @@
/obj/effect/spawner/window/reinforced,
/obj/machinery/door/poddoor/shutters{
density = 0;
- dir = 4;
icon_state = "open";
id_tag = "lawyer";
name = "Internal Affairs Privacy Shutters";
@@ -5865,9 +5488,7 @@
/obj/structure/table/reinforced,
/obj/item/flashlight/lamp,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "cult"
},
/area/lawoffice)
"aof" = (
@@ -5891,8 +5512,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/security/glass{
@@ -5900,8 +5520,7 @@
req_access_txt = "63"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -5941,9 +5560,7 @@
},
/area/security/lobby)
"aol" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -5957,8 +5574,7 @@
/area/security/lobby)
"aon" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable{
@@ -5973,8 +5589,7 @@
/area/security/lobby)
"aoo" = (
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable{
@@ -5983,8 +5598,7 @@
icon_state = "1-2"
},
/obj/machinery/light_switch{
- pixel_x = -25;
- pixel_y = 0
+ pixel_x = -25
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
@@ -6024,8 +5638,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/cable{
d1 = 1;
@@ -6041,8 +5654,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/effect/landmark/start{
name = "Warden"
@@ -6075,8 +5687,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -6094,7 +5705,6 @@
"aow" = (
/obj/machinery/flasher{
id = "Cell 1";
- pixel_x = 0;
pixel_y = 28
},
/turf/simulated/floor/plasteel{
@@ -6119,8 +5729,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/security/seceqstorage)
@@ -6143,13 +5752,11 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/hologram/holopad,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/disposalpipe/segment{
dir = 4;
@@ -6180,8 +5787,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
dir = 2;
@@ -6213,8 +5819,7 @@
dir = 1
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/turf/simulated/floor/plasteel{
dir = 1
@@ -6233,8 +5838,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -6291,8 +5895,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -6343,8 +5946,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -6363,8 +5965,7 @@
/area/security/main)
"aoS" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/machinery/computer/card/minor/hos,
/turf/simulated/floor/plasteel{
@@ -6388,9 +5989,7 @@
/obj/structure/bed,
/obj/item/bedsheet/red,
/obj/machinery/camera{
- c_tag = "Brig Cell 1";
- dir = 2;
- network = list("SS13")
+ c_tag = "Brig Cell 1"
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -6400,10 +5999,8 @@
"aoV" = (
/obj/structure/closet/secure_closet/brig,
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/turf/simulated/floor/plasteel,
/area/security/prisonlockers)
@@ -6416,7 +6013,6 @@
pixel_y = 32
},
/obj/structure/cable/yellow{
- d1 = 0;
d2 = 2;
icon_state = "0-2"
},
@@ -6428,25 +6024,20 @@
"aoX" = (
/obj/structure/bed,
/obj/machinery/camera{
- c_tag = "Brig Cell 3";
- dir = 2;
- network = list("SS13")
+ c_tag = "Brig Cell 3"
},
/obj/machinery/flasher{
id = "Cell 3";
- pixel_x = 0;
pixel_y = 28
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "redcorner"
},
/area/security/prison/cell_block/A)
"aoY" = (
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- icon_state = "rampbottom";
- tag = "icon-stage_stairs"
+ icon_state = "rampbottom"
},
/area/security/prison/cell_block/A)
"aoZ" = (
@@ -6459,8 +6050,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "rampbottom";
- tag = "icon-stage_stairs"
+ icon_state = "rampbottom"
},
/area/security/prison/cell_block/A)
"apa" = (
@@ -6468,9 +6058,7 @@
/obj/item/camera{
desc = "A one use - polaroid camera. 30 photos left.";
name = "Camera";
- pictures_left = 30;
- pixel_x = 0;
- pixel_y = 0
+ pictures_left = 30
},
/turf/simulated/floor/plasteel,
/area/security/processing)
@@ -6498,7 +6086,6 @@
/obj/structure/closet,
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/obj/machinery/light/small{
@@ -6517,14 +6104,12 @@
/obj/item/pen,
/obj/item/radio/intercom{
dir = 8;
- name = "station intercom (General)";
pixel_x = -28
},
/obj/machinery/requests_console{
department = "Warden";
departmentType = 7;
name = "Warden's Requests Console";
- pixel_x = 0;
pixel_y = -30
},
/obj/item/radio/intercom/department/security{
@@ -6543,7 +6128,6 @@
pixel_y = 5
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkred"
},
/area/security/warden)
@@ -6553,13 +6137,11 @@
/obj/item/paper/armory,
/obj/item/clipboard,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkred"
},
/area/security/warden)
"aph" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkred"
},
/area/security/warden)
@@ -6568,14 +6150,12 @@
/obj/item/folder/red,
/obj/item/megaphone,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkred"
},
/area/security/warden)
"apj" = (
/obj/structure/table/reinforced,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkred"
},
/area/security/warden)
@@ -6688,11 +6268,8 @@
/area/security/prison/cell_block/A)
"apA" = (
/obj/machinery/vending/wallmed{
- dir = 2;
name = "Emergency NanoMed";
- pixel_x = -27;
- pixel_y = 0;
- req_access_txt = "0"
+ pixel_x = -27
},
/obj/structure/table/reinforced,
/obj/item/stack/medical/bruise_pack/advanced,
@@ -6705,8 +6282,7 @@
},
/obj/machinery/camera{
c_tag = "Brig Security Equipment South";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 10;
@@ -6728,7 +6304,6 @@
},
/obj/effect/decal/warning_stripes/red/hollow,
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
@@ -6744,8 +6319,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel,
@@ -6774,9 +6348,7 @@
/area/security/medbay)
"apG" = (
/obj/machinery/light/small{
- dir = 4;
- icon_state = "bulb1";
- tag = "icon-bulb1 (EAST)"
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -6894,8 +6466,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/security/glass{
@@ -6907,7 +6478,6 @@
"apU" = (
/obj/structure/table/wood,
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
@@ -6917,8 +6487,7 @@
},
/obj/machinery/camera{
c_tag = "Brig Head of Security's Office";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/obj/item/folder/red,
/obj/item/folder/red,
@@ -6931,8 +6500,7 @@
"apV" = (
/obj/structure/table/wood,
/obj/item/taperecorder{
- pixel_x = -5;
- pixel_y = 0
+ pixel_x = -5
},
/obj/machinery/light,
/obj/item/radio{
@@ -6980,9 +6548,7 @@
"apY" = (
/obj/structure/bed,
/obj/machinery/light/small{
- dir = 4;
- icon_state = "bulb1";
- tag = "icon-bulb1 (EAST)"
+ dir = 4
},
/turf/simulated/floor/plating,
/area/maintenance/fsmaint)
@@ -7084,8 +6650,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plating,
/area/security/warden)
@@ -7098,8 +6663,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plating,
/area/security/warden)
@@ -7166,8 +6730,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plating,
/area/security/main)
@@ -7310,7 +6873,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/door/poddoor{
@@ -7355,9 +6917,7 @@
},
/obj/item/pen,
/obj/machinery/light/small{
- dir = 4;
- icon_state = "bulb1";
- tag = "icon-bulb1 (EAST)"
+ dir = 4
},
/turf/simulated/floor/plating,
/area/security/permabrig)
@@ -7418,9 +6978,7 @@
"aqY" = (
/obj/structure/chair/stool,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "cult"
},
/area/lawoffice)
"aqZ" = (
@@ -7445,9 +7003,7 @@
/obj/item/stamp/law,
/obj/item/pen/multi,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "cult"
},
/area/lawoffice)
"arb" = (
@@ -7544,8 +7100,7 @@
dir = 8
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6;
- level = 1
+ dir = 6
},
/obj/structure/cable{
d1 = 2;
@@ -7568,7 +7123,6 @@
dir = 8
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "redcorner"
},
/area/security/prison/cell_block/A)
@@ -7626,9 +7180,7 @@
},
/obj/item/radio/intercom{
dir = 8;
- name = "station intercom (General)";
- pixel_x = -28;
- pixel_y = 0
+ pixel_x = -28
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
@@ -7654,7 +7206,6 @@
dir = 8
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkredcorners"
},
/area/security/prison/cell_block/A)
@@ -7698,12 +7249,10 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkredcorners"
},
/area/security/prison/cell_block/A)
@@ -7737,7 +7286,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_y = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -7756,8 +7304,7 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
+ dir = 5
},
/turf/simulated/floor/plasteel,
/area/security/processing)
@@ -7780,14 +7327,11 @@
pixel_x = -24;
pixel_y = 23
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel,
/area/security/permabrig)
"arC" = (
/obj/item/radio/intercom/department/security{
- pixel_x = 0;
pixel_y = 25
},
/turf/simulated/floor/plasteel{
@@ -7839,8 +7383,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -7876,7 +7419,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -7888,8 +7430,7 @@
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/obj/structure/cable{
d2 = 2;
@@ -7927,7 +7468,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/cable{
@@ -7961,8 +7501,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/effect/spawner/window/reinforced,
/turf/simulated/floor/plating,
@@ -7973,8 +7512,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -7999,8 +7537,6 @@
name = "Door Bolt Control";
normaldoorcontrol = 1;
pixel_x = 25;
- pixel_y = 0;
- req_access_txt = "0";
specialfunctions = 4
},
/turf/simulated/floor/plating,
@@ -8012,8 +7548,6 @@
name = "Door Bolt Control";
normaldoorcontrol = 1;
pixel_x = 25;
- pixel_y = 0;
- req_access_txt = "0";
specialfunctions = 4
},
/turf/simulated/floor/plating,
@@ -8051,12 +7585,10 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -8067,8 +7599,7 @@
/area/security/brig)
"ase" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -8157,8 +7688,7 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -8172,8 +7702,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/disposalpipe/segment,
/obj/structure/disposalpipe/segment{
@@ -8188,8 +7717,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -8203,8 +7731,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -8225,8 +7752,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -8260,8 +7786,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -8279,8 +7804,7 @@
req_access_txt = "2"
},
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/security/permabrig)
@@ -8288,8 +7812,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/cable{
d1 = 1;
@@ -8302,7 +7825,6 @@
dir = 4
},
/obj/structure/sign/poster/official/random{
- pixel_x = 0;
pixel_y = -32
},
/turf/simulated/floor/plasteel{
@@ -8318,7 +7840,6 @@
desc = "Used for watching Prison Wing holding areas.";
name = "Prison Monitor";
network = list("Prison");
- pixel_x = 0;
pixel_y = 30
},
/turf/simulated/floor/plasteel,
@@ -8336,8 +7857,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -8348,8 +7868,6 @@
},
/obj/item/radio/intercom{
dir = 0;
- name = "station intercom (General)";
- pixel_x = 0;
pixel_y = -28
},
/turf/simulated/floor/plasteel{
@@ -8362,7 +7880,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/door_control{
@@ -8386,12 +7903,10 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -8475,9 +7990,7 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "darkred"
@@ -8492,15 +8005,13 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -8514,12 +8025,10 @@
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -8529,15 +8038,13 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -8552,8 +8059,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -8564,7 +8070,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/cable{
@@ -8607,9 +8112,7 @@
req_access_txt = "2"
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "cult"
},
/area/lawoffice)
"asP" = (
@@ -8617,20 +8120,16 @@
dir = 1
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "cult"
},
/area/lawoffice)
"asQ" = (
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/obj/machinery/alarm{
dir = 4;
- pixel_x = -25;
- pixel_y = 0
+ pixel_x = -25
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -8639,7 +8138,6 @@
/area/security/lobby)
"asR" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkred"
},
/area/security/lobby)
@@ -8654,7 +8152,6 @@
/obj/structure/chair/office/dark,
/obj/item/radio/intercom{
dir = 0;
- name = "station intercom (General)";
pixel_x = -28;
pixel_y = -28
},
@@ -8761,7 +8258,6 @@
name = "Cell 3 Locker"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "redcorner"
},
/area/security/prison/cell_block/A)
@@ -8807,8 +8303,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -8840,15 +8335,13 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/cable{
d1 = 2;
@@ -8870,14 +8363,12 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plasteel,
@@ -8952,9 +8443,7 @@
/turf/simulated/floor/plating,
/area/maintenance/fsmaint)
"atv" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel,
/area/security/processing)
"atw" = (
@@ -8967,15 +8456,13 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/light,
/obj/machinery/newscaster/security_unit{
pixel_y = -30
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkredcorners"
},
/area/security/brig)
@@ -8983,8 +8470,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
@@ -9032,8 +8518,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/cable{
d1 = 1;
@@ -9055,14 +8540,11 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/light,
/obj/item/radio/intercom{
dir = 0;
- name = "station intercom (General)";
- pixel_x = 0;
pixel_y = -28
},
/turf/simulated/floor/plasteel{
@@ -9083,8 +8565,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/cable{
d1 = 2;
@@ -9112,8 +8593,7 @@
/area/maintenance/fsmaint)
"atH" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/structure/rack,
/obj/item/plant_analyzer,
@@ -9157,8 +8637,7 @@
/obj/item/dice/d20,
/obj/item/instrument/harmonica,
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/turf/simulated/floor/plasteel{
icon_state = "floorgrime"
@@ -9174,8 +8653,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/cable{
d1 = 1;
@@ -9191,8 +8669,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "ramptop";
- tag = "icon-stage_stairs"
+ icon_state = "ramptop"
},
/area/security/permabrig)
"atT" = (
@@ -9202,8 +8679,7 @@
icon_state = "space";
layer = 4;
name = "EXTERNAL AIRLOCK";
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/turf/simulated/floor/plating,
/area/maintenance/fsmaint)
@@ -9215,7 +8691,6 @@
},
/obj/machinery/alarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/turf/simulated/floor/plasteel{
@@ -9245,8 +8720,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -9284,15 +8758,10 @@
/turf/simulated/floor/plasteel,
/area/security/permabrig)
"aua" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/obj/machinery/door_timer/cell_1{
- dir = 1;
- layer = 4;
- pixel_x = 0;
pixel_y = 32
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "darkredcorners"
@@ -9312,13 +8781,10 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "redfull"
},
/area/security/permabrig)
"aue" = (
@@ -9338,9 +8804,7 @@
dir = 10
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "redfull"
},
/area/security/permabrig)
"auf" = (
@@ -9348,13 +8812,10 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/plasteel{
@@ -9373,7 +8834,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/door/poddoor{
@@ -9393,7 +8853,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/cable{
@@ -9429,7 +8888,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -9448,7 +8906,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/cable{
@@ -9457,7 +8914,6 @@
icon_state = "2-4"
},
/obj/machinery/ai_status_display{
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/plasteel{
@@ -9470,7 +8926,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/cable{
@@ -9486,13 +8941,10 @@
},
/area/security/permabrig)
"aum" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
/obj/machinery/door_timer/cell_3{
- dir = 1;
- layer = 4;
- pixel_x = 0;
pixel_y = 32
},
-/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "darkredcorners"
@@ -9503,7 +8955,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment,
@@ -9541,9 +8992,7 @@
},
/obj/structure/closet/emcloset,
/obj/machinery/camera{
- c_tag = "Security Pod";
- dir = 2;
- network = list("SS13")
+ c_tag = "Security Pod"
},
/turf/simulated/floor/plating,
/area/maintenance/fsmaint)
@@ -9553,9 +9002,7 @@
"aur" = (
/obj/structure/filingcabinet/employment,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "cult"
},
/area/lawoffice)
"aut" = (
@@ -9563,9 +9010,7 @@
dir = 10
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "cult"
},
/area/lawoffice)
"auy" = (
@@ -9643,8 +9088,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/door/poddoor{
density = 0;
@@ -9709,9 +9153,7 @@
tag = ""
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "redfull"
},
/area/security/lobby)
"auK" = (
@@ -9857,12 +9299,10 @@
},
/obj/machinery/camera{
c_tag = "Brig Cell Block A North";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkredcorners"
},
/area/security/prison/cell_block/A)
@@ -9895,8 +9335,6 @@
/obj/machinery/camera{
c_tag = "Brig Prisoner Processing West";
dir = 4;
- network = list("SS13");
- pixel_x = 0;
pixel_y = -22
},
/obj/machinery/door_control{
@@ -9947,7 +9385,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plasteel,
@@ -9984,7 +9421,7 @@
},
/area/maintenance/fsmaint)
"avc" = (
-/obj/item/toy/figure/secofficer,
+/obj/item/toy/figure/crew/secofficer,
/turf/simulated/floor/plasteel{
icon_state = "floorgrime"
},
@@ -10041,7 +9478,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/smartfridge/drying_rack,
@@ -10052,7 +9488,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
@@ -10064,15 +9499,13 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 6
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
+ dir = 5
},
/turf/simulated/floor/plasteel{
icon_state = "floorgrime"
@@ -10084,7 +9517,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel,
@@ -10100,12 +9532,10 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -10127,24 +9557,20 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 5;
- icon_state = "intact"
+ dir = 5
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "ramptop";
- tag = "icon-stage_stairs"
+ icon_state = "ramptop"
},
/area/security/permabrig)
"avn" = (
@@ -10155,12 +9581,10 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel,
@@ -10173,7 +9597,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/cable{
@@ -10183,24 +9606,18 @@
tag = "90Curve"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/obj/machinery/computer/cryopod{
- density = 0;
- pixel_x = 0;
pixel_y = -32
},
/turf/simulated/floor/plasteel,
/area/security/permabrig)
"avp" = (
/obj/item/radio/intercom{
- broadcasting = 0;
- listening = 1;
- name = "station intercom (General)";
pixel_y = 25
},
/obj/structure/chair/comfy/shuttle{
@@ -10216,12 +9633,10 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -10251,9 +9666,7 @@
/area/shuttle/pod_3)
"avu" = (
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/obj/machinery/light,
@@ -10275,7 +9688,6 @@
},
/obj/machinery/door/poddoor/shutters{
density = 0;
- dir = 4;
icon_state = "open";
id_tag = "Processing Shutter";
name = "Processing Shutter";
@@ -10298,12 +9710,10 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -10313,16 +9723,13 @@
/area/security/permabrig)
"avD" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "redfull"
},
/area/security/permabrig)
"avE" = (
@@ -10330,7 +9737,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/structure/cable{
@@ -10344,9 +9750,7 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "redfull"
},
/area/security/permabrig)
"avF" = (
@@ -10359,11 +9763,9 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkred"
},
/area/security/permabrig)
@@ -10375,8 +9777,7 @@
security_level = 1
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -10389,7 +9790,6 @@
opacity = 0
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkred"
},
/area/security/permabrig)
@@ -10398,18 +9798,15 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkred"
},
/area/security/permabrig)
@@ -10419,19 +9816,16 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkred"
},
/area/security/permabrig)
"avK" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
},
/obj/structure/cable{
d1 = 1;
@@ -10440,8 +9834,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -10452,13 +9845,11 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkred"
},
/area/security/permabrig)
@@ -10484,18 +9875,15 @@
"avO" = (
/obj/machinery/power/apc{
cell_type = 5000;
- dir = 2;
name = "south bump Important Area";
pixel_y = -24
},
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkred"
},
/area/security/permabrig)
@@ -10503,26 +9891,20 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel,
/area/security/lobby)
"avQ" = (
/obj/item/storage/secure/safe{
- pixel_x = -27;
- pixel_y = 0
+ pixel_x = -27
},
/obj/machinery/camera{
c_tag = "Internal Affairs Office";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/obj/machinery/photocopier,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "cult"
},
/area/lawoffice)
"avR" = (
@@ -10533,9 +9915,7 @@
dir = 6
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "cult"
},
/area/lawoffice)
"avS" = (
@@ -10544,12 +9924,10 @@
/area/lawoffice)
"avT" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/security/lobby)
@@ -10569,17 +9947,13 @@
req_access_txt = "38"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "cult"
},
/area/lawoffice)
"avX" = (
@@ -10597,8 +9971,7 @@
"avY" = (
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "rampbottom";
- tag = "icon-stage_stairs"
+ icon_state = "rampbottom"
},
/area/security/prison/cell_block/A)
"avZ" = (
@@ -10650,8 +10023,7 @@
req_access_txt = "63"
},
/obj/effect/mapping_helpers/airlock/unres{
- dir = 4;
- icon_state = "airlock_unres_helper"
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -10663,7 +10035,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/structure/cable{
@@ -10675,8 +10046,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -10695,7 +10065,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel,
@@ -10704,8 +10073,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/security{
@@ -10737,7 +10105,6 @@
},
/obj/machinery/door/poddoor/shutters{
density = 0;
- dir = 4;
icon_state = "open";
id_tag = "Processing Shutter";
name = "Processing Shutter";
@@ -10759,7 +10126,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
@@ -10772,7 +10138,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/cable{
@@ -10815,12 +10180,10 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel,
@@ -10831,15 +10194,13 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 6
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6;
- level = 1
+ dir = 6
},
/obj/structure/cable{
d1 = 2;
@@ -10860,7 +10221,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/structure/cable{
@@ -10882,8 +10242,6 @@
/obj/machinery/camera{
c_tag = "Brig Prisoner Processing East";
dir = 8;
- network = list("SS13");
- pixel_x = 0;
pixel_y = -22
},
/turf/simulated/floor/plasteel{
@@ -10898,7 +10256,7 @@
/area/maintenance/fsmaint)
"awE" = (
/obj/structure/table,
-/obj/item/toy/griffin,
+/obj/item/toy/figure/griffin,
/turf/simulated/floor/plating,
/area/maintenance/fsmaint)
"awF" = (
@@ -10951,8 +10309,7 @@
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "rampbottom";
- tag = "icon-stage_stairs"
+ icon_state = "rampbottom"
},
/area/security/prison/cell_block/A)
"awO" = (
@@ -10986,8 +10343,7 @@
dir = 4
},
/obj/effect/mapping_helpers/airlock/unres{
- dir = 4;
- icon_state = "airlock_unres_helper"
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -11061,8 +10417,7 @@
/area/security/permabrig)
"awY" = (
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/obj/structure/window/reinforced{
dir = 1;
@@ -11078,8 +10433,7 @@
"awZ" = (
/obj/machinery/alarm{
dir = 8;
- pixel_x = 25;
- pixel_y = 0
+ pixel_x = 25
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -11091,7 +10445,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/door_control{
@@ -11146,7 +10499,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -11169,7 +10521,6 @@
/obj/machinery/airlock_sensor{
frequency = 1450;
id_tag = "dorms_sensor";
- pixel_x = 0;
pixel_y = 25
},
/obj/machinery/atmospherics/unary/vent_pump/high_volume{
@@ -11217,17 +10568,13 @@
/obj/machinery/requests_console{
department = "Internal Affairs Office";
name = "Internal Affairs Requests Console";
- pixel_x = -30;
- pixel_y = 0
+ pixel_x = -30
},
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "cult"
},
/area/lawoffice)
"axq" = (
@@ -11242,13 +10589,10 @@
/area/solar/auxstarboard)
"axr" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "cult"
},
/area/lawoffice)
"axs" = (
@@ -11267,7 +10611,6 @@
pixel_y = -32
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "redcorner"
},
/area/security/lobby)
@@ -11276,7 +10619,6 @@
/obj/structure/cable,
/obj/machinery/door/poddoor/shutters{
density = 0;
- dir = 4;
icon_state = "open";
id_tag = "Processing Shutter";
name = "Processing Shutter";
@@ -11319,8 +10661,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/security/lobby)
@@ -11351,10 +10692,7 @@
},
/obj/machinery/camera{
c_tag = "Brig Lobby East";
- dir = 8;
- network = list("SS13");
- pixel_x = 0;
- pixel_y = 0
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -11365,16 +10703,14 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/door/airlock/security{
name = "Evidence Storage";
@@ -11387,9 +10723,7 @@
/area/security/evidence)
"axD" = (
/obj/structure/disposalpipe/junction{
- dir = 4;
- icon_state = "pipe-j1";
- tag = "icon-pipe-j1 (EAST)"
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/security/lobby)
@@ -11398,7 +10732,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/unary/vent_pump/on{
@@ -11443,15 +10776,8 @@
},
/area/security/prison/cell_block/A)
"axH" = (
-/obj/machinery/door_timer/cell_2{
- dir = 2;
- layer = 4;
- pixel_x = 0;
- pixel_y = -32
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/cable{
d1 = 4;
@@ -11461,6 +10787,9 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/machinery/light,
+/obj/machinery/door_timer/cell_2{
+ pixel_y = -32
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "darkredcorners"
@@ -11477,28 +10806,19 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkredcorners"
},
/area/security/prison/cell_block/A)
"axJ" = (
-/obj/machinery/door_timer/cell_4{
- dir = 2;
- layer = 4;
- pixel_x = 0;
- pixel_y = -32
- },
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -11509,6 +10829,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/machinery/door_timer/cell_4{
+ pixel_y = -32
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "darkredcorners"
@@ -11517,7 +10840,6 @@
"axK" = (
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkredcorners"
},
/area/security/prison/cell_block/A)
@@ -11529,7 +10851,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/structure/cable{
@@ -11541,8 +10862,7 @@
/obj/machinery/hologram/holopad,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4
@@ -11552,19 +10872,6 @@
icon_state = "darkredcorners"
},
/area/security/prison/cell_block/A)
-"axO" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0;
- tag = ""
- },
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redcorner"
- },
-/area/security/processing)
"axP" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/security{
@@ -11580,12 +10887,9 @@
"axQ" = (
/obj/item/radio/intercom{
dir = 0;
- name = "station intercom (General)";
- pixel_x = 0;
pixel_y = -28
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "redcorner"
},
/area/security/processing)
@@ -11597,7 +10901,6 @@
tag = ""
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "redcorner"
},
/area/security/processing)
@@ -11606,7 +10909,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
@@ -11620,15 +10922,13 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel,
/area/security/processing)
"axU" = (
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/machinery/light{
@@ -11636,14 +10936,11 @@
},
/obj/structure/table,
/obj/item/restraints/handcuffs,
-/obj/item/taperecorder{
- pixel_y = 0
- },
+/obj/item/taperecorder,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plasteel,
@@ -11678,9 +10975,7 @@
dir = 1
},
/obj/structure/table,
-/obj/item/taperecorder{
- pixel_y = 0
- },
+/obj/item/taperecorder,
/turf/simulated/floor/plating,
/area/maintenance/fsmaint)
"axZ" = (
@@ -11717,12 +11012,12 @@
/area/maintenance/fsmaint)
"ayf" = (
/obj/structure/table,
-/obj/item/toy/figure/hos,
+/obj/item/toy/figure/crew/hos,
/turf/simulated/floor/plating,
/area/maintenance/fsmaint)
"ayg" = (
/obj/structure/table,
-/obj/item/toy/owl,
+/obj/item/toy/figure/owl,
/turf/simulated/floor/plating,
/area/maintenance/fsmaint)
"ayh" = (
@@ -11750,17 +11045,13 @@
/area/security/lobby)
"ayn" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/door_timer/cell_5{
- dir = 4;
- layer = 4;
- pixel_x = 32;
- pixel_y = 0
- },
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 8
},
+/obj/machinery/door_timer/cell_5{
+ pixel_x = 32
+ },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkredcorners"
},
/area/security/prison/cell_block/A)
@@ -11779,9 +11070,7 @@
/area/security/processing)
"ayq" = (
/obj/structure/table,
-/obj/item/taperecorder{
- pixel_y = 0
- },
+/obj/item/taperecorder,
/turf/simulated/floor/plasteel,
/area/security/processing)
"ayr" = (
@@ -11822,10 +11111,7 @@
dir = 1
},
/obj/item/radio/intercom{
- frequency = 1459;
- name = "station intercom (General)";
- pixel_x = 28;
- pixel_y = 0
+ pixel_x = 28
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -11843,7 +11129,6 @@
/area/security/permabrig)
"ayx" = (
/obj/structure/sign/poster/official/random{
- pixel_x = 0;
pixel_y = 32
},
/obj/structure/table,
@@ -11888,7 +11173,6 @@
"ayA" = (
/obj/structure/table/wood,
/obj/structure/noticeboard{
- pixel_x = 0;
pixel_y = -30
},
/obj/item/paper_bin{
@@ -11912,7 +11196,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/door/poddoor{
@@ -11928,7 +11211,6 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/obj/structure/cable{
@@ -11939,7 +11221,6 @@
id = "Execution Shutter";
name = "Execution Shutter Control";
pixel_x = -25;
- pixel_y = 0;
req_access_txt = "1"
},
/turf/simulated/floor/plasteel{
@@ -11978,8 +11259,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -11990,36 +11270,29 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- icon_state = "rampbottom";
- tag = "icon-stage_stairs"
+ icon_state = "rampbottom"
},
/area/security/permabrig)
"ayH" = (
/obj/machinery/door_control{
id = "lawyer";
name = "Internal Affairs Privacy Shutters Control";
- pixel_x = -25;
- pixel_y = 0
+ pixel_x = -25
},
/obj/machinery/vending/coffee/free,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "cult"
},
/area/lawoffice)
"ayI" = (
/obj/structure/chair/comfy/brown,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "cult"
},
/area/lawoffice)
"ayJ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -12028,20 +11301,15 @@
/area/security/lobby)
"ayK" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/machinery/camera{
c_tag = "Brig Lobby West";
- dir = 4;
- network = list("SS13");
- pixel_x = 0;
- pixel_y = 0
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -12053,8 +11321,7 @@
dir = 1
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
@@ -12064,15 +11331,13 @@
/area/security/lobby)
"ayM" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/obj/machinery/light,
/obj/machinery/ai_status_display{
- pixel_x = 0;
pixel_y = -32
},
/obj/item/reagent_containers/food/drinks/mug/sec,
@@ -12087,8 +11352,7 @@
dir = 1
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -12110,16 +11374,13 @@
/area/security/lobby)
"ayP" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/obj/item/radio/intercom{
dir = 8;
- name = "station intercom (General)";
- pixel_x = 0;
pixel_y = -28
},
/turf/simulated/floor/plasteel{
@@ -12129,8 +11390,7 @@
/area/security/lobby)
"ayQ" = (
/turf/simulated/floor/plasteel{
- icon_state = "rampbottom";
- tag = "icon-stage_stairs"
+ icon_state = "rampbottom"
},
/area/security/permabrig)
"ayR" = (
@@ -12160,8 +11420,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 4
@@ -12269,7 +11528,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -12337,8 +11595,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -12374,8 +11631,7 @@
/area/space/nearstation)
"azp" = (
/obj/machinery/door/airlock{
- name = "Bathroom";
- req_access_txt = "0"
+ name = "Bathroom"
},
/turf/simulated/floor/plasteel{
icon_state = "freezerfloor"
@@ -12392,7 +11648,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/structure/closet/wardrobe/pjs,
@@ -12409,8 +11664,7 @@
},
/obj/machinery/flasher{
id = "permaflash2";
- pixel_x = 28;
- pixel_y = 0
+ pixel_x = 28
},
/turf/simulated/floor/plasteel{
dir = 5;
@@ -12422,7 +11676,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
@@ -12453,13 +11706,11 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/hologram/holopad,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -12471,8 +11722,7 @@
dir = 8
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/structure/cable{
d1 = 1;
@@ -12505,12 +11755,10 @@
pixel_x = 24
},
/obj/machinery/light/small{
- dir = 4;
- pixel_y = 0
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
@@ -12523,12 +11771,10 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -12543,26 +11789,21 @@
tag = ""
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "cult"
},
/area/lawoffice)
"azB" = (
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/obj/structure/cable{
d2 = 4;
icon_state = "0-4"
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "cult"
},
/area/lawoffice)
"azC" = (
@@ -12572,9 +11813,7 @@
icon_state = "2-8"
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "cult"
},
/area/lawoffice)
"azD" = (
@@ -12608,17 +11847,14 @@
/area/magistrateoffice)
"azG" = (
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/sign/poster/official/random{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -12630,7 +11866,6 @@
id = "brig_courtroom";
name = "Brig Courtroom Shutter Control";
pixel_x = 25;
- pixel_y = 0;
req_access_txt = "2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -12672,7 +11907,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -12704,9 +11938,7 @@
name = "Cell 2 Locker"
},
/obj/machinery/camera{
- c_tag = "Brig Cell 2";
- dir = 2;
- network = list("SS13")
+ c_tag = "Brig Cell 2"
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -12715,16 +11947,13 @@
/area/security/prison/cell_block/A)
"azO" = (
/obj/machinery/camera{
- c_tag = "Brig Cell 4";
- dir = 2;
- network = list("SS13")
+ c_tag = "Brig Cell 4"
},
/obj/structure/closet/secure_closet/brig{
id = "Cell 4";
name = "Cell 4 Locker"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "redcorner"
},
/area/security/prison/cell_block/A)
@@ -12741,14 +11970,12 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -12812,9 +12039,7 @@
name = "Cell 5 Locker"
},
/obj/machinery/camera{
- c_tag = "Brig Cell 5";
- dir = 2;
- network = list("SS13")
+ c_tag = "Brig Cell 5"
},
/obj/effect/decal/cleanable/cobweb2,
/turf/simulated/floor/plasteel,
@@ -12822,8 +12047,7 @@
"azX" = (
/obj/machinery/hologram/holopad,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -12838,14 +12062,12 @@
req_access_txt = "2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
@@ -12923,9 +12145,7 @@
/area/security/permabrig)
"aAo" = (
/obj/machinery/shower{
- dir = 4;
- icon_state = "shower";
- tag = "icon-shower (EAST)"
+ dir = 4
},
/obj/structure/curtain/open/shower,
/turf/simulated/floor/plasteel{
@@ -12964,7 +12184,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/door/poddoor{
@@ -13001,7 +12220,6 @@
/obj/item/clothing/glasses/sunglasses/blindfold,
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/turf/simulated/floor/plasteel{
@@ -13064,9 +12282,7 @@
"aAD" = (
/obj/structure/closet/lawcloset,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "cult"
},
/area/lawoffice)
"aAE" = (
@@ -13079,29 +12295,24 @@
pixel_y = -5
},
/obj/item/storage/briefcase{
- pixel_x = 3;
- pixel_y = 0
+ pixel_x = 3
},
/obj/item/storage/secure/briefcase{
pixel_x = 5;
pixel_y = -5
},
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/obj/machinery/light_switch{
- pixel_x = -25;
- pixel_y = 0
+ pixel_x = -25
},
/obj/machinery/firealarm{
dir = 1;
pixel_y = -24
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "cult"
},
/area/lawoffice)
"aAF" = (
@@ -13115,9 +12326,7 @@
name = "Internal Affairs Agent"
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "cult"
},
/area/lawoffice)
"aAH" = (
@@ -13127,9 +12336,7 @@
icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "cult"
},
/area/lawoffice)
"aAI" = (
@@ -13137,14 +12344,11 @@
/obj/item/pen,
/obj/machinery/alarm{
dir = 8;
- pixel_x = 25;
- pixel_y = 0
+ pixel_x = 25
},
/obj/item/paper_bin/nanotrasen,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "cult"
},
/area/lawoffice)
"aAJ" = (
@@ -13156,9 +12360,7 @@
/area/maintenance/fsmaint)
"aAK" = (
/obj/machinery/atmospherics/binary/valve/open{
- dir = 4;
- icon_state = "map_valve1";
- tag = "icon-map_valve1 (EAST)"
+ dir = 4
},
/turf/simulated/floor/plating,
/area/maintenance/fsmaint)
@@ -13179,24 +12381,19 @@
},
/obj/machinery/camera{
c_tag = "Magistrate's Office";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/turf/simulated/floor/carpet,
/area/magistrateoffice)
"aAN" = (
/obj/structure/table/reinforced,
-/obj/item/taperecorder{
- pixel_y = 0
- },
+/obj/item/taperecorder,
/obj/item/megaphone,
/obj/item/radio/intercom/department/security{
pixel_x = 28;
pixel_y = -7
},
/obj/item/radio/intercom{
- frequency = 1459;
- name = "station intercom (General)";
pixel_x = 28;
pixel_y = 5
},
@@ -13266,12 +12463,10 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -13304,18 +12499,15 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -13334,12 +12526,10 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10;
- initialize_directions = 10;
- level = 1
+ initialize_directions = 10
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
@@ -13361,12 +12551,10 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -13379,7 +12567,6 @@
opacity = 0
},
/obj/machinery/door/window/brigdoor{
- dir = 4;
id = "Cell 5";
name = "Cell 5";
req_access_txt = "2"
@@ -13387,8 +12574,6 @@
/obj/machinery/door/firedoor,
/obj/item/radio/intercom{
dir = 0;
- name = "station intercom (General)";
- pixel_x = 0;
pixel_y = -28
},
/turf/simulated/floor/plasteel{
@@ -13409,17 +12594,13 @@
/area/maintenance/abandonedbar)
"aBd" = (
/obj/structure/chair/wood/wings{
- dir = 4;
- icon_state = "wooden_chair_wings";
- tag = "icon-wooden_chair_wings (EAST)"
+ dir = 4
},
/turf/simulated/floor/plating,
/area/maintenance/abandonedbar)
"aBe" = (
/obj/structure/chair/wood/wings{
- dir = 8;
- icon_state = "wooden_chair_wings";
- tag = "icon-wooden_chair_wings (WEST)"
+ dir = 8
},
/turf/simulated/floor/wood{
broken = 1;
@@ -13428,9 +12609,7 @@
/area/maintenance/abandonedbar)
"aBf" = (
/obj/structure/chair/wood/wings{
- dir = 4;
- icon_state = "wooden_chair_wings";
- tag = "icon-wooden_chair_wings (EAST)"
+ dir = 4
},
/turf/simulated/floor/wood,
/area/maintenance/abandonedbar)
@@ -13443,9 +12622,7 @@
/area/maintenance/abandonedbar)
"aBi" = (
/obj/structure/table/reinforced,
-/obj/item/taperecorder{
- pixel_y = 0
- },
+/obj/item/taperecorder,
/obj/item/flashlight/lamp,
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -13471,8 +12648,7 @@
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -13486,7 +12662,6 @@
},
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -13501,8 +12676,7 @@
/area/maintenance/fsmaint)
"aBr" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/turf/simulated/floor/plating,
/area/maintenance/fsmaint)
@@ -13511,16 +12685,14 @@
/area/security/interrogation)
"aBt" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plating,
/area/maintenance/fsmaint)
"aBu" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plating,
/area/maintenance/fsmaint)
@@ -13541,7 +12713,6 @@
master_tag = "eva_airlock";
name = "exterior access button";
pixel_x = 25;
- pixel_y = 0;
req_access_txt = "13"
},
/obj/structure/lattice/catwalk,
@@ -13567,7 +12738,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plating,
@@ -13595,13 +12765,11 @@
id_tag = "solar_tool_pump"
},
/obj/machinery/airlock_sensor{
- frequency = 1379;
id_tag = "solar_tool_sensor";
pixel_x = 25;
pixel_y = 12
},
/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
- frequency = 1379;
id_tag = "solar_tool_airlock";
pixel_x = 25;
req_access_txt = "13";
@@ -13621,9 +12789,7 @@
"aBH" = (
/obj/item/soap,
/obj/machinery/light/small{
- dir = 4;
- icon_state = "bulb1";
- tag = "icon-bulb1 (EAST)"
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "freezerfloor"
@@ -13665,10 +12831,8 @@
/obj/item/lighter,
/obj/item/storage/fancy/cigarettes/cigpack_robust,
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -13717,7 +12881,6 @@
},
/obj/machinery/status_display{
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/wood{
@@ -13791,9 +12954,7 @@
icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "cult"
},
/area/lawoffice)
"aCd" = (
@@ -13802,13 +12963,10 @@
department = "Magistrate's Office"
},
/obj/structure/sign/poster/official/random{
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "cult"
},
/area/magistrateoffice)
"aCe" = (
@@ -13817,20 +12975,15 @@
req_access_txt = "2"
},
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/obj/machinery/alarm{
dir = 4;
- pixel_x = -25;
- pixel_y = 0
+ pixel_x = -25
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "cult"
},
/area/magistrateoffice)
"aCf" = (
@@ -13843,9 +12996,7 @@
dir = 1
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "cult"
},
/area/magistrateoffice)
"aCh" = (
@@ -13868,7 +13019,6 @@
/obj/effect/spawner/window/reinforced,
/obj/machinery/door/poddoor/shutters{
density = 0;
- dir = 4;
icon_state = "open";
id_tag = "magistrate";
name = "Magistrate Privacy Shutters";
@@ -13879,9 +13029,7 @@
"aCl" = (
/obj/structure/closet/secure_closet/magistrate,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "cult"
},
/area/magistrateoffice)
"aCm" = (
@@ -13891,9 +13039,7 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/carpet,
/area/magistrateoffice)
"aCn" = (
@@ -13914,19 +13060,14 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
- },
-/mob/living/simple_animal/bot/secbot/beepsky{
- name = "Officer Beepsky"
+ initialize_directions = 11
},
+/mob/living/simple_animal/bot/secbot/beepsky,
/turf/simulated/floor/plasteel,
/area/hallway/primary/fore)
"aCp" = (
/obj/machinery/flasher{
id = "Cell 2";
- pass_flags = 0;
- pixel_x = 0;
pixel_y = -26
},
/turf/simulated/floor/plasteel{
@@ -13958,11 +13099,9 @@
/obj/structure/bed,
/obj/machinery/flasher{
id = "Cell 4";
- pixel_x = 0;
pixel_y = -28
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "redcorner"
},
/area/security/prison/cell_block/A)
@@ -13971,13 +13110,11 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
@@ -13991,7 +13128,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
@@ -14014,7 +13150,6 @@
/obj/effect/decal/cleanable/dirt,
/obj/machinery/flasher{
id = "Cell 5";
- pixel_x = 0;
pixel_y = -28
},
/turf/simulated/floor/plasteel{
@@ -14101,7 +13236,6 @@
dir = 1
},
/obj/structure/sign/poster/official/random{
- pixel_x = 0;
pixel_y = -32
},
/turf/simulated/floor/plasteel{
@@ -14112,8 +13246,7 @@
/obj/effect/decal/warning_stripes/west,
/obj/machinery/light/small,
/obj/machinery/light_switch{
- pixel_x = -25;
- pixel_y = 0
+ pixel_x = -25
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -14141,14 +13274,12 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/hallway/primary/fore)
@@ -14249,8 +13380,7 @@
"aCZ" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -14261,8 +13391,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -14277,13 +13406,11 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/obj/machinery/door_control{
id = "brig_courtroom";
name = "Brig Courtroom Shutter Control";
- pixel_x = 0;
pixel_y = 25;
req_access_txt = "2"
},
@@ -14348,16 +13475,12 @@
dir = 1
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "cult"
},
/area/magistrateoffice)
"aDi" = (
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "cult"
},
/area/magistrateoffice)
"aDj" = (
@@ -14377,7 +13500,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/structure/cable{
@@ -14394,8 +13516,7 @@
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/obj/structure/cable{
d2 = 4;
@@ -14412,18 +13533,15 @@
dir = 4
},
/obj/machinery/light_switch{
- pixel_x = 25;
- pixel_y = 0
+ pixel_x = 25
},
/obj/machinery/camera{
c_tag = "Brig Cell Block A South";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "rampbottom";
- tag = "icon-stage_stairs"
+ icon_state = "rampbottom"
},
/area/security/prison/cell_block/A)
"aDo" = (
@@ -14431,20 +13549,17 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "rampbottom";
- tag = "icon-stage_stairs"
+ icon_state = "rampbottom"
},
/area/security/prison/cell_block/A)
"aDp" = (
@@ -14487,8 +13602,7 @@
"aDu" = (
/obj/machinery/power/solar_control{
id = "auxsolareast";
- name = "Fore Port Solar Control";
- track = 0
+ name = "Fore Port Solar Control"
},
/obj/structure/cable{
d2 = 4;
@@ -14508,8 +13622,7 @@
icon_state = "space";
layer = 4;
name = "EXTERNAL AIRLOCK";
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/machinery/atmospherics/unary/portables_connector{
dir = 1
@@ -14579,16 +13692,13 @@
"aDE" = (
/obj/item/seeds/ambrosia,
/obj/machinery/light/small{
- dir = 4;
- icon_state = "bulb1";
- tag = "icon-bulb1 (EAST)"
+ dir = 4
},
/obj/structure/toilet{
dir = 4
},
/obj/machinery/newscaster{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/turf/simulated/floor/plasteel{
icon_state = "freezerfloor"
@@ -14606,9 +13716,6 @@
/area/maintenance/fpmaint)
"aDH" = (
/obj/item/radio/intercom{
- frequency = 1459;
- name = "station intercom (General)";
- pixel_x = 0;
pixel_y = -28
},
/turf/simulated/floor/plasteel{
@@ -14628,13 +13735,11 @@
name = "Brig Courtroom Shutters"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkred"
},
/area/security/permabrig)
"aDJ" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkred"
},
/area/security/permabrig)
@@ -14680,8 +13785,7 @@
"aDQ" = (
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "ramptop";
- tag = "icon-stage_stairs"
+ icon_state = "ramptop"
},
/area/crew_quarters/courtroom)
"aDR" = (
@@ -14691,9 +13795,7 @@
icon_state = "2-4"
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "cult"
},
/area/magistrateoffice)
"aDS" = (
@@ -14702,10 +13804,8 @@
/area/maintenance/auxsolarstarboard)
"aDT" = (
/obj/machinery/airlock_sensor{
- frequency = 1379;
id_tag = "eva_sensor";
- pixel_x = 25;
- pixel_y = 0
+ pixel_x = 25
},
/obj/machinery/atmospherics/pipe/simple/hidden{
dir = 10;
@@ -14721,9 +13821,7 @@
tag = ""
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "cult"
},
/area/magistrateoffice)
"aDV" = (
@@ -14787,9 +13885,7 @@
"aEg" = (
/obj/structure/filingcabinet,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "cult"
},
/area/magistrateoffice)
"aEh" = (
@@ -14797,7 +13893,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/hologram/holopad,
@@ -14806,10 +13901,7 @@
/turf/simulated/floor/plasteel,
/area/hallway/primary/fore)
"aEi" = (
-/obj/machinery/vending/cigarette{
- pixel_x = 0;
- pixel_y = 0
- },
+/obj/machinery/vending/cigarette,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "darkred"
@@ -14860,7 +13952,6 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/obj/structure/cable{
@@ -14875,7 +13966,6 @@
},
/obj/item/radio/intercom{
dir = 8;
- name = "station intercom (General)";
pixel_x = 28
},
/turf/simulated/floor/carpet,
@@ -14886,8 +13976,7 @@
icon_state = "pipe-c"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -14898,18 +13987,15 @@
icon_state = "2-8"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkredcorners"
},
/area/security/prison/cell_block/A)
"aEr" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/structure/cable{
d1 = 1;
@@ -14928,8 +14014,7 @@
/area/security/prison/cell_block/A)
"aEs" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -14953,8 +14038,7 @@
opacity = 0
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -14966,8 +14050,7 @@
/area/maintenance/fsmaint)
"aEu" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10
@@ -14980,8 +14063,7 @@
/area/maintenance/fsmaint)
"aEv" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- level = 1
+ dir = 9
},
/turf/simulated/floor/plating,
/area/maintenance/fsmaint)
@@ -15131,18 +14213,15 @@
tag = ""
},
/obj/machinery/airlock_sensor{
- frequency = 1379;
id_tag = "solar_chapel_sensor";
pixel_x = 25;
pixel_y = 12
},
/obj/machinery/atmospherics/unary/vent_pump/high_volume{
- dir = 2;
frequency = 1379;
id_tag = "solar_chapel_pump"
},
/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
- frequency = 1379;
id_tag = "solar_chapel_airlock";
pixel_x = 25;
req_access_txt = "13";
@@ -15185,7 +14264,6 @@
"aEW" = (
/obj/item/stack/rods,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "escape"
},
/area/maintenance/abandonedbar)
@@ -15235,24 +14313,20 @@
/area/maintenance/abandonedbar)
"aFh" = (
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "rampbottom";
- tag = "icon-stage_stairs"
+ icon_state = "rampbottom"
},
/area/crew_quarters/courtroom)
"aFj" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "rampbottom";
- tag = "icon-stage_stairs"
+ icon_state = "rampbottom"
},
/area/crew_quarters/courtroom)
"aFl" = (
@@ -15263,8 +14337,7 @@
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "rampbottom";
- tag = "icon-stage_stairs"
+ icon_state = "rampbottom"
},
/area/crew_quarters/courtroom)
"aFm" = (
@@ -15272,15 +14345,12 @@
/obj/item/gavelblock,
/obj/item/gavelhammer,
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
/obj/structure/cable,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "cult"
},
/area/magistrateoffice)
"aFn" = (
@@ -15290,8 +14360,7 @@
/area/security/interrogation)
"aFo" = (
/obj/machinery/light_switch{
- pixel_x = -25;
- pixel_y = 0
+ pixel_x = -25
},
/obj/item/twohanded/required/kirbyplants,
/obj/machinery/firealarm{
@@ -15299,9 +14368,7 @@
pixel_y = -24
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "cult"
},
/area/magistrateoffice)
"aFp" = (
@@ -15312,13 +14379,10 @@
},
/obj/item/pen/multi,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
+ dir = 5
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "cult"
},
/area/magistrateoffice)
"aFq" = (
@@ -15331,9 +14395,7 @@
pixel_y = 7
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "cult"
},
/area/magistrateoffice)
"aFr" = (
@@ -15351,9 +14413,7 @@
icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "cult"
},
/area/magistrateoffice)
"aFs" = (
@@ -15361,9 +14421,7 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "cult"
},
/area/magistrateoffice)
"aFt" = (
@@ -15372,16 +14430,13 @@
dir = 8
},
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/machinery/newscaster{
pixel_y = -32
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "cult"
},
/area/magistrateoffice)
"aFu" = (
@@ -15389,18 +14444,14 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "barber"
},
/area/civilian/barber)
"aFv" = (
/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
- frequency = 1379;
id_tag = "eva_airlock";
name = "EVA Airlock Console";
pixel_x = 25;
- pixel_y = 0;
- req_access_txt = "0";
req_one_access_txt = "1;5;11;18;24";
tag_airpump = "eva_pump";
tag_chamber_sensor = "eva_sensor";
@@ -15422,7 +14473,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -15594,9 +14644,7 @@
d2 = 8;
icon_state = "0-8"
},
-/obj/machinery/power/smes{
- charge = 0
- },
+/obj/machinery/power/smes,
/turf/simulated/floor/plating,
/area/maintenance/auxsolarport)
"aFS" = (
@@ -15618,7 +14666,7 @@
/area/maintenance/auxsolarport)
"aFU" = (
/obj/structure/table,
-/obj/item/toy/figure/detective,
+/obj/item/toy/figure/crew/detective,
/obj/machinery/light/small{
dir = 8
},
@@ -15727,8 +14775,7 @@
"aGl" = (
/obj/structure/chair/stool,
/turf/simulated/floor/wood{
- icon_state = "wood-broken";
- tag = "icon-wood-broken"
+ icon_state = "wood-broken"
},
/area/maintenance/fpmaint)
"aGm" = (
@@ -15746,23 +14793,19 @@
"aGp" = (
/obj/machinery/vending/coffee/free,
/turf/simulated/floor/wood{
- icon_state = "wood-broken6";
- tag = "icon-wood-broken6"
+ icon_state = "wood-broken6"
},
/area/maintenance/fpmaint)
"aGq" = (
/obj/structure/chair,
/obj/structure/sign/poster/official/random{
- pixel_x = 0;
pixel_y = 32
},
/obj/machinery/light/small{
dir = 1
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "redfull"
},
/area/crew_quarters/courtroom)
"aGr" = (
@@ -15775,8 +14818,7 @@
/area/crew_quarters/courtroom)
"aGs" = (
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -15797,9 +14839,7 @@
/area/crew_quarters/courtroom)
"aGw" = (
/obj/structure/disposalpipe/junction{
- dir = 1;
- icon_state = "pipe-j1";
- tag = "icon-pipe-j1 (EAST)"
+ dir = 1
},
/turf/simulated/floor/plasteel,
/area/hallway/primary/fore)
@@ -15846,9 +14886,7 @@
tag = ""
},
/obj/machinery/camera{
- c_tag = "Brig Detective's Office";
- dir = 2;
- network = list("SS13")
+ c_tag = "Brig Detective's Office"
},
/turf/simulated/floor/plasteel{
icon_state = "grimy"
@@ -15887,9 +14925,7 @@
"aGE" = (
/obj/machinery/computer/med_data,
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/plasteel{
@@ -15906,8 +14942,7 @@
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -15920,9 +14955,7 @@
/area/maintenance/fsmaint)
"aGH" = (
/obj/machinery/light/small{
- dir = 4;
- icon_state = "bulb1";
- tag = "icon-bulb1 (EAST)"
+ dir = 4
},
/turf/simulated/floor/plating,
/area/maintenance/fsmaint)
@@ -15933,7 +14966,6 @@
},
/obj/item/razor,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "barber"
},
/area/civilian/barber)
@@ -15941,16 +14973,13 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/obj/structure/cable{
d2 = 2;
- icon_state = "0-2";
- pixel_y = 0
+ icon_state = "0-2"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "barber"
},
/area/civilian/barber)
@@ -15966,16 +14995,12 @@
},
/obj/machinery/status_display{
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/obj/machinery/camera{
- c_tag = "Barber Shop";
- dir = 2;
- network = list("SS13")
+ c_tag = "Barber Shop"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "barber"
},
/area/civilian/barber)
@@ -15983,11 +15008,9 @@
/obj/machinery/dye_generator,
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "barber"
},
/area/civilian/barber)
@@ -16003,12 +15026,9 @@
dir = 4
},
/obj/machinery/camera{
- c_tag = "Arcade";
- dir = 2;
- network = list("SS13")
+ c_tag = "Arcade"
},
/obj/machinery/firealarm{
- dir = 2;
pixel_y = 24
},
/turf/simulated/floor/carpet/arcade,
@@ -16048,8 +15068,7 @@
req_access_txt = "13"
},
/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 5;
- icon_state = "intact"
+ dir = 5
},
/turf/simulated/floor/plating,
/area/maintenance/auxsolarstarboard)
@@ -16059,8 +15078,7 @@
"aGU" = (
/obj/machinery/power/solar_control{
id = "auxsolareast";
- name = "Fore Starboard Solar Control";
- track = 0
+ name = "Fore Starboard Solar Control"
},
/obj/structure/cable{
d2 = 4;
@@ -16071,7 +15089,6 @@
icon_state = "space";
layer = 4;
name = "EXTERNAL AIRLOCK";
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/plating,
@@ -16113,7 +15130,6 @@
},
/obj/machinery/status_display{
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/carpet/arcade,
@@ -16135,9 +15151,7 @@
"aHd" = (
/obj/item/toy/crayon/white,
/obj/machinery/light/small{
- dir = 8;
- icon_state = "bulb1";
- tag = "icon-bulb1 (WEST)"
+ dir = 8
},
/turf/simulated/floor/plating,
/area/maintenance/fsmaint2)
@@ -16157,15 +15171,13 @@
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'HIGH VOLTAGE'";
icon_state = "shock";
- name = "HIGH VOLTAGE";
- pixel_y = 0
+ name = "HIGH VOLTAGE"
},
/turf/simulated/wall/r_wall,
/area/maintenance/fpmaint2)
"aHh" = (
/obj/machinery/door/airlock/engineering{
icon_state = "door_closed";
- locked = 0;
name = "Fore Port Solar Access";
req_access_txt = "10"
},
@@ -16198,8 +15210,7 @@
"aHm" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/wood{
- icon_state = "wood-broken7";
- tag = "icon-wood-broken7"
+ icon_state = "wood-broken7"
},
/area/maintenance/fpmaint2)
"aHn" = (
@@ -16223,7 +15234,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -16271,10 +15281,7 @@
/obj/structure/table/reinforced,
/obj/item/reagent_containers/food/drinks/drinkingglass,
/obj/item/radio/intercom{
- frequency = 1459;
- name = "station intercom (General)";
- pixel_x = -28;
- pixel_y = 0
+ pixel_x = -28
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -16283,8 +15290,7 @@
/area/crew_quarters/courtroom)
"aHy" = (
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/obj/structure/window/reinforced,
/turf/simulated/floor/plasteel{
@@ -16300,7 +15306,6 @@
/obj/effect/spawner/window/reinforced,
/obj/machinery/door/poddoor/shutters{
density = 0;
- dir = 4;
icon_state = "open";
id_tag = "courtroomshutters";
layer = 3.21;
@@ -16318,7 +15323,6 @@
in_use = 1
},
/obj/machinery/firealarm{
- dir = 2;
pixel_y = 24
},
/turf/simulated/floor/plasteel{
@@ -16404,7 +15408,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/effect/decal/cleanable/dirt,
@@ -16477,14 +15480,12 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "barber"
},
/area/civilian/barber)
"aHZ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -16494,16 +15495,13 @@
},
/area/security/detectives_office)
"aIa" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/carpet/arcade,
/area/crew_quarters/arcade)
"aIb" = (
/obj/structure/chair/stool,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -16517,8 +15515,7 @@
/area/clownoffice)
"aId" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4
@@ -16550,8 +15547,7 @@
security_level = 1
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -16575,7 +15571,6 @@
pixel_x = -32
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "barber"
},
/area/civilian/barber)
@@ -16586,11 +15581,9 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "barber"
},
/area/civilian/barber)
@@ -16620,7 +15613,6 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "barber"
},
/area/civilian/barber)
@@ -16637,7 +15629,6 @@
},
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/turf/simulated/floor/carpet/arcade,
@@ -16651,18 +15642,15 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/hallway/primary/fore)
@@ -16716,8 +15704,7 @@
/area/maintenance/fpmaint2)
"aIy" = (
/turf/simulated/floor/wood{
- icon_state = "wood-broken7";
- tag = "icon-wood-broken7"
+ icon_state = "wood-broken7"
},
/area/maintenance/fpmaint2)
"aIz" = (
@@ -16760,16 +15747,13 @@
"aIC" = (
/obj/machinery/camera{
c_tag = "Fore Starboard Solars";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/obj/structure/cable{
d2 = 8;
icon_state = "0-8"
},
-/obj/machinery/power/smes{
- charge = 0
- },
+/obj/machinery/power/smes,
/turf/simulated/floor/plating,
/area/maintenance/auxsolarstarboard)
"aID" = (
@@ -16798,8 +15782,7 @@
/area/maintenance/fpmaint2)
"aIH" = (
/turf/simulated/floor/wood{
- icon_state = "wood-broken3";
- tag = "icon-wood-broken3"
+ icon_state = "wood-broken3"
},
/area/maintenance/fpmaint2)
"aII" = (
@@ -16818,8 +15801,7 @@
/area/maintenance/fpmaint2)
"aIL" = (
/turf/simulated/floor/wood{
- icon_state = "wood-broken6";
- tag = "icon-wood-broken6"
+ icon_state = "wood-broken6"
},
/area/maintenance/fpmaint2)
"aIM" = (
@@ -16829,9 +15811,7 @@
req_access_txt = "74"
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "cult"
},
/area/magistrateoffice)
"aIN" = (
@@ -16850,8 +15830,7 @@
pixel_x = 24
},
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "bluecorner"
@@ -16979,13 +15958,11 @@
id_tag = "arrivals_pump"
},
/obj/machinery/airlock_sensor{
- frequency = 1379;
id_tag = "arrivals_sensor";
pixel_x = 25;
pixel_y = 12
},
/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
- frequency = 1379;
id_tag = "arrivals_airlock";
pixel_x = 25;
req_access_txt = "13";
@@ -17034,7 +16011,6 @@
/obj/item/storage/box/evidence,
/obj/structure/table/wood,
/obj/item/radio/intercom/department/security{
- pixel_x = 0;
pixel_y = -28
},
/obj/structure/cable{
@@ -17066,13 +16042,10 @@
/obj/item/camera{
desc = "A one use - polaroid camera. 30 photos left.";
name = "detectives camera";
- pictures_left = 30;
- pixel_x = 0;
- pixel_y = 0
+ pictures_left = 30
},
/obj/machinery/requests_console{
name = "Detective Requests Console";
- pixel_x = 0;
pixel_y = -30
},
/turf/simulated/floor/plasteel{
@@ -17082,7 +16055,6 @@
"aJn" = (
/obj/machinery/alarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/turf/simulated/floor/plasteel{
@@ -17126,7 +16098,6 @@
dir = 8
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "barber"
},
/area/civilian/barber)
@@ -17135,14 +16106,12 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/effect/landmark/start{
name = "Barber"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "barber"
},
/area/civilian/barber)
@@ -17151,22 +16120,19 @@
dir = 8
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "barber"
},
/area/civilian/barber)
"aJu" = (
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "barber"
},
/area/civilian/barber)
"aJv" = (
/obj/machinery/gameboard,
/obj/structure/sign/poster/contraband/random{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/turf/simulated/floor/carpet/arcade,
/area/crew_quarters/arcade)
@@ -17195,8 +16161,7 @@
"aJA" = (
/obj/structure/closet/lasertag/red,
/obj/structure/sign/poster/official/random{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/turf/simulated/floor/carpet/arcade,
/area/crew_quarters/arcade)
@@ -17221,7 +16186,6 @@
},
/obj/machinery/door/airlock/engineering{
icon_state = "door_closed";
- locked = 0;
name = "Fore Starboard Solar Access";
req_access_txt = "10"
},
@@ -17265,8 +16229,7 @@
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'HIGH VOLTAGE'";
icon_state = "shock";
- name = "HIGH VOLTAGE";
- pixel_y = 0
+ name = "HIGH VOLTAGE"
},
/turf/simulated/wall/r_wall,
/area/maintenance/auxsolarstarboard)
@@ -17336,8 +16299,7 @@
/area/shuttle/pod_2)
"aJW" = (
/turf/simulated/floor/wood{
- icon_state = "wood-broken3";
- tag = "icon-wood-broken3"
+ icon_state = "wood-broken3"
},
/area/maintenance/fpmaint)
"aJX" = (
@@ -17376,7 +16338,6 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/obj/structure/cable{
@@ -17385,16 +16346,6 @@
},
/turf/simulated/floor/plating,
/area/maintenance/fpmaint2)
-"aKe" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0;
- tag = ""
- },
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
"aKf" = (
/obj/item/clothing/under/mafia/sue,
/turf/simulated/floor/plating,
@@ -17404,7 +16355,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/structure/cable{
@@ -17416,8 +16366,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/hallway/primary/fore)
@@ -17432,8 +16381,7 @@
"aKj" = (
/obj/machinery/status_display{
layer = 4;
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/turf/simulated/floor/carpet,
/area/crew_quarters/courtroom)
@@ -17456,8 +16404,7 @@
"aKo" = (
/obj/structure/disposalpipe/junction{
dir = 1;
- icon_state = "pipe-j2";
- tag = "icon-pipe-j2"
+ icon_state = "pipe-j2"
},
/turf/simulated/floor/plasteel,
/area/hallway/primary/fore)
@@ -17475,27 +16422,22 @@
/area/crew_quarters/courtroom)
"aKs" = (
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "cult"
},
/area/lawoffice)
"aKt" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10;
- initialize_directions = 10;
- level = 1
+ initialize_directions = 10
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "rampbottom";
- tag = "icon-stage_stairs"
+ icon_state = "rampbottom"
},
/area/crew_quarters/courtroom)
"aKu" = (
/turf/simulated/floor/plasteel{
- icon_state = "rampbottom";
- tag = "icon-stage_stairs"
+ icon_state = "rampbottom"
},
/area/crew_quarters/courtroom)
"aKv" = (
@@ -17508,16 +16450,13 @@
icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- icon_state = "rampbottom";
- tag = "icon-stage_stairs"
+ icon_state = "rampbottom"
},
/area/crew_quarters/courtroom)
"aKw" = (
/obj/structure/filingcabinet/chestdrawer,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "cult"
},
/area/lawoffice)
"aKx" = (
@@ -17535,15 +16474,12 @@
icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "cult"
},
/area/magistrateoffice)
"aKy" = (
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkred"
},
/area/hallway/primary/fore)
@@ -17551,8 +16487,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -17588,7 +16523,6 @@
"aKD" = (
/obj/structure/filingcabinet/chestdrawer,
/obj/machinery/ai_status_display{
- pixel_x = 0;
pixel_y = -32
},
/turf/simulated/floor/plasteel{
@@ -17603,7 +16537,6 @@
"aKF" = (
/obj/structure/table/reinforced,
/obj/item/paper_bin{
- pixel_x = 0;
pixel_y = 5
},
/obj/item/pen,
@@ -17611,7 +16544,6 @@
pixel_x = -32
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "barber"
},
/area/civilian/barber)
@@ -17624,18 +16556,15 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/machinery/hologram/holopad,
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "barber"
},
/area/civilian/barber)
@@ -17643,8 +16572,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -17699,8 +16627,6 @@
dir = 4
},
/obj/item/radio/intercom{
- frequency = 1459;
- name = "station intercom (General)";
pixel_x = 28
},
/turf/simulated/floor/carpet/arcade,
@@ -17714,8 +16640,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/camera{
c_tag = "Clown's Office";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/crew_quarters/dorms)
@@ -17747,7 +16672,6 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/obj/structure/cable{
@@ -17792,14 +16716,11 @@
/area/maintenance/fsmaint2)
"aLb" = (
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/structure/chair/comfy/shuttle{
dir = 1
@@ -17816,14 +16737,11 @@
/area/hallway/secondary/entry)
"aLf" = (
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/structure/chair/comfy/shuttle{
dir = 1
@@ -17912,7 +16830,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plating,
@@ -17923,8 +16840,7 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/wood{
- icon_state = "wood-broken3";
- tag = "icon-wood-broken3"
+ icon_state = "wood-broken3"
},
/area/maintenance/fpmaint2)
"aLo" = (
@@ -17944,8 +16860,7 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10;
- initialize_directions = 10;
- level = 1
+ initialize_directions = 10
},
/obj/machinery/atmospherics/pipe/simple/visible/purple{
dir = 9
@@ -17993,7 +16908,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/cable{
@@ -18009,7 +16923,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/effect/decal/cleanable/dirt,
@@ -18021,7 +16934,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/effect/decal/cleanable/dirt,
@@ -18131,8 +17043,7 @@
/area/maintenance/fpmaint)
"aLL" = (
/turf/simulated/floor/wood{
- icon_state = "wood-broken7";
- tag = "icon-wood-broken7"
+ icon_state = "wood-broken7"
},
/area/maintenance/fpmaint)
"aLM" = (
@@ -18142,17 +17053,14 @@
/area/maintenance/fpmaint)
"aLN" = (
/obj/structure/sign/poster/official/random{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/obj/machinery/camera{
c_tag = "Courtroom ";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/turf/simulated/floor/carpet,
/area/crew_quarters/courtroom)
@@ -18173,7 +17081,6 @@
id = "courtroomshutters";
name = "Brig Courtroom Shutter Control";
pixel_x = 25;
- pixel_y = 0;
req_one_access_txt = "74;3"
},
/turf/simulated/floor/carpet,
@@ -18184,15 +17091,13 @@
/area/crew_quarters/courtroom)
"aLS" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/turf/simulated/floor/carpet,
/area/crew_quarters/courtroom)
"aLT" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -18207,24 +17112,20 @@
dir = 6
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/machinery/camera{
c_tag = "Courtroom Lobby";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "rampbottom";
- tag = "icon-stage_stairs"
+ icon_state = "rampbottom"
},
/area/crew_quarters/courtroom)
"aLV" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -18241,13 +17142,11 @@
/area/crew_quarters/courtroom)
"aLW" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -18271,8 +17170,7 @@
/area/crew_quarters/courtroom)
"aLY" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -18290,8 +17188,7 @@
/area/crew_quarters/courtroom)
"aLZ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -18304,8 +17201,7 @@
"aMa" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -18320,7 +17216,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -18355,17 +17250,14 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10;
- initialize_directions = 10;
- level = 1
+ initialize_directions = 10
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/turf/simulated/floor/plating,
/area/maintenance/electrical)
@@ -18390,7 +17282,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -18443,7 +17334,6 @@
pixel_x = -28
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "barber"
},
/area/civilian/barber)
@@ -18461,7 +17351,6 @@
"aMp" = (
/obj/item/radio/intercom{
dir = 4;
- name = "station intercom (General)";
pixel_x = 28
},
/obj/structure/chair/comfy/shuttle{
@@ -18481,7 +17370,6 @@
"aMt" = (
/obj/item/radio/intercom{
dir = 4;
- name = "station intercom (General)";
pixel_x = 28
},
/obj/structure/chair/comfy/shuttle{
@@ -18503,8 +17391,6 @@
/area/maintenance/fpmaint2)
"aMw" = (
/obj/item/radio/intercom{
- frequency = 1459;
- name = "station intercom (General)";
pixel_x = 28
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -18512,11 +17398,9 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "barber"
},
/area/civilian/barber)
@@ -18540,7 +17424,6 @@
icon_state = "space";
layer = 4;
name = "EXTERNAL AIRLOCK";
- pixel_x = 0;
pixel_y = -32
},
/obj/machinery/atmospherics/unary/portables_connector{
@@ -18558,7 +17441,6 @@
"aMD" = (
/obj/machinery/status_display{
layer = 4;
- pixel_x = 0;
pixel_y = -32
},
/obj/effect/decal/warning_stripes/south,
@@ -18610,8 +17492,7 @@
"aMJ" = (
/obj/machinery/vending/snack,
/obj/machinery/light_switch{
- pixel_x = 25;
- pixel_y = 0
+ pixel_x = 25
},
/turf/simulated/floor/carpet/arcade,
/area/crew_quarters/arcade)
@@ -18632,8 +17513,7 @@
/area/maintenance/fsmaint2)
"aMM" = (
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 5;
- tag = "icon-intact-y (NORTHWEST)"
+ dir = 5
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -18658,9 +17538,7 @@
/obj/item/pen,
/obj/item/paper_bin/nanotrasen,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "cult"
},
/area/lawoffice)
"aMP" = (
@@ -18716,8 +17594,7 @@
/obj/machinery/door/window/southleft,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "rampbottom";
- tag = "icon-stage_stairs"
+ icon_state = "rampbottom"
},
/area/maintenance/fpmaint)
"aMY" = (
@@ -18730,8 +17607,7 @@
/area/maintenance/fpmaint)
"aNa" = (
/obj/machinery/ai_status_display{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/turf/simulated/floor/carpet,
/area/crew_quarters/courtroom)
@@ -18748,9 +17624,7 @@
"aNc" = (
/obj/item/radio/intercom{
dir = 8;
- name = "station intercom (General)";
- pixel_x = 28;
- pixel_y = 0
+ pixel_x = 28
},
/turf/simulated/floor/plasteel{
icon_state = "bluecorner"
@@ -18787,7 +17661,6 @@
icon_state = "space";
layer = 4;
name = "EXTERNAL AIRLOCK";
- pixel_x = 0;
pixel_y = 32
},
/obj/machinery/atmospherics/unary/portables_connector{
@@ -18829,8 +17702,7 @@
/area/maintenance/electrical)
"aNl" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/cable{
d1 = 4;
@@ -18849,7 +17721,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/effect/landmark/burnturf,
@@ -18957,7 +17828,6 @@
icon_state = "space";
layer = 4;
name = "EXTERNAL AIRLOCK";
- pixel_x = 0;
pixel_y = 32
},
/obj/machinery/atmospherics/unary/portables_connector{
@@ -19012,8 +17882,7 @@
/area/maintenance/fpmaint2)
"aNI" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 9
@@ -19022,8 +17891,7 @@
/area/maintenance/fpmaint2)
"aNJ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/obj/structure/cable{
d1 = 4;
@@ -19033,8 +17901,7 @@
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "rampbottom";
- tag = "icon-stage_stairs"
+ icon_state = "rampbottom"
},
/area/crew_quarters/courtroom)
"aNK" = (
@@ -19044,13 +17911,11 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/obj/machinery/camera{
c_tag = "Fore Primary Hallway South";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -19058,19 +17923,15 @@
},
/area/hallway/primary/fore)
"aNL" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/crew_quarters/dorms)
"aNM" = (
/obj/structure/disposalpipe/junction{
dir = 4;
- icon_state = "pipe-j2";
- tag = "icon-pipe-j2 (EAST)"
+ icon_state = "pipe-j2"
},
/turf/simulated/floor/plasteel{
icon_state = "bluecorner"
@@ -19105,7 +17966,6 @@
"aNQ" = (
/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/crew_quarters/dorms)
@@ -19114,7 +17974,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -19132,7 +17991,6 @@
},
/obj/machinery/door/poddoor/shutters{
density = 0;
- dir = 4;
icon_state = "open";
id_tag = "courtroomshutters";
layer = 3.21;
@@ -19144,8 +18002,7 @@
"aNT" = (
/obj/machinery/status_display{
layer = 4;
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/turf/simulated/floor/plasteel{
icon_state = "bluecorner"
@@ -19158,8 +18015,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plating,
/area/maintenance/fsmaint)
@@ -19193,14 +18049,12 @@
"aNX" = (
/obj/machinery/disposal,
/obj/machinery/light_switch{
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/obj/structure/disposalpipe/trunk{
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "barber"
},
/area/civilian/barber)
@@ -19210,15 +18064,13 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "barber"
},
/area/civilian/barber)
@@ -19230,7 +18082,6 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "barber"
},
/area/civilian/barber)
@@ -19243,8 +18094,7 @@
/area/crew_quarters/arcade)
"aOc" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -19254,8 +18104,7 @@
"aOd" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6;
- level = 1
+ dir = 6
},
/obj/structure/cable{
d1 = 1;
@@ -19297,8 +18146,7 @@
"aOh" = (
/obj/effect/spawner/window/reinforced,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plating,
/area/crew_quarters/dorms)
@@ -19335,12 +18183,9 @@
name = "Atmos Blast Door";
opacity = 0
},
-/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- level = 2
- },
+/obj/machinery/atmospherics/pipe/simple/visible/cyan,
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4;
- level = 2
+ dir = 4
},
/turf/simulated/floor/plating,
/area/atmos)
@@ -19398,8 +18243,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/wood,
/area/crew_quarters/courtroom)
@@ -19412,8 +18256,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plating,
/area/maintenance/fpmaint)
@@ -19494,7 +18337,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plating,
@@ -19559,8 +18401,7 @@
req_access_txt = "63"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/cable{
d1 = 4;
@@ -19570,7 +18411,6 @@
},
/obj/machinery/door/poddoor/shutters{
density = 0;
- dir = 4;
icon_state = "open";
id_tag = "courtroomshutters";
layer = 3.21;
@@ -19597,8 +18437,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4;
- level = 2
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/atmos)
@@ -19666,8 +18505,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -19703,12 +18541,10 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "barber"
},
/area/civilian/barber)
@@ -19727,8 +18563,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/carpet/arcade,
/area/crew_quarters/arcade)
@@ -19763,7 +18598,6 @@
"aPk" = (
/obj/structure/chair/stool,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/crew_quarters/dorms)
@@ -19773,7 +18607,6 @@
"aPn" = (
/obj/structure/reagent_dispensers/water_cooler,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/crew_quarters/dorms)
@@ -19813,8 +18646,7 @@
"aPx" = (
/obj/machinery/alarm{
dir = 4;
- pixel_x = -25;
- pixel_y = 0
+ pixel_x = -25
},
/turf/simulated/floor/wood,
/area/crew_quarters/courtroom)
@@ -19846,7 +18678,6 @@
dir = 8
},
/obj/machinery/ai_status_display{
- pixel_x = 0;
pixel_y = -32
},
/turf/simulated/floor/plasteel{
@@ -19876,9 +18707,6 @@
/area/crew_quarters/courtroom)
"aPE" = (
/obj/item/radio/intercom{
- broadcasting = 0;
- listening = 1;
- name = "station intercom (General)";
pixel_y = -28
},
/obj/machinery/light,
@@ -19901,7 +18729,6 @@
},
/obj/machinery/alarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/turf/simulated/floor/plasteel{
@@ -19923,17 +18750,13 @@
id_tag = "sol_pump"
},
/obj/machinery/airlock_sensor{
- frequency = 1379;
id_tag = "sol_sensor";
pixel_x = 12;
pixel_y = -25
},
/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
- frequency = 1379;
id_tag = "sol_airlock";
- pixel_x = 0;
pixel_y = -25;
- req_access_txt = "0";
tag_airpump = "sol_pump";
tag_chamber_sensor = "sol_sensor";
tag_exterior_door = "sol_outer";
@@ -19963,8 +18786,7 @@
name = "JoinLateCryo"
},
/turf/simulated/floor/plasteel{
- icon_state = "whitegreenfull";
- tag = "icon-whitebluefull"
+ icon_state = "whitegreenfull"
},
/area/crew_quarters/sleep)
"aPM" = (
@@ -19988,8 +18810,7 @@
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'HIGH VOLTAGE'";
icon_state = "shock";
- name = "HIGH VOLTAGE";
- pixel_y = 0
+ name = "HIGH VOLTAGE"
},
/turf/simulated/wall,
/area/maintenance/electrical)
@@ -20033,7 +18854,6 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump Engineering";
- pixel_x = 0;
pixel_y = 24;
shock_proof = 1
},
@@ -20041,7 +18861,6 @@
/area/maintenance/electrical)
"aPT" = (
/obj/machinery/alarm{
- frequency = 1439;
pixel_y = 23
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -20124,7 +18943,6 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/obj/structure/cable{
@@ -20132,8 +18950,7 @@
icon_state = "0-2"
},
/turf/simulated/floor/plasteel{
- icon_state = "whitegreenfull";
- tag = "icon-whitebluefull"
+ icon_state = "whitegreenfull"
},
/area/crew_quarters/sleep)
"aQg" = (
@@ -20155,10 +18972,8 @@
/area/maintenance/fpmaint)
"aQk" = (
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/machinery/disposal,
/obj/structure/disposalpipe/trunk{
@@ -20190,9 +19005,6 @@
/area/crew_quarters/dorms)
"aQn" = (
/obj/item/radio/intercom{
- broadcasting = 0;
- listening = 1;
- name = "station intercom (General)";
pixel_y = 28
},
/obj/structure/disposalpipe/junction{
@@ -20209,7 +19021,6 @@
name = "Civilian"
},
/obj/machinery/computer/security/telescreen/entertainment{
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/plasteel{
@@ -20235,9 +19046,7 @@
/area/crew_quarters/dorms)
"aQr" = (
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/obj/machinery/light{
@@ -20260,8 +19069,7 @@
/area/hallway/primary/starboard/west)
"aQt" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 9
@@ -20269,8 +19077,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
@@ -20283,8 +19090,7 @@
dir = 6
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6;
- level = 1
+ dir = 6
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -20294,8 +19100,7 @@
"aQv" = (
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "bluered";
- tag = "icon-siding1 (NORTH)"
+ icon_state = "bluered"
},
/area/crew_quarters/dorms)
"aQw" = (
@@ -20336,8 +19141,7 @@
/obj/item/storage/firstaid/regular,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "bluered";
- tag = "icon-siding1 (NORTH)"
+ icon_state = "bluered"
},
/area/crew_quarters/dorms)
"aQA" = (
@@ -20348,8 +19152,7 @@
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "bluered";
- tag = "icon-siding1 (NORTH)"
+ icon_state = "bluered"
},
/area/crew_quarters/dorms)
"aQB" = (
@@ -20363,8 +19166,7 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "bluered";
- tag = "icon-siding1 (NORTH)"
+ icon_state = "bluered"
},
/area/crew_quarters/dorms)
"aQC" = (
@@ -20385,22 +19187,18 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/hallway/primary/fore)
"aQE" = (
/obj/machinery/vending/wallmed{
name = "Emergency NanoMed";
- pixel_x = 0;
- pixel_y = 28;
- req_access_txt = "0"
+ pixel_y = 28
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -20492,15 +19290,13 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plating,
/area/maintenance/electrical)
"aQS" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "bluecorner"
@@ -20529,7 +19325,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/hologram/holopad,
@@ -20545,12 +19340,10 @@
},
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/turf/simulated/floor/plating,
/area/maintenance/electrical)
@@ -20573,26 +19366,20 @@
/obj/effect/landmark{
name = "JoinLateCryo"
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
- icon_state = "whitegreenfull";
- tag = "icon-whitebluefull"
+ icon_state = "whitegreenfull"
},
/area/crew_quarters/sleep)
"aRa" = (
/obj/item/radio/intercom{
- broadcasting = 0;
- name = "station intercom (General)";
pixel_y = 25
},
/obj/machinery/light{
dir = 1
},
/obj/machinery/camera{
- c_tag = "Arrivals Escape Pods";
- dir = 2
+ c_tag = "Arrivals Escape Pods"
},
/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry)
@@ -20603,18 +19390,15 @@
id_tag = "sol_outer";
locked = 1;
name = "Arrivals External Access";
- req_access = null;
- req_access_txt = "0"
+ req_access = null
},
/obj/machinery/access_button{
command = "cycle_exterior";
frequency = 1379;
- layer = 3.3;
master_tag = "sol_airlock";
name = "exterior access button";
pixel_x = -13;
- pixel_y = -23;
- req_access_txt = "0"
+ pixel_y = -23
},
/turf/simulated/floor/plating,
/area/hallway/secondary/entry)
@@ -20625,13 +19409,11 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plasteel{
- icon_state = "whitegreenfull";
- tag = "icon-whitebluefull"
+ icon_state = "whitegreenfull"
},
/area/crew_quarters/sleep)
"aRd" = (
@@ -20644,7 +19426,6 @@
icon_state = "space";
layer = 4;
name = "EXTERNAL AIRLOCK";
- pixel_x = 0;
pixel_y = -32
},
/obj/effect/decal/warning_stripes/south,
@@ -20652,8 +19433,7 @@
/area/hallway/secondary/entry)
"aRf" = (
/obj/structure/extinguisher_cabinet{
- pixel_x = 27;
- pixel_y = 0
+ pixel_x = 27
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -20713,8 +19493,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -20732,8 +19511,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -20747,8 +19525,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/cable{
d1 = 2;
@@ -20768,8 +19545,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -20789,8 +19565,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plating,
/area/maintenance/fpmaint)
@@ -20801,8 +19576,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -20820,16 +19594,14 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 1
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plating,
/area/maintenance/fpmaint)
@@ -20842,8 +19614,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 1
@@ -20879,8 +19650,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 5
@@ -20899,8 +19669,7 @@
"aRC" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10;
- initialize_directions = 10;
- level = 1
+ initialize_directions = 10
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 10
@@ -20912,12 +19681,10 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/turf/simulated/floor/plating,
/area/maintenance/fsmaint2)
@@ -20928,10 +19695,8 @@
/area/hallway/primary/fore)
"aRF" = (
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -20943,7 +19708,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -20960,7 +19724,6 @@
/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_plating = "plating";
icon_regular_floor = "yellowsiding";
icon_state = "tranquillite"
},
@@ -20970,7 +19733,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -21012,7 +19774,6 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/turf/simulated/floor/carpet,
@@ -21021,16 +19782,12 @@
/obj/structure/table,
/obj/item/storage/box/cups,
/obj/item/radio/intercom{
- frequency = 1459;
- name = "station intercom (General)";
- pixel_x = 0;
pixel_y = -28
},
/turf/simulated/floor/wood,
/area/crew_quarters/courtroom)
"aRN" = (
/obj/machinery/firealarm{
- dir = 2;
pixel_y = 24
},
/obj/structure/chair/comfy/brown{
@@ -21052,7 +19809,6 @@
/area/crew_quarters/courtroom)
"aRQ" = (
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
@@ -21090,8 +19846,7 @@
/area/shuttle/pod_2)
"aRW" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4
@@ -21123,15 +19878,13 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/hallway/primary/fore)
"aSc" = (
/obj/structure/extinguisher_cabinet{
- pixel_x = 27;
- pixel_y = 0
+ pixel_x = 27
},
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 8
@@ -21169,12 +19922,10 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- icon_state = "whitegreenfull";
- tag = "icon-whitebluefull"
+ icon_state = "whitegreenfull"
},
/area/crew_quarters/sleep)
"aSi" = (
@@ -21183,8 +19934,7 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10;
- initialize_directions = 10;
- level = 1
+ initialize_directions = 10
},
/turf/simulated/floor/plating,
/area/maintenance/fsmaint2)
@@ -21218,7 +19968,6 @@
tag = ""
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "caution"
},
/area/crew_quarters/dorms)
@@ -21323,7 +20072,6 @@
tag = ""
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "caution"
},
/area/crew_quarters/dorms)
@@ -21401,8 +20149,7 @@
dir = 5
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/turf/simulated/floor/plating,
/area/maintenance/fpmaint2)
@@ -21434,8 +20181,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plating,
/area/maintenance/fpmaint2)
@@ -21453,7 +20199,6 @@
/area/crew_quarters/dorms)
"aSM" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "caution"
},
/area/crew_quarters/dorms)
@@ -21463,24 +20208,15 @@
icon_state = "bluecorner"
},
/area/hallway/primary/fore)
-"aSO" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/dorms)
"aSP" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plating,
/area/maintenance/fsmaint)
"aSQ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "caution"
},
/area/crew_quarters/dorms)
@@ -21488,11 +20224,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/crew_quarters/dorms)
@@ -21500,8 +20234,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/hallway/primary/fore)
@@ -21544,37 +20277,29 @@
/area/hallway/secondary/entry)
"aSZ" = (
/obj/item/radio/intercom{
- broadcasting = 0;
- listening = 1;
- name = "station intercom (General)";
pixel_y = -28
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/crew_quarters/dorms)
"aTa" = (
/obj/machinery/firealarm{
- dir = 2;
pixel_y = 24
},
/turf/simulated/floor/plasteel,
/area/hallway/primary/central/ne)
"aTb" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/crew_quarters/dorms)
"aTc" = (
/obj/machinery/status_display{
layer = 4;
- pixel_x = 0;
pixel_y = -32
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/crew_quarters/dorms)
@@ -21585,7 +20310,6 @@
pixel_y = -24
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/crew_quarters/dorms)
@@ -21619,9 +20343,7 @@
/turf/simulated/floor/plating,
/area/maintenance/fpmaint)
"aTi" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutralcorner"
@@ -21684,12 +20406,9 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_plating = "plating";
icon_regular_floor = "yellowsiding";
icon_state = "tranquillite"
},
@@ -21705,7 +20424,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/door/airlock/maintenance{
@@ -21772,8 +20490,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
@@ -21810,9 +20527,7 @@
/obj/machinery/cryopod/right,
/obj/machinery/camera{
c_tag = "Cryodorms";
- c_tag_order = 999;
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -21895,16 +20610,14 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (WEST)"
+ icon_state = "whiteblue"
},
/area/medical/reception)
"aTM" = (
/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (EAST)"
+ icon_state = "whiteblue"
},
/area/medical/reception)
"aTN" = (
@@ -21920,8 +20633,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/airlock/medical{
name = "Coroner";
- req_access_txt = "5";
- req_one_access_txt = "0"
+ req_access_txt = "5"
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -21938,8 +20650,7 @@
},
/obj/machinery/door/airlock/medical{
name = "Morgue";
- req_access_txt = "6";
- req_one_access_txt = "0"
+ req_access_txt = "6"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
@@ -21961,9 +20672,7 @@
/area/ai_monitored/storage/eva)
"aTQ" = (
/obj/effect/decal/warning_stripes/east,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -21984,16 +20693,14 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whiteblue"
},
/area/medical/reception)
"aTT" = (
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
dir = 9;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTHWEST)"
+ icon_state = "whiteblue"
},
/area/medical/reception)
"aTU" = (
@@ -22003,8 +20710,7 @@
pixel_y = 32
},
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
/area/medical/reception)
"aTV" = (
@@ -22021,8 +20727,7 @@
name = "Civilian"
},
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
/area/medical/reception)
"aTW" = (
@@ -22030,15 +20735,13 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
/area/medical/reception)
"aTX" = (
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
dir = 6;
- initialize_directions = 6;
- level = 2
+ initialize_directions = 6
},
/turf/simulated/floor/plating,
/area/maintenance/fsmaint2)
@@ -22050,8 +20753,7 @@
pixel_y = 25
},
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
/area/medical/reception)
"aTZ" = (
@@ -22109,9 +20811,7 @@
d2 = 4;
icon_state = "0-4"
},
-/obj/machinery/power/smes{
- charge = 0
- },
+/obj/machinery/power/smes,
/turf/simulated/floor/plating,
/area/maintenance/electrical)
"aUh" = (
@@ -22134,7 +20834,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/wall,
@@ -22144,9 +20843,7 @@
d2 = 8;
icon_state = "0-8"
},
-/obj/machinery/power/smes{
- charge = 0
- },
+/obj/machinery/power/smes,
/turf/simulated/floor/plating,
/area/maintenance/electrical)
"aUk" = (
@@ -22183,13 +20880,11 @@
"aUp" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/hallway/primary/fore)
@@ -22240,18 +20935,6 @@
/area/hallway/secondary/construction{
name = "\improper Garden"
})
-"aUw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "neutralcorner"
- },
-/area/crew_quarters/dorms)
"aUx" = (
/obj/machinery/seed_extractor,
/turf/simulated/floor/plasteel,
@@ -22262,8 +20945,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -22300,8 +20982,7 @@
dir = 9
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/turf/simulated/floor/plating,
/area/maintenance/fpmaint2)
@@ -22382,9 +21063,7 @@
},
/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "cult"
},
/area/chapel/office)
"aUM" = (
@@ -22392,8 +21071,7 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/crew_quarters/dorms)
@@ -22410,14 +21088,12 @@
in_use = 1
},
/obj/machinery/camera{
- c_tag = "Medbay Lobby West";
- network = list("SS13")
+ c_tag = "Medbay Lobby West"
},
/obj/structure/closet/walllocker/emerglocker/north,
/turf/simulated/floor/plasteel{
dir = 9;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTHWEST)"
+ icon_state = "whiteblue"
},
/area/medical/reception)
"aUP" = (
@@ -22427,14 +21103,12 @@
/obj/machinery/vending/wallmed{
name = "Emergency NanoMed";
pixel_x = -5;
- pixel_y = 30;
- req_access_txt = "0"
+ pixel_y = 30
},
/obj/structure/table,
/obj/item/folder/white,
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
/area/medical/reception)
"aUQ" = (
@@ -22443,8 +21117,7 @@
"aUR" = (
/obj/machinery/atmospherics/pipe/manifold/visible/cyan{
dir = 8;
- initialize_directions = 11;
- level = 2
+ initialize_directions = 11
},
/obj/machinery/meter,
/turf/simulated/floor/plating,
@@ -22467,8 +21140,7 @@
/area/maintenance/fsmaint2)
"aUV" = (
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel,
@@ -22515,8 +21187,7 @@
"aVd" = (
/obj/machinery/camera{
c_tag = "Arrivals East";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -22538,12 +21209,10 @@
/obj/machinery/access_button{
command = "cycle_interior";
frequency = 1379;
- layer = 3.3;
master_tag = "sol_airlock";
name = "interior access button";
pixel_x = -25;
- pixel_y = -25;
- req_access_txt = "0"
+ pixel_y = -25
},
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel,
@@ -22573,7 +21242,6 @@
"aVk" = (
/obj/structure/closet/secure_closet/freezer/money,
/obj/machinery/ai_status_display{
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/plasteel{
@@ -22585,7 +21253,6 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/obj/structure/cable{
@@ -22618,15 +21285,12 @@
/area/security/nuke_storage)
"aVn" = (
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/obj/structure/table/reinforced,
/obj/structure/closet/fireaxecabinet{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -22693,8 +21357,7 @@
/area/crew_quarters/dorms)
"aVt" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -22717,8 +21380,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/crew_quarters/dorms)
@@ -22727,16 +21389,13 @@
dir = 9
},
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/machinery/camera{
c_tag = "Dormitory East";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/crew_quarters/dorms)
@@ -22749,8 +21408,7 @@
/obj/structure/closet/walllocker/emerglocker/north,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTHEAST)"
+ icon_state = "whiteblue"
},
/area/medical/reception)
"aVy" = (
@@ -22764,8 +21422,6 @@
desc = "A remote control switch for the medbay foyer.";
id = "imnotmakingyoulubepissoff";
name = "Chemistry Privacy Shutter Control";
- normaldoorcontrol = 0;
- pixel_x = 0;
pixel_y = 26
},
/turf/simulated/floor/plasteel{
@@ -22775,8 +21431,7 @@
/area/medical/chemistry)
"aVz" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -22822,8 +21477,7 @@
/area/crew_quarters/toilet)
"aVD" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -22841,8 +21495,7 @@
/area/maintenance/fpmaint)
"aVE" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -22869,8 +21522,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
},
/obj/structure/cable{
d1 = 4;
@@ -22880,8 +21532,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plating,
/area/maintenance/fpmaint)
@@ -22891,7 +21542,6 @@
/area/crew_quarters/bar)
"aVH" = (
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
@@ -22900,8 +21550,7 @@
icon_state = "0-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -22948,8 +21597,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
},
/obj/structure/cable{
d1 = 4;
@@ -22959,8 +21607,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/structure/cable{
d1 = 2;
@@ -23065,7 +21712,6 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/obj/structure/cable{
@@ -23083,7 +21729,6 @@
dir = 1
},
/obj/machinery/firealarm{
- dir = 2;
pixel_y = 24
},
/turf/simulated/floor/plasteel{
@@ -23101,14 +21746,12 @@
id_tag = "sol_inner";
locked = 1;
name = "Arrivals External Access";
- req_access = null;
- req_access_txt = "0"
+ req_access = null
},
/turf/simulated/floor/plating,
/area/hallway/secondary/entry)
"aWf" = (
/obj/structure/reagent_dispensers/peppertank{
- pixel_x = 0;
pixel_y = 30
},
/obj/machinery/computer/security{
@@ -23148,7 +21791,6 @@
"aWi" = (
/obj/structure/table,
/obj/machinery/firealarm{
- dir = 2;
pixel_y = 24
},
/obj/item/wirecutters,
@@ -23209,8 +21851,6 @@
"aWo" = (
/obj/structure/table,
/obj/item/radio/intercom{
- broadcasting = 0;
- name = "station intercom (General)";
pixel_y = 25
},
/obj/item/assembly/signaler,
@@ -23225,7 +21865,6 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/obj/structure/cable{
@@ -23247,7 +21886,6 @@
/obj/structure/table,
/obj/machinery/status_display{
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/obj/item/storage/toolbox/mechanical,
@@ -23296,25 +21934,6 @@
icon_state = "vault"
},
/area/security/nuke_storage)
-"aWy" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0;
- 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/plating,
-/area/maintenance/fsmaint2)
"aWz" = (
/obj/machinery/cryopod/right,
/obj/machinery/light{
@@ -23341,8 +21960,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plating,
/area/maintenance/fsmaint2)
@@ -23448,7 +22066,6 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/turf/simulated/floor/plasteel,
@@ -23462,8 +22079,7 @@
in_use = 1
},
/obj/machinery/camera{
- c_tag = "Medbay Chemistry North";
- network = list("SS13")
+ c_tag = "Medbay Chemistry North"
},
/obj/structure/extinguisher_cabinet{
pixel_x = -5;
@@ -23492,7 +22108,6 @@
/obj/machinery/chem_master,
/obj/machinery/status_display{
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/plasteel,
@@ -23510,15 +22125,13 @@
/obj/item/reagent_containers/dropper/precision,
/obj/effect/decal/warning_stripes/northwest,
/obj/structure/reagent_dispensers/fueltank/chem{
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/plasteel,
/area/medical/chemistry)
"aWT" = (
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/crew_quarters/dorms)
"aWU" = (
@@ -23588,27 +22201,23 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plating,
/area/maintenance/fsmaint2)
"aXb" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plating,
/area/maintenance/fsmaint2)
"aXc" = (
/obj/machinery/crema_switch{
- pixel_x = 0;
pixel_y = -25
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -23618,9 +22227,7 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "cult"
},
/area/chapel/office)
"aXd" = (
@@ -23635,9 +22242,7 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "cult"
},
/area/maintenance/fsmaint2)
"aXe" = (
@@ -23645,9 +22250,7 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "cult"
},
/area/chapel/office)
"aXf" = (
@@ -23661,16 +22264,13 @@
pixel_y = -24
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "cult"
},
/area/chapel/office)
"aXh" = (
@@ -23681,14 +22281,12 @@
pixel_x = 25
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkblue"
},
/area/chapel/main)
"aXi" = (
/turf/simulated/floor/plasteel{
dir = 4;
- icon_plating = "plating";
icon_regular_floor = "yellowsiding";
icon_state = "tranquillite"
},
@@ -23697,16 +22295,13 @@
/obj/structure/morgue,
/obj/machinery/camera{
c_tag = "Chapel Crematorium";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/obj/effect/landmark{
name = "revenantspawn"
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "cult"
},
/area/chapel/office)
"aXk" = (
@@ -23714,9 +22309,7 @@
pixel_y = 25
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "cult"
},
/area/chapel/office)
"aXl" = (
@@ -23740,9 +22333,7 @@
dir = 8
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "cult"
},
/area/chapel/office)
"aXq" = (
@@ -23815,9 +22406,7 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 6
},
@@ -23884,8 +22473,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel,
/area/hallway/secondary/construction{
@@ -23901,8 +22489,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
@@ -23913,8 +22500,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel,
/area/storage/primary)
@@ -23922,12 +22508,10 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/door/airlock{
- name = "Garden";
- req_access_txt = "0"
+ name = "Garden"
},
/turf/simulated/floor/plating,
/area/hallway/secondary/construction{
@@ -23950,8 +22534,7 @@
"aXO" = (
/obj/machinery/camera{
c_tag = "Vault";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/obj/structure/closet/crate{
name = "Gold Crate"
@@ -23968,8 +22551,6 @@
pixel_y = -2
},
/obj/item/radio/intercom{
- frequency = 1459;
- name = "station intercom (General)";
pixel_x = -28
},
/obj/item/storage/belt/champion,
@@ -24034,7 +22615,6 @@
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_plating = "plating";
icon_regular_floor = "yellowsiding";
icon_state = "tranquillite"
},
@@ -24047,7 +22627,6 @@
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_plating = "plating";
icon_regular_floor = "yellowsiding";
icon_state = "tranquillite"
},
@@ -24106,8 +22685,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -24187,12 +22765,10 @@
/obj/item/scalpel,
/obj/item/autopsy_scanner,
/obj/machinery/light_switch{
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/obj/machinery/status_display{
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/plasteel{
@@ -24238,9 +22814,7 @@
},
/area/security/armoury)
"aYn" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel,
/area/storage/office)
"aYo" = (
@@ -24248,12 +22822,10 @@
department = "Morgue";
departmentType = 5;
name = "Morgue Requests Console";
- pixel_x = 0;
pixel_y = 30
},
/obj/machinery/camera{
- c_tag = "Medbay Coroner";
- network = list("SS13")
+ c_tag = "Medbay Coroner"
},
/obj/machinery/light{
dir = 1;
@@ -24271,8 +22843,7 @@
dir = 5
},
/turf/simulated/floor/plasteel{
- icon_state = "whitegreenfull";
- tag = "icon-whitebluefull"
+ icon_state = "whitegreenfull"
},
/area/crew_quarters/sleep)
"aYq" = (
@@ -24329,8 +22900,7 @@
"aYu" = (
/obj/effect/decal/warning_stripes/west,
/obj/machinery/door/window/southleft{
- name = "EVA Equipment";
- req_access_txt = "0"
+ name = "EVA Equipment"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
@@ -24340,8 +22910,7 @@
"aYv" = (
/obj/machinery/hologram/holopad,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/cable{
d1 = 4;
@@ -24351,15 +22920,13 @@
},
/obj/machinery/light,
/turf/simulated/floor/plasteel{
- icon_state = "whitegreenfull";
- tag = "icon-whitebluefull"
+ icon_state = "whitegreenfull"
},
/area/crew_quarters/sleep)
"aYw" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10;
- initialize_directions = 10;
- level = 1
+ initialize_directions = 10
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 6
@@ -24370,8 +22937,7 @@
icon_state = "2-4"
},
/turf/simulated/floor/plasteel{
- icon_state = "whitegreenfull";
- tag = "icon-whitebluefull"
+ icon_state = "whitegreenfull"
},
/area/crew_quarters/sleep)
"aYx" = (
@@ -24380,16 +22946,13 @@
name = "revenantspawn"
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "cult"
},
/area/chapel/office)
"aYy" = (
/obj/effect/decal/warning_stripes/east,
/obj/machinery/door/window/southright{
- name = "EVA Equipment";
- req_access_txt = "0"
+ name = "EVA Equipment"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
@@ -24398,9 +22961,7 @@
/area/ai_monitored/storage/eva)
"aYz" = (
/obj/machinery/camera{
- c_tag = "Chapel North";
- dir = 2;
- network = list("SS13")
+ c_tag = "Chapel North"
},
/turf/simulated/floor/plasteel{
dir = 5;
@@ -24452,13 +23013,10 @@
/area/chapel/main)
"aYI" = (
/obj/machinery/computer/cryopod{
- density = 0;
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/obj/structure/cable{
d1 = 1;
@@ -24469,8 +23027,7 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "whitegreenfull";
- tag = "icon-whitebluefull"
+ icon_state = "whitegreenfull"
},
/area/crew_quarters/sleep)
"aYJ" = (
@@ -24514,7 +23071,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plating,
@@ -24534,15 +23090,13 @@
/area/escapepodbay)
"aYT" = (
/obj/structure/shuttle/engine/propulsion{
- dir = 4;
- icon_state = "propulsion"
+ dir = 4
},
/turf/simulated/floor/plating/airless,
/area/shuttle/arrival/station)
"aYV" = (
/obj/structure/shuttle/engine/heater{
- dir = 4;
- icon_state = "heater"
+ dir = 4
},
/obj/structure/window/reinforced{
dir = 8
@@ -24554,7 +23108,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_y = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -24567,7 +23120,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_y = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -24619,7 +23171,6 @@
"aZb" = (
/obj/item/radio,
/obj/item/radio/intercom/department/security{
- pixel_x = 0;
pixel_y = -28
},
/obj/machinery/hologram/holopad,
@@ -24631,7 +23182,6 @@
"aZc" = (
/obj/structure/cable,
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
@@ -24644,7 +23194,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/structure/disposalpipe/segment,
@@ -24655,8 +23204,7 @@
"aZe" = (
/obj/structure/table,
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/obj/item/stack/cable_coil{
pixel_x = 2;
@@ -24684,7 +23232,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plasteel,
@@ -24738,7 +23285,6 @@
"aZm" = (
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkblue"
},
/area/chapel/main)
@@ -24889,8 +23435,7 @@
"aZE" = (
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "rampbottom";
- tag = "icon-stage_stairs"
+ icon_state = "rampbottom"
},
/area/crew_quarters/dorms)
"aZF" = (
@@ -24898,11 +23443,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkbluecorners"
},
/area/chapel/main)
@@ -24925,7 +23468,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/crew_quarters/dorms)
@@ -24952,7 +23494,6 @@
/obj/item/toy/crayon/mime,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_plating = "plating";
icon_regular_floor = "yellowsiding";
icon_state = "tranquillite"
},
@@ -24964,7 +23505,6 @@
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_plating = "plating";
icon_regular_floor = "yellowsiding";
icon_state = "tranquillite"
},
@@ -24997,8 +23537,7 @@
/obj/effect/spawner/window/reinforced,
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'.";
- name = "KEEP CLEAR: DOCKING AREA";
- pixel_y = 0
+ name = "KEEP CLEAR: DOCKING AREA"
},
/turf/simulated/floor/plating,
/area/hallway/secondary/entry)
@@ -25026,8 +23565,7 @@
/area/medical/morgue)
"aZU" = (
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/obj/structure/filingcabinet/chestdrawer/autopsy,
/turf/simulated/floor/plasteel{
@@ -25067,7 +23605,6 @@
},
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/turf/simulated/floor/plasteel{
@@ -25086,7 +23623,6 @@
"bab" = (
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/machinery/camera{
@@ -25114,15 +23650,11 @@
/area/hallway/secondary/construction{
name = "\improper Garden"
})
-"baf" = (
-/turf/simulated/floor/plating,
-/area/gateway)
"bag" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -25164,8 +23696,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -25191,9 +23722,7 @@
},
/area/gateway)
"ban" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "darkblue"
@@ -25201,9 +23730,7 @@
/area/gateway)
"bao" = (
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/obj/structure/table/wood,
@@ -25233,8 +23760,7 @@
/obj/effect/decal/warning_stripes/northeastcorner,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -25245,8 +23771,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -25258,8 +23783,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -25282,12 +23806,10 @@
/obj/effect/decal/warning_stripes/north,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -25341,15 +23863,13 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 9
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- level = 1
+ dir = 9
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -25392,15 +23912,12 @@
/area/escapepodbay)
"baH" = (
/obj/machinery/camera{
- c_tag = "Departure Lounge Podbay";
- dir = 2;
- network = list("SS13")
+ c_tag = "Departure Lounge Podbay"
},
/obj/machinery/door_control{
desc = "A remote control-switch for the pod doors.";
id = "escapepodbay";
name = "Pod Door Control";
- pixel_x = 0;
pixel_y = 24;
req_access_txt = "13"
},
@@ -25562,8 +24079,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 1
@@ -25575,13 +24091,11 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/junction{
dir = 4;
- icon_state = "pipe-j2";
- tag = "icon-pipe-j2 (EAST)"
+ icon_state = "pipe-j2"
},
/obj/structure/cable{
d1 = 1;
@@ -25639,13 +24153,11 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (WEST)"
+ icon_state = "whitegreen"
},
/area/crew_quarters/sleep)
"bbh" = (
@@ -25669,9 +24181,7 @@
"bbi" = (
/obj/machinery/vending/cola,
/obj/machinery/camera{
- c_tag = "Dormitories North-West";
- dir = 2;
- network = list("SS13")
+ c_tag = "Dormitories North-West"
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -25715,8 +24225,7 @@
/obj/structure/window/reinforced,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "ramptop";
- tag = "icon-stage_stairs"
+ icon_state = "ramptop"
},
/area/crew_quarters/dorms)
"bbp" = (
@@ -25745,13 +24254,10 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/junction{
- dir = 4;
- icon_state = "pipe-j1";
- tag = "icon-pipe-j1 (EAST)"
+ dir = 4
},
/obj/structure/cable{
d1 = 2;
@@ -25761,8 +24267,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 1
@@ -25780,8 +24285,7 @@
/area/crew_quarters/dorms)
"bbu" = (
/turf/simulated/floor/plasteel{
- icon_state = "rampbottom";
- tag = "icon-stage_stairs"
+ icon_state = "rampbottom"
},
/area/crew_quarters/dorms)
"bbv" = (
@@ -25794,14 +24298,12 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/crew_quarters/dorms)
"bby" = (
/obj/machinery/camera{
- c_tag = "Medbay Morgue";
- network = list("SS13")
+ c_tag = "Medbay Morgue"
},
/obj/machinery/light/small{
dir = 1
@@ -25819,10 +24321,8 @@
},
/obj/structure/disposalpipe/sortjunction{
dir = 4;
- icon_state = "pipe-j1s";
name = "Kitchen";
- sortType = 20;
- tag = "icon-pipe-j1s (EAST)"
+ sortType = 20
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -25840,7 +24340,6 @@
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_plating = "plating";
icon_regular_floor = "yellowsiding";
icon_state = "tranquillite"
},
@@ -25848,12 +24347,10 @@
"bbB" = (
/obj/structure/closet/secure_closet/mime,
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_plating = "plating";
icon_regular_floor = "yellowsiding";
icon_state = "tranquillite"
},
@@ -25894,7 +24391,6 @@
/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_plating = "plating";
icon_regular_floor = "yellowsiding";
icon_state = "tranquillite"
},
@@ -25966,9 +24462,7 @@
"bbL" = (
/obj/effect/decal/warning_stripes/blue/hollow,
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/obj/machinery/suit_storage_unit/standard_unit,
@@ -26007,7 +24501,6 @@
"bbQ" = (
/obj/effect/decal/warning_stripes/blue/hollow,
/obj/machinery/ai_status_display{
- pixel_x = 0;
pixel_y = 32
},
/obj/machinery/suit_storage_unit/standard_unit,
@@ -26019,8 +24512,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -26066,7 +24558,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_y = 0;
tag = ""
},
/obj/structure/cable{
@@ -26082,8 +24573,7 @@
"bbX" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 1
@@ -26151,10 +24641,7 @@
/area/maintenance/fsmaint2)
"bcc" = (
/obj/structure/window/reinforced,
-/obj/machinery/vending/cigarette{
- pixel_x = 0;
- pixel_y = 0
- },
+/obj/machinery/vending/cigarette,
/turf/simulated/floor/wood,
/area/crew_quarters/dorms)
"bcd" = (
@@ -26199,9 +24686,7 @@
"bch" = (
/obj/structure/chair/office/dark,
/obj/machinery/camera{
- c_tag = "Library North";
- dir = 2;
- network = list("SS13")
+ c_tag = "Library North"
},
/turf/simulated/floor/wood,
/area/library)
@@ -26276,9 +24761,7 @@
pixel_x = -24
},
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/plasteel{
@@ -26310,13 +24793,11 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plating,
/area/maintenance/fsmaint2)
@@ -26334,8 +24815,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -26353,9 +24833,7 @@
pixel_y = 25
},
/obj/machinery/camera{
- c_tag = "Chapel Chaplain's Office";
- dir = 2;
- network = list("SS13")
+ c_tag = "Chapel Chaplain's Office"
},
/obj/structure/table/wood,
/obj/item/lighter/zippo/black,
@@ -26387,7 +24865,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/structure/disposalpipe/segment,
@@ -26440,7 +24917,6 @@
},
/obj/machinery/ai_status_display{
pixel_x = -32;
- pixel_y = 0;
step_size = 0
},
/turf/simulated/floor/plasteel{
@@ -26450,8 +24926,7 @@
/area/chapel/main)
"bcG" = (
/obj/machinery/camera{
- c_tag = "Arrivals Lounge";
- dir = 2
+ c_tag = "Arrivals Lounge"
},
/obj/machinery/light{
dir = 1
@@ -26481,14 +24956,9 @@
/area/shuttle/arrival/station)
"bcO" = (
/obj/item/radio/intercom{
- frequency = 1459;
- name = "station intercom (General)";
- pixel_x = 0;
pixel_y = 28
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/carpet/black,
/area/chapel/office)
"bcP" = (
@@ -26505,14 +24975,11 @@
/obj/item/storage/bag/plants/portaseeder,
/obj/item/plant_analyzer,
/obj/machinery/light_switch{
- dir = 2;
name = "light switch ";
pixel_x = -6;
pixel_y = -25
},
/obj/item/radio/intercom{
- frequency = 1459;
- name = "station intercom (General)";
pixel_x = 28
},
/turf/simulated/floor/plasteel{
@@ -26539,15 +25006,12 @@
},
/obj/machinery/door/window/northleft{
dir = 8;
- icon_state = "left";
name = "Kitchen Desk";
req_access_txt = "28"
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/hydroponics)
"bcT" = (
@@ -26578,7 +25042,6 @@
"bcW" = (
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/structure/cable{
@@ -26702,8 +25165,7 @@
opacity = 0
},
/obj/structure/sign/securearea{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/yellow,
@@ -26731,11 +25193,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/ai_status_display{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/crew_quarters/dorms)
@@ -26787,12 +25247,10 @@
},
/obj/machinery/camera{
c_tag = "Mime's Office";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_plating = "plating";
icon_regular_floor = "yellowsiding";
icon_state = "tranquillite"
},
@@ -26801,12 +25259,10 @@
/obj/structure/statue/tranquillite/mime,
/obj/machinery/alarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_plating = "plating";
icon_regular_floor = "yellowsiding";
icon_state = "tranquillite"
},
@@ -26827,17 +25283,18 @@
},
/area/hallway/primary/central/north)
"bdw" = (
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2";
- pixel_y = 1
- },
/obj/item/flag/nt,
-/obj/machinery/power/apc{
+/obj/structure/sign/directions/medical{
+ dir = 4;
+ pixel_y = 25
+ },
+/obj/structure/sign/directions/science{
+ dir = 4;
+ pixel_y = 32
+ },
+/obj/structure/sign/directions/security{
dir = 1;
- name = "north bump";
- pixel_x = 0;
- pixel_y = 24
+ pixel_y = 39
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -26851,8 +25308,7 @@
/obj/item/reagent_containers/glass/bottle/nutrient/ez,
/obj/item/reagent_containers/glass/bottle/nutrient/rh,
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -26864,8 +25320,7 @@
"bdy" = (
/obj/effect/decal/warning_stripes/blue/hollow,
/obj/structure/sign/poster/official/random{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/machinery/light{
dir = 8
@@ -26895,12 +25350,10 @@
"bdB" = (
/obj/effect/decal/warning_stripes/blue/hollow,
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/structure/sign/poster/official/random{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/machinery/suit_storage_unit/standard_unit,
/turf/simulated/floor/plasteel{
@@ -26911,8 +25364,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -26923,9 +25375,7 @@
/area/hallway/primary/central/north)
"bdE" = (
/obj/machinery/light/small{
- dir = 4;
- icon_state = "bulb1";
- tag = "icon-bulb1 (EAST)"
+ dir = 4
},
/obj/structure/rack,
/obj/item/tank/internals/emergency_oxygen,
@@ -26940,8 +25390,7 @@
dir = 8
},
/obj/structure/sign/poster/official/random{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -26972,8 +25421,7 @@
name = "Dormitories"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -26985,8 +25433,6 @@
dir = 1
},
/obj/item/radio/intercom{
- broadcasting = 0;
- name = "station intercom (General)";
pixel_y = 25
},
/obj/structure/closet/chefcloset,
@@ -26999,20 +25445,15 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/turf/simulated/floor/plasteel,
/area/storage/primary)
"bdL" = (
/obj/machinery/door/window/southleft{
- base_state = "left";
- dir = 2;
- icon_state = "left";
name = "Kitchen Delivery";
req_access_txt = "28"
},
@@ -27023,8 +25464,7 @@
/area/crew_quarters/kitchen)
"bdM" = (
/obj/machinery/camera{
- c_tag = "Kitchen Freezer";
- network = list("SS13")
+ c_tag = "Kitchen Freezer"
},
/obj/machinery/chem_master/condimaster{
name = "CondiMaster Neo";
@@ -27039,14 +25479,12 @@
/area/crew_quarters/kitchen)
"bdN" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/crew_quarters/dorms)
@@ -27073,8 +25511,7 @@
opacity = 0
},
/obj/structure/sign/securearea{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/yellow,
@@ -27082,8 +25519,7 @@
/area/bridge)
"bdQ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -27095,7 +25531,6 @@
tag = ""
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/crew_quarters/dorms)
@@ -27120,7 +25555,6 @@
icon_state = "1-4"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/crew_quarters/dorms)
@@ -27129,8 +25563,7 @@
/area/crew_quarters/kitchen)
"bdU" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/structure/cable{
@@ -27147,8 +25580,7 @@
pixel_y = 24
},
/obj/machinery/camera{
- c_tag = "Hydroponics Storage";
- network = list("SS13")
+ c_tag = "Hydroponics Storage"
},
/obj/structure/closet/crate/hydroponics/prespawned,
/turf/simulated/floor/plasteel{
@@ -27166,7 +25598,6 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/turf/simulated/floor/plasteel{
@@ -27225,8 +25656,7 @@
/area/ai_monitored/storage/eva)
"bea" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
},
/obj/structure/cable{
d1 = 4;
@@ -27240,8 +25670,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/structure/cable{
d1 = 2;
@@ -27259,8 +25688,7 @@
/area/hydroponics)
"bec" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -27301,7 +25729,6 @@
icon_state = "1-8"
},
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
@@ -27312,8 +25739,7 @@
/area/ai_monitored/storage/eva)
"bef" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -27385,7 +25811,6 @@
"beq" = (
/obj/machinery/ai_status_display{
pixel_x = -32;
- pixel_y = 0;
step_size = 0
},
/turf/simulated/floor/plasteel{
@@ -27401,7 +25826,6 @@
/area/chapel/office)
"bes" = (
/obj/item/radio/intercom{
- name = "station intercom (General)";
pixel_y = -28
},
/turf/simulated/floor/mineral/titanium/blue,
@@ -27432,8 +25856,7 @@
req_access_txt = "12"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -27475,8 +25898,7 @@
dir = 4
},
/obj/machinery/light_switch{
- pixel_x = 25;
- pixel_y = 0
+ pixel_x = 25
},
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 1
@@ -27614,8 +26036,7 @@
/area/hallway/primary/port)
"beT" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -27639,13 +26060,11 @@
/area/storage/primary)
"beV" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -27657,8 +26076,7 @@
/area/crew_quarters/dorms)
"beW" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -27667,7 +26085,6 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/crew_quarters/dorms)
@@ -27675,7 +26092,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command/glass{
name = "E.V.A.";
- req_access_txt = "0";
req_one_access_txt = "18"
},
/turf/simulated/floor/plasteel{
@@ -27684,8 +26100,7 @@
/area/ai_monitored/storage/eva)
"beY" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -27697,7 +26112,6 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/crew_quarters/dorms)
@@ -27706,11 +26120,9 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/structure/disposalpipe/junction{
dir = 4;
- icon_state = "pipe-j2";
- tag = "icon-pipe-j2 (EAST)"
+ icon_state = "pipe-j2"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/crew_quarters/dorms)
@@ -27722,15 +26134,13 @@
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_plating = "plating";
icon_regular_floor = "yellowsiding";
icon_state = "tranquillite"
},
/area/mimeoffice)
"bfb" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -27739,12 +26149,10 @@
dir = 4
},
/obj/machinery/poolcontroller{
- pixel_x = 0;
pixel_y = -25;
srange = 7
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/crew_quarters/dorms)
@@ -27754,14 +26162,12 @@
/area/hallway/primary/port)
"bfd" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
@@ -27770,7 +26176,6 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/crew_quarters/dorms)
@@ -27805,35 +26210,28 @@
/area/ai_monitored/storage/eva)
"bfi" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/obj/item/radio/intercom{
- broadcasting = 0;
- listening = 1;
- name = "station intercom (General)";
pixel_y = -28
},
/obj/machinery/camera{
c_tag = "Dormitory Center";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/crew_quarters/dorms)
"bfj" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -27846,7 +26244,6 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/crew_quarters/dorms)
@@ -27855,7 +26252,6 @@
department = "Bar";
departmentType = 2;
name = "Bar Requests Console";
- pixel_x = 0;
pixel_y = 30
},
/obj/structure/table/reinforced,
@@ -27896,16 +26292,13 @@
/area/maintenance/fsmaint2)
"bfo" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/obj/structure/disposalpipe/junction{
- dir = 4;
- icon_state = "pipe-j1";
- tag = "icon-pipe-j1 (EAST)"
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/crew_quarters/dorms)
@@ -27914,41 +26307,35 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/structure/disposalpipe/junction{
dir = 4;
- icon_state = "pipe-j2";
- tag = "icon-pipe-j2 (EAST)"
+ icon_state = "pipe-j2"
},
/turf/simulated/floor/plasteel,
/area/crew_quarters/dorms)
"bfq" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/obj/machinery/status_display{
layer = 4;
- pixel_x = 0;
pixel_y = -32
},
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/crew_quarters/dorms)
"bfr" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/structure/cable{
d1 = 2;
@@ -27960,7 +26347,6 @@
icon_state = "pipe-c"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/crew_quarters/dorms)
@@ -27993,8 +26379,7 @@
/area/turret_protected/aisat_interior)
"bfv" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -28009,7 +26394,6 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/crew_quarters/dorms)
@@ -28031,26 +26415,22 @@
/area/maintenance/fsmaint2)
"bfx" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/alarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/crew_quarters/dorms)
"bfy" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -28060,14 +26440,12 @@
pixel_y = -32
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/crew_quarters/dorms)
"bfz" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 9
@@ -28077,7 +26455,6 @@
pixel_y = -24
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/crew_quarters/dorms)
@@ -28120,7 +26497,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
@@ -28138,7 +26514,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/closet/secure_closet/hydroponics,
@@ -28152,10 +26527,8 @@
"bfG" = (
/obj/structure/disposalpipe/sortjunction{
dir = 4;
- icon_state = "pipe-j1s";
name = "Botany";
- sortType = 21;
- tag = "icon-pipe-j1s (EAST)"
+ sortType = 21
},
/obj/structure/cable{
d1 = 4;
@@ -28225,7 +26598,6 @@
pixel_y = 5
},
/obj/item/reagent_containers/spray/plantbgone{
- pixel_x = 0;
pixel_y = 3
},
/obj/item/watertank,
@@ -28313,8 +26685,7 @@
/area/chapel/main)
"bfT" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/turf/simulated/floor/wood,
/area/library)
@@ -28351,8 +26722,7 @@
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/turf/simulated/floor/plasteel{
icon_state = "grimy"
@@ -28416,8 +26786,7 @@
/area/chapel/office)
"bgh" = (
/obj/machinery/camera{
- c_tag = "Port Hallway 2";
- dir = 2
+ c_tag = "Port Hallway 2"
},
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel,
@@ -28469,17 +26838,17 @@
/obj/machinery/light{
dir = 1
},
-/obj/structure/sign/directions/evac{
+/obj/structure/sign/directions/cargo{
dir = 4;
- icon_state = "direction_evac";
- pixel_y = 24;
- tag = "icon-direction_evac (EAST)"
+ pixel_y = 25
},
-/obj/structure/sign/directions/medical{
+/obj/structure/sign/directions/bridge{
dir = 4;
- icon_state = "direction_med";
- pixel_y = 32;
- tag = "icon-direction_med (EAST)"
+ pixel_y = 32
+ },
+/obj/structure/sign/directions/security{
+ dir = 4;
+ pixel_y = 39
},
/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry)
@@ -28487,7 +26856,6 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/obj/structure/cable{
@@ -28498,9 +26866,7 @@
/area/hallway/primary/port)
"bgr" = (
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/plasteel,
@@ -28509,13 +26875,10 @@
/obj/item/twohanded/required/kirbyplants,
/obj/machinery/camera{
c_tag = "Office Supplies";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/plasteel{
@@ -28549,7 +26912,6 @@
"bgw" = (
/obj/item/radio/intercom{
dir = 1;
- name = "station intercom (General)";
pixel_y = 25
},
/obj/structure/cable{
@@ -28589,9 +26951,7 @@
/turf/simulated/floor/plasteel,
/area/hallway/primary/port)
"bgB" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry)
"bgC" = (
@@ -28626,12 +26986,10 @@
/area/hallway/secondary/entry)
"bgH" = (
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/obj/item/radio/intercom{
dir = 0;
- name = "station intercom (General)";
pixel_x = -28
},
/obj/effect/decal/warning_stripes/west,
@@ -28650,7 +27008,6 @@
dir = 1
},
/obj/machinery/firealarm{
- dir = 2;
pixel_y = 24
},
/turf/simulated/floor/plasteel,
@@ -28664,8 +27021,7 @@
},
/obj/machinery/camera{
c_tag = "Gateway";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/obj/machinery/light{
dir = 8
@@ -28718,14 +27074,12 @@
"bgO" = (
/obj/machinery/door/airlock/maintenance{
name = "E.V.A. Maintenance";
- req_access_txt = "0";
req_one_access_txt = "18"
},
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -28757,8 +27111,7 @@
},
/obj/machinery/camera{
c_tag = "Chapel Funeral Processing East";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -28773,18 +27126,13 @@
/area/crew_quarters/mrchangs)
"bgU" = (
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/plasteel,
/area/hallway/primary/central/north)
"bgV" = (
/obj/item/radio/intercom{
- broadcasting = 0;
- listening = 1;
- name = "station intercom (General)";
pixel_y = 25
},
/obj/machinery/door/firedoor,
@@ -28794,12 +27142,6 @@
},
/area/hallway/primary/central/nw)
"bgW" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
/turf/simulated/floor/plasteel{
icon_state = "L11"
},
@@ -28825,8 +27167,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/unary/vent_pump/on,
@@ -28837,7 +27178,6 @@
"bgZ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/crew_quarters/dorms)
@@ -28867,14 +27207,12 @@
dir = 1
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/crew_quarters/dorms)
"bhf" = (
/obj/machinery/vending/cola,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/crew_quarters/dorms)
@@ -28894,8 +27232,7 @@
/obj/structure/statue/bananium/clown,
/obj/machinery/camera{
c_tag = "Clown's Office";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/turf/simulated/floor/wood,
/area/clownoffice)
@@ -28975,8 +27312,7 @@
},
/obj/machinery/camera{
c_tag = "Dormitories Toilets";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 8
@@ -29035,8 +27371,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/wood,
@@ -29062,7 +27397,6 @@
},
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/turf/simulated/floor/plasteel{
@@ -29088,8 +27422,7 @@
"bhD" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
@@ -29105,7 +27438,6 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/secondary/entry)
@@ -29117,8 +27449,7 @@
},
/obj/item/vending_refill/cola,
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "floorgrime"
@@ -29130,8 +27461,7 @@
},
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel{
- icon_state = "rampbottom";
- tag = "icon-stage_stairs"
+ icon_state = "rampbottom"
},
/area/gateway)
"bhH" = (
@@ -29140,10 +27470,8 @@
pixel_y = 4
},
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -29152,26 +27480,22 @@
/area/gateway)
"bhI" = (
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel{
- icon_state = "rampbottom";
- tag = "icon-stage_stairs"
+ icon_state = "rampbottom"
},
/area/gateway)
"bhJ" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel{
- icon_state = "rampbottom";
- tag = "icon-stage_stairs"
+ icon_state = "rampbottom"
},
/area/gateway)
"bhK" = (
@@ -29184,8 +27508,7 @@
dir = 5
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry)
@@ -29241,8 +27564,7 @@
},
/obj/item/radio,
/obj/machinery/ai_status_display{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -29276,7 +27598,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plasteel,
@@ -29318,8 +27639,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
icon_state = "showroomfloor"
@@ -29346,9 +27666,7 @@
dir = 1
},
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = -32
},
/turf/simulated/floor/plasteel{
@@ -29380,12 +27698,9 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
icon_state = "hydrofloor"
},
@@ -29395,7 +27710,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/closet/secure_closet/hydroponics,
@@ -29409,7 +27723,6 @@
"bih" = (
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/obj/machinery/light{
@@ -29419,10 +27732,7 @@
/turf/simulated/floor/wood,
/area/library)
"bii" = (
-/obj/machinery/vending/cigarette{
- pixel_x = 0;
- pixel_y = 0
- },
+/obj/machinery/vending/cigarette,
/turf/simulated/floor/plating,
/area/maintenance/fsmaint2)
"bij" = (
@@ -29438,8 +27748,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -29467,8 +27776,7 @@
icon_state = "pipe-c"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 5
@@ -29500,8 +27808,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/obj/machinery/door/airlock/maintenance{
name = "Chapel Office Maintenance";
@@ -29547,7 +27854,6 @@
/area/hallway/secondary/entry)
"biw" = (
/obj/machinery/newscaster{
- pixel_x = 0;
pixel_y = -30
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -29600,7 +27906,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plasteel,
@@ -29634,8 +27939,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -29659,8 +27963,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -29699,8 +28002,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -29746,12 +28048,10 @@
pixel_y = 4
},
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/structure/extinguisher_cabinet{
- pixel_x = 27;
- pixel_y = 0
+ pixel_x = 27
},
/obj/effect/decal/warning_stripes/white/hollow,
/obj/item/storage/toolbox/mechanical{
@@ -29763,10 +28063,14 @@
},
/area/ai_monitored/storage/eva)
"biO" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/turf/simulated/floor/plasteel{
desc = "";
- icon_state = "L13";
- name = "floor"
+ icon_state = "L13"
},
/area/hallway/primary/central/north)
"biP" = (
@@ -29778,9 +28082,7 @@
"biQ" = (
/obj/structure/statue/chickenstatue,
/obj/machinery/camera{
- c_tag = "Mr. Chang's";
- dir = 2;
- network = list("SS13")
+ c_tag = "Mr. Chang's"
},
/turf/simulated/floor/carpet,
/area/crew_quarters/mrchangs)
@@ -29791,9 +28093,7 @@
/turf/simulated/floor/carpet,
/area/crew_quarters/mrchangs)
"biS" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
@@ -29811,7 +28111,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -29841,8 +28140,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 5
@@ -29868,8 +28166,7 @@
"biX" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock{
- name = "Unisex Restrooms";
- req_access_txt = "0"
+ name = "Unisex Restrooms"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
@@ -29892,8 +28189,7 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10;
- initialize_directions = 10;
- level = 1
+ initialize_directions = 10
},
/turf/simulated/floor/plasteel{
icon_state = "showroomfloor"
@@ -29901,22 +28197,19 @@
/area/crew_quarters/kitchen)
"biZ" = (
/obj/machinery/camera{
- c_tag = "Bar Storage";
- network = list("SS13")
+ c_tag = "Bar Storage"
},
/obj/structure/table/wood,
/obj/machinery/reagentgrinder,
/obj/item/reagent_containers/dropper,
/obj/structure/sign/poster/contraband/random{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
"bja" = (
/obj/structure/sink{
dir = 8;
- icon_state = "sink";
pixel_x = -12;
pixel_y = 2
},
@@ -29934,17 +28227,13 @@
id_tag = "ai_pump"
},
/obj/machinery/airlock_sensor{
- frequency = 1379;
id_tag = "ai_sensor";
pixel_x = 12;
pixel_y = 25
},
/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
- frequency = 1379;
id_tag = "ai_airlock";
- pixel_x = 0;
pixel_y = 25;
- req_access_txt = "0";
tag_airpump = "ai_pump";
tag_chamber_sensor = "ai_sensor";
tag_exterior_door = "ai_outer";
@@ -29964,7 +28253,6 @@
"bjd" = (
/obj/structure/sink{
dir = 8;
- icon_state = "sink";
pixel_x = -12;
pixel_y = 2
},
@@ -30015,8 +28303,6 @@
/area/atmos)
"bjj" = (
/obj/structure/closet/gmcloset{
- icon_closed = "black";
- icon_state = "black";
name = "formal wardrobe"
},
/obj/machinery/light/small{
@@ -30064,7 +28350,6 @@
/area/maintenance/fsmaint2)
"bjp" = (
/obj/machinery/door/morgue{
- dir = 2;
name = "Confession Booth (Chaplain)";
req_access_txt = "22"
},
@@ -30102,8 +28387,7 @@
"bjs" = (
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "rampbottom";
- tag = "icon-stage_stairs"
+ icon_state = "rampbottom"
},
/area/chapel/main)
"bjt" = (
@@ -30118,9 +28402,7 @@
},
/area/hydroponics)
"bju" = (
-/obj/machinery/bookbinder{
- pixel_y = 0
- },
+/obj/machinery/bookbinder,
/turf/simulated/floor/wood,
/area/library)
"bjv" = (
@@ -30155,9 +28437,7 @@
in_use = 1
},
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/plasteel{
@@ -30242,8 +28522,7 @@
"bjQ" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'.";
- name = "KEEP CLEAR: DOCKING AREA";
- pixel_y = 0
+ name = "KEEP CLEAR: DOCKING AREA"
},
/turf/simulated/wall/r_wall,
/area/hallway/secondary/entry)
@@ -30264,8 +28543,7 @@
"bjU" = (
/obj/machinery/camera{
c_tag = "Arrivals Center";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/obj/structure/extinguisher_cabinet{
pixel_x = -24
@@ -30351,7 +28629,6 @@
dir = 1
},
/obj/item/radio/intercom{
- name = "station intercom (General)";
pixel_y = -28
},
/obj/structure/disposalpipe/segment{
@@ -30402,7 +28679,6 @@
},
/obj/machinery/alarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/turf/simulated/floor/plasteel,
@@ -30416,8 +28692,7 @@
"bkh" = (
/obj/structure/disposalpipe/junction{
dir = 4;
- icon_state = "pipe-j2";
- tag = "icon-pipe-j2 (EAST)"
+ icon_state = "pipe-j2"
},
/turf/simulated/floor/plasteel,
/area/hallway/primary/port)
@@ -30438,8 +28713,7 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10;
- initialize_directions = 10;
- level = 1
+ initialize_directions = 10
},
/turf/simulated/floor/plasteel{
icon_state = "hydrofloor"
@@ -30469,7 +28743,6 @@
/area/hallway/primary/port)
"bkm" = (
/obj/item/radio/intercom{
- name = "station intercom (General)";
pixel_y = -28
},
/turf/simulated/floor/plasteel,
@@ -30489,7 +28762,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel,
@@ -30498,8 +28770,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/wood,
/area/library)
@@ -30509,9 +28780,19 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
+/obj/structure/sign/directions/cargo{
+ pixel_y = -39
+ },
+/obj/structure/sign/directions/bridge{
+ dir = 4;
+ pixel_y = -32
+ },
+/obj/structure/sign/directions/security{
+ dir = 4;
+ pixel_y = -25
+ },
/turf/simulated/floor/plasteel,
/area/hallway/primary/central/nw)
"bkr" = (
@@ -30530,7 +28811,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel,
@@ -30547,7 +28827,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel,
@@ -30557,7 +28836,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
@@ -30570,7 +28848,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/cable{
@@ -30594,7 +28871,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/sign/securearea{
@@ -30613,7 +28889,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
@@ -30626,7 +28901,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/door/firedoor,
@@ -30641,7 +28915,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
@@ -30650,24 +28923,20 @@
},
/area/hallway/primary/central/north)
"bkC" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0;
- tag = ""
+/obj/machinery/door/firedoor,
+/obj/structure/sign/directions/engineering{
+ pixel_y = -39
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8";
- tag = ""
+/obj/structure/sign/directions/science{
+ dir = 4;
+ pixel_y = -32
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "bluecorner"
+/obj/structure/sign/directions/medical{
+ dir = 4;
+ pixel_y = -25
},
-/area/hallway/primary/central/north)
+/turf/simulated/floor/plasteel,
+/area/hallway/primary/central/east)
"bkD" = (
/obj/item/stack/rods{
amount = 10
@@ -30688,7 +28957,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
@@ -30701,7 +28969,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
@@ -30710,19 +28977,15 @@
},
/area/hallway/primary/central/ne)
"bkG" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0;
- tag = ""
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/obj/machinery/door/firedoor,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "bluecorner"
- },
-/area/hallway/primary/central/ne)
+/turf/simulated/floor/plasteel,
+/area/hallway/primary/central/north)
"bkH" = (
/obj/structure/cable{
d1 = 1;
@@ -30741,8 +29004,7 @@
/area/space/nearstation)
"bkJ" = (
/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 9;
- icon_state = "intact"
+ dir = 9
},
/obj/machinery/access_button{
command = "cycle_interior";
@@ -30750,8 +29012,7 @@
master_tag = "ai_airlock";
name = "interior access button";
pixel_x = -25;
- pixel_y = 25;
- req_access_txt = "0"
+ pixel_y = 25
},
/turf/simulated/floor/plating,
/area/turret_protected/aisat_interior)
@@ -30837,7 +29098,6 @@
"bkU" = (
/obj/machinery/status_display{
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/obj/machinery/seed_extractor,
@@ -30847,8 +29107,7 @@
/area/hydroponics)
"bkV" = (
/obj/machinery/camera{
- c_tag = "Hydroponics North";
- network = list("SS13")
+ c_tag = "Hydroponics North"
},
/obj/machinery/vending/hydroseeds,
/turf/simulated/floor/plasteel{
@@ -30880,9 +29139,7 @@
name = "Forbidden Knowledge"
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "cult"
},
/area/library)
"bkY" = (
@@ -30901,15 +29158,12 @@
/obj/item/pen/invisible,
/obj/machinery/camera{
c_tag = "Library Study";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/obj/item/stack/tape_roll,
/obj/item/pen/multi,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "cult"
},
/area/library)
"bla" = (
@@ -30917,8 +29171,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "rampbottom";
- tag = "icon-stage_stairs"
+ icon_state = "rampbottom"
},
/area/chapel/main)
"blb" = (
@@ -30961,8 +29214,7 @@
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -30981,13 +29233,11 @@
"blh" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -31016,12 +29266,9 @@
"blm" = (
/obj/machinery/camera{
c_tag = "Chapel South";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/obj/item/radio/intercom{
- frequency = 1459;
- name = "station intercom (General)";
pixel_x = 28
},
/turf/simulated/floor/plasteel{
@@ -31054,12 +29301,10 @@
/obj/structure/window/reinforced/tinted,
/obj/structure/window/reinforced/tinted{
dir = 4;
- icon_state = "twindow";
tag = ""
},
/obj/structure/window/reinforced/tinted{
dir = 8;
- icon_state = "twindow";
tag = ""
},
/turf/simulated/floor/plasteel{
@@ -31091,10 +29336,7 @@
},
/area/hallway/secondary/entry)
"blt" = (
-/obj/machinery/vending/cigarette{
- pixel_x = 0;
- pixel_y = 0
- },
+/obj/machinery/vending/cigarette,
/turf/simulated/floor/carpet,
/area/crew_quarters/bar)
"blw" = (
@@ -31102,8 +29344,6 @@
dir = 4
},
/obj/item/radio/intercom{
- frequency = 1459;
- name = "station intercom (General)";
pixel_x = -28
},
/turf/simulated/floor/plasteel{
@@ -31138,7 +29378,6 @@
icon_state = "space";
layer = 4;
name = "EXTERNAL AIRLOCK";
- pixel_x = 0;
pixel_y = 32
},
/obj/effect/decal/warning_stripes/north,
@@ -31147,7 +29386,6 @@
"blE" = (
/obj/machinery/status_display{
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/obj/effect/decal/warning_stripes/north,
@@ -31165,8 +29403,7 @@
/area/hallway/primary/port)
"blG" = (
/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 5;
- icon_state = "intact"
+ dir = 5
},
/obj/structure/cable{
d1 = 4;
@@ -31217,8 +29454,7 @@
/area/hallway/primary/port)
"blL" = (
/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 9;
- icon_state = "intact"
+ dir = 9
},
/obj/structure/cable{
d1 = 2;
@@ -31283,8 +29519,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -31335,18 +29570,16 @@
},
/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/obj/machinery/status_display{
- density = 0;
layer = 4
},
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plating,
@@ -31386,8 +29619,8 @@
},
/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/obj/structure/cable{
d1 = 2;
@@ -31425,8 +29658,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 1
@@ -31435,7 +29667,6 @@
/area/hallway/primary/port)
"bmg" = (
/obj/machinery/door/morgue{
- dir = 2;
name = "Confession Booth"
},
/turf/simulated/floor/plasteel{
@@ -31448,13 +29679,10 @@
dir = 4
},
/obj/machinery/light_switch{
- pixel_x = 0;
pixel_y = 25
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
"bmi" = (
@@ -31476,14 +29704,11 @@
dir = 1
},
/obj/machinery/door/window{
- dir = 4;
name = "Kitchen";
req_access_txt = "28"
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
"bmk" = (
@@ -31499,12 +29724,10 @@
"bml" = (
/obj/machinery/door/airlock/maintenance{
name = "E.V.A. Maintenance";
- req_access_txt = "0";
req_one_access_txt = "18"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -31567,19 +29790,15 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
"bmu" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
+ dir = 5
},
/turf/simulated/floor/plating,
/area/maintenance/fpmaint)
@@ -31604,8 +29823,7 @@
/area/hallway/primary/port)
"bmw" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -31672,17 +29890,14 @@
},
/obj/machinery/camera{
c_tag = "Library East";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/turf/simulated/floor/wood,
/area/library)
"bmE" = (
/obj/machinery/light/small,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "cult"
},
/area/library)
"bmF" = (
@@ -31691,9 +29906,7 @@
pixel_y = -25
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "cult"
},
/area/library)
"bmG" = (
@@ -31704,9 +29917,7 @@
dir = 1
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "cult"
},
/area/library)
"bmH" = (
@@ -31724,8 +29935,7 @@
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -31743,7 +29953,6 @@
},
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/turf/simulated/floor/plasteel{
@@ -31761,8 +29970,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -31779,8 +29987,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
@@ -31797,7 +30004,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/structure/cable{
@@ -31836,7 +30042,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
@@ -31863,8 +30068,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -31909,8 +30113,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
icon_state = "L2"
@@ -31925,7 +30128,6 @@
/area/hallway/primary/central/north)
"bng" = (
/obj/item/radio/intercom{
- name = "station intercom (General)";
pixel_y = -28
},
/obj/machinery/hologram/holopad,
@@ -31948,12 +30150,6 @@
},
/area/hallway/primary/central/north)
"bni" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -31986,6 +30182,11 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/turf/simulated/floor/plasteel{
desc = "";
icon_state = "L14"
@@ -31993,8 +30194,7 @@
/area/hallway/primary/central/north)
"bnl" = (
/obj/machinery/camera{
- c_tag = "Bar East";
- network = list("SS13")
+ c_tag = "Bar East"
},
/obj/machinery/newscaster{
pixel_y = 32
@@ -32018,31 +30218,17 @@
/turf/simulated/floor/plasteel,
/area/hallway/primary/central/ne)
"bno" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel,
-/area/hallway/primary/central/ne)
-"bnp" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0;
- tag = ""
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "bluecorner"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel,
-/area/hallway/primary/central/ne)
+/area/hallway/primary/central/north)
"bnq" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable{
@@ -32055,7 +30241,6 @@
/area/maintenance/port)
"bnr" = (
/obj/machinery/firealarm{
- dir = 2;
pixel_y = 24
},
/obj/machinery/hologram/holopad,
@@ -32118,7 +30303,6 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/obj/structure/cable{
@@ -32149,8 +30333,7 @@
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/turf/simulated/floor/carpet,
/area/civilian/pet_store)
@@ -32330,22 +30513,17 @@
/area/hallway/primary/central/ne)
"boe" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/turf/simulated/floor/plasteel,
/area/hallway/primary/central/ne)
"bof" = (
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
"bog" = (
@@ -32366,9 +30544,7 @@
req_access_txt = "28"
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
"boh" = (
@@ -32388,20 +30564,16 @@
tag = ""
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
"boj" = (
/obj/machinery/status_display{
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/obj/machinery/kitchen_machine/grill,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
@@ -32430,19 +30602,14 @@
/area/crew_quarters/bar)
"bon" = (
/obj/machinery/camera{
- c_tag = "Kitchen";
- network = list("SS13")
+ c_tag = "Kitchen"
},
/obj/item/radio/intercom{
- broadcasting = 0;
- name = "station intercom (General)";
pixel_y = 25
},
/obj/machinery/kitchen_machine/candy_maker,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
"boo" = (
@@ -32452,9 +30619,7 @@
pixel_y = 6
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
"bop" = (
@@ -32472,9 +30637,7 @@
"boq" = (
/obj/machinery/cooker/deepfryer,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
"bor" = (
@@ -32503,14 +30666,11 @@
/area/ai_monitored/storage/eva)
"bos" = (
/obj/structure/extinguisher_cabinet{
- pixel_x = 27;
- pixel_y = 0
+ pixel_x = 27
},
/obj/machinery/kitchen_machine/oven,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
"bot" = (
@@ -32526,7 +30686,6 @@
/obj/item/reagent_containers/glass/bucket,
/obj/structure/sink{
dir = 8;
- icon_state = "sink";
pixel_x = -12;
pixel_y = 2
},
@@ -32559,14 +30718,11 @@
/area/quartermaster/office)
"boy" = (
/obj/machinery/door/morgue{
- dir = 2;
name = "Private Study";
req_access_txt = "37"
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "cult"
},
/area/library)
"boz" = (
@@ -32574,7 +30730,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
@@ -32596,9 +30751,7 @@
dir = 4
},
/obj/machinery/camera{
- c_tag = "Departure Lounge Security";
- dir = 2;
- network = list("SS13")
+ c_tag = "Departure Lounge Security"
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -32633,9 +30786,6 @@
/area/library)
"boH" = (
/obj/machinery/door/window{
- base_state = "left";
- dir = 4;
- icon_state = "left";
name = "Bar Door";
req_access_txt = "25"
},
@@ -32663,7 +30813,6 @@
/area/chapel/main)
"boL" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "arrival"
},
/area/hallway/secondary/entry)
@@ -32671,13 +30820,11 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/carpet,
/area/crew_quarters/bar)
@@ -32702,7 +30849,6 @@
"boP" = (
/obj/machinery/light,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "arrival"
},
/area/hallway/secondary/entry)
@@ -32741,7 +30887,6 @@
/area/crew_quarters/kitchen)
"boT" = (
/obj/machinery/firealarm{
- dir = 2;
pixel_y = -24
},
/turf/simulated/floor/plasteel,
@@ -32761,8 +30906,7 @@
"boW" = (
/obj/machinery/camera{
c_tag = "Arrivals Hallway";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry)
@@ -32799,7 +30943,6 @@
/obj/structure/closet/wardrobe/mixed,
/obj/item/radio/intercom{
dir = 0;
- name = "station intercom (General)";
pixel_x = -28
},
/turf/simulated/floor/plasteel,
@@ -32807,7 +30950,6 @@
"bpb" = (
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/obj/structure/table,
@@ -32848,9 +30990,7 @@
icon_state = "1-2"
},
/obj/structure/disposalpipe/junction{
- dir = 4;
- icon_state = "pipe-j1";
- tag = "icon-pipe-j1 (EAST)"
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/hallway/primary/port)
@@ -32878,7 +31018,6 @@
},
/obj/machinery/alarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/turf/simulated/floor/plasteel,
@@ -32907,12 +31046,10 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/obj/machinery/camera{
- c_tag = "Auxiliary Tool Storage";
- dir = 2
+ c_tag = "Auxiliary Tool Storage"
},
/obj/structure/cable{
d2 = 4;
@@ -32929,7 +31066,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/cable{
@@ -32945,9 +31081,7 @@
"bpn" = (
/obj/structure/table,
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/obj/item/stack/sheet/glass{
@@ -32971,7 +31105,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/unary/vent_pump/on{
@@ -33021,7 +31154,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/unary/vent_scrubber/on{
@@ -33069,7 +31201,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
@@ -33082,12 +31213,16 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
},
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "bluecorner"
@@ -33098,7 +31233,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/unary/vent_pump/on{
@@ -33158,7 +31292,6 @@
"bpF" = (
/obj/machinery/alarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/turf/simulated/floor/plasteel,
@@ -33207,9 +31340,7 @@
"bpL" = (
/obj/structure/foodcart,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
"bpM" = (
@@ -33233,14 +31364,11 @@
opacity = 0
},
/obj/machinery/door/window{
- dir = 4;
name = "Kitchen";
req_access_txt = "28"
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
"bpO" = (
@@ -33260,13 +31388,11 @@
/area/chapel/main)
"bpQ" = (
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/obj/machinery/status_display{
layer = 4;
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/machinery/vending/chinese,
/turf/simulated/floor/carpet,
@@ -33286,9 +31412,7 @@
icon_state = "pipe-c"
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
"bpT" = (
@@ -33308,8 +31432,7 @@
"bpV" = (
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/hydroponics)
"bpW" = (
@@ -33325,16 +31448,12 @@
/area/hallway/secondary/entry)
"bpY" = (
/obj/machinery/door/window/northright{
- base_state = "right";
dir = 8;
- icon_state = "right";
name = "Library Desk Door";
req_access_txt = "37"
},
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/wood,
@@ -33358,9 +31477,7 @@
dir = 1;
icon_state = "whitepurplecorner"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"bqc" = (
/obj/machinery/newscaster{
pixel_y = 32
@@ -33369,9 +31486,7 @@
/area/library)
"bqd" = (
/obj/structure/table/wood,
-/obj/machinery/computer/library/checkout{
- pixel_y = 0
- },
+/obj/machinery/computer/library/checkout,
/obj/machinery/light/small{
dir = 4
},
@@ -33395,8 +31510,7 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10;
- initialize_directions = 10;
- level = 1
+ initialize_directions = 10
},
/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry)
@@ -33432,9 +31546,7 @@
/area/maintenance/fsmaint2)
"bqk" = (
/obj/structure/chair/wood/wings{
- dir = 8;
- icon_state = "wooden_chair_wings";
- tag = "icon-wooden_chair_wings (WEST)"
+ dir = 8
},
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
@@ -33457,8 +31569,7 @@
name = "Mr. Chang's"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -33467,7 +31578,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/wood,
@@ -33476,8 +31586,7 @@
/obj/effect/spawner/window/reinforced,
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'.";
- name = "KEEP CLEAR: DOCKING AREA";
- pixel_y = 0
+ name = "KEEP CLEAR: DOCKING AREA"
},
/turf/simulated/floor/plating,
/area/hallway/secondary/exit)
@@ -33504,7 +31613,6 @@
frequency = 1379;
master_tag = "eva_airlock";
name = "interior access button";
- pixel_x = 0;
pixel_y = 25;
req_access_txt = "13"
},
@@ -33521,8 +31629,7 @@
/area/maintenance/fpmaint2)
"bqu" = (
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/obj/structure/closet/wardrobe/white,
/turf/simulated/floor/plasteel,
@@ -33553,13 +31660,11 @@
/obj/structure/closet/secure_closet/personal,
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/machinery/camera{
c_tag = "Locker Room East";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/obj/machinery/light{
dir = 4
@@ -33590,9 +31695,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
"bqC" = (
@@ -33610,9 +31713,7 @@
"bqF" = (
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
- pixel_x = 11;
- pixel_y = 0
+ pixel_x = 11
},
/obj/item/reagent_containers/glass/bucket,
/turf/simulated/floor/wood,
@@ -33631,9 +31732,7 @@
req_access_txt = "28"
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
"bqI" = (
@@ -33698,9 +31797,7 @@
network = list("SS13","Research Outpost","Mining Outpost","Telecomms")
},
/obj/machinery/camera{
- c_tag = "Bridge West";
- dir = 2;
- network = list("SS13")
+ c_tag = "Bridge West"
},
/turf/simulated/floor/plasteel{
dir = 0;
@@ -33709,9 +31806,7 @@
/area/bridge)
"bqR" = (
/obj/structure/table/reinforced,
-/obj/machinery/recharger{
- pixel_y = 0
- },
+/obj/machinery/recharger,
/turf/simulated/floor/plasteel,
/area/bridge)
"bqS" = (
@@ -33747,7 +31842,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plasteel,
@@ -33766,8 +31860,7 @@
/area/bridge)
"bra" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/machinery/computer/security/mining,
/turf/simulated/floor/plasteel{
@@ -33777,17 +31870,13 @@
/area/bridge)
"brb" = (
/obj/machinery/camera{
- c_tag = "Bridge East";
- dir = 2;
- network = list("SS13")
+ c_tag = "Bridge East"
},
/obj/machinery/computer/supplycomp,
/obj/machinery/computer/security/telescreen/entertainment{
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "brown"
},
/area/bridge)
@@ -33825,21 +31914,17 @@
"brf" = (
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/obj/machinery/camera{
c_tag = "Bar West";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
"brg" = (
/obj/structure/chair/wood/wings{
- dir = 8;
- icon_state = "wooden_chair_wings";
- tag = "icon-wooden_chair_wings (WEST)"
+ dir = 8
},
/obj/effect/landmark/start{
name = "Civilian"
@@ -33849,9 +31934,7 @@
"brh" = (
/obj/structure/disposalpipe/segment,
/obj/structure/table/wood,
-/obj/item/taperecorder{
- pixel_y = 0
- },
+/obj/item/taperecorder,
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
"bri" = (
@@ -33867,8 +31950,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 6
@@ -33903,16 +31985,12 @@
/obj/structure/table,
/obj/item/kitchen/rollingpin,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
"brn" = (
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -33929,15 +32007,12 @@
"bro" = (
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
"brp" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 9
@@ -33965,8 +32040,6 @@
"brt" = (
/obj/machinery/hydroponics/constructable,
/obj/item/radio/intercom{
- frequency = 1459;
- name = "station intercom (General)";
pixel_x = 28
},
/turf/simulated/floor/plasteel{
@@ -34028,8 +32101,7 @@
/area/library)
"brC" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/carpet,
@@ -34046,8 +32118,7 @@
"brE" = (
/obj/machinery/alarm{
dir = 8;
- pixel_x = 25;
- pixel_y = 0
+ pixel_x = 25
},
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 8
@@ -34087,7 +32158,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
@@ -34167,9 +32237,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
"brZ" = (
@@ -34208,7 +32276,6 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "arrival"
},
/area/hallway/secondary/entry)
@@ -34222,8 +32289,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
},
/turf/simulated/floor/plasteel,
/area/hallway/primary/port)
@@ -34232,8 +32298,7 @@
/obj/machinery/requests_console{
department = "Locker Room";
name = "Locker Room Requests Console";
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/turf/simulated/floor/plasteel,
/area/crew_quarters/locker)
@@ -34250,7 +32315,6 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "arrival"
},
/area/hallway/secondary/entry)
@@ -34269,7 +32333,6 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "arrival"
},
/area/hallway/secondary/entry)
@@ -34289,7 +32352,6 @@
"bsm" = (
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/turf/simulated/floor/plasteel,
@@ -34323,8 +32385,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
@@ -34434,8 +32495,7 @@
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "browncorner";
- tag = "icon-browncorner (EAST)"
+ icon_state = "browncorner"
},
/area/bridge)
"bsF" = (
@@ -34450,8 +32510,7 @@
"bsG" = (
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "browncorner";
- tag = "icon-browncorner (EAST)"
+ icon_state = "browncorner"
},
/area/bridge)
"bsH" = (
@@ -34493,9 +32552,7 @@
/area/hallway/primary/central/ne)
"bsL" = (
/obj/machinery/camera{
- c_tag = "Bridge East Entrance";
- dir = 2;
- network = list("SS13")
+ c_tag = "Bridge East Entrance"
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -34520,7 +32577,6 @@
dir = 1
},
/obj/machinery/firealarm{
- dir = 2;
pixel_y = 24
},
/obj/machinery/vending/snack,
@@ -34533,8 +32589,6 @@
/area/hallway/secondary/exit)
"bsQ" = (
/obj/item/radio/intercom{
- frequency = 1459;
- name = "station intercom (General)";
pixel_x = 28
},
/turf/simulated/floor/wood,
@@ -34557,7 +32611,6 @@
},
/obj/item/stack/packageWrap,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
@@ -34571,22 +32624,18 @@
/obj/structure/table,
/obj/item/book/manual/sop_service,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
"bsU" = (
/obj/structure/table,
/obj/item/reagent_containers/food/condiment/saltshaker{
- pixel_x = -3;
- pixel_y = 0
+ pixel_x = -3
},
/obj/item/reagent_containers/food/condiment/peppermill{
pixel_x = 3
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
@@ -34600,7 +32649,6 @@
pixel_x = 5
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
@@ -34620,7 +32668,6 @@
pixel_x = 24
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
@@ -34628,7 +32675,6 @@
/obj/machinery/hydroponics/constructable,
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/turf/simulated/floor/plasteel{
@@ -34645,16 +32691,12 @@
dir = 5
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/turf/simulated/floor/plasteel,
/area/storage/tools)
"bta" = (
/obj/item/radio/intercom{
- frequency = 1459;
- name = "station intercom (General)";
- pixel_x = 0;
pixel_y = 28
},
/obj/machinery/vending/cola,
@@ -34675,8 +32717,7 @@
"btc" = (
/obj/structure/chair,
/obj/machinery/camera{
- c_tag = "Departure Lounge North";
- network = list("SS13")
+ c_tag = "Departure Lounge North"
},
/turf/simulated/floor/plasteel,
/area/hallway/secondary/exit)
@@ -34692,9 +32733,7 @@
/area/hallway/primary/starboard/east)
"btf" = (
/obj/structure/chair/wood/wings{
- dir = 4;
- icon_state = "wooden_chair_wings";
- tag = "icon-wooden_chair_wings (EAST)"
+ dir = 4
},
/obj/effect/landmark/start{
name = "Civilian"
@@ -34759,8 +32798,7 @@
/area/crew_quarters/bar)
"btp" = (
/turf/simulated/floor/plasteel{
- icon_state = "rampbottom";
- tag = "icon-stage_stairs"
+ icon_state = "rampbottom"
},
/area/hallway/secondary/exit)
"btq" = (
@@ -34803,9 +32841,7 @@
icon_state = "pipe-c"
},
/obj/structure/chair/wood/wings{
- dir = 4;
- icon_state = "wooden_chair_wings";
- tag = "icon-wooden_chair_wings (EAST)"
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/wood,
@@ -34870,9 +32906,7 @@
dir = 5
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
"btJ" = (
@@ -34880,9 +32914,7 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
"btK" = (
@@ -34896,9 +32928,7 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
"btL" = (
@@ -34917,9 +32947,7 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
"btN" = (
@@ -34931,9 +32959,7 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
"btO" = (
@@ -34948,9 +32974,7 @@
dir = 8
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
"btQ" = (
@@ -34983,8 +33007,7 @@
/area/crew_quarters/locker)
"btU" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
@@ -35003,8 +33026,7 @@
/area/library)
"btW" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 5
@@ -35027,8 +33049,7 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10;
- initialize_directions = 10;
- level = 1
+ initialize_directions = 10
},
/turf/simulated/floor/wood,
/area/library)
@@ -35062,9 +33083,7 @@
/area/storage/tools)
"bue" = (
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/obj/machinery/atmospherics/unary/vent_pump/on,
@@ -35101,9 +33120,7 @@
/turf/simulated/floor/plasteel,
/area/crew_quarters/locker)
"buh" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel,
/area/crew_quarters/locker)
"bui" = (
@@ -35131,8 +33148,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/hallway/primary/central/nw)
@@ -35152,9 +33168,7 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel,
/area/bridge)
"bup" = (
@@ -35163,9 +33177,7 @@
/area/bridge)
"buq" = (
/obj/structure/chair/wood/wings{
- dir = 4;
- icon_state = "wooden_chair_wings";
- tag = "icon-wooden_chair_wings (EAST)"
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/wood,
@@ -35174,16 +33186,13 @@
/obj/structure/closet/secure_closet/freezer/fridge,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
"bus" = (
/obj/structure/table,
/obj/item/reagent_containers/food/snacks/mint,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
@@ -35197,25 +33206,20 @@
/obj/structure/table,
/obj/item/kitchen/knife,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
"buu" = (
/obj/structure/table,
/obj/item/reagent_containers/food/drinks/bottle/cream,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
"buv" = (
/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
"buw" = (
@@ -35228,12 +33232,10 @@
"bux" = (
/obj/structure/disposalpipe/segment,
/obj/effect/decal/warning_stripes/arrow{
- dir = 1;
- icon_state = "4"
+ dir = 1
},
/obj/effect/decal/warning_stripes/yellow/partial{
- dir = 1;
- icon_state = "3"
+ dir = 1
},
/turf/simulated/floor/plasteel,
/area/hallway/primary/starboard/east)
@@ -35253,18 +33255,15 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/ai_status_display{
pixel_x = -32;
- pixel_y = 0;
step_size = 0
},
/obj/machinery/camera{
c_tag = "Chapel West";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -35287,7 +33286,6 @@
"buC" = (
/obj/item/radio/intercom{
dir = 4;
- name = "station intercom (General)";
pixel_x = 28
},
/turf/simulated/floor/plasteel,
@@ -35306,7 +33304,6 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkred"
},
/area/hallway/secondary/exit)
@@ -35315,7 +33312,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -35328,8 +33324,7 @@
"buG" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/public/glass{
- name = "Chapel";
- req_access_txt = "0"
+ name = "Chapel"
},
/turf/simulated/floor/plasteel,
/area/hallway/secondary/exit)
@@ -35350,9 +33345,7 @@
name = "Chef"
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
"buK" = (
@@ -35362,11 +33355,9 @@
department = "Kitchen";
departmentType = 2;
name = "Kitchen Requests Console";
- pixel_x = 30;
- pixel_y = 0
+ pixel_x = 30
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
@@ -35385,14 +33376,12 @@
dir = 5
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6;
- level = 1
+ dir = 6
},
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/carpet,
@@ -35409,7 +33398,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
@@ -35428,17 +33416,13 @@
"buQ" = (
/obj/structure/disposalpipe/segment,
/obj/structure/chair/wood/wings{
- dir = 1;
- icon_state = "wooden_chair_wings";
- tag = "icon-wooden_chair_wings (NORTH)"
+ dir = 1
},
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
"buR" = (
/obj/structure/chair/wood/wings{
- dir = 1;
- icon_state = "wooden_chair_wings";
- tag = "icon-wooden_chair_wings (NORTH)"
+ dir = 1
},
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
@@ -35450,18 +33434,14 @@
},
/obj/machinery/camera{
c_tag = "Arrivals Auxiliary Docking North";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry)
"buT" = (
-/obj/machinery/vending/cigarette{
- pixel_x = 0;
- pixel_y = 0
- },
+/obj/machinery/vending/cigarette,
/obj/machinery/light{
dir = 1
},
@@ -35470,8 +33450,7 @@
"buU" = (
/obj/machinery/alarm{
dir = 8;
- pixel_x = 25;
- pixel_y = 0
+ pixel_x = 25
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -35483,7 +33462,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/carpet,
@@ -35493,7 +33471,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -35522,21 +33499,18 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/public/glass{
- name = "Chapel";
- req_access_txt = "0"
+ name = "Chapel"
},
/turf/simulated/floor/carpet,
/area/chapel/main)
"bva" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/public/glass{
- name = "Chapel";
- req_access_txt = "0"
+ name = "Chapel"
},
/turf/simulated/floor/carpet,
/area/chapel/main)
@@ -35573,7 +33547,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/sign/poster/random{
@@ -35600,7 +33573,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel,
@@ -35610,7 +33582,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -35645,8 +33616,7 @@
/area/security/vacantoffice)
"bvo" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/structure/filingcabinet/chestdrawer,
/turf/simulated/floor/wood,
@@ -35758,8 +33728,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/hallway/primary/central/ne)
@@ -35813,8 +33782,7 @@
"bvK" = (
/obj/structure/disposalpipe/junction{
dir = 8;
- icon_state = "pipe-j2";
- tag = "icon-pipe-j1 (WEST)"
+ icon_state = "pipe-j2"
},
/turf/simulated/wall,
/area/storage/tools)
@@ -35828,9 +33796,7 @@
/obj/structure/closet/secure_closet/freezer/kitchen,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
"bvN" = (
@@ -35852,8 +33818,7 @@
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/turf/simulated/floor/carpet,
/area/library)
@@ -35886,7 +33851,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
@@ -35920,19 +33884,16 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/crew_quarters/locker)
"bvU" = (
/obj/item/radio/intercom{
- name = "station intercom (General)";
pixel_y = -28
},
/turf/simulated/floor/plasteel{
@@ -36056,8 +34017,7 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10;
- initialize_directions = 10;
- level = 1
+ initialize_directions = 10
},
/turf/simulated/floor/plasteel,
/area/crew_quarters/locker)
@@ -36104,7 +34064,6 @@
/area/hallway/primary/central/ne)
"bwk" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkred"
},
/area/hallway/secondary/exit)
@@ -36139,23 +34098,18 @@
req_access_txt = "28"
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
"bwo" = (
/obj/structure/cable,
/obj/machinery/light,
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
"bwp" = (
@@ -36164,9 +34118,7 @@
icon_state = "pipe-c"
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
"bwq" = (
@@ -36182,22 +34134,18 @@
/obj/machinery/disposal,
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/structure/disposalpipe/trunk{
dir = 8
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
"bws" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/machinery/hydroponics/constructable,
/turf/simulated/floor/plasteel{
@@ -36207,8 +34155,7 @@
"bwt" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plating,
@@ -36247,7 +34194,6 @@
/area/storage/tools)
"bwA" = (
/obj/item/radio/intercom{
- name = "station intercom (General)";
pixel_y = -28
},
/obj/structure/rack{
@@ -36261,13 +34207,11 @@
"bwB" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/hallway/primary/central/nw)
@@ -36291,16 +34235,14 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay2)
"bwK" = (
/obj/machinery/meter,
/obj/machinery/atmospherics/pipe/manifold/visible{
dir = 4;
- initialize_directions = 11;
- level = 2
+ initialize_directions = 11
},
/obj/effect/decal/warning_stripes/northeast,
/turf/simulated/floor/plating,
@@ -36424,7 +34366,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -36459,18 +34400,15 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/effect/decal/warning_stripes/northeastcorner,
/obj/effect/decal/warning_stripes/southeastcorner,
/obj/effect/decal/warning_stripes/yellow/partial{
- dir = 4;
- icon_state = "3"
+ dir = 4
},
/obj/effect/decal/warning_stripes/arrow{
- dir = 4;
- icon_state = "4"
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/hallway/secondary/exit)
@@ -36552,9 +34490,7 @@
dir = 4;
id = "packageSort2"
},
-/obj/structure/plasticflaps{
- opacity = 0
- },
+/obj/structure/plasticflaps,
/turf/simulated/floor/plating,
/area/quartermaster/office)
"bxg" = (
@@ -36610,8 +34546,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/bridge)
@@ -36653,17 +34588,14 @@
/area/bridge)
"bxs" = (
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/bluegrid,
/area/turret_protected/ai_upload)
"bxt" = (
/obj/machinery/camera/motion{
- c_tag = "AI Upload Chamber";
- network = list("SS13")
+ c_tag = "AI Upload Chamber"
},
/obj/machinery/light_switch{
pixel_y = 27
@@ -36701,8 +34633,7 @@
"bxy" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 9
@@ -36754,8 +34685,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 0;
@@ -36765,8 +34695,7 @@
"bxD" = (
/obj/machinery/camera{
c_tag = "Bridge Central";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/obj/machinery/requests_console{
announcementConsole = 1;
@@ -36788,30 +34717,24 @@
/area/bridge)
"bxE" = (
/obj/machinery/atm{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
"bxF" = (
/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
pixel_y = -30
},
/obj/machinery/vending/dinnerware,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
"bxG" = (
/obj/machinery/icemachine,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
"bxH" = (
@@ -36832,9 +34755,7 @@
req_access_txt = "28"
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
"bxI" = (
@@ -36854,9 +34775,7 @@
req_access_txt = "28"
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
"bxJ" = (
@@ -36876,9 +34795,7 @@
req_access_txt = "28"
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
"bxK" = (
@@ -36910,14 +34827,11 @@
"bxN" = (
/obj/machinery/camera{
c_tag = "Hydroponics South";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
- pixel_x = 11;
- pixel_y = 0
+ pixel_x = 11
},
/obj/item/reagent_containers/glass/bucket,
/obj/machinery/light_switch{
@@ -36931,7 +34845,6 @@
/obj/machinery/turretid/stun{
control_area = "\improper AI Upload Chamber";
name = "AI Upload Turret Control";
- pixel_x = 0;
pixel_y = -24;
req_access = list(75)
},
@@ -36988,7 +34901,6 @@
/obj/machinery/light,
/obj/machinery/power/apc{
cell_type = 5000;
- dir = 2;
name = "south bump Important Area";
pixel_y = -24
},
@@ -37017,7 +34929,6 @@
},
/obj/machinery/alarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/turf/simulated/floor/wood,
@@ -37087,7 +34998,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/structure/cable{
@@ -37111,8 +35021,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/bridge)
@@ -37161,7 +35070,6 @@
/area/security/vacantoffice)
"byh" = (
/obj/item/radio/intercom{
- name = "station intercom (General)";
pixel_y = -28
},
/turf/simulated/floor/wood,
@@ -37169,7 +35077,6 @@
"byi" = (
/obj/structure/table/wood,
/obj/machinery/firealarm{
- dir = 2;
pixel_y = -24
},
/turf/simulated/floor/wood,
@@ -37211,9 +35118,7 @@
"byo" = (
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
- pixel_x = 11;
- pixel_y = 0
+ pixel_x = 11
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
@@ -37319,7 +35224,6 @@
"byv" = (
/obj/machinery/hologram/holopad,
/obj/machinery/firealarm{
- dir = 2;
pixel_y = 24
},
/obj/effect/decal/cleanable/dirt,
@@ -37332,8 +35236,7 @@
"byx" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4
@@ -37379,9 +35282,7 @@
/area/quartermaster/office)
"byD" = (
/obj/structure/chair/wood/wings{
- dir = 4;
- icon_state = "wooden_chair_wings";
- tag = "icon-wooden_chair_wings (EAST)"
+ dir = 4
},
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
@@ -37390,9 +35291,7 @@
dir = 1
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
"byF" = (
@@ -37411,7 +35310,6 @@
/obj/machinery/door_control{
id = "heads_meeting";
name = "Privacy Shutters Control";
- pixel_x = 0;
pixel_y = 24
},
/turf/simulated/floor/wood,
@@ -37427,15 +35325,11 @@
/area/bridge/meeting_room)
"byJ" = (
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/obj/machinery/camera{
- c_tag = "Bridge Conference Room";
- dir = 2;
- network = list("SS13")
+ c_tag = "Bridge Conference Room"
},
/turf/simulated/floor/wood,
/area/bridge/meeting_room)
@@ -37444,7 +35338,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/light_switch{
@@ -37460,7 +35353,6 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/turf/simulated/floor/wood,
@@ -37521,7 +35413,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/cable{
@@ -37547,7 +35438,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/light_switch{
@@ -37563,13 +35453,11 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/public/glass{
- name = "Library";
- req_access_txt = "0"
+ name = "Library"
},
/turf/simulated/floor/carpet,
/area/library)
@@ -37578,11 +35466,9 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/computer/security/telescreen/entertainment{
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/carpet,
@@ -37595,7 +35481,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/carpet,
@@ -37609,14 +35494,12 @@
cell_type = 5000;
dir = 1;
name = "north bump Important Area";
- pixel_x = 0;
pixel_y = 24
},
/turf/simulated/floor/wood,
/area/crew_quarters/captain)
"byY" = (
/obj/machinery/status_display{
- pixel_x = 0;
pixel_y = 32
},
/obj/structure/cable{
@@ -37655,18 +35538,12 @@
/turf/simulated/floor/plasteel,
/area/hallway/primary/central/ne)
"bzc" = (
-/obj/structure/sign/directions/evac{
- dir = 4
- },
-/obj/structure/sign/directions/medical{
+/obj/machinery/status_display{
dir = 4;
- pixel_y = 7
+ pixel_y = -32
},
-/obj/structure/sign/directions/science{
- dir = 4
- },
-/turf/simulated/wall,
-/area/crew_quarters/bar)
+/turf/simulated/floor/plasteel,
+/area/hallway/primary/starboard/east)
"bzd" = (
/turf/simulated/floor/plasteel{
desc = "\"This is a plaque in honour of those who died in the great space lube airlock incident.\" Scratched in beneath that is a crude image of a clown and a spaceman. The spaceman is slipping. The clown is laughing.";
@@ -37694,9 +35571,7 @@
/area/hallway/primary/starboard/west)
"bzh" = (
/obj/machinery/camera{
- c_tag = "Starboard Primary Hallway 2";
- dir = 2;
- network = list("SS13")
+ c_tag = "Starboard Primary Hallway 2"
},
/obj/structure/closet/crate/can,
/turf/simulated/floor/plasteel{
@@ -37732,7 +35607,6 @@
/area/hydroponics)
"bzl" = (
/obj/machinery/newscaster{
- pixel_x = 0;
pixel_y = -30
},
/obj/machinery/light,
@@ -37742,8 +35616,7 @@
/area/chapel/main)
"bzm" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/structure/flora/ausbushes/pointybush,
/obj/structure/flora/ausbushes/lavendergrass,
@@ -37760,9 +35633,7 @@
"bzo" = (
/obj/machinery/light,
/obj/structure/chair/wood/wings{
- dir = 4;
- icon_state = "wooden_chair_wings";
- tag = "icon-wooden_chair_wings (EAST)"
+ dir = 4
},
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
@@ -37771,7 +35642,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -37779,16 +35649,12 @@
/area/library)
"bzr" = (
/obj/item/radio/intercom{
- frequency = 1459;
- name = "station intercom (General)";
pixel_x = -28
},
/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry)
"bzs" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel,
/area/hallway/secondary/exit)
"bzt" = (
@@ -37829,13 +35695,12 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/security/glass{
name = "Escape Shuttle Cell";
- req_access_txt = "2"
+ req_access_txt = "63"
},
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -37896,13 +35761,12 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/security/glass{
name = "Escape Shuttle Cell";
- req_access_txt = "2"
+ req_access_txt = "63"
},
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/effect/decal/warning_stripes/southeastcorner,
@@ -37954,9 +35818,6 @@
/obj/item/storage/box,
/obj/item/storage/box,
/obj/item/radio/intercom{
- broadcasting = 0;
- listening = 1;
- name = "station intercom (General)";
pixel_y = 25
},
/turf/simulated/floor/plasteel{
@@ -37991,10 +35852,8 @@
/area/security/vacantoffice)
"bzM" = (
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -38020,8 +35879,7 @@
/area/security/vacantoffice)
"bzQ" = (
/obj/machinery/door/airlock{
- name = "Unisex Restrooms";
- req_access_txt = "0"
+ name = "Unisex Restrooms"
},
/obj/structure/cable{
d1 = 1;
@@ -38052,17 +35910,15 @@
/area/bridge/meeting_room)
"bzT" = (
/obj/structure/table,
-/obj/item/aiModule/quarantine,
+/obj/item/aiModule/crewsimov,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/turret_protected/ai_upload)
"bzU" = (
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/machinery/disposal,
/obj/structure/disposalpipe/trunk{
@@ -38095,7 +35951,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_y = 0;
tag = ""
},
/obj/machinery/vending/cigarette,
@@ -38145,8 +36000,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/crew_quarters/locker)
@@ -38155,6 +36009,18 @@
/area/hallway/primary/central/east)
"bAg" = (
/obj/machinery/door/firedoor,
+/obj/structure/sign/directions/evac{
+ dir = 4;
+ pixel_y = 25
+ },
+/obj/structure/sign/directions/bridge{
+ dir = 1;
+ pixel_y = 32
+ },
+/obj/structure/sign/directions/security{
+ dir = 1;
+ pixel_y = 39
+ },
/turf/simulated/floor/plasteel,
/area/hallway/primary/central/east)
"bAh" = (
@@ -38175,13 +36041,11 @@
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
@@ -38193,7 +36057,6 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/turf/simulated/floor/plasteel{
@@ -38208,8 +36071,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/meter,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -38225,7 +36087,6 @@
/area/hallway/primary/starboard/west)
"bAo" = (
/obj/machinery/status_display{
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/plasteel,
@@ -38238,7 +36099,6 @@
/area/hallway/primary/starboard/west)
"bAq" = (
/obj/machinery/firealarm{
- dir = 2;
pixel_y = 24
},
/turf/simulated/floor/plasteel,
@@ -38269,8 +36129,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -38306,8 +36165,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -38336,8 +36194,7 @@
"bAB" = (
/obj/machinery/camera{
c_tag = "Bridge West Entrance";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/turf/simulated/floor/plasteel{
dir = 0;
@@ -38379,8 +36236,7 @@
"bAE" = (
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "rampbottom";
- tag = "icon-stage_stairs"
+ icon_state = "rampbottom"
},
/area/hallway/secondary/exit)
"bAF" = (
@@ -38400,7 +36256,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/structure/disposalpipe/segment,
@@ -38443,7 +36298,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/effect/decal/warning_stripes/east,
@@ -38465,8 +36319,7 @@
/area/engine/engineering)
"bAU" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
@@ -38489,8 +36342,7 @@
},
/obj/machinery/camera{
c_tag = "Starboard Primary Hallway 4";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -38499,8 +36351,7 @@
"bAX" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/public/glass{
- name = "Library";
- req_access_txt = "0"
+ name = "Library"
},
/turf/simulated/floor/carpet,
/area/library)
@@ -38561,8 +36412,7 @@
"bBf" = (
/obj/machinery/camera{
c_tag = "Locker Room South";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 10
@@ -38576,8 +36426,7 @@
/obj/structure/closet/emcloset,
/obj/machinery/camera{
c_tag = "Arrivals Auxiliary Docking South";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/obj/effect/decal/warning_stripes/northwest,
/turf/simulated/floor/plasteel,
@@ -38604,7 +36453,6 @@
"bBk" = (
/obj/item/radio/intercom{
dir = 0;
- name = "station intercom (General)";
pixel_x = -28
},
/obj/structure/cable{
@@ -38620,8 +36468,7 @@
dir = 9
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/turf/simulated/floor/plasteel,
/area/hallway/secondary/exit)
@@ -38678,13 +36525,11 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry)
@@ -38721,7 +36566,6 @@
"bBy" = (
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/obj/machinery/porta_turret{
@@ -38764,23 +36608,19 @@
/area/crew_quarters/captain)
"bBE" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/turf/simulated/floor/wood,
/area/crew_quarters/captain)
"bBF" = (
/obj/machinery/camera{
c_tag = "Central Hallway East";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/obj/structure/disposalpipe/segment,
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -38829,20 +36669,17 @@
/obj/effect/decal/warning_stripes/southeastcorner,
/obj/effect/decal/warning_stripes/northeastcorner,
/obj/effect/decal/warning_stripes/yellow/partial{
- dir = 4;
- icon_state = "3"
+ dir = 4
},
/obj/effect/decal/warning_stripes/arrow{
- dir = 4;
- icon_state = "4"
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/hallway/secondary/exit)
"bBL" = (
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/reception)
"bBM" = (
@@ -38863,9 +36700,7 @@
"bBO" = (
/obj/machinery/shower{
dir = 4;
- icon_state = "shower";
- pixel_x = 5;
- tag = "icon-shower (EAST)"
+ pixel_x = 5
},
/obj/structure/curtain/open/shower,
/turf/simulated/floor/plasteel{
@@ -38997,7 +36832,6 @@
"bCv" = (
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/obj/structure/cable{
@@ -39077,9 +36911,7 @@
},
/obj/machinery/light/small,
/obj/structure/chair/wood/wings{
- dir = 8;
- icon_state = "wooden_chair_wings";
- tag = "icon-wooden_chair_wings (WEST)"
+ dir = 8
},
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
@@ -39102,7 +36934,6 @@
"bCF" = (
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/turf/simulated/floor/plasteel{
@@ -39117,33 +36948,13 @@
/turf/simulated/floor/carpet,
/area/bridge/meeting_room)
"bCH" = (
-/obj/structure/table,
-/obj/machinery/door/window{
- base_state = "right";
- dir = 4;
- icon_state = "right";
- name = "Core Modules";
- req_access_txt = "20"
- },
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/item/aiModule/crewsimov,
-/obj/item/aiModule/freeformcore,
-/obj/item/aiModule/corp,
-/obj/item/aiModule/paladin,
-/obj/item/aiModule/robocop,
+/obj/machinery/smartfridge/secure/circuits/aiupload/experimental,
/turf/simulated/floor/bluegrid,
/area/turret_protected/ai_upload)
"bCI" = (
/obj/machinery/camera{
c_tag = "Bar South";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/obj/machinery/gameboard,
/turf/simulated/floor/wood,
@@ -39152,7 +36963,6 @@
/obj/structure/cable,
/obj/machinery/power/apc{
cell_type = 5000;
- dir = 2;
name = "south bump Important Area";
pixel_y = -24
},
@@ -39162,7 +36972,6 @@
/obj/machinery/computer/aiupload,
/obj/machinery/flasher{
id = "AI";
- pixel_x = 0;
pixel_y = -21
},
/turf/simulated/floor/bluegrid,
@@ -39170,7 +36979,6 @@
"bCL" = (
/obj/machinery/computer/borgupload,
/obj/item/radio/intercom/private{
- pixel_x = 0;
pixel_y = -28
},
/turf/simulated/floor/bluegrid,
@@ -39201,8 +37009,7 @@
},
/obj/machinery/camera{
c_tag = "Library South";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
@@ -39249,8 +37056,7 @@
/obj/structure/table/wood,
/obj/machinery/camera{
c_tag = "Captain's Office";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/obj/item/storage/lockbox/medal,
/turf/simulated/floor/wood,
@@ -39258,8 +37064,7 @@
"bCW" = (
/obj/structure/table,
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/obj/item/storage/box/cups{
pixel_x = 6;
@@ -39267,15 +37072,12 @@
},
/obj/machinery/vending/wallmed{
name = "Emergency NanoMed";
- pixel_x = -25;
- pixel_y = 0;
- req_access_txt = "0"
+ pixel_x = -25
},
/obj/item/roller,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (WEST)"
+ icon_state = "whiteblue"
},
/area/medical/reception)
"bCX" = (
@@ -39294,8 +37096,7 @@
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -39304,7 +37105,6 @@
/area/hallway/primary/central/east)
"bCZ" = (
/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
pixel_y = -30
},
/turf/simulated/floor/plasteel,
@@ -39323,31 +37123,26 @@
/obj/structure/reagent_dispensers/water_cooler,
/obj/machinery/status_display{
layer = 4;
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/turf/simulated/floor/plasteel{
dir = 10;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (SOUTHWEST)"
+ icon_state = "whiteblue"
},
/area/medical/reception)
"bDd" = (
/obj/machinery/vending/coffee,
/obj/machinery/computer/mob_healer_terminal{
- pixel_x = 0;
pixel_y = -32
},
/obj/machinery/light,
/turf/simulated/floor/plasteel{
- icon_state = "whiteblue";
- tag = "icon-whiteblue"
+ icon_state = "whiteblue"
},
/area/medical/reception)
"bDe" = (
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
/area/medical/reception)
"bDf" = (
@@ -39430,7 +37225,6 @@
},
/obj/item/radio/intercom{
dir = 4;
- name = "station intercom (General)";
pixel_x = 28
},
/obj/machinery/chem_dispenser,
@@ -39453,9 +37247,7 @@
/area/bridge/meeting_room)
"bDp" = (
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = -32
},
/turf/simulated/floor/plasteel{
@@ -39465,14 +37257,12 @@
/area/hallway/secondary/exit)
"bDq" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "purple"
},
/area/hallway/primary/starboard/east)
"bDr" = (
/obj/machinery/light,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "purple"
},
/area/hallway/primary/starboard/east)
@@ -39487,18 +37277,15 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/effect/decal/warning_stripes/southeastcorner,
/obj/effect/decal/warning_stripes/northeastcorner,
/obj/effect/decal/warning_stripes/yellow/partial{
- dir = 4;
- icon_state = "3"
+ dir = 4
},
/obj/effect/decal/warning_stripes/arrow{
- dir = 4;
- icon_state = "4"
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/hallway/secondary/exit)
@@ -39509,8 +37296,7 @@
icon_state = "1-2"
},
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/structure/extinguisher_cabinet{
pixel_x = 27
@@ -39522,9 +37308,7 @@
"bDv" = (
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
- pixel_x = 11;
- pixel_y = 0
+ pixel_x = 11
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -39669,8 +37453,7 @@
"bDR" = (
/obj/machinery/camera{
c_tag = "Cargo Bay Storage";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
@@ -39731,8 +37514,7 @@
dir = 9
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -39766,7 +37548,6 @@
/area/turret_protected/ai_upload)
"bEb" = (
/obj/structure/table,
-/obj/item/aiModule/protectStation,
/obj/item/aiModule/nanotrasen,
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -39852,15 +37633,13 @@
"bEl" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/public/glass{
- name = "Chapel";
- req_access_txt = "0"
+ name = "Chapel"
},
/turf/simulated/floor/plasteel,
/area/chapel/main)
"bEm" = (
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/structure/cable{
@@ -39952,9 +37731,7 @@
"bEz" = (
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
- pixel_x = 11;
- pixel_y = 0
+ pixel_x = 11
},
/obj/structure/mirror{
pixel_x = 28
@@ -39996,9 +37773,7 @@
/area/toxins/lab)
"bEE" = (
/obj/machinery/door/window/eastright{
- dir = 4;
name = "Coroner";
- req_access_txt = "0";
req_one_access_txt = "5;4"
},
/turf/simulated/floor/plasteel{
@@ -40114,8 +37889,7 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/wood,
@@ -40144,7 +37918,7 @@
/area/maintenance/port)
"bFe" = (
/obj/structure/table,
-/obj/item/aiModule/freeform,
+/obj/item/aiModule/corp,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -40169,8 +37943,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/wood,
/area/crew_quarters/captain)
@@ -40185,9 +37958,7 @@
/area/hallway/primary/central/east)
"bFj" = (
/obj/machinery/camera{
- c_tag = "Starboard Primary Hallway 1";
- dir = 2;
- network = list("SS13")
+ c_tag = "Starboard Primary Hallway 1"
},
/turf/simulated/floor/plasteel,
/area/hallway/primary/starboard/west)
@@ -40206,8 +37977,7 @@
},
/obj/structure/disposalpipe/junction{
dir = 2;
- icon_state = "pipe-j2";
- tag = "icon-pipe-j2"
+ icon_state = "pipe-j2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -40233,21 +38003,26 @@
/turf/simulated/wall,
/area/quartermaster/storage)
"bFn" = (
-/obj/machinery/status_display{
- layer = 4;
- pixel_x = 0;
- pixel_y = 32
- },
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/structure/sign/directions/science{
+ pixel_y = 25
+ },
+/obj/structure/sign/directions/medical{
+ dir = 8;
+ pixel_y = 32
+ },
+/obj/structure/sign/directions/evac{
+ dir = 4;
+ pixel_y = 39
+ },
/turf/simulated/floor/plasteel,
/area/hallway/primary/starboard/east)
"bFo" = (
@@ -40258,7 +38033,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -40292,7 +38066,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -40309,7 +38082,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -40332,7 +38104,6 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/obj/structure/disposalpipe/segment{
@@ -40342,14 +38113,12 @@
/area/hallway/primary/starboard/east)
"bFv" = (
/obj/machinery/firealarm{
- dir = 2;
pixel_y = 24
},
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -40359,9 +38128,7 @@
/area/hallway/primary/starboard/east)
"bFw" = (
/obj/machinery/camera{
- c_tag = "Starboard Primary Hallway 6";
- dir = 2;
- network = list("SS13")
+ c_tag = "Starboard Primary Hallway 6"
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -40372,8 +38139,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/effect/decal/warning_stripes/yellow/partial,
/obj/effect/decal/warning_stripes/arrow,
@@ -40405,7 +38171,6 @@
"bFB" = (
/obj/machinery/status_display{
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/obj/machinery/door/firedoor,
@@ -40435,7 +38200,6 @@
/area/engine/gravitygenerator)
"bFF" = (
/obj/machinery/computer/security/telescreen/entertainment{
- pixel_x = 0;
pixel_y = -32
},
/obj/machinery/slot_machine,
@@ -40447,15 +38211,13 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "ramptop";
- tag = "icon-stage_stairs"
+ icon_state = "ramptop"
},
/area/hallway/primary/starboard/east)
"bFH" = (
/obj/structure/disposalpipe/junction{
dir = 8;
- icon_state = "pipe-j2";
- tag = "icon-pipe-j1 (WEST)"
+ icon_state = "pipe-j2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -40464,7 +38226,6 @@
"bFI" = (
/obj/machinery/alarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/turf/simulated/floor/wood,
@@ -40500,13 +38261,11 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry)
@@ -40525,7 +38284,6 @@
"bFP" = (
/obj/machinery/status_display{
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/plasteel{
@@ -40534,9 +38292,7 @@
/area/engine/gravitygenerator)
"bFQ" = (
/obj/structure/morgue{
- dir = 8;
- icon_state = "morgue1";
- tag = "icon-morgue1 (WEST)"
+ dir = 8
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -40551,9 +38307,7 @@
"bFS" = (
/obj/structure/sink{
dir = 8;
- icon_state = "sink";
- pixel_x = -12;
- pixel_y = 0
+ pixel_x = -12
},
/obj/structure/mirror{
pixel_x = -28
@@ -40567,9 +38321,7 @@
/area/crew_quarters/toilet)
"bFT" = (
/obj/structure/morgue{
- dir = 8;
- icon_state = "morgue1";
- tag = "icon-morgue1 (WEST)"
+ dir = 8
},
/obj/effect/landmark{
name = "revenantspawn"
@@ -40687,8 +38439,7 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10;
- initialize_directions = 10;
- level = 1
+ initialize_directions = 10
},
/turf/simulated/floor/plating,
/area/maintenance/port)
@@ -40701,8 +38452,7 @@
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -40710,8 +38460,7 @@
/area/assembly/robotics)
"bGd" = (
/turf/simulated/floor/plasteel{
- icon_state = "whiteblue";
- tag = "icon-whiteblue"
+ icon_state = "whiteblue"
},
/area/medical/reception)
"bGe" = (
@@ -40728,8 +38477,7 @@
dir = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "whiteblue";
- tag = "icon-whiteblue"
+ icon_state = "whiteblue"
},
/area/medical/reception)
"bGg" = (
@@ -40748,9 +38496,7 @@
opacity = 0
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whiteblue"
},
/area/medical/paramedic)
"bGh" = (
@@ -40782,8 +38528,7 @@
/area/hallway/secondary/exit)
"bGk" = (
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 1
@@ -40809,8 +38554,7 @@
},
/obj/effect/decal/warning_stripes/west,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 5
@@ -40850,8 +38594,7 @@
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
+ icon_state = "whiteblue"
},
/area/medical/reception)
"bGr" = (
@@ -40863,12 +38606,22 @@
/turf/simulated/floor/plasteel,
/area/hallway/secondary/exit)
"bGt" = (
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (EAST)"
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/area/medical/reception)
+/obj/structure/sign/directions/engineering{
+ pixel_y = -39
+ },
+/obj/structure/sign/directions/cargo{
+ dir = 8;
+ pixel_y = -32
+ },
+/obj/structure/sign/directions/medical{
+ dir = 4;
+ pixel_y = -25
+ },
+/turf/simulated/floor/plasteel,
+/area/hallway/primary/central/south)
"bGu" = (
/obj/machinery/computer/rdconsole/robotics,
/obj/machinery/alarm{
@@ -40921,7 +38674,6 @@
},
/obj/machinery/smartfridge/medbay,
/obj/machinery/door/window/eastright{
- dir = 4;
name = "Chemistry Desk";
req_access_txt = "33"
},
@@ -40986,19 +38738,14 @@
/area/assembly/robotics)
"bGC" = (
/obj/structure/table,
-/obj/item/storage/toolbox/mechanical{
- pixel_x = 0;
- pixel_y = 0
- },
+/obj/item/storage/toolbox/mechanical,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/toxins/lab)
"bGD" = (
/obj/structure/table,
-/obj/machinery/recharger{
- pixel_y = 0
- },
+/obj/machinery/recharger,
/obj/item/storage/belt/utility,
/obj/item/clothing/gloves/color/latex,
/turf/simulated/floor/plasteel{
@@ -41056,7 +38803,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/effect/decal/warning_stripes/northeastcorner,
@@ -41182,8 +38928,7 @@
"bGZ" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
@@ -41240,7 +38985,6 @@
base_state = "right";
icon_state = "right";
layer = 3;
- name = "interior door";
req_access_txt = "50"
},
/obj/machinery/disposal/deliveryChute{
@@ -41315,13 +39059,11 @@
"bHo" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/hallway/primary/central/east)
@@ -41343,12 +39085,10 @@
opacity = 0
},
/obj/effect/decal/warning_stripes/yellow/partial{
- dir = 8;
- icon_state = "3"
+ dir = 8
},
/obj/effect/decal/warning_stripes/arrow{
- dir = 8;
- icon_state = "4"
+ dir = 8
},
/turf/simulated/floor/plasteel,
/area/hallway/primary/central/sw)
@@ -41435,8 +39175,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/hallway/primary/starboard/west)
@@ -41562,8 +39301,7 @@
/area/medical/morgue)
"bHM" = (
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/obj/machinery/photocopier,
/turf/simulated/floor/plasteel{
@@ -41583,8 +39321,7 @@
"bHO" = (
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (WEST)"
+ icon_state = "whiteblue"
},
/area/medical/reception)
"bHP" = (
@@ -41606,8 +39343,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/hallway/primary/starboard/east)
@@ -41646,8 +39382,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "ramptop";
- tag = "icon-stage_stairs"
+ icon_state = "ramptop"
},
/area/hallway/primary/starboard/east)
"bHU" = (
@@ -41657,8 +39392,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/hallway/secondary/exit)
@@ -41685,9 +39419,7 @@
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'RADIOACTIVE AREA'";
icon_state = "radiation";
- name = "RADIOACTIVE AREA";
- pixel_x = 0;
- pixel_y = 0
+ name = "RADIOACTIVE AREA"
},
/obj/effect/spawner/window/reinforced,
/obj/structure/disposalpipe/segment,
@@ -41709,10 +39441,8 @@
/area/assembly/robotics)
"bIb" = (
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -41758,14 +39488,12 @@
/area/maintenance/port)
"bIf" = (
/obj/machinery/light_switch{
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/turf/simulated/floor/plasteel,
/area/assembly/chargebay)
"bIg" = (
/obj/machinery/door_control{
- dir = 2;
id = "mechbay";
name = "Mech Bay Door Control";
pixel_x = 6;
@@ -41790,15 +39518,12 @@
},
/turf/simulated/floor/plasteel{
dir = 9;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTHWEST)"
+ icon_state = "whiteblue"
},
/area/medical/reception)
"bIi" = (
/turf/simulated/wall,
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"bIj" = (
/obj/structure/table/reinforced,
/obj/structure/window/reinforced{
@@ -41820,16 +39545,13 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTHEAST)"
+ icon_state = "whiteblue"
},
/area/medical/reception)
"bIk" = (
/obj/structure/sign/securearea,
/turf/simulated/wall,
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"bIl" = (
/obj/structure/chair/office/light{
dir = 1
@@ -41845,7 +39567,6 @@
"bIm" = (
/obj/machinery/camera{
c_tag = "Research Robotics Lab";
- dir = 2;
network = list("Research","SS13")
},
/obj/structure/reagent_dispensers/oil,
@@ -41894,9 +39615,7 @@
"bIs" = (
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
- pixel_x = 11;
- pixel_y = 0
+ pixel_x = 11
},
/obj/structure/mirror{
pixel_x = 28
@@ -41923,13 +39642,11 @@
id = "rdlab";
name = "Research and Development Lab Shutters Control";
pixel_x = -24;
- pixel_y = 0;
req_access_txt = "47"
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (NORTH)"
+ icon_state = "whitepurple"
},
/area/toxins/lab)
"bIv" = (
@@ -41942,8 +39659,7 @@
/obj/item/reagent_containers/dropper,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (NORTH)"
+ icon_state = "whitepurple"
},
/area/toxins/lab)
"bIw" = (
@@ -41967,8 +39683,6 @@
/area/quartermaster/storage)
"bIy" = (
/obj/item/radio/intercom{
- frequency = 1459;
- name = "station intercom (General)";
pixel_x = 28
},
/turf/simulated/floor/plasteel{
@@ -41996,8 +39710,7 @@
"bIG" = (
/obj/machinery/camera{
c_tag = "Cargo Delivery Office";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/obj/machinery/firealarm{
dir = 8;
@@ -42043,25 +39756,7 @@
},
/area/turret_protected/ai_upload)
"bIM" = (
-/obj/structure/table,
-/obj/machinery/door/window{
- base_state = "left";
- dir = 8;
- icon_state = "left";
- name = "High-Risk Modules";
- req_access_txt = "20"
- },
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/item/aiModule/oxygen,
-/obj/item/aiModule/oneCrewMember,
-/obj/item/aiModule/purge,
-/obj/item/aiModule/antimov,
+/obj/machinery/smartfridge/secure/circuits/aiupload/highrisk,
/turf/simulated/floor/bluegrid,
/area/turret_protected/ai_upload)
"bIN" = (
@@ -42093,8 +39788,7 @@
/area/maintenance/port)
"bIQ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 5
@@ -42129,7 +39823,6 @@
department = "Cargo Bay";
departmentType = 2;
name = "Cargo Requests Console";
- pixel_x = 0;
pixel_y = 30
},
/obj/item/stamp/granted{
@@ -42159,9 +39852,7 @@
},
/obj/structure/closet/secure_closet/cargotech,
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/plasteel,
@@ -42170,9 +39861,6 @@
/obj/structure/table,
/obj/machinery/cell_charger,
/obj/item/radio/intercom{
- broadcasting = 0;
- listening = 1;
- name = "station intercom (General)";
pixel_y = 25
},
/turf/simulated/floor/plasteel,
@@ -42182,7 +39870,6 @@
dir = 1
},
/obj/machinery/alarm{
- dir = 2;
pixel_y = 24
},
/turf/simulated/floor/plasteel,
@@ -42202,12 +39889,10 @@
icon_state = "0-4"
},
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitecorner"
},
/area/hallway/primary/starboard/west)
@@ -42216,7 +39901,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
@@ -42229,7 +39913,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/cable{
@@ -42240,7 +39923,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitehall"
},
/area/hallway/primary/starboard/west)
@@ -42264,14 +39946,12 @@
"bJh" = (
/obj/machinery/camera{
c_tag = "Starboard Primary Hallway 3";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel,
@@ -42310,7 +39990,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/door/firedoor,
@@ -42344,8 +40023,7 @@
"bJp" = (
/obj/machinery/camera{
c_tag = "Starboard Primary Hallway 5";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/obj/item/radio/intercom{
pixel_y = -28
@@ -42365,8 +40043,7 @@
/area/hallway/secondary/exit)
"bJs" = (
/obj/structure/extinguisher_cabinet{
- pixel_x = 27;
- pixel_y = 0
+ pixel_x = 27
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
@@ -42404,8 +40081,7 @@
icon_state = "pipe-c"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 5
@@ -42427,8 +40103,7 @@
dir = 1;
icon_state = "pipe-j2s";
name = "Disposals Maint";
- sortType = 1;
- sortdir = 0
+ sortType = 1
},
/turf/simulated/floor/plating,
/area/maintenance/port)
@@ -42447,8 +40122,7 @@
"bJx" = (
/obj/machinery/camera{
c_tag = "Locker Room Toilets";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
@@ -42477,9 +40151,7 @@
id = "toilet_unit1";
name = "Door Bolt Control";
normaldoorcontrol = 1;
- pixel_x = 0;
pixel_y = -25;
- req_access_txt = "0";
specialfunctions = 4
},
/turf/simulated/floor/plasteel{
@@ -42495,9 +40167,7 @@
/obj/item/storage/box/rxglasses,
/obj/machinery/door/firedoor,
/obj/machinery/door/window/eastright{
- base_state = "right";
dir = 1;
- icon_state = "right";
name = "Medical Reception";
req_access_txt = "5"
},
@@ -42510,8 +40180,7 @@
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
+ icon_state = "whiteblue"
},
/area/medical/reception)
"bJB" = (
@@ -42532,8 +40201,7 @@
tag = ""
},
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
/area/medical/paramedic)
"bJD" = (
@@ -42544,7 +40212,6 @@
"bJE" = (
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/turf/simulated/floor/plasteel{
@@ -42556,8 +40223,7 @@
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/obj/structure/cable{
d2 = 4;
@@ -42569,8 +40235,7 @@
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/paramedic)
"bJG" = (
@@ -42603,8 +40268,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/wood,
/area/bridge/meeting_room)
@@ -42631,8 +40295,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (WEST)"
+ icon_state = "whiteblue"
},
/area/medical/reception)
"bJN" = (
@@ -42661,13 +40324,11 @@
/area/hallway/primary/central/sw)
"bJP" = (
/obj/item/radio/intercom{
- name = "station intercom (General)";
pixel_y = -28
},
/turf/simulated/floor/plasteel{
dir = 6;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (SOUTHEAST)"
+ icon_state = "whiteblue"
},
/area/medical/reception)
"bJQ" = (
@@ -42693,16 +40354,14 @@
"bJS" = (
/obj/machinery/camera{
c_tag = "Medbay Corridor East";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/obj/machinery/alarm{
pixel_y = 25
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay2)
"bJT" = (
@@ -42741,8 +40400,7 @@
/obj/item/storage/fancy/candle_box/eternal,
/obj/item/storage/fancy/candle_box/eternal,
/obj/item/storage/secure/safe{
- pixel_x = -22;
- pixel_y = 0
+ pixel_x = -22
},
/obj/machinery/light/small{
dir = 8
@@ -42866,8 +40524,7 @@
/area/maintenance/port)
"bKg" = (
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/obj/structure/window/reinforced,
/obj/structure/table,
@@ -42915,8 +40572,7 @@
/area/toxins/lab)
"bKk" = (
/obj/machinery/ai_status_display{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/structure/table,
/obj/item/flash/synthetic,
@@ -42939,23 +40595,17 @@
/area/maintenance/asmaint2)
"bKn" = (
/obj/machinery/shower{
- dir = 8;
- icon_state = "shower";
- tag = "icon-shower (WEST)"
+ dir = 8
},
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"bKo" = (
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
- pixel_x = -22;
- pixel_y = 0
+ pixel_x = -22
},
/obj/machinery/r_n_d/destructive_analyzer,
/obj/effect/decal/warning_stripes/northwest,
@@ -42971,7 +40621,6 @@
"bKq" = (
/obj/machinery/alarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/turf/simulated/floor/plasteel{
@@ -43083,8 +40732,7 @@
"bKF" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'.";
- name = "KEEP CLEAR: DOCKING AREA";
- pixel_y = 0
+ name = "KEEP CLEAR: DOCKING AREA"
},
/turf/simulated/wall/r_wall,
/area/maintenance/port)
@@ -43102,8 +40750,7 @@
icon_state = "pipe-c"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 9
@@ -43125,7 +40772,6 @@
"bKJ" = (
/obj/machinery/light,
/obj/item/radio/intercom{
- name = "station intercom (General)";
pixel_y = -28
},
/turf/simulated/floor/wood,
@@ -43208,8 +40854,7 @@
},
/obj/machinery/door/airlock/research{
name = "Mech Bay";
- req_access_txt = "29";
- req_one_access_txt = "0"
+ req_access_txt = "29"
},
/obj/structure/disposalpipe/segment,
/obj/structure/cable{
@@ -43224,7 +40869,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
@@ -43236,7 +40880,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "purple"
},
/area/hallway/primary/starboard/east)
@@ -43311,9 +40954,7 @@
/turf/simulated/floor/wood,
/area/bridge/meeting_room)
"bLb" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -43345,8 +40986,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
/area/medical/reception)
"bLi" = (
@@ -43405,21 +41045,18 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/hallway/secondary/exit)
"bLp" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -43430,8 +41067,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 10
@@ -43450,8 +41086,7 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10;
- initialize_directions = 10;
- level = 1
+ initialize_directions = 10
},
/turf/simulated/floor/plasteel,
/area/hallway/secondary/exit)
@@ -43472,8 +41107,7 @@
},
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
/area/medical/paramedic)
"bLu" = (
@@ -43491,8 +41125,7 @@
/obj/machinery/computer/med_data,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whiteblue"
},
/area/medical/reception)
"bLv" = (
@@ -43511,8 +41144,7 @@
name = "Chemist"
},
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
/area/medical/reception)
"bLw" = (
@@ -43526,41 +41158,35 @@
dir = 10
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6;
- level = 1
+ dir = 6
},
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
/area/medical/paramedic)
"bLx" = (
/obj/machinery/hologram/holopad,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10;
- initialize_directions = 10;
- level = 1
+ initialize_directions = 10
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 6
},
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
/area/medical/reception)
"bLy" = (
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner (WEST)"
+ icon_state = "whitebluecorner"
},
/area/medical/reception)
"bLz" = (
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/reception)
"bLA" = (
@@ -43573,24 +41199,20 @@
"bLB" = (
/obj/machinery/camera{
c_tag = "Medbay Lobby East";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whiteblue"
},
/area/medical/reception)
"bLC" = (
/obj/item/radio/intercom{
dir = 4;
- name = "station intercom (General)";
pixel_x = 28
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry)
@@ -43680,10 +41302,8 @@
icon_state = "0-2"
},
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/turf/simulated/floor/plating,
/area/assembly/chargebay)
@@ -43713,8 +41333,7 @@
/obj/machinery/reagentgrinder,
/obj/machinery/alarm{
dir = 8;
- pixel_x = 25;
- pixel_y = 0
+ pixel_x = 25
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -43725,9 +41344,7 @@
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"bLS" = (
/obj/structure/table,
/obj/item/storage/firstaid/brute{
@@ -43740,12 +41357,10 @@
in_use = 1
},
/obj/machinery/firealarm{
- dir = 2;
pixel_y = 24
},
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
/area/medical/biostorage)
"bLT" = (
@@ -43799,18 +41414,13 @@
/obj/item/storage/firstaid/o2,
/obj/structure/table,
/obj/machinery/light_switch{
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/obj/item/radio/intercom{
- broadcasting = 0;
- listening = 1;
- name = "station intercom (General)";
pixel_y = 25
},
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
/area/medical/biostorage)
"bLW" = (
@@ -43922,8 +41532,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plating,
/area/maintenance/port)
@@ -43946,9 +41555,7 @@
/turf/simulated/floor/plasteel,
/area/toxins/lab)
"bMk" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel,
/area/quartermaster/office)
"bMl" = (
@@ -43962,8 +41569,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/hallway/primary/central/west)
@@ -44032,8 +41638,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -44057,15 +41662,12 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/turf/simulated/floor/plating,
/area/maintenance/maintcentral)
"bMD" = (
-/obj/machinery/computer/account_database{
- anchored = 1
- },
+/obj/machinery/computer/account_database,
/turf/simulated/floor/plasteel,
/area/bridge/meeting_room)
"bME" = (
@@ -44099,8 +41701,7 @@
tag = ""
},
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -44126,7 +41727,6 @@
"bMK" = (
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -44143,13 +41743,11 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/wood,
/area/crew_quarters/captain)
@@ -44163,8 +41761,7 @@
/area/maintenance/maintcentral)
"bMN" = (
/obj/machinery/newscaster/security_unit{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/structure/table/wood,
/obj/machinery/photocopier/faxmachine/longrange{
@@ -44175,7 +41772,6 @@
"bMO" = (
/obj/machinery/door/window{
base_state = "right";
- dir = 4;
icon_state = "right";
name = "Captain's Desk Door";
req_access_txt = "20"
@@ -44184,7 +41780,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/requests_console{
@@ -44192,7 +41787,6 @@
department = "Captain's Desk";
departmentType = 5;
name = "Captain Requests Console";
- pixel_x = 0;
pixel_y = -30
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -44205,14 +41799,12 @@
/area/crew_quarters/captain)
"bMP" = (
/obj/machinery/keycard_auth{
- pixel_x = 0;
pixel_y = -24
},
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -44228,7 +41820,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
@@ -44274,8 +41865,7 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10;
- initialize_directions = 10;
- level = 1
+ initialize_directions = 10
},
/turf/simulated/floor/wood,
/area/crew_quarters/captain)
@@ -44325,7 +41915,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -44348,8 +41937,7 @@
/obj/item/storage/firstaid/fire,
/obj/structure/table,
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
/area/medical/biostorage)
"bMY" = (
@@ -44363,13 +41951,10 @@
pixel_y = 25
},
/obj/machinery/camera{
- c_tag = "Medbay Medicine Storage";
- dir = 2;
- network = list("SS13")
+ c_tag = "Medbay Medicine Storage"
},
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
/area/medical/biostorage)
"bMZ" = (
@@ -44455,7 +42040,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -44489,8 +42073,7 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10;
- initialize_directions = 10;
- level = 1
+ initialize_directions = 10
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -44553,9 +42136,7 @@
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"bNl" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -44565,14 +42146,11 @@
"bNm" = (
/obj/machinery/camera{
c_tag = "Research Access";
- dir = 2;
network = list("Research","SS13")
},
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
- pixel_x = 11;
- pixel_y = 0
+ pixel_x = 11
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -44581,25 +42159,20 @@
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"bNn" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"bNo" = (
/obj/structure/table,
/obj/item/clothing/accessory/stethoscope,
@@ -44635,8 +42208,7 @@
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whiteblue"
},
/area/medical/reception)
"bNp" = (
@@ -44644,8 +42216,7 @@
department = "Science";
departmentType = 2;
name = "Science Requests Console";
- pixel_x = -30;
- pixel_y = 0
+ pixel_x = -30
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -44670,16 +42241,14 @@
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whiteblue"
},
/area/medical/reception)
"bNs" = (
/obj/structure/disposalpipe/sortjunction{
dir = 4;
icon_state = "pipe-j2s";
- name = "Cargo Disposals";
- sortType = 0
+ name = "Cargo Disposals"
},
/turf/simulated/wall,
/area/quartermaster/office)
@@ -44711,7 +42280,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -44725,7 +42293,6 @@
/obj/machinery/light,
/obj/machinery/alarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/turf/simulated/floor/plasteel{
@@ -44742,15 +42309,13 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
/area/medical/reception)
"bNz" = (
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whiteblue"
},
/area/medical/reception)
"bNA" = (
@@ -44775,10 +42340,8 @@
/area/maintenance/disposal)
"bNC" = (
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/item/stack/packageWrap,
/obj/item/pen,
@@ -44810,8 +42373,7 @@
"bNF" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/turf/simulated/floor/plating,
/area/maintenance/disposal)
@@ -44867,15 +42429,13 @@
/obj/structure/closet/secure_closet/medical1,
/obj/machinery/ai_status_display{
pixel_x = 32;
- pixel_y = 0;
step_size = 0
},
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 8
},
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
/area/medical/biostorage)
"bNM" = (
@@ -44885,8 +42445,6 @@
icon_state = "2-4"
},
/obj/item/radio/intercom{
- broadcasting = 0;
- name = "station intercom (General)";
pixel_y = 25
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -44902,29 +42460,12 @@
/obj/machinery/cell_charger,
/obj/item/stock_parts/cell/high/plus,
/obj/item/radio/intercom{
- frequency = 1459;
- name = "station intercom (General)";
pixel_x = 28
},
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/assembly/robotics)
-"bNO" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/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)
"bNP" = (
/obj/machinery/door/airlock/maintenance{
req_access_txt = "12"
@@ -44940,8 +42481,7 @@
/area/maintenance/port)
"bNQ" = (
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel,
@@ -44963,8 +42503,7 @@
/area/quartermaster/storage)
"bNU" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/machinery/camera{
c_tag = "Research Research and Development Lab";
@@ -44986,8 +42525,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -45001,14 +42539,11 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/vending/wallmed{
name = "Emergency NanoMed";
- pixel_x = 0;
- pixel_y = -32;
- req_access_txt = "0"
+ pixel_y = -32
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -45022,12 +42557,10 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/turf/simulated/floor/plasteel,
/area/quartermaster/office)
@@ -45036,7 +42569,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -45051,7 +42583,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plating,
@@ -45065,18 +42596,14 @@
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"bOb" = (
/obj/effect/spawner/window/reinforced,
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
icon_state = "space";
layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_x = 0;
- pixel_y = 0
+ name = "EXTERNAL AIRLOCK"
},
/turf/simulated/floor/plating,
/area/hallway/secondary/entry)
@@ -45099,16 +42626,14 @@
layer = 4;
name = "Loading Doors";
pixel_x = -24;
- pixel_y = -8;
- req_access_txt = "0"
+ pixel_y = -8
},
/obj/machinery/door_control{
id = "QMLoaddoor2";
layer = 4;
name = "Loading Doors";
pixel_x = -24;
- pixel_y = 8;
- req_access_txt = "0"
+ pixel_y = 8
},
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel,
@@ -45132,7 +42657,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/cable{
@@ -45148,7 +42672,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plating,
@@ -45229,7 +42752,6 @@
/area/quartermaster/office)
"bOq" = (
/obj/item/radio/intercom{
- name = "station intercom (General)";
pixel_y = -28
},
/turf/simulated/floor/plasteel,
@@ -45244,8 +42766,7 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/camera{
c_tag = "Accounts Uplink Terminal";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -45264,8 +42785,6 @@
"bOt" = (
/obj/machinery/computer/supplycomp/public,
/obj/item/radio/intercom{
- broadcasting = 0;
- name = "station intercom (General)";
pixel_y = 25
},
/turf/simulated/floor/plasteel,
@@ -45273,8 +42792,7 @@
"bOu" = (
/obj/machinery/camera{
c_tag = "Gravity Generator Room North";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
@@ -45291,9 +42809,7 @@
},
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"bOw" = (
/turf/simulated/floor/plasteel{
dir = 8;
@@ -45385,24 +42901,20 @@
"bOB" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
/area/medical/reception)
"bOC" = (
/obj/machinery/disposal,
/obj/structure/disposalpipe/trunk,
/obj/machinery/recharger/wallcharger{
- pixel_x = 0;
pixel_y = 30
},
/turf/simulated/floor/plasteel,
@@ -45413,8 +42925,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner (WEST)"
+ icon_state = "whitebluecorner"
},
/area/medical/reception)
"bOE" = (
@@ -45423,8 +42934,7 @@
desc = "A warning sign which reads 'HIGH VOLTAGE'";
icon_state = "shock";
name = "HIGH VOLTAGE";
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/structure/cable{
d2 = 4;
@@ -45437,9 +42947,7 @@
dir = 8
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/reception)
"bOG" = (
@@ -45448,9 +42956,7 @@
d2 = 4;
icon_state = "2-4"
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -45461,7 +42967,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/cable{
@@ -45498,8 +43003,7 @@
desc = "A warning sign which reads 'RADIOACTIVE AREA'";
icon_state = "radiation";
name = "RADIOACTIVE AREA";
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/structure/cable{
d2 = 8;
@@ -45516,7 +43020,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/cable{
@@ -45538,7 +43041,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/atmospherics/unary/vent_pump/on{
@@ -45568,8 +43070,7 @@
pixel_y = -4
},
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
/area/medical/biostorage)
"bOS" = (
@@ -45586,12 +43087,10 @@
/obj/item/storage/firstaid/toxin,
/obj/structure/table,
/obj/structure/extinguisher_cabinet{
- pixel_x = 25;
- pixel_y = 0
+ pixel_x = 25
},
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
/area/medical/biostorage)
"bOU" = (
@@ -45599,8 +43098,7 @@
/area/medical/chemistry)
"bOV" = (
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
/area/medical/biostorage)
"bOW" = (
@@ -45623,7 +43121,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/hologram/holopad,
@@ -45639,7 +43136,6 @@
},
/obj/item/radio/intercom{
dir = 8;
- name = "station intercom (General)";
pixel_x = -28
},
/obj/machinery/camera{
@@ -45680,9 +43176,7 @@
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"bPe" = (
/obj/vehicle/ambulance,
/obj/effect/decal/warning_stripes/west,
@@ -45690,8 +43184,7 @@
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/paramedic)
"bPf" = (
@@ -45702,16 +43195,14 @@
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/paramedic)
"bPg" = (
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/obj/structure/cable{
d2 = 4;
@@ -45722,8 +43213,7 @@
/obj/item/clothing/mask/muzzle,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (WEST)"
+ icon_state = "whiteblue"
},
/area/medical/reception)
"bPh" = (
@@ -45752,8 +43242,7 @@
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
+ icon_state = "whiteblue"
},
/area/medical/reception)
"bPi" = (
@@ -45762,9 +43251,7 @@
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"bPj" = (
/obj/machinery/navbeacon{
codes_txt = "delivery";
@@ -45777,9 +43264,7 @@
/turf/simulated/floor/plasteel{
icon_state = "bot"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"bPk" = (
/obj/machinery/door/window/eastright{
base_state = "left";
@@ -45801,14 +43286,10 @@
/turf/simulated/floor/plasteel{
icon_state = "delivery"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"bPl" = (
/obj/effect/decal/warning_stripes/north,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel,
/area/toxins/lab)
"bPm" = (
@@ -45817,8 +43298,7 @@
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whiteblue"
},
/area/medical/reception)
"bPn" = (
@@ -45842,8 +43322,7 @@
/area/hallway/secondary/exit)
"bPr" = (
/obj/machinery/door/airlock{
- name = "Port Emergency Storage";
- req_access_txt = "0"
+ name = "Port Emergency Storage"
},
/obj/structure/cable{
d1 = 1;
@@ -45859,15 +43338,12 @@
/area/assembly/robotics)
"bPt" = (
/turf/simulated/wall/r_wall,
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"bPu" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -45919,8 +43395,7 @@
pixel_y = -5
},
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/item/crowbar,
/turf/simulated/floor/plasteel{
@@ -45945,7 +43420,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
@@ -45973,8 +43447,7 @@
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (NORTH)"
+ icon_state = "whitepurple"
},
/area/toxins/lab)
"bPE" = (
@@ -45985,9 +43458,7 @@
},
/obj/item/paper_bin/nanotrasen,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/hor)
"bPF" = (
@@ -46043,8 +43514,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10;
- initialize_directions = 10;
- level = 1
+ initialize_directions = 10
},
/obj/structure/cable{
d1 = 2;
@@ -46054,8 +43524,7 @@
},
/obj/structure/disposalpipe/junction{
dir = 2;
- icon_state = "pipe-j2";
- tag = "icon-pipe-j2"
+ icon_state = "pipe-j2"
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -46068,9 +43537,7 @@
req_access_txt = "28"
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
"bPN" = (
@@ -46097,12 +43564,10 @@
/area/quartermaster/storage)
"bPQ" = (
/obj/effect/decal/warning_stripes/arrow{
- dir = 4;
- icon_state = "4"
+ dir = 4
},
/obj/effect/decal/warning_stripes/yellow/partial{
- dir = 4;
- icon_state = "3"
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/quartermaster/storage)
@@ -46118,8 +43583,7 @@
desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
icon_state = "space";
layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_x = 0
+ name = "EXTERNAL AIRLOCK"
},
/turf/simulated/floor/plating,
/area/quartermaster/storage)
@@ -46164,8 +43628,7 @@
/area/quartermaster/office)
"bQa" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/structure/cable{
d1 = 1;
@@ -46221,8 +43684,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel,
/area/quartermaster/storage)
@@ -46255,23 +43717,19 @@
},
/obj/machinery/door/window/brigdoor{
base_state = "rightsecure";
- dir = 4;
icon_state = "rightsecure";
name = "Head of Personnel's Desk";
req_access_txt = "57"
},
/obj/machinery/door/window/northleft{
dir = 8;
- icon_state = "left";
- name = "Head of Personnel's Desk";
- req_access_txt = "0"
+ name = "Head of Personnel's Desk"
},
/turf/simulated/floor/plasteel,
/area/crew_quarters/heads)
"bQj" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/structure/disposalpipe/segment{
dir = 2;
@@ -46291,8 +43749,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/quartermaster/office)
@@ -46323,8 +43780,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 4
@@ -46360,12 +43816,10 @@
/area/crew_quarters/heads)
"bQq" = (
/obj/machinery/light_switch{
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 5
@@ -46400,12 +43854,10 @@
/obj/machinery/hologram/holopad,
/obj/item/radio/intercom{
dir = 4;
- name = "station intercom (General)";
pixel_x = 28
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -46419,8 +43871,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/carpet,
@@ -46440,15 +43891,13 @@
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/turf/simulated/floor/carpet,
/area/crew_quarters/captain/bedroom)
"bQw" = (
/obj/structure/table/wood,
/obj/item/radio/intercom{
- name = "station intercom (General)";
pixel_y = -28
},
/obj/item/storage/box/matches,
@@ -46465,13 +43914,10 @@
base_state = "left";
dir = 1;
icon_state = "left";
- name = "Shower";
- req_access_txt = "0"
+ name = "Shower"
},
/obj/machinery/shower{
- dir = 4;
- icon_state = "shower";
- tag = "icon-shower (EAST)"
+ dir = 4
},
/obj/item/soap/deluxe,
/obj/item/bikehorn/rubberducky,
@@ -46484,8 +43930,7 @@
/area/crew_quarters/captain/bedroom)
"bQy" = (
/obj/machinery/door/airlock{
- name = "Private Restroom";
- req_access_txt = "0"
+ name = "Private Restroom"
},
/turf/simulated/floor/plasteel{
icon_state = "freezerfloor"
@@ -46519,23 +43964,19 @@
tag = ""
},
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
/area/medical/biostorage)
"bQC" = (
/obj/structure/closet/secure_closet/medical3,
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
/area/medical/biostorage)
"bQD" = (
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
- pixel_x = 11;
- pixel_y = 0
+ pixel_x = 11
},
/obj/structure/mirror{
pixel_x = 28
@@ -46555,13 +43996,11 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
/area/medical/biostorage)
"bQF" = (
@@ -46607,7 +44046,6 @@
tag = ""
},
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
@@ -46645,8 +44083,7 @@
},
/obj/machinery/door/airlock/medical{
name = "Morgue";
- req_access_txt = "6;29";
- req_one_access_txt = "0"
+ req_access_txt = "6;29"
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -46683,8 +44120,7 @@
"bQO" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
@@ -46706,8 +44142,7 @@
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
+ icon_state = "whiteblue"
},
/area/medical/paramedic)
"bQQ" = (
@@ -46723,8 +44158,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- icon_state = "whiteblue";
- tag = "icon-whiteblue"
+ icon_state = "whiteblue"
},
/area/medical/reception)
"bQS" = (
@@ -46736,8 +44170,7 @@
},
/obj/machinery/camera{
c_tag = "Medbay Lobby Reception";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/obj/item/storage/box/pillbottles{
pixel_x = -5;
@@ -46745,8 +44178,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (WEST)"
+ icon_state = "whiteblue"
},
/area/medical/reception)
"bQT" = (
@@ -46775,13 +44207,11 @@
"bQW" = (
/obj/effect/decal/warning_stripes/south,
/obj/machinery/light_switch{
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/obj/machinery/camera{
c_tag = "Medbay Chemistry South";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/obj/machinery/chem_master,
/turf/simulated/floor/plasteel,
@@ -46804,14 +44234,12 @@
/area/medical/chemistry)
"bQZ" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whiteyellow"
},
/area/medical/chemistry)
"bRa" = (
/obj/machinery/ai_status_display{
pixel_x = 32;
- pixel_y = 0;
step_size = 0
},
/turf/simulated/floor/plasteel{
@@ -46828,8 +44256,7 @@
icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
/area/medical/biostorage)
"bRc" = (
@@ -46844,37 +44271,30 @@
pixel_y = -6
},
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
/obj/structure/cable,
-/obj/item/gun/syringe{
- pixel_x = 0;
- pixel_y = 0
- },
+/obj/item/gun/syringe,
/obj/item/gun/syringe{
pixel_x = 3;
pixel_y = -3
},
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
/area/medical/biostorage)
"bRd" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/medical{
name = "Morgue";
- req_access_txt = "6;5";
- req_one_access_txt = "0"
+ req_access_txt = "6;5"
},
/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
@@ -46919,7 +44339,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
@@ -46939,8 +44358,7 @@
icon_state = "pipe-c"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
@@ -46964,7 +44382,6 @@
/obj/effect/decal/warning_stripes/east,
/obj/structure/window/reinforced/tinted{
dir = 4;
- icon_state = "twindow";
tag = ""
},
/obj/structure/table,
@@ -47008,9 +44425,7 @@
/turf/simulated/floor/plasteel{
icon_state = "bot"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"bRo" = (
/obj/machinery/navbeacon{
codes_txt = "delivery";
@@ -47039,10 +44454,7 @@
"bRq" = (
/obj/structure/table,
/obj/item/storage/belt/utility,
-/obj/item/storage/toolbox/mechanical{
- pixel_x = 0;
- pixel_y = 0
- },
+/obj/item/storage/toolbox/mechanical,
/obj/item/stack/tape_roll,
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -47071,8 +44483,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/assembly/robotics)
@@ -47098,8 +44509,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 5
@@ -47127,10 +44537,7 @@
},
/obj/item/stack/cable_coil,
/obj/item/stack/cable_coil,
-/obj/item/stock_parts/scanning_module{
- pixel_x = 0;
- pixel_y = 0
- },
+/obj/item/stock_parts/scanning_module,
/obj/item/stock_parts/scanning_module{
pixel_x = 2;
pixel_y = 3
@@ -47216,13 +44623,11 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10;
- initialize_directions = 10;
- level = 1
+ initialize_directions = 10
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -47234,15 +44639,11 @@
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"bRQ" = (
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
- pixel_x = 11;
- pixel_y = 0
+ pixel_x = 11
},
/obj/effect/decal/warning_stripes/southeast,
/obj/machinery/atmospherics/unary/vent_scrubber/on{
@@ -47251,9 +44652,7 @@
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"bRR" = (
/obj/machinery/conveyor/east{
id = "QMLoad2"
@@ -47271,15 +44670,12 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"bRU" = (
/obj/machinery/recharge_station,
/obj/effect/decal/warning_stripes/yellow/hollow,
@@ -47376,8 +44772,7 @@
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/turf/simulated/floor/plasteel,
/area/engine/gravitygenerator)
@@ -47398,7 +44793,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel,
@@ -47432,7 +44826,6 @@
},
/obj/item/radio/intercom{
dir = 4;
- name = "station intercom (General)";
pixel_x = 28
},
/turf/simulated/floor/plasteel,
@@ -47442,7 +44835,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/cable{
@@ -47462,8 +44854,7 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/quartermaster/storage)
@@ -47476,13 +44867,11 @@
/obj/machinery/vending/medical,
/obj/machinery/camera{
c_tag = "Medbay Corridor West";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay2)
"bSp" = (
@@ -47502,13 +44891,11 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/quartermaster/office)
@@ -47530,8 +44917,7 @@
},
/turf/simulated/floor/plasteel{
dir = 6;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (SOUTHEAST)"
+ icon_state = "whiteblue"
},
/area/medical/reception)
"bSr" = (
@@ -47539,15 +44925,13 @@
/obj/structure/disposalpipe/trunk,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay2)
"bSs" = (
/obj/machinery/vending/medical,
/turf/simulated/floor/plasteel{
- icon_state = "whiteblue";
- tag = "icon-whiteblue"
+ icon_state = "whiteblue"
},
/area/medical/reception)
"bSt" = (
@@ -47582,14 +44966,12 @@
/area/medical/medbay2)
"bSv" = (
/obj/machinery/ai_status_display{
- pixel_x = 0;
pixel_y = 32;
step_size = 0
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay2)
"bSw" = (
@@ -47638,9 +45020,7 @@
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"bSA" = (
/obj/machinery/door/airlock/maintenance{
name = "Disposal Access";
@@ -47674,8 +45054,7 @@
pixel_y = 25
},
/obj/machinery/camera{
- c_tag = "Medbay Cloning";
- network = list("SS13")
+ c_tag = "Medbay Cloning"
},
/turf/simulated/floor/plasteel{
icon_state = "freezerfloor"
@@ -47690,7 +45069,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
@@ -47714,7 +45092,6 @@
"bSF" = (
/obj/structure/sink{
dir = 8;
- icon_state = "sink";
pixel_x = -12;
pixel_y = 2
},
@@ -47830,16 +45207,14 @@
/obj/effect/decal/warning_stripes/southwestcorner,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay2)
"bSP" = (
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay2)
"bSQ" = (
@@ -47866,27 +45241,22 @@
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay2)
"bSS" = (
/obj/machinery/camera{
- c_tag = "Medbay Corridor Center";
- network = list("SS13")
+ c_tag = "Medbay Corridor Center"
},
/obj/machinery/requests_console{
department = "Medbay";
departmentType = 1;
name = "Medbay Requests Console";
- pixel_x = 0;
- pixel_y = 30;
- pixel_z = 0
+ pixel_y = 30
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay2)
"bST" = (
@@ -47897,11 +45267,9 @@
"bSU" = (
/obj/item/radio/intercom{
dir = 4;
- name = "station intercom (General)";
pixel_x = 28
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "redcorner"
},
/area/hallway/primary/central/sw)
@@ -47911,14 +45279,11 @@
},
/obj/machinery/camera{
c_tag = "Medbay Secondary Hallway North";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay2)
"bSW" = (
@@ -47928,7 +45293,6 @@
pixel_y = 12
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitecorner"
},
/area/assembly/robotics)
@@ -47956,12 +45320,9 @@
},
/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitecorner"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"bTa" = (
/obj/structure/table/reinforced,
/obj/item/folder/white,
@@ -47969,7 +45330,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/poddoor/shutters{
density = 0;
- dir = 4;
icon_state = "open";
id_tag = "robotics2";
name = "Robotics Lab Shutters";
@@ -47990,7 +45350,6 @@
"bTc" = (
/obj/structure/table,
/obj/machinery/newscaster/security_unit{
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/plasteel,
@@ -48003,7 +45362,6 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/obj/structure/bed/dogbed/ian,
@@ -48016,8 +45374,7 @@
/area/toxins/lab)
"bTf" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/structure/cable{
d1 = 1;
@@ -48064,13 +45421,11 @@
in_use = 1
},
/obj/machinery/firealarm{
- dir = 2;
pixel_y = 24
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay2)
"bTi" = (
@@ -48078,14 +45433,12 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/engineering/glass{
name = "Engineering";
- req_access_txt = "10";
- req_one_access_txt = "0"
+ req_access_txt = "10"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -48101,15 +45454,12 @@
/obj/item/reagent_containers/food/drinks/bottle/absinthe/premium,
/obj/item/lighter/zippo/nt_rep,
/obj/item/storage/fancy/cigarettes/cigpack_robustgold,
-/obj/item/toy/figure/captain,
+/obj/item/toy/figure/crew/captain,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/carpet,
/area/crew_quarters/captain/bedroom)
"bTk" = (
-/obj/machinery/vending/cigarette{
- pixel_x = 0;
- pixel_y = 0
- },
+/obj/machinery/vending/cigarette,
/turf/simulated/floor/plasteel,
/area/hallway/primary/central/sw)
"bTm" = (
@@ -48160,13 +45510,10 @@
dir = 9;
icon_state = "whitehall"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"bTx" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
@@ -48184,13 +45531,11 @@
department = "Cargo Bay";
departmentType = 2;
name = "Cargo Requests Console";
- pixel_x = -30;
- pixel_y = 0
+ pixel_x = -30
},
/obj/machinery/camera{
c_tag = "Cargo Office";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/obj/item/stack/sheet/glass{
amount = 50;
@@ -48208,7 +45553,6 @@
/obj/item/bedsheet/captain,
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/turf/simulated/floor/carpet,
@@ -48241,7 +45585,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/carpet,
@@ -48252,7 +45595,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel,
@@ -48322,8 +45664,7 @@
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/paramedic)
"bTJ" = (
@@ -48334,7 +45675,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/pdapainter,
@@ -48347,8 +45687,7 @@
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/paramedic)
"bTM" = (
@@ -48360,14 +45699,12 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (WEST)"
+ icon_state = "whiteblue"
},
/area/medical/reception)
"bTN" = (
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/turf/simulated/floor/plasteel,
/area/engine/gravitygenerator)
@@ -48385,8 +45722,7 @@
},
/obj/machinery/camera{
c_tag = "Gravity Generator Room South";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/obj/machinery/light{
dir = 4
@@ -48398,22 +45734,17 @@
dir = 8
},
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
/area/medical/reception)
"bTR" = (
/obj/machinery/firealarm{
- dir = 2;
pixel_y = 24
},
/turf/simulated/floor/plasteel,
/area/teleporter)
"bTS" = (
/obj/item/radio/intercom{
- broadcasting = 0;
- listening = 1;
- name = "station intercom (General)";
pixel_y = 25
},
/obj/structure/closet/crate,
@@ -48428,21 +45759,16 @@
},
/area/medical/chemistry)
"bTU" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
/area/medical/biostorage)
"bTV" = (
/obj/machinery/camera{
- c_tag = "Teleporter Room";
- network = list("SS13")
+ c_tag = "Teleporter Room"
},
/obj/machinery/alarm{
- frequency = 1439;
pixel_y = 23
},
/turf/simulated/floor/plasteel,
@@ -48468,7 +45794,6 @@
},
/obj/structure/disposalpipe/trunk,
/obj/machinery/firealarm{
- dir = 2;
pixel_y = 24
},
/turf/simulated/floor/plasteel{
@@ -48491,7 +45816,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/item/radio/intercom{
@@ -48523,7 +45847,6 @@
/area/assembly/robotics)
"bUf" = (
/obj/machinery/door/window/southright{
- dir = 2;
name = "Primate Pen";
req_access_txt = "9"
},
@@ -48541,9 +45864,7 @@
"bUh" = (
/obj/structure/sign/securearea,
/turf/simulated/wall/r_wall,
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"bUi" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -48569,8 +45890,7 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10;
- initialize_directions = 10;
- level = 1
+ initialize_directions = 10
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
@@ -48595,12 +45915,10 @@
"bUm" = (
/obj/structure/disposalpipe/junction{
dir = 1;
- icon_state = "pipe-j2";
- tag = "icon-pipe-j2"
+ icon_state = "pipe-j2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 5
@@ -48618,8 +45936,7 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10;
- initialize_directions = 10;
- level = 1
+ initialize_directions = 10
},
/turf/simulated/floor/plasteel,
/area/quartermaster/office)
@@ -48680,7 +45997,6 @@
},
/obj/machinery/status_display{
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/obj/machinery/light{
@@ -48690,21 +46006,17 @@
/obj/structure/table/tray,
/obj/item/scalpel,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whiteblue"
},
/area/medical/surgery1)
"bUv" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/engine/gravitygenerator)
@@ -48721,7 +46033,6 @@
"bUy" = (
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/machinery/power/terminal,
@@ -48766,8 +46077,7 @@
},
/obj/machinery/camera{
c_tag = "Captain's Quarters";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 1
@@ -48777,12 +46087,10 @@
"bUC" = (
/obj/machinery/light,
/obj/effect/decal/warning_stripes/arrow{
- dir = 8;
- icon_state = "4"
+ dir = 8
},
/obj/effect/decal/warning_stripes/yellow/partial{
- dir = 8;
- icon_state = "3"
+ dir = 8
},
/turf/simulated/floor/plasteel,
/area/quartermaster/storage)
@@ -48797,8 +46105,7 @@
"bUE" = (
/obj/structure/disposalpipe/junction{
dir = 4;
- icon_state = "pipe-j2";
- tag = "icon-pipe-j2 (EAST)"
+ icon_state = "pipe-j2"
},
/turf/simulated/wall,
/area/quartermaster/office)
@@ -48833,22 +46140,18 @@
/area/assembly/robotics)
"bUI" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/medical/genetics)
"bUJ" = (
/obj/structure/closet/wardrobe/genetics_white,
/obj/machinery/camera{
- c_tag = "Medbay Genetics";
- network = list("SS13")
+ c_tag = "Medbay Genetics"
},
/obj/structure/extinguisher_cabinet{
- pixel_x = 25;
- pixel_y = 0
+ pixel_x = 25
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/medical/genetics)
@@ -48857,9 +46160,7 @@
dir = 5;
icon_state = "whitehall"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"bUL" = (
/obj/structure/cable{
d1 = 1;
@@ -48868,42 +46169,26 @@
tag = ""
},
/obj/effect/decal/warning_stripes/yellow/partial{
- dir = 8;
- icon_state = "3"
+ dir = 8
},
/obj/effect/decal/warning_stripes/arrow{
- dir = 8;
- icon_state = "4"
+ dir = 8
},
/turf/simulated/floor/plasteel,
/area/hallway/primary/central/se)
"bUM" = (
-/obj/structure/closet/crate/freezer,
-/obj/item/tank/internals/emergency_oxygen/engi/empty,
-/obj/item/tank/internals/emergency_oxygen/engi/empty,
-/obj/item/reagent_containers/iv_bag/blood/AMinus,
-/obj/item/reagent_containers/iv_bag/blood/APlus,
-/obj/item/reagent_containers/iv_bag/blood/BMinus,
-/obj/item/reagent_containers/iv_bag/blood/BPlus,
-/obj/item/reagent_containers/iv_bag/blood/OMinus,
-/obj/item/reagent_containers/iv_bag/blood/OPlus,
-/obj/item/reagent_containers/iv_bag/blood/random,
-/obj/item/reagent_containers/iv_bag/blood/random,
-/obj/item/reagent_containers/iv_bag/blood/random,
/obj/machinery/iv_drip,
/obj/machinery/ai_status_display{
pixel_y = -32
},
-/obj/item/reagent_containers/iv_bag/salglu,
+/obj/structure/closet/crate/freezer/iv_storage,
/turf/simulated/floor/plasteel{
- icon_state = "whiteblue";
- tag = "icon-whiteblue"
+ icon_state = "whiteblue"
},
/area/medical/sleeper)
"bUN" = (
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -48919,14 +46204,11 @@
},
/obj/machinery/camera{
c_tag = "Research Hallway Entrance";
- dir = 2;
network = list("Research","SS13")
},
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"bUP" = (
/obj/machinery/door/poddoor{
density = 0;
@@ -48939,9 +46221,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"bUQ" = (
/obj/structure/table,
/obj/machinery/cell_charger,
@@ -48984,7 +46264,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -48998,8 +46277,7 @@
"bUV" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 6
@@ -49028,13 +46306,11 @@
"bUY" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/hallway/primary/central/sw)
@@ -49072,7 +46348,6 @@
"bVd" = (
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/structure/cable{
@@ -49085,8 +46360,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/crew_quarters/heads)
@@ -49096,7 +46370,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/cable{
@@ -49118,8 +46391,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -49138,15 +46410,13 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel,
/area/quartermaster/storage)
"bVo" = (
/obj/machinery/status_display{
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/obj/structure/rack,
@@ -49170,8 +46440,7 @@
/area/quartermaster/storage)
"bVq" = (
/obj/structure/sign/securearea{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/structure/cable{
d1 = 1;
@@ -49207,8 +46476,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
@@ -49228,7 +46496,6 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/obj/structure/cable{
@@ -49247,8 +46514,6 @@
tag = ""
},
/obj/item/radio/intercom{
- frequency = 1459;
- name = "station intercom (General)";
pixel_x = 28
},
/turf/simulated/floor/plasteel,
@@ -49284,7 +46549,6 @@
"bVB" = (
/obj/machinery/message_server,
/obj/machinery/firealarm{
- dir = 2;
pixel_y = 24
},
/turf/simulated/floor/bluegrid,
@@ -49304,14 +46568,11 @@
"bVD" = (
/obj/structure/window/reinforced/tinted{
dir = 4;
- icon_state = "twindow";
tag = ""
},
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
- pixel_x = 4;
- pixel_y = 0
+ pixel_x = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -49320,17 +46581,14 @@
/area/assembly/robotics)
"bVE" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "whitecorner"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"bVF" = (
/obj/effect/landmark{
name = "lightsout"
@@ -49339,12 +46597,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitehall"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"bVG" = (
/obj/machinery/door/firedoor,
/obj/structure/cable{
@@ -49380,7 +46635,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -49412,7 +46666,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/photocopier,
@@ -49456,7 +46709,6 @@
/obj/item/radio/beacon,
/obj/machinery/status_display{
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/plasteel,
@@ -49494,8 +46746,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/hallway/primary/central/se)
@@ -49520,7 +46771,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -49528,8 +46778,7 @@
icon_state = "pipe-c"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -49553,7 +46802,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -49566,14 +46814,12 @@
"bVW" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10;
- initialize_directions = 10;
- level = 1
+ initialize_directions = 10
},
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -49593,8 +46839,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 10
@@ -49620,8 +46865,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -49631,8 +46875,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -49652,12 +46895,10 @@
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'KEEP CLEAR: EMERGENCY ENTRANCE'.";
name = "KEEP CLEAR: EMERGENCY ENTRANCE";
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 8
@@ -49668,22 +46909,18 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"bWd" = (
/turf/simulated/wall,
/area/medical/genetics_cloning)
"bWe" = (
/obj/machinery/light_switch{
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/obj/structure/closet/secure_closet/roboticist,
/turf/simulated/floor/plasteel{
@@ -49700,9 +46937,7 @@
"bWh" = (
/obj/machinery/photocopier,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay2)
"bWi" = (
@@ -49716,7 +46951,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -49729,9 +46963,7 @@
dir = 9;
icon_state = "whitehall"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"bWl" = (
/obj/structure/cable{
d1 = 2;
@@ -49741,20 +46973,16 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"bWm" = (
/obj/structure/chair/comfy/teal{
dir = 1
@@ -49763,9 +46991,7 @@
name = "Medical Doctor"
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay2)
"bWn" = (
@@ -49773,7 +46999,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -49785,19 +47010,14 @@
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"bWo" = (
/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
pixel_y = -30
},
/obj/machinery/vending/coffee,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay2)
"bWp" = (
@@ -49805,7 +47025,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/noticeboard{
@@ -49820,15 +47039,12 @@
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"bWq" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -49841,9 +47057,7 @@
dir = 4;
icon_state = "whitepurplecorner"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"bWr" = (
/obj/structure/cable{
d1 = 1;
@@ -49855,23 +47069,19 @@
dir = 9
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "whitepurple"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"bWs" = (
/obj/structure/table,
/obj/item/soap/nanotrasen,
/turf/simulated/floor/plasteel{
dir = 6;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whiteblue"
},
/area/medical/medbay2)
"bWt" = (
@@ -49913,8 +47123,7 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (WEST)"
+ icon_state = "whiteblue"
},
/area/medical/sleeper)
"bWy" = (
@@ -49925,8 +47134,7 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay2)
"bWA" = (
@@ -49947,7 +47155,6 @@
/obj/item/crowbar,
/obj/item/reagent_containers/spray/cleaner,
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
@@ -49957,7 +47164,6 @@
id = "CloningDoor";
name = "Cloning Doors Control";
normaldoorcontrol = 1;
- pixel_x = 0;
pixel_y = -36
},
/turf/simulated/floor/plasteel{
@@ -49987,7 +47193,6 @@
dir = 1;
icon_state = "left";
name = "Cryo Tank Storage";
- req_access_txt = "0";
req_one_access_txt = "5;32"
},
/obj/machinery/atmospherics/unary/portables_connector{
@@ -50044,15 +47249,12 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "ramptop";
- tag = "icon-stage_stairs"
+ icon_state = "ramptop"
},
/area/escapepodbay)
"bWS" = (
@@ -50066,12 +47268,10 @@
opacity = 0
},
/obj/effect/decal/warning_stripes/yellow/partial{
- dir = 4;
- icon_state = "3"
+ dir = 4
},
/obj/effect/decal/warning_stripes/arrow{
- dir = 4;
- icon_state = "4"
+ dir = 4
},
/obj/machinery/ticket_machine{
layer = 4;
@@ -50082,9 +47282,7 @@
"bWT" = (
/obj/machinery/computer/arcade,
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/plasteel,
@@ -50104,7 +47302,6 @@
/obj/structure/table,
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/obj/item/storage/belt/utility,
@@ -50124,8 +47321,7 @@
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
dir = 10;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whiteblue"
},
/area/medical/sleeper)
"bWY" = (
@@ -50155,12 +47351,9 @@
/turf/simulated/floor/plasteel,
/area/crew_quarters/heads)
"bXb" = (
-/obj/machinery/computer/security/mining{
- network = list("Mining Outpost")
- },
+/obj/machinery/computer/security/mining,
/obj/machinery/keycard_auth{
- pixel_x = -24;
- pixel_y = 0
+ pixel_x = -24
},
/turf/simulated/floor/plasteel{
dir = 9;
@@ -50193,8 +47386,7 @@
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/quartermaster/storage)
@@ -50217,13 +47409,11 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/quartermaster/office)
@@ -50235,7 +47425,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -50244,8 +47433,7 @@
/area/maintenance/asmaint2)
"bXj" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 9
@@ -50258,8 +47446,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/quartermaster/office)
@@ -50292,10 +47479,8 @@
/area/crew_quarters/heads)
"bXq" = (
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/structure/cable{
d1 = 1;
@@ -50306,8 +47491,7 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
@@ -50321,7 +47505,6 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/turf/simulated/floor/bluegrid,
@@ -50333,14 +47516,11 @@
/obj/machinery/disposal,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (WEST)"
+ icon_state = "whitepurple"
},
/area/medical/genetics)
"bXt" = (
/obj/item/radio/intercom{
- broadcasting = 0;
- name = "station intercom (General)";
pixel_y = 25
},
/obj/machinery/atmospherics/unary/vent_pump/on,
@@ -50352,7 +47532,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/engineering{
name = "Gravity Generator";
- req_access_txt = "0";
req_one_access_txt = "10;30"
},
/obj/structure/cable{
@@ -50376,8 +47555,7 @@
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (EAST)"
+ icon_state = "whitepurple"
},
/area/medical/genetics)
"bXw" = (
@@ -50385,7 +47563,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/chair/stool,
@@ -50402,8 +47579,7 @@
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/turf/simulated/floor/plasteel,
/area/teleporter)
@@ -50412,7 +47588,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/bluespace_beacon,
@@ -50427,7 +47602,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -50438,16 +47612,14 @@
"bXA" = (
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay2)
"bXB" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'KEEP CLEAR: EMERGENCY ENTRANCE'.";
name = "KEEP CLEAR: EMERGENCY ENTRANCE";
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/turf/simulated/floor/plasteel,
/area/hallway/primary/central/se)
@@ -50456,7 +47628,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -50475,30 +47646,26 @@
/obj/item/roller,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
+ icon_state = "whiteblue"
},
/area/medical/sleeper)
"bXF" = (
/obj/machinery/light_switch{
- pixel_x = -21;
- pixel_y = 0
+ pixel_x = -21
},
/obj/machinery/sleeper{
dir = 4
},
/turf/simulated/floor/plasteel{
dir = 9;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTHWEST)"
+ icon_state = "whiteblue"
},
/area/medical/sleeper)
"bXG" = (
/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whiteblue"
},
/area/medical/sleeper)
"bXH" = (
@@ -50518,8 +47685,7 @@
/obj/machinery/vending/medical,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whiteblue"
},
/area/medical/sleeper)
"bXJ" = (
@@ -50562,8 +47728,7 @@
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
+ icon_state = "whiteblue"
},
/area/medical/sleeper)
"bXK" = (
@@ -50572,8 +47737,7 @@
pixel_x = -24
},
/obj/machinery/shower{
- dir = 4;
- icon_state = "shower"
+ dir = 4
},
/obj/effect/decal/warning_stripes/blue/hollow,
/turf/simulated/floor/plasteel/dark,
@@ -50623,14 +47787,11 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/vending/wallmed{
name = "Emergency NanoMed";
- pixel_x = -25;
- pixel_y = 0;
- req_access_txt = "0"
+ pixel_x = -25
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay2)
"bXQ" = (
@@ -50640,13 +47801,10 @@
/area/medical/genetics)
"bXR" = (
/obj/structure/closet/walllocker/emerglocker/north{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay2)
"bXS" = (
@@ -50696,17 +47854,14 @@
/obj/item/roller,
/obj/machinery/alarm{
dir = 4;
- pixel_x = -25;
- pixel_y = 0
+ pixel_x = -25
},
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (WEST)"
+ icon_state = "whitepurple"
},
/area/medical/genetics)
"bXW" = (
@@ -50724,7 +47879,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -50742,7 +47896,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -50758,7 +47911,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/cable{
@@ -50774,13 +47926,11 @@
"bYa" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/hallway/primary/central/se)
@@ -50820,13 +47970,10 @@
/turf/simulated/floor/plasteel,
/area/hallway/primary/central/se)
"bYd" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay2)
"bYe" = (
@@ -50837,20 +47984,15 @@
},
/area/medical/medbay2)
"bYf" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay2)
"bYg" = (
/obj/machinery/atmospherics/pipe/simple/hidden,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
icon_state = "freezerfloor"
},
@@ -50861,7 +48003,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/cable{
@@ -50897,8 +48038,7 @@
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (EAST)"
+ icon_state = "whitepurple"
},
/area/medical/genetics)
"bYl" = (
@@ -50906,8 +48046,7 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/door/airlock/research/glass{
name = "Robotics Lab";
- req_access_txt = "29";
- req_one_access_txt = "0"
+ req_access_txt = "29"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -50927,9 +48066,7 @@
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"bYn" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -50951,8 +48088,7 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/turf/simulated/floor/plasteel,
/area/escapepodbay)
@@ -50974,8 +48110,7 @@
/obj/item/bedsheet/medical,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
+ icon_state = "whiteblue"
},
/area/medical/sleeper)
"bYu" = (
@@ -50995,8 +48130,7 @@
/obj/effect/mapping_helpers/airlock/unres,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (WEST)"
+ icon_state = "whiteblue"
},
/area/medical/reception)
"bYw" = (
@@ -51012,7 +48146,6 @@
"bYx" = (
/obj/machinery/light,
/obj/item/radio/intercom{
- name = "station intercom (General)";
pixel_y = -28
},
/obj/effect/decal/warning_stripes/north,
@@ -51061,8 +48194,7 @@
/obj/item/roller,
/obj/item/soap/nanotrasen,
/turf/simulated/floor/plasteel{
- icon_state = "whiteblue";
- tag = "icon-whiteblue"
+ icon_state = "whiteblue"
},
/area/medical/sleeper)
"bYD" = (
@@ -51077,7 +48209,6 @@
dir = 1
},
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
@@ -51125,13 +48256,11 @@
icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "browncorner"
},
/area/quartermaster/office)
"bYI" = (
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
@@ -51184,8 +48313,7 @@
"bYO" = (
/obj/machinery/camera{
c_tag = "Cargo Bay Entrance";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/obj/machinery/atm{
pixel_x = -24
@@ -51209,7 +48337,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_y = 0;
tag = ""
},
/obj/structure/plasticflaps{
@@ -51235,8 +48362,7 @@
},
/obj/machinery/camera{
c_tag = "Head of Personnel's Office";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel,
@@ -51245,7 +48371,6 @@
/obj/structure/filingcabinet/chestdrawer,
/obj/item/radio/intercom{
dir = 8;
- name = "station intercom (General)";
pixel_x = -28
},
/turf/simulated/floor/plasteel{
@@ -51279,8 +48404,7 @@
"bYW" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
@@ -51340,7 +48464,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/door/firedoor,
@@ -51363,12 +48486,10 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 6
@@ -51386,13 +48507,11 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/engine/gravitygenerator)
@@ -51401,11 +48520,9 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/firealarm{
- dir = 2;
pixel_y = 24
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -51419,23 +48536,19 @@
"bZh" = (
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/sleeper)
"bZi" = (
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/sleeper)
"bZj" = (
/obj/structure/sink{
dir = 8;
- icon_state = "sink";
- pixel_x = -12;
- pixel_y = 0
+ pixel_x = -12
},
/obj/machinery/firealarm{
dir = 8;
@@ -51443,8 +48556,7 @@
},
/turf/simulated/floor/plasteel{
dir = 9;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTHWEST)"
+ icon_state = "whiteblue"
},
/area/medical/sleeper)
"bZk" = (
@@ -51456,8 +48568,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/structure/cable{
d1 = 1;
@@ -51479,14 +48590,12 @@
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whiteblue"
},
/area/medical/sleeper)
"bZn" = (
/obj/item/radio/intercom{
dir = 4;
- name = "station intercom (General)";
pixel_x = 28
},
/turf/simulated/floor/plasteel,
@@ -51547,8 +48656,7 @@
tag = ""
},
/obj/structure/sign/securearea{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/structure/disposalpipe/segment{
dir = 1;
@@ -51575,16 +48683,13 @@
/obj/machinery/computer/card/minor/cmo,
/obj/machinery/camera{
c_tag = "Medbay Chief Medical Officer's Office";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/obj/item/radio/intercom/department/medbay{
pixel_x = -32;
pixel_y = 5
},
/obj/item/radio/intercom{
- frequency = 1459;
- name = "station intercom (General)";
pixel_x = -32;
pixel_y = -8
},
@@ -51632,7 +48737,6 @@
/area/medical/cmo)
"bZA" = (
/obj/machinery/keycard_auth{
- pixel_x = 0;
pixel_y = 26
},
/obj/machinery/light_switch{
@@ -51651,8 +48755,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitepurplefull";
- tag = "icon-whitepurple (WEST)"
+ icon_state = "whitepurplefull"
},
/area/medical/genetics)
"bZC" = (
@@ -51678,13 +48781,10 @@
icon_state = "1-8"
},
/obj/structure/disposalpipe/junction{
- dir = 8;
- icon_state = "pipe-j1";
- tag = "icon-pipe-j1 (EAST)"
+ dir = 8
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 5
@@ -51707,8 +48807,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (WEST)"
+ icon_state = "whiteblue"
},
/area/medical/medbay2)
"bZF" = (
@@ -51740,7 +48839,6 @@
},
/obj/structure/disposalpipe/sortjunction{
dir = 8;
- icon_state = "pipe-j1s";
name = "Medbay Hall";
sortType = 9
},
@@ -51777,8 +48875,7 @@
/area/medical/medbay2)
"bZI" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
},
/obj/structure/cable{
d1 = 4;
@@ -51830,8 +48927,7 @@
},
/obj/structure/disposalpipe/junction{
dir = 8;
- icon_state = "pipe-j2";
- tag = "icon-pipe-j1 (WEST)"
+ icon_state = "pipe-j2"
},
/obj/machinery/hologram/holopad,
/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
@@ -51880,7 +48976,6 @@
},
/obj/structure/disposalpipe/sortjunction{
dir = 8;
- icon_state = "pipe-j1s";
name = "Med Chemistry";
sortType = 11
},
@@ -51935,8 +49030,7 @@
/area/medical/medbay2)
"bZP" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
},
/obj/structure/cable{
d1 = 4;
@@ -51955,8 +49049,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -51973,9 +49066,7 @@
tag = ""
},
/obj/structure/disposalpipe/junction{
- dir = 8;
- icon_state = "pipe-j1";
- tag = "icon-pipe-j1 (EAST)"
+ dir = 8
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -52007,8 +49098,7 @@
/area/medical/reception)
"bZS" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -52049,9 +49139,7 @@
req_access_txt = "30"
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/hor)
"bZU" = (
@@ -52080,9 +49168,7 @@
pixel_y = 30
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/hor)
"bZW" = (
@@ -52107,8 +49193,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 5;
- icon_state = "intact"
+ dir = 5
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
@@ -52131,13 +49216,11 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10;
- initialize_directions = 10;
- level = 1
+ initialize_directions = 10
},
/turf/simulated/floor/plasteel{
icon_state = "freezerfloor"
@@ -52176,18 +49259,7 @@
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
-"cac" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
+/area/medical/research)
"cad" = (
/obj/item/radio/intercom{
pixel_y = 25
@@ -52195,26 +49267,20 @@
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"caj" = (
/obj/machinery/camera{
c_tag = "Research Hallway West";
- dir = 2;
network = list("Research","SS13")
},
/obj/machinery/status_display{
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cal" = (
/obj/structure/extinguisher_cabinet{
pixel_x = -5;
@@ -52223,9 +49289,7 @@
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cam" = (
/turf/simulated/wall,
/area/quartermaster/miningdock)
@@ -52246,8 +49310,7 @@
/obj/effect/mapping_helpers/airlock/unres,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whiteblue"
},
/area/medical/reception)
"cao" = (
@@ -52282,8 +49345,7 @@
/obj/machinery/disposal,
/obj/structure/disposalpipe/trunk,
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/quartermaster/qm)
@@ -52292,24 +49354,18 @@
dir = 4;
icon_state = "whiteredcorner"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cav" = (
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "whiteredcorner"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"caw" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -52324,9 +49380,7 @@
dir = 1;
icon_state = "whitered"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cay" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 8
@@ -52335,22 +49389,17 @@
dir = 9;
icon_state = "whitehall"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"caz" = (
/obj/structure/sign/poster/random{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (WEST)"
+ icon_state = "whiteblue"
},
/area/medical/sleeper)
"caA" = (
@@ -52366,16 +49415,13 @@
/obj/machinery/hologram/holopad,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"caC" = (
/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
@@ -52470,13 +49516,11 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whiteblue"
},
/area/medical/sleeper)
"caI" = (
@@ -52488,7 +49532,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -52510,7 +49553,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment,
@@ -52530,11 +49572,9 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
pixel_y = -30
},
/turf/simulated/floor/plasteel{
@@ -52549,7 +49589,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/manifold4w/hidden,
@@ -52568,7 +49607,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden{
@@ -52590,14 +49628,12 @@
/area/medical/cryo)
"caO" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden{
@@ -52646,8 +49682,7 @@
dir = 9
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/turf/simulated/floor/plating,
/area/maintenance/asmaint2)
@@ -52686,7 +49721,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
@@ -52703,8 +49737,7 @@
},
/turf/simulated/floor/plasteel{
dir = 10;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (SOUTHWEST)"
+ icon_state = "whitepurple"
},
/area/medical/genetics)
"caX" = (
@@ -52712,8 +49745,7 @@
/obj/structure/window/reinforced,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitepurplefull";
- tag = "icon-whitepurple (WEST)"
+ icon_state = "whitepurplefull"
},
/area/medical/genetics)
"caY" = (
@@ -52725,15 +49757,13 @@
},
/turf/simulated/floor/plasteel{
dir = 6;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (SOUTHEAST)"
+ icon_state = "whitepurple"
},
/area/medical/genetics)
"caZ" = (
/obj/structure/table/glass,
/obj/item/storage/box/disks,
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
@@ -52741,8 +49771,7 @@
/obj/structure/cable,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitepurplefull";
- tag = "icon-whitepurple (WEST)"
+ icon_state = "whitepurplefull"
},
/area/medical/genetics)
"cba" = (
@@ -52771,8 +49800,7 @@
pixel_x = 27
},
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/structure/cable{
d1 = 1;
@@ -52791,7 +49819,6 @@
"cbe" = (
/obj/machinery/alarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/turf/simulated/floor/bluegrid,
@@ -52805,8 +49832,7 @@
},
/obj/machinery/camera{
c_tag = "Messaging Server";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/obj/machinery/light/small{
dir = 4
@@ -52821,12 +49847,10 @@
"cbh" = (
/obj/machinery/camera{
c_tag = "Gravity Generator Foyer";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/obj/structure/closet/radiation,
@@ -52855,9 +49879,7 @@
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cbl" = (
/obj/machinery/computer/teleporter,
/turf/simulated/floor/plating,
@@ -52867,12 +49889,10 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/sortjunction{
dir = 8;
- icon_state = "pipe-j1s";
name = "Captain's Office";
sortType = 18
},
@@ -52885,9 +49905,7 @@
dir = 9;
icon_state = "whitehall"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cbo" = (
/obj/structure/cable{
d1 = 1;
@@ -52906,10 +49924,8 @@
icon_state = "pipe-c"
},
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/turf/simulated/floor/plasteel,
/area/hallway/primary/central/se)
@@ -52918,17 +49934,13 @@
/obj/item/megaphone,
/obj/structure/table/glass,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/hor)
"cbq" = (
/obj/machinery/computer/robotics,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/hor)
"cbr" = (
@@ -52946,8 +49958,7 @@
icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
/area/medical/biostorage)
"cbs" = (
@@ -52988,19 +49999,16 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (WEST)"
+ icon_state = "whiteblue"
},
/area/medical/medbay2)
"cbv" = (
/obj/item/radio/intercom{
- name = "station intercom (General)";
pixel_y = -28
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner (WEST)"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay2)
"cbw" = (
@@ -53015,8 +50023,7 @@
req_access_txt = "5"
},
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
/area/medical/biostorage)
"cbz" = (
@@ -53046,7 +50053,6 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/obj/structure/cable{
@@ -53111,24 +50117,20 @@
dir = 1
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay2)
"cbO" = (
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner (WEST)"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay2)
"cbP" = (
/obj/machinery/light,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner (WEST)"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay2)
"cbQ" = (
@@ -53147,7 +50149,6 @@
"cbR" = (
/obj/item/radio/intercom{
dir = 4;
- name = "station intercom (General)";
pixel_x = 28
},
/obj/structure/disposalpipe/segment,
@@ -53159,36 +50160,29 @@
/area/toxins/test_area)
"cbT" = (
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
/obj/structure/cable,
/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay2)
"cbU" = (
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner (WEST)"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay2)
"cbV" = (
/obj/machinery/light,
/obj/item/radio/intercom{
- name = "station intercom (General)";
pixel_y = -28
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay2)
"cbW" = (
@@ -53230,8 +50224,7 @@
},
/obj/effect/decal/warning_stripes/northeast,
/obj/effect/mapping_helpers/airlock/unres{
- dir = 4;
- icon_state = "airlock_unres_helper"
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/hallway/primary/central/se)
@@ -53240,7 +50233,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/unary/vent_pump/on{
@@ -53251,23 +50243,10 @@
},
/area/medical/genetics_cloning)
"cca" = (
-/obj/structure/closet/crate/freezer,
-/obj/item/tank/internals/emergency_oxygen/engi/empty,
-/obj/item/tank/internals/emergency_oxygen/engi/empty,
-/obj/item/reagent_containers/iv_bag/blood/AMinus,
-/obj/item/reagent_containers/iv_bag/blood/APlus,
-/obj/item/reagent_containers/iv_bag/blood/BMinus,
-/obj/item/reagent_containers/iv_bag/blood/BPlus,
-/obj/item/reagent_containers/iv_bag/blood/OMinus,
-/obj/item/reagent_containers/iv_bag/blood/OPlus,
-/obj/item/reagent_containers/iv_bag/blood/random,
-/obj/item/reagent_containers/iv_bag/blood/random,
-/obj/item/reagent_containers/iv_bag/blood/random,
/obj/machinery/iv_drip,
-/obj/item/reagent_containers/iv_bag/salglu,
+/obj/structure/closet/crate/freezer/iv_storage,
/turf/simulated/floor/plasteel{
- icon_state = "whiteblue";
- tag = "icon-whiteblue"
+ icon_state = "whiteblue"
},
/area/medical/sleeper)
"ccb" = (
@@ -53294,7 +50273,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -53319,7 +50297,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -53340,8 +50317,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 6
@@ -53352,15 +50328,12 @@
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"ccf" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/light,
@@ -53373,21 +50346,17 @@
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"ccg" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 1
@@ -53395,15 +50364,12 @@
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cch" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -53418,15 +50384,12 @@
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cci" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -53438,15 +50401,12 @@
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"ccj" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -53462,9 +50422,7 @@
dir = 5;
icon_state = "whitehall"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cck" = (
/obj/structure/table/glass,
/obj/item/hemostat{
@@ -53476,14 +50434,11 @@
},
/obj/item/stack/medical/bruise_pack/advanced,
/obj/machinery/firealarm{
- dir = 2;
pixel_y = 24
},
/obj/item/reagent_containers/iv_bag/salglu,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whiteblue"
},
/area/medical/surgery1)
"ccl" = (
@@ -53530,38 +50485,30 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"ccq" = (
/obj/machinery/camera{
c_tag = "Medbay Treatment Center";
- dir = 1;
- network = list("SS13");
- pixel_x = 0
+ dir = 1
},
/obj/machinery/light,
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
/obj/structure/cable,
/obj/item/roller,
/turf/simulated/floor/plasteel{
- icon_state = "whiteblue";
- tag = "icon-whiteblue"
+ icon_state = "whiteblue"
},
/area/medical/sleeper)
"ccr" = (
@@ -53573,9 +50520,7 @@
},
/obj/structure/table/glass,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/hor)
"ccs" = (
@@ -53583,12 +50528,10 @@
dir = 4
},
/obj/item/radio/intercom{
- name = "station intercom (General)";
pixel_y = -28
},
/turf/simulated/floor/plasteel{
- icon_state = "whiteblue";
- tag = "icon-whiteblue"
+ icon_state = "whiteblue"
},
/area/medical/sleeper)
"cct" = (
@@ -53601,14 +50544,12 @@
},
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- icon_state = "whiteblue";
- tag = "icon-whiteblue"
+ icon_state = "whiteblue"
},
/area/medical/sleeper)
"ccu" = (
/turf/simulated/floor/plasteel{
- icon_state = "whiteblue";
- tag = "icon-whiteblue"
+ icon_state = "whiteblue"
},
/area/medical/sleeper)
"ccv" = (
@@ -53622,8 +50563,7 @@
/obj/machinery/bodyscanner,
/turf/simulated/floor/plasteel{
dir = 6;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whiteblue"
},
/area/medical/sleeper)
"ccx" = (
@@ -53633,8 +50573,7 @@
dir = 1
},
/obj/machinery/light_switch{
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/obj/machinery/alarm{
dir = 1;
@@ -53650,14 +50589,12 @@
},
/obj/machinery/camera{
c_tag = "Medbay Cryogenics";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/obj/machinery/vending/wallmed{
name = "Emergency NanoMed";
pixel_x = -5;
- pixel_y = -30;
- req_access_txt = "0"
+ pixel_y = -30
},
/turf/simulated/floor/plasteel{
icon_state = "freezerfloor"
@@ -53677,7 +50614,6 @@
dir = 1;
icon_state = "left";
name = "Cryo Tank Storage";
- req_access_txt = "0";
req_one_access_txt = "5;32"
},
/obj/machinery/atmospherics/unary/portables_connector{
@@ -53693,9 +50629,6 @@
/obj/machinery/light,
/obj/item/reagent_containers/spray/cleaner,
/obj/item/radio/intercom{
- broadcasting = 0;
- listening = 1;
- name = "station intercom (General)";
pixel_y = -25
},
/turf/simulated/floor/plasteel{
@@ -53716,7 +50649,6 @@
dir = 1;
icon_state = "left";
name = "Cryo Tank Storage";
- req_access_txt = "0";
req_one_access_txt = "5;32"
},
/obj/machinery/atmospherics/unary/portables_connector{
@@ -53733,8 +50665,7 @@
/obj/machinery/vending/medical,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner (WEST)"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay2)
"ccD" = (
@@ -53752,8 +50683,7 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner (WEST)"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay2)
"ccF" = (
@@ -53807,8 +50737,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plating,
/area/maintenance/asmaint2)
@@ -53816,8 +50745,7 @@
/obj/machinery/power/apc{
dir = 4;
name = "east bump Important Area";
- pixel_x = 24;
- shock_proof = 0
+ pixel_x = 24
},
/obj/structure/cable{
d2 = 2;
@@ -53873,7 +50801,6 @@
/area/maintenance/asmaint2)
"ccN" = (
/obj/machinery/alarm{
- frequency = 1439;
pixel_y = 23
},
/obj/structure/closet/l3closet/janitor,
@@ -53882,8 +50809,6 @@
"ccO" = (
/obj/structure/closet/jcloset,
/obj/item/radio/intercom{
- broadcasting = 0;
- name = "station intercom (General)";
pixel_y = 25
},
/turf/simulated/floor/plasteel,
@@ -53896,8 +50821,7 @@
"ccQ" = (
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (WEST)"
+ icon_state = "whitepurple"
},
/area/medical/genetics)
"ccR" = (
@@ -53922,9 +50846,7 @@
"ccT" = (
/obj/machinery/r_n_d/server/robotics,
/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
- dir = 6;
- icon_state = "intact";
- tag = "icon-intact (SOUTHEAST)"
+ dir = 6
},
/turf/simulated/floor/bluegrid/telecomms/server,
/area/toxins/server_coldroom)
@@ -53936,15 +50858,12 @@
pixel_y = 32
},
/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{
- dir = 8;
- icon_state = "intact";
- tag = "icon-intact (WEST)"
+ dir = 8
},
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plating,
@@ -53960,7 +50879,6 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/turf/simulated/floor/plasteel/dark/telecomms,
@@ -53968,7 +50886,6 @@
"ccW" = (
/obj/machinery/camera{
c_tag = "Research Server Room";
- dir = 2;
network = list("Research","SS13");
pixel_x = 22
},
@@ -53981,7 +50898,6 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/turf/simulated/floor/plasteel/dark,
@@ -54012,8 +50928,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/conveyor/east{
id = "packageExternal"
@@ -54026,8 +50941,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/conveyor/east{
id = "packageExternal"
@@ -54039,21 +50953,17 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/engineering{
name = "Gravity Generator";
- req_access_txt = "0";
req_one_access_txt = "10;30"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/engine/gravitygenerator)
"cdb" = (
/obj/machinery/atmospherics/unary/thermomachine/freezer/on/server,
/obj/item/radio/intercom{
- broadcasting = 0;
- name = "station intercom (General)";
pixel_y = 25
},
/turf/simulated/floor/plasteel/dark,
@@ -54068,8 +50978,7 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/camera{
c_tag = "Central Hallway South East";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/hallway/primary/central/se)
@@ -54084,9 +50993,7 @@
dir = 9;
icon_state = "whitehall"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cde" = (
/obj/structure/cable{
d1 = 2;
@@ -54116,9 +51023,7 @@
"cdg" = (
/obj/machinery/computer/mecha,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/hor)
"cdh" = (
@@ -54129,9 +51034,7 @@
icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay2)
"cdi" = (
@@ -54157,8 +51060,6 @@
/area/medical/genetics)
"cdk" = (
/obj/item/radio/intercom{
- frequency = 1459;
- name = "station intercom (General)";
pixel_x = 28
},
/obj/structure/filingcabinet/chestdrawer,
@@ -54185,7 +51086,6 @@
/obj/machinery/door/airlock/medical/glass{
id_tag = "CloningDoor";
name = "Genetics Cloning";
- req_access_txt = "0";
req_one_access_txt = "5;9"
},
/obj/structure/cable{
@@ -54204,8 +51104,7 @@
dir = 4
},
/obj/effect/mapping_helpers/airlock/unres{
- dir = 4;
- icon_state = "airlock_unres_helper"
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "freezerfloor"
@@ -54228,8 +51127,7 @@
department = "Cargo Bay";
departmentType = 2;
name = "Cargo Requests Console";
- pixel_x = -30;
- pixel_y = 0
+ pixel_x = -30
},
/turf/simulated/floor/plasteel,
/area/quartermaster/miningdock)
@@ -54315,9 +51213,7 @@
dir = 5;
icon_state = "whitehall"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cdG" = (
/obj/machinery/shower{
pixel_y = 8
@@ -54354,15 +51250,12 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cdM" = (
/obj/structure/chair/office/light{
dir = 8
@@ -54371,18 +51264,14 @@
name = "Research Director"
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/hor)
"cdN" = (
/turf/simulated/floor/plasteel,
/area/hallway/primary/central/south)
"cdO" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -54404,15 +51293,12 @@
department = "Cargo Bay";
departmentType = 2;
name = "Cargo Requests Console";
- pixel_x = -30;
- pixel_y = 0
+ pixel_x = -30
},
/turf/simulated/floor/plasteel,
/area/quartermaster/qm)
"cdR" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel,
/area/quartermaster/qm)
"cdS" = (
@@ -54424,7 +51310,6 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/turf/simulated/floor/plasteel,
@@ -54444,7 +51329,6 @@
/area/hallway/primary/central/sw)
"cdV" = (
/obj/machinery/firealarm{
- dir = 2;
pixel_y = 24
},
/turf/simulated/floor/plasteel,
@@ -54466,9 +51350,7 @@
/area/hallway/primary/central/south)
"cdY" = (
/obj/structure/disposalpipe/junction{
- dir = 4;
- icon_state = "pipe-j1";
- tag = "icon-pipe-j1 (EAST)"
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -54518,8 +51400,7 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/medical/glass{
id_tag = null;
- name = "Observation Room";
- req_access_txt = "0"
+ name = "Observation Room"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -54537,8 +51418,7 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/medical/glass{
id_tag = null;
- name = "Observation Room";
- req_access_txt = "0"
+ name = "Observation Room"
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -54552,9 +51432,7 @@
"ceh" = (
/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay2)
"cei" = (
@@ -54567,13 +51445,11 @@
},
/obj/structure/disposalpipe/segment,
/obj/machinery/light_switch{
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay2)
"cej" = (
@@ -54660,7 +51536,6 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/turf/simulated/floor/plasteel,
@@ -54679,8 +51554,6 @@
dir = 4
},
/obj/item/radio/intercom{
- broadcasting = 0;
- name = "station intercom (General)";
pixel_y = 25
},
/turf/simulated/floor/plasteel,
@@ -54704,9 +51577,7 @@
/area/hallway/primary/central/south)
"cex" = (
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/plasteel,
@@ -54721,8 +51592,7 @@
"cez" = (
/obj/machinery/alarm/server{
dir = 4;
- pixel_x = -22;
- pixel_y = 0
+ pixel_x = -22
},
/obj/machinery/light/small{
dir = 8
@@ -54736,15 +51606,12 @@
/area/hallway/primary/central/south)
"ceB" = (
/obj/machinery/camera{
- c_tag = "Central Primary Hallway South";
- dir = 2;
- network = list("SS13")
+ c_tag = "Central Primary Hallway South"
},
/turf/simulated/floor/plasteel,
/area/hallway/primary/central/south)
"ceC" = (
/obj/machinery/alarm{
- frequency = 1439;
pixel_y = 23
},
/turf/simulated/floor/plasteel,
@@ -54766,7 +51633,6 @@
/area/quartermaster/storage)
"ceF" = (
/obj/machinery/firealarm{
- dir = 2;
pixel_y = 24
},
/turf/simulated/floor/plasteel,
@@ -54848,9 +51714,7 @@
dir = 5;
icon_state = "whitehall"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"ceN" = (
/obj/structure/cable{
d1 = 1;
@@ -54864,14 +51728,10 @@
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"ceO" = (
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/hor)
"ceP" = (
@@ -54889,13 +51749,10 @@
"ceS" = (
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/hor)
"ceT" = (
@@ -54903,7 +51760,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -54924,8 +51780,7 @@
},
/obj/effect/decal/warning_stripes/southeast,
/obj/effect/mapping_helpers/airlock/unres{
- dir = 4;
- icon_state = "airlock_unres_helper"
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/hallway/primary/central/se)
@@ -54967,20 +51822,17 @@
/obj/machinery/computer/security/mining,
/obj/item/radio/intercom{
dir = 0;
- name = "station intercom (General)";
pixel_x = -28
},
/obj/machinery/camera{
c_tag = "Mining Dock";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/quartermaster/miningdock)
"cfg" = (
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/structure/disposalpipe/segment,
@@ -54992,8 +51844,7 @@
location = "QM"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel,
@@ -55003,12 +51854,10 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/item/radio/intercom{
dir = 1;
- name = "station intercom (General)";
pixel_y = -28
},
/turf/simulated/floor/plasteel,
@@ -55027,7 +51876,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/cable{
@@ -55053,7 +51901,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel,
@@ -55069,12 +51916,10 @@
/area/hallway/primary/central/sw)
"cfn" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "yellowcorner"
},
/area/hallway/primary/aft)
@@ -55083,7 +51928,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/effect/landmark/start{
@@ -55106,8 +51950,7 @@
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/turf/simulated/floor/plasteel,
/area/janitor)
@@ -55118,8 +51961,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/hallway/primary/central/sw)
@@ -55159,8 +52001,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/hallway/primary/central/sw)
@@ -55179,9 +52020,7 @@
},
/obj/item/surgicaldrill,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whiteblue"
},
/area/medical/surgery1)
"cfx" = (
@@ -55215,13 +52054,11 @@
/obj/machinery/door_control{
id = "surgeryobs1";
name = "Privacy Shutters Control";
- pixel_x = 0;
pixel_y = 25
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner (WEST)"
+ icon_state = "whitebluecorner"
},
/area/medical/surgery1)
"cfB" = (
@@ -55250,8 +52087,7 @@
/obj/item/stack/medical/bruise_pack/advanced,
/obj/item/reagent_containers/iv_bag/salglu,
/turf/simulated/floor/plasteel{
- icon_state = "whiteblue";
- tag = "icon-whiteblue"
+ icon_state = "whiteblue"
},
/area/medical/surgery2)
"cfD" = (
@@ -55259,8 +52095,7 @@
dir = 8
},
/obj/machinery/camera{
- c_tag = "Medbay Surgery Observation";
- network = list("SS13")
+ c_tag = "Medbay Surgery Observation"
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -55301,7 +52136,6 @@
/obj/effect/spawner/window/reinforced,
/obj/machinery/door/poddoor/shutters{
density = 0;
- dir = 4;
icon_state = "open";
id_tag = "surgeryobs2";
name = "Privacy Shutters";
@@ -55319,15 +52153,8 @@
},
/area/medical/ward)
"cfJ" = (
-/obj/structure/closet/crate/freezer,
-/obj/item/reagent_containers/iv_bag/blood/AMinus,
-/obj/item/reagent_containers/iv_bag/blood/APlus,
-/obj/item/reagent_containers/iv_bag/blood/BMinus,
-/obj/item/reagent_containers/iv_bag/blood/BPlus,
-/obj/item/reagent_containers/iv_bag/blood/OPlus,
-/obj/item/reagent_containers/iv_bag/blood/OMinus,
/obj/structure/disposalpipe/segment,
-/obj/item/reagent_containers/iv_bag/salglu,
+/obj/structure/closet/crate/freezer/iv_storage,
/turf/simulated/floor/plasteel{
icon_state = "showroomfloor"
},
@@ -55337,13 +52164,10 @@
/obj/machinery/door_control{
id = "surgeryobs2";
name = "Privacy Shutters Control";
- pixel_x = 0;
pixel_y = 25
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/surgery2)
"cfL" = (
@@ -55355,8 +52179,7 @@
},
/obj/item/surgicaldrill,
/turf/simulated/floor/plasteel{
- icon_state = "whiteblue";
- tag = "icon-whiteblue"
+ icon_state = "whiteblue"
},
/area/medical/surgery2)
"cfM" = (
@@ -55375,14 +52198,12 @@
},
/obj/machinery/status_display{
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/obj/structure/table/tray,
/obj/item/scalpel,
/turf/simulated/floor/plasteel{
- icon_state = "whiteblue";
- tag = "icon-whiteblue"
+ icon_state = "whiteblue"
},
/area/medical/surgery2)
"cfN" = (
@@ -55448,7 +52269,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -55494,7 +52314,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -55519,14 +52338,12 @@
/area/hallway/primary/central/sw)
"cfU" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/cable{
@@ -55551,7 +52368,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/cable{
@@ -55573,8 +52389,7 @@
},
/obj/machinery/status_display{
layer = 4;
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/item/paper_bin/nanotrasen,
/turf/simulated/floor/plasteel{
@@ -55595,9 +52410,7 @@
"cfY" = (
/obj/machinery/vending/wallmed{
name = "Emergency NanoMed";
- pixel_x = -25;
- pixel_y = 0;
- req_access_txt = "0"
+ pixel_x = -25
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
@@ -55625,9 +52438,7 @@
"cgc" = (
/obj/machinery/r_n_d/server/core,
/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
- dir = 5;
- icon_state = "intact";
- tag = "icon-intact (NORTHEAST)"
+ dir = 5
},
/turf/simulated/floor/bluegrid/telecomms/server,
/area/toxins/server_coldroom)
@@ -55668,8 +52479,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/hallway/primary/central/south)
@@ -55685,8 +52495,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/hallway/primary/central/south)
@@ -55767,9 +52576,7 @@
dir = 8
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/hor)
"cgr" = (
@@ -55794,9 +52601,7 @@
"cgv" = (
/obj/machinery/photocopier,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/hor)
"cgy" = (
@@ -55836,8 +52641,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/hallway/primary/central/se)
@@ -55847,8 +52651,7 @@
location = "CHE"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 9
@@ -55885,12 +52688,9 @@
"cgM" = (
/obj/structure/disposalpipe/junction{
dir = 8;
- icon_state = "pipe-j2";
- tag = "icon-pipe-j1 (WEST)"
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
+ icon_state = "pipe-j2"
},
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -55919,12 +52719,9 @@
/area/quartermaster/qm)
"cgO" = (
/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 5;
- icon_state = "intact"
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
+ dir = 5
},
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
icon_state = "freezerfloor"
},
@@ -55950,8 +52747,7 @@
/area/maintenance/apmaint)
"cgR" = (
/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 9;
- icon_state = "intact"
+ dir = 9
},
/obj/effect/landmark/start{
name = "Medical Doctor"
@@ -55972,8 +52768,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/turf/simulated/floor/plasteel/dark/telecomms,
/area/toxins/server_coldroom)
@@ -56045,17 +52840,14 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/window/brigdoor{
base_state = "rightsecure";
- dir = 4;
icon_state = "rightsecure";
name = "Server Exterior Door";
- req_access = null;
- req_access_txt = "0"
+ req_access = null
},
/obj/machinery/door/window/brigdoor{
dir = 8;
name = "Server Interior Door";
- req_access = null;
- req_access_txt = "0"
+ req_access = null
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -56087,19 +52879,6 @@
/obj/structure/grille/broken,
/turf/simulated/floor/plating,
/area/maintenance/asmaint)
-"che" = (
-/obj/structure/sign/directions/engineering,
-/obj/structure/sign/directions/science{
- dir = 4;
- pixel_x = 0;
- pixel_y = -7
- },
-/obj/structure/sign/directions/medical{
- dir = 4;
- pixel_y = 7
- },
-/turf/simulated/wall,
-/area/janitor)
"chf" = (
/turf/simulated/wall,
/area/maintenance/asmaint)
@@ -56121,12 +52900,10 @@
/obj/machinery/door/airlock/medical/glass{
id_tag = "CloningDoor";
name = "Genetics Cloning";
- req_access_txt = "0";
req_one_access_txt = "5;9"
},
/obj/effect/mapping_helpers/airlock/unres{
- dir = 4;
- icon_state = "airlock_unres_helper"
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "freezerfloor"
@@ -56137,7 +52914,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
@@ -56149,8 +52925,7 @@
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/obj/structure/cable{
d2 = 4;
@@ -56164,8 +52939,7 @@
"chl" = (
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (WEST)"
+ icon_state = "whiteblue"
},
/area/medical/surgery1)
"chm" = (
@@ -56221,8 +52995,7 @@
"chq" = (
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whiteblue"
},
/area/medical/surgery2)
"chr" = (
@@ -56248,7 +53021,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/effect/landmark/start{
@@ -56260,14 +53032,7 @@
},
/area/medical/surgery2)
"chu" = (
-/obj/structure/closet/crate/freezer,
-/obj/item/reagent_containers/iv_bag/blood/AMinus,
-/obj/item/reagent_containers/iv_bag/blood/APlus,
-/obj/item/reagent_containers/iv_bag/blood/BMinus,
-/obj/item/reagent_containers/iv_bag/blood/BPlus,
-/obj/item/reagent_containers/iv_bag/blood/OPlus,
-/obj/item/reagent_containers/iv_bag/blood/OMinus,
-/obj/item/reagent_containers/iv_bag/salglu,
+/obj/structure/closet/crate/freezer/iv_storage,
/turf/simulated/floor/plasteel{
icon_state = "showroomfloor"
},
@@ -56275,14 +53040,12 @@
"chv" = (
/obj/machinery/hologram/holopad,
/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 5;
- icon_state = "intact"
+ dir = 5
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel/dark,
/area/toxins/server)
@@ -56295,8 +53058,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 9;
- icon_state = "intact"
+ dir = 9
},
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 8
@@ -56317,13 +53079,11 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner (WEST)"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay2)
"chy" = (
@@ -56354,7 +53114,6 @@
/obj/item/clothing/mask/gas,
/obj/item/storage/briefcase,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkblue"
},
/area/medical/cmo)
@@ -56370,15 +53129,12 @@
icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkblue"
},
/area/medical/cmo)
"chC" = (
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/medical/medbreak)
"chD" = (
@@ -56390,7 +53146,6 @@
department = "Chief Medical Officer's Desk";
departmentType = 5;
name = "Chief Medical Officer Requests Console";
- pixel_x = 0;
pixel_y = -30
},
/turf/simulated/floor/plasteel{
@@ -56405,14 +53160,12 @@
},
/obj/machinery/photocopier,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkblue"
},
/area/medical/cmo)
"chF" = (
/obj/item/radio/intercom{
dir = 8;
- name = "station intercom (General)";
pixel_x = -28
},
/obj/effect/decal/cleanable/dirt,
@@ -56434,7 +53187,6 @@
"chH" = (
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/turf/simulated/floor/wood,
@@ -56461,13 +53213,11 @@
/area/medical/surgery1)
"chL" = (
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/obj/machinery/alarm{
dir = 4;
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -56477,22 +53227,18 @@
"chM" = (
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/turf/simulated/floor/plasteel{
dir = 5;
icon_state = "whitehall"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"chN" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -56514,9 +53260,7 @@
dir = 9;
icon_state = "whitehall"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"chO" = (
/obj/structure/cable{
d1 = 1;
@@ -56532,26 +53276,21 @@
},
/obj/structure/disposalpipe/sortjunction{
dir = 1;
- icon_state = "pipe-j1s";
name = "Sci RD Office 2";
sortType = 13
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"chP" = (
/obj/structure/cable{
d1 = 2;
@@ -56570,9 +53309,7 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/hor)
"chQ" = (
@@ -56580,7 +53317,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -56598,9 +53334,7 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/hor)
"chR" = (
@@ -56609,9 +53343,7 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/hor)
"chS" = (
@@ -56622,9 +53354,7 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/hor)
"chT" = (
@@ -56654,9 +53384,7 @@
dir = 9
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/hor)
"chW" = (
@@ -56664,9 +53392,7 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/hor)
"chX" = (
@@ -56719,9 +53445,7 @@
/obj/machinery/atmospherics/pipe/simple/insulated,
/obj/machinery/camera{
c_tag = "Research Toxins Mixing North";
- dir = 2;
- network = list("Research","SS13");
- pixel_x = 0
+ network = list("Research","SS13")
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -56762,8 +53486,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
@@ -56822,8 +53545,7 @@
pixel_y = 7
},
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/quartermaster/qm)
@@ -56850,7 +53572,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/cable{
@@ -56869,8 +53590,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/wood,
/area/blueshield)
@@ -56911,9 +53631,7 @@
icon_state = "0-8"
},
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/obj/machinery/power/apc{
@@ -56927,8 +53645,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/wood,
/area/ntrep)
@@ -56953,9 +53670,7 @@
dir = 1
},
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/obj/item/twohanded/required/kirbyplants,
@@ -56971,7 +53686,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/cable{
@@ -56992,7 +53706,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/door/firedoor,
@@ -57006,7 +53719,6 @@
name = "Central Access"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "yellowcorner"
},
/area/hallway/primary/aft)
@@ -57015,7 +53727,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/door/airlock/public/glass{
@@ -57050,7 +53761,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/cable{
@@ -57061,8 +53771,7 @@
},
/obj/structure/disposalpipe/junction{
dir = 1;
- icon_state = "pipe-j2";
- tag = "icon-pipe-j2"
+ icon_state = "pipe-j2"
},
/turf/simulated/floor/plasteel,
/area/hallway/primary/central/south)
@@ -57073,13 +53782,10 @@
},
/obj/machinery/alarm{
dir = 8;
- pixel_x = 25;
- pixel_y = 0
+ pixel_x = 25
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay2)
"ciU" = (
@@ -57091,17 +53797,14 @@
},
/obj/machinery/vending/wallmed{
name = "Emergency NanoMed";
- pixel_x = -25;
- pixel_y = 0;
- req_access_txt = "0"
+ pixel_x = -25
},
/obj/structure/disposalpipe/segment,
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner (WEST)"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay2)
"ciV" = (
@@ -57206,7 +53909,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -57246,8 +53948,7 @@
req_access_txt = "73"
},
/obj/machinery/keycard_auth{
- pixel_x = 24;
- pixel_y = 0
+ pixel_x = 24
},
/turf/simulated/floor/wood,
/area/ntrep)
@@ -57281,7 +53982,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -57299,8 +53999,7 @@
"cjk" = (
/obj/structure/disposalpipe/junction{
dir = 2;
- icon_state = "pipe-j2";
- tag = "icon-pipe-j2"
+ icon_state = "pipe-j2"
},
/turf/simulated/floor/plasteel,
/area/hallway/primary/central/south)
@@ -57318,11 +54017,9 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/item/radio/intercom{
- name = "station intercom (General)";
pixel_y = -28
},
/turf/simulated/floor/plasteel,
@@ -57347,7 +54044,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/light,
@@ -57358,7 +54054,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel,
@@ -57426,9 +54121,7 @@
/obj/item/clothing/under/rank/medical/green,
/obj/item/clothing/under/rank/medical/purple,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/medical/medbreak)
"cjw" = (
@@ -57454,17 +54147,14 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
+ dir = 5
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (WEST)"
+ icon_state = "whiteblue"
},
/area/medical/surgery1)
"cjy" = (
@@ -57492,7 +54182,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/cable{
@@ -57539,7 +54228,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
@@ -57602,7 +54290,6 @@
id = "cmoofficedoor";
name = "Office Door";
normaldoorcontrol = 1;
- pixel_x = 0;
pixel_y = -13;
req_access_txt = "40"
},
@@ -57624,9 +54311,7 @@
"cjI" = (
/obj/machinery/camera{
c_tag = "Research E.X.P.E.R.I-MENTOR Chamber";
- dir = 2;
- network = list("Telepad","Research","SS13");
- pixel_x = 0
+ network = list("Telepad","Research","SS13")
},
/obj/machinery/light{
dir = 1;
@@ -57653,7 +54338,6 @@
"cjK" = (
/obj/machinery/alarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/obj/machinery/atmospherics/unary/vent_pump/on{
@@ -57665,8 +54349,7 @@
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
@@ -57696,13 +54379,10 @@
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/hor)
"cjP" = (
@@ -57726,14 +54406,11 @@
},
/obj/structure/table/glass,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/hor)
"cjQ" = (
/obj/machinery/keycard_auth{
- pixel_x = 0;
pixel_y = -24
},
/obj/machinery/light,
@@ -57745,9 +54422,7 @@
},
/obj/structure/table/glass,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/hor)
"cjR" = (
@@ -57764,9 +54439,7 @@
pixel_y = -24
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/hor)
"cjT" = (
@@ -57892,7 +54565,6 @@
"cko" = (
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/structure/disposalpipe/segment,
@@ -57917,13 +54589,11 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/quartermaster/miningdock)
@@ -57935,7 +54605,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -57943,8 +54612,7 @@
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whiteblue"
},
/area/medical/surgery2)
"cks" = (
@@ -57984,8 +54652,7 @@
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -58017,15 +54684,11 @@
"ckA" = (
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
- pixel_x = 11;
- pixel_y = 0
+ pixel_x = 11
},
/obj/machinery/camera{
c_tag = "Medbay Surgery East Storage";
- dir = 1;
- network = list("SS13");
- pixel_x = 0
+ dir = 1
},
/turf/simulated/floor/plasteel{
icon_state = "showroomfloor"
@@ -58043,8 +54706,7 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner (WEST)"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay2)
"ckC" = (
@@ -58056,9 +54718,7 @@
/obj/machinery/recharger,
/obj/item/screwdriver,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/medical/medbreak)
"ckE" = (
@@ -58074,9 +54734,7 @@
/obj/machinery/cell_charger,
/obj/item/stock_parts/cell,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/medical/medbreak)
"ckF" = (
@@ -58084,7 +54742,6 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/obj/structure/cable{
@@ -58092,13 +54749,10 @@
icon_state = "0-2"
},
/obj/machinery/camera{
- c_tag = "Medbay Break Room";
- network = list("SS13")
+ c_tag = "Medbay Break Room"
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/medical/medbreak)
"ckG" = (
@@ -58239,41 +54893,34 @@
"ckU" = (
/obj/machinery/camera{
c_tag = "Medbay Surgery West";
- dir = 1;
- network = list("SS13");
- pixel_x = 0
+ dir = 1
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
+ icon_state = "whiteblue"
},
/area/medical/surgery1)
"ckV" = (
/obj/machinery/bodyscanner,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
+ icon_state = "whiteblue"
},
/area/medical/surgery1)
"ckW" = (
/obj/structure/closet/secure_closet/medical2,
/obj/item/radio/intercom{
- name = "station intercom (General)";
pixel_y = -28
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/surgery1)
"ckX" = (
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
+ icon_state = "whiteblue"
},
/area/medical/surgery1)
"ckY" = (
@@ -58282,7 +54929,6 @@
pixel_x = -24
},
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
@@ -58296,13 +54942,11 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -58325,9 +54969,7 @@
"clb" = (
/obj/structure/table/glass,
/obj/machinery/computer/med_data/laptop,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "darkblue"
@@ -58341,16 +54983,14 @@
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
+ icon_state = "whiteblue"
},
/area/medical/surgery2)
"cld" = (
/obj/structure/closet/secure_closet/medical2,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/surgery2)
"cle" = (
@@ -58369,26 +55009,21 @@
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
+ icon_state = "whiteblue"
},
/area/medical/surgery2)
"clf" = (
/obj/machinery/camera{
c_tag = "Medbay Surgery East";
- dir = 1;
- network = list("SS13");
- pixel_x = 0
+ dir = 1
},
/obj/item/radio/intercom{
- name = "station intercom (General)";
pixel_y = -28
},
/obj/machinery/light,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
+ icon_state = "whiteblue"
},
/area/medical/surgery2)
"clg" = (
@@ -58402,8 +55037,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/structure/cable{
d1 = 1;
@@ -58411,14 +55045,12 @@
icon_state = "1-2"
},
/obj/structure/extinguisher_cabinet{
- pixel_x = -30;
- pixel_y = 0
+ pixel_x = -30
},
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner (WEST)"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay2)
"cli" = (
@@ -58430,9 +55062,7 @@
tag = ""
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/medical/medbreak)
"clj" = (
@@ -58444,20 +55074,15 @@
dir = 5;
icon_state = "whitehall"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"clk" = (
/obj/machinery/washing_machine,
/obj/machinery/alarm{
dir = 8;
- pixel_x = 25;
- pixel_y = 0
+ pixel_x = 25
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/medical/medbreak)
"cll" = (
@@ -58467,9 +55092,7 @@
icon_state = "1-8"
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/medical/medbreak)
"clm" = (
@@ -58490,9 +55113,7 @@
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"clo" = (
/obj/effect/landmark{
name = "blobstart"
@@ -58535,7 +55156,6 @@
"clt" = (
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/turf/simulated/floor/engine,
@@ -58556,8 +55176,7 @@
"clw" = (
/obj/machinery/atmospherics/binary/valve,
/obj/structure/extinguisher_cabinet{
- pixel_x = 27;
- pixel_y = 0
+ pixel_x = 27
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -58565,7 +55184,6 @@
/area/toxins/mixing)
"clx" = (
/obj/machinery/atmospherics/unary/outlet_injector{
- dir = 2;
frequency = 1443;
icon_state = "on";
id = "air_in";
@@ -58598,8 +55216,7 @@
/area/toxins/test_area)
"clB" = (
/obj/machinery/door/airlock/external{
- name = "Toxins Test Chamber";
- req_access_txt = "0"
+ name = "Toxins Test Chamber"
},
/turf/simulated/floor/plating/airless,
/area/toxins/test_area)
@@ -58625,8 +55242,7 @@
desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
icon_state = "space";
layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_x = 0
+ name = "EXTERNAL AIRLOCK"
},
/turf/simulated/wall,
/area/quartermaster/miningdock)
@@ -58707,8 +55323,7 @@
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 6
@@ -58718,7 +55333,6 @@
"clU" = (
/obj/item/radio/intercom{
dir = 1;
- name = "station intercom (General)";
pixel_y = 25
},
/obj/machinery/atmospherics/unary/vent_pump/on{
@@ -58746,7 +55360,6 @@
"clX" = (
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/obj/machinery/light/small{
@@ -58766,23 +55379,19 @@
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/turf/simulated/floor/plasteel{
dir = 5;
icon_state = "whitehall"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"clZ" = (
/obj/machinery/firealarm{
dir = 4;
pixel_x = 24
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "yellowcorner"
},
/area/hallway/primary/aft)
@@ -58871,9 +55480,7 @@
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cmj" = (
/obj/machinery/computer/security/telescreen{
desc = "Used for watching the singularity chamber.";
@@ -58881,7 +55488,6 @@
layer = 4;
name = "Singularity Engine Telescreen";
network = list("Singularity");
- pixel_x = 0;
pixel_y = 30
},
/obj/structure/chair/office/dark{
@@ -58894,7 +55500,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/light/small{
@@ -58925,8 +55530,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/airlock/medical/glass{
id_tag = null;
- name = "Virology Lobby Hallway";
- req_access_txt = "0"
+ name = "Virology Lobby Hallway"
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -58938,8 +55542,7 @@
/obj/machinery/vending/coffee,
/turf/simulated/floor/plasteel{
dir = 9;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (NORTHWEST)"
+ icon_state = "whitegreen"
},
/area/medical/virology/lab{
name = "\improper Virology Lobby"
@@ -58954,8 +55557,7 @@
/obj/machinery/vending/medical,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (NORTHEAST)"
+ icon_state = "whitegreen"
},
/area/medical/virology/lab{
name = "\improper Virology Lobby"
@@ -58971,7 +55573,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/junction{
@@ -58984,13 +55585,11 @@
"cmr" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/structure/cable{
d1 = 1;
@@ -59022,7 +55621,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -59030,9 +55628,7 @@
icon_state = "pipe-c"
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/medical/medbreak)
"cmt" = (
@@ -59052,9 +55648,7 @@
},
/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/medical/medbreak)
"cmv" = (
@@ -59068,13 +55662,10 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/medical/medbreak)
"cmw" = (
@@ -59083,9 +55674,7 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/medical/medbreak)
"cmx" = (
@@ -59127,7 +55716,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -59146,9 +55734,7 @@
/obj/structure/table,
/obj/item/reagent_containers/food/drinks/britcup,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/medical/medbreak)
"cmE" = (
@@ -59166,8 +55752,7 @@
dir = 9
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/turf/simulated/floor/plating,
/area/maintenance/asmaint2)
@@ -59219,8 +55804,7 @@
/obj/item/reagent_containers/iv_bag/salglu,
/turf/simulated/floor/plasteel{
dir = 10;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (SOUTHWEST)"
+ icon_state = "whitegreen"
},
/area/medical/virology/lab{
name = "\improper Virology Lobby"
@@ -59250,7 +55834,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -59274,7 +55857,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -59306,7 +55888,6 @@
"cmW" = (
/obj/item/radio/intercom{
dir = 1;
- name = "station intercom (General)";
pixel_y = 25
},
/obj/structure/reagent_dispensers/watertank,
@@ -59332,9 +55913,7 @@
"cmY" = (
/obj/machinery/camera{
c_tag = "Research Toxins Mixing West";
- dir = 2;
- network = list("Research","SS13");
- pixel_x = 0
+ network = list("Research","SS13")
},
/obj/structure/closet/firecloset,
/turf/simulated/floor/plasteel{
@@ -59411,8 +55990,7 @@
/obj/machinery/meter,
/obj/machinery/atmospherics/pipe/manifold/visible{
dir = 4;
- initialize_directions = 11;
- level = 2
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -59432,7 +56010,6 @@
"cnl" = (
/obj/structure/closet/wardrobe/miner,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "brown"
},
/area/quartermaster/miningdock)
@@ -59452,7 +56029,6 @@
"cno" = (
/obj/structure/closet/secure_closet/miner,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "brown"
},
/area/quartermaster/miningdock)
@@ -59485,7 +56061,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -59535,8 +56110,7 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/medical/glass{
id_tag = null;
- name = "Virology Lobby Hallway";
- req_access_txt = "0"
+ name = "Virology Lobby Hallway"
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -59560,24 +56134,20 @@
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cnz" = (
/obj/structure/sign/biohazard{
pixel_y = 32
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (WEST)"
+ icon_state = "whitegreen"
},
/area/medical/virology/lab{
name = "\improper Virology Lobby"
})
"cnA" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "yellowcorner"
},
/area/hallway/primary/aft)
@@ -59587,15 +56157,11 @@
on = 1
},
/obj/item/radio/intercom{
- broadcasting = 0;
- listening = 1;
- name = "station intercom (General)";
pixel_y = 25
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (WEST)"
+ icon_state = "whitegreen"
},
/area/medical/virology/lab{
name = "\improper Virology Lobby"
@@ -59609,25 +56175,21 @@
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/turf/simulated/floor/plating,
/area/maintenance/asmaint)
"cnD" = (
/obj/machinery/status_display{
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/obj/machinery/camera{
- c_tag = "Virology Lobby";
- network = list("SS13")
+ c_tag = "Virology Lobby"
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (WEST)"
+ icon_state = "whitegreen"
},
/area/medical/virology/lab{
name = "\improper Virology Lobby"
@@ -59646,8 +56208,7 @@
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (WEST)"
+ icon_state = "whitegreen"
},
/area/medical/virology/lab{
name = "\improper Virology Lobby"
@@ -59674,13 +56235,11 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (WEST)"
+ icon_state = "whitegreen"
},
/area/medical/virology/lab{
name = "\improper Virology Lobby"
@@ -59689,8 +56248,7 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (WEST)"
+ icon_state = "whitegreen"
},
/area/medical/virology/lab{
name = "\improper Virology Lobby"
@@ -59706,9 +56264,7 @@
"cnL" = (
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay2)
"cnM" = (
@@ -59721,8 +56277,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (WEST)"
+ icon_state = "whitegreen"
},
/area/medical/medbay2)
"cnN" = (
@@ -59731,49 +56286,37 @@
dir = 1
},
/obj/machinery/light_switch{
- pixel_x = 0;
pixel_y = -27
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/medical/medbreak)
"cnO" = (
/obj/machinery/vending/coffee,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/medical/medbreak)
"cnP" = (
/obj/machinery/vending/chinese,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/medical/medbreak)
"cnQ" = (
/obj/machinery/computer/med_data,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/medical/medbreak)
"cnR" = (
/obj/structure/chair/stool,
/obj/item/radio/intercom{
- name = "station intercom (General)";
pixel_y = -28
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/medical/medbreak)
"cnS" = (
@@ -59788,7 +56331,6 @@
"cnT" = (
/obj/structure/disposalpipe/sortjunction{
dir = 8;
- icon_state = "pipe-j1s";
name = "QM Office";
sortType = 3
},
@@ -59796,7 +56338,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -59820,8 +56361,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/effect/landmark/start{
name = "Shaft Miner"
@@ -59834,8 +56374,7 @@
/area/maintenance/asmaint)
"cnW" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 5
@@ -59855,7 +56394,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -59873,8 +56411,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -59891,8 +56428,7 @@
icon_state = "pipe-c"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -59909,9 +56445,7 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitegreen";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whitegreen"
},
/area/medical/virology/lab{
name = "\improper Virology Lobby"
@@ -59921,16 +56455,14 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/turf/simulated/floor/plasteel{
dir = 10;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (SOUTHWEST)"
+ icon_state = "whitegreen"
},
/area/medical/virology/lab{
name = "\improper Virology Lobby"
@@ -59940,17 +56472,13 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitegreen";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whitegreen"
},
/area/medical/virology/lab{
name = "\improper Virology Lobby"
@@ -59963,12 +56491,10 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -59985,14 +56511,11 @@
pixel_y = -32
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitegreen";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whitegreen"
},
/area/medical/virology/lab{
name = "\improper Virology Lobby"
@@ -60012,7 +56535,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -60077,8 +56599,7 @@
"com" = (
/obj/machinery/hologram/holopad,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
@@ -60119,18 +56640,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/janitor)
-"cos" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0;
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint)
"cot" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/unary/vent_scrubber/on{
@@ -60145,9 +56654,7 @@
dir = 8
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay2)
"cov" = (
@@ -60199,8 +56706,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/toxins/storage)
@@ -60220,9 +56726,7 @@
dir = 5;
icon_state = "whitehall"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"coD" = (
/obj/effect/landmark/start{
name = "Scientist"
@@ -60233,9 +56737,7 @@
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"coE" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable{
@@ -60280,14 +56782,12 @@
layer = 4;
name = "Test Chamber Telescreen";
network = list("Toxins");
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/machinery/alarm{
pixel_y = 31
},
/obj/machinery/driver_button{
- dir = 2;
id_tag = "toxinsdriver";
pixel_y = 22;
range = 18
@@ -60374,7 +56874,6 @@
"coT" = (
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/machinery/atmospherics/unary/vent_scrubber/on{
@@ -60396,8 +56895,7 @@
/area/ntrep)
"coW" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/turf/simulated/floor/carpet,
/area/ntrep)
@@ -60417,8 +56915,7 @@
/area/blueshield)
"coY" = (
/obj/machinery/keycard_auth{
- pixel_x = -24;
- pixel_y = 0
+ pixel_x = -24
},
/obj/machinery/door/window{
dir = 1;
@@ -60429,12 +56926,10 @@
/area/blueshield)
"coZ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -60446,7 +56941,6 @@
tag = ""
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitegreencorner"
},
/area/medical/virology/lab{
@@ -60455,8 +56949,7 @@
"cpa" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -60476,12 +56969,10 @@
})
"cpb" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -60493,26 +56984,21 @@
tag = ""
},
/obj/machinery/ai_status_display{
- pixel_x = 0;
pixel_y = -32;
step_size = 0
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitegreen";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whitegreen"
},
/area/medical/virology/lab{
name = "\improper Virology Lobby"
})
"cpc" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -60529,21 +57015,17 @@
icon_state = "1-4"
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitegreen";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whitegreen"
},
/area/medical/virology/lab{
name = "\improper Virology Lobby"
})
"cpd" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -60556,21 +57038,17 @@
},
/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitegreen";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whitegreen"
},
/area/medical/virology/lab{
name = "\improper Virology Lobby"
})
"cpe" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -60586,9 +57064,7 @@
pixel_y = -24
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitegreen";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whitegreen"
},
/area/medical/virology/lab{
name = "\improper Virology Lobby"
@@ -60611,21 +57087,18 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/hallway/primary/aft)
"cph" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/structure/cable{
d1 = 1;
@@ -60639,13 +57112,11 @@
},
/obj/structure/disposalpipe/junction{
dir = 8;
- icon_state = "pipe-j2";
- tag = "icon-pipe-j1 (WEST)"
+ icon_state = "pipe-j2"
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (WEST)"
+ icon_state = "whitegreen"
},
/area/medical/medbay2)
"cpi" = (
@@ -60667,7 +57138,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/door/airlock/maintenance{
@@ -60682,7 +57152,6 @@
/obj/item/folder,
/obj/item/radio,
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
@@ -60702,40 +57171,28 @@
"cpn" = (
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
- pixel_x = 11;
- pixel_y = 0
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
+ pixel_x = 11
},
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (WEST)"
+ icon_state = "whiteblue"
},
/area/medical/surgery1)
"cpo" = (
/obj/structure/sink{
dir = 8;
- icon_state = "sink";
- pixel_x = -12;
- pixel_y = 0
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
+ pixel_x = -12
},
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whiteblue"
},
/area/medical/surgery2)
"cpp" = (
/obj/machinery/light/small{
- dir = 4;
- icon_state = "bulb1";
- tag = "icon-bulb1 (EAST)"
+ dir = 4
},
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
@@ -60766,16 +57223,13 @@
"cpr" = (
/obj/item/radio/intercom{
dir = 8;
- name = "station intercom (General)";
pixel_x = -28
},
/turf/simulated/floor/plasteel{
dir = 5;
icon_state = "whitehall"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cps" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
@@ -60791,27 +57245,21 @@
dir = 9;
icon_state = "whitehall"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cpu" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cpv" = (
/obj/effect/decal/warning_stripes/west,
/obj/effect/decal/cleanable/dirt,
@@ -60836,9 +57284,7 @@
},
/obj/machinery/camera{
c_tag = "Medbay Surgery West Storage";
- dir = 1;
- network = list("SS13");
- pixel_x = 0
+ dir = 1
},
/turf/simulated/floor/plasteel{
icon_state = "showroomfloor"
@@ -60888,14 +57334,11 @@
},
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
- pixel_x = 12;
- pixel_y = 0
+ pixel_x = 12
},
/turf/simulated/floor/plasteel{
dir = 6;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (SOUTHEAST)"
+ icon_state = "whitegreen"
},
/area/medical/virology/lab{
name = "\improper Virology Lobby"
@@ -60910,9 +57353,7 @@
},
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitegreen";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whitegreen"
},
/area/medical/virology/lab{
name = "\improper Virology Lobby"
@@ -60960,7 +57401,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/effect/decal/warning_stripes/east,
@@ -61013,16 +57453,14 @@
/obj/machinery/computer/pandemic,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (WEST)"
+ icon_state = "whitegreen"
},
/area/medical/virology)
"cpM" = (
-/obj/machinery/smartfridge/secure/chemistry/virology,
+/obj/machinery/smartfridge/secure/chemistry/virology/preloaded,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (WEST)"
+ icon_state = "whitegreen"
},
/area/medical/virology)
"cpN" = (
@@ -61035,8 +57473,7 @@
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (WEST)"
+ icon_state = "whitegreen"
},
/area/medical/virology)
"cpO" = (
@@ -61047,8 +57484,7 @@
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (WEST)"
+ icon_state = "whitegreen"
},
/area/medical/virology)
"cpP" = (
@@ -61075,7 +57511,6 @@
master_tag = "viro_lab_airlock_control";
name = "Virology Lab Access Button";
pixel_x = -24;
- pixel_y = 0;
req_access_txt = "39"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -61103,15 +57538,13 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/camera{
c_tag = "Medbay Secondary Hallway South";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner (WEST)"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay2)
"cpT" = (
@@ -61137,8 +57570,7 @@
/obj/structure/closet/radiation,
/turf/simulated/floor/plasteel{
dir = 9;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (NORTHWEST)"
+ icon_state = "whitepurple"
},
/area/toxins/explab)
"cpV" = (
@@ -61147,16 +57579,14 @@
/obj/item/book/manual/experimentor,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (NORTHEAST)"
+ icon_state = "whitepurple"
},
/area/toxins/explab)
"cpW" = (
/obj/machinery/computer/rdconsole/experiment,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (NORTH)"
+ icon_state = "whitepurple"
},
/area/toxins/explab)
"cpX" = (
@@ -61181,13 +57611,11 @@
/obj/structure/closet/emcloset,
/obj/machinery/status_display{
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (NORTHEAST)"
+ icon_state = "whitepurple"
},
/area/toxins/explab)
"cpZ" = (
@@ -61207,7 +57635,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -61224,8 +57651,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -61293,7 +57719,6 @@
},
/obj/machinery/status_display{
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/obj/effect/decal/warning_stripes/northeastcorner,
@@ -61333,9 +57758,7 @@
"cqj" = (
/obj/machinery/camera{
c_tag = "Research Toxins Mixing East";
- dir = 2;
- network = list("Research","SS13");
- pixel_x = 0
+ network = list("Research","SS13")
},
/obj/machinery/atmospherics/unary/portables_connector{
dir = 1
@@ -61363,8 +57786,7 @@
"cqm" = (
/obj/structure/dispenser,
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -61396,7 +57818,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/holosign/surgery{
@@ -61417,8 +57838,7 @@
dir = 8
},
/obj/machinery/light_switch{
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/obj/structure/cable{
d2 = 2;
@@ -61427,7 +57847,6 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -61452,8 +57871,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
dir = 1;
@@ -61483,13 +57901,11 @@
dir = 5
},
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/turf/simulated/floor/plating,
/area/maintenance/apmaint)
@@ -61501,12 +57917,10 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/sortjunction{
dir = 8;
- icon_state = "pipe-j1s";
name = "HoP Office";
sortType = 15
},
@@ -61540,8 +57954,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plating,
/area/maintenance/apmaint)
@@ -61572,7 +57985,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/holosign/surgery{
@@ -61590,19 +58002,6 @@
/area/toxins/launch{
name = "Toxins Launch Room"
})
-"cqy" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0;
- tag = ""
- },
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "yellowcorner"
- },
-/area/hallway/primary/aft)
"cqz" = (
/obj/structure/closet,
/obj/effect/spawner/lootdrop/maintenance,
@@ -61647,7 +58046,6 @@
"cqE" = (
/obj/structure/sink{
dir = 8;
- icon_state = "sink";
pixel_x = -12;
pixel_y = 2
},
@@ -61663,9 +58061,7 @@
/area/maintenance/apmaint)
"cqG" = (
/obj/machinery/shower{
- dir = 8;
- icon_state = "shower";
- tag = "icon-shower (WEST)"
+ dir = 8
},
/turf/simulated/floor/plasteel{
icon_state = "freezerfloor"
@@ -61718,9 +58114,7 @@
"cqN" = (
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitegreen";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whitegreen"
},
/area/medical/virology)
"cqO" = (
@@ -61785,7 +58179,6 @@
announcementConsole = 1;
department = "NT Representative";
departmentType = 5;
- dir = 2;
name = "NT Representative Requests Console";
pixel_x = 30
},
@@ -61799,8 +58192,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 5
@@ -61916,8 +58308,7 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10;
- initialize_directions = 10;
- level = 1
+ initialize_directions = 10
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 10
@@ -61950,7 +58341,6 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkblue"
},
/area/medical/surgery1)
@@ -61959,7 +58349,6 @@
dir = 8
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkblue"
},
/area/medical/surgery2)
@@ -61967,8 +58356,7 @@
/obj/machinery/door_control{
id = "telescienceblast";
name = "Test Chamber Blast Doors";
- pixel_x = -25;
- pixel_y = 0
+ pixel_x = -25
},
/obj/structure/cable{
d1 = 1;
@@ -61987,8 +58375,7 @@
/obj/structure/closet/l3closet/scientist,
/turf/simulated/floor/plasteel{
dir = 9;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (NORTHWEST)"
+ icon_state = "whitepurple"
},
/area/toxins/explab)
"cri" = (
@@ -62014,8 +58401,7 @@
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
@@ -62040,19 +58426,16 @@
/obj/structure/table/glass,
/obj/item/storage/box/syringes,
/obj/machinery/camera{
- c_tag = "Virology Monkey Pen";
- network = list("SS13")
+ c_tag = "Virology Monkey Pen"
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (WEST)"
+ icon_state = "whitegreen"
},
/area/medical/virology)
"crn" = (
/obj/structure/sign/fire{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 8
@@ -62061,23 +58444,18 @@
dir = 9;
icon_state = "whitehall"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cro" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"crp" = (
/obj/effect/decal/warning_stripes/southwestcorner,
/obj/machinery/light_switch{
@@ -62086,7 +58464,6 @@
},
/obj/machinery/status_display{
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/plasteel{
@@ -62103,13 +58480,11 @@
department = "Virology";
departmentType = 3;
name = "Virology Requests Console";
- pixel_x = 0;
pixel_y = 30
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (WEST)"
+ icon_state = "whitegreen"
},
/area/medical/virology)
"crs" = (
@@ -62140,8 +58515,7 @@
/obj/effect/decal/warning_stripes/southeastcorner,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (EAST)"
+ icon_state = "whitegreen"
},
/area/medical/virology)
"crv" = (
@@ -62177,8 +58551,7 @@
tag = ""
},
/obj/machinery/light_switch{
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -62187,17 +58560,14 @@
/area/toxins/mixing)
"cry" = (
/obj/machinery/camera{
- c_tag = "Virology Airlock";
- network = list("SS13")
+ c_tag = "Virology Airlock"
},
/obj/machinery/shower{
pixel_y = 20
},
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
- pixel_x = 10;
- pixel_y = 0
+ pixel_x = 10
},
/obj/effect/decal/warning_stripes/northeast,
/turf/simulated/floor/plasteel{
@@ -62213,8 +58583,7 @@
"crA" = (
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay2)
"crB" = (
@@ -62257,8 +58626,7 @@
/obj/effect/decal/warning_stripes/northwestcorner,
/obj/effect/decal/warning_stripes/northwestcorner,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 5
@@ -62382,9 +58750,7 @@
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"crS" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/research{
@@ -62395,7 +58761,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -62426,8 +58791,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/hallway/primary/aft)
@@ -62436,7 +58800,6 @@
dir = 8
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "yellowcorner"
},
/area/hallway/primary/aft)
@@ -62496,9 +58859,7 @@
dir = 8
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay2)
"csb" = (
@@ -62506,13 +58867,9 @@
/obj/effect/landmark/start{
name = "Medical Doctor"
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/medical/medbreak)
"csc" = (
@@ -62547,7 +58904,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
@@ -62560,12 +58916,9 @@
layer = 4;
name = "E.X.P.E.R.I-MENTOR Camera Screen";
network = list("Telepad");
- pixel_x = 0;
pixel_y = 32
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -62575,7 +58928,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
@@ -62590,7 +58942,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
@@ -62635,8 +58986,7 @@
icon_state = "space";
layer = 4;
name = "EXTERNAL AIRLOCK";
- pixel_x = -30;
- pixel_y = 0
+ pixel_x = -30
},
/obj/structure/disposalpipe/trunk,
/obj/effect/decal/warning_stripes/southeastcorner,
@@ -62666,8 +59016,7 @@
layer = 4;
name = "Test Chamber Telescreen";
network = list("Toxins");
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/effect/decal/warning_stripes/southwestcorner,
/turf/simulated/floor/plasteel,
@@ -62753,11 +59102,9 @@
/obj/item/flashlight/lamp,
/obj/machinery/camera{
c_tag = "Blueshield's Office";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/obj/machinery/newscaster/security_unit{
- pixel_x = 0;
pixel_y = -32
},
/turf/simulated/floor/wood,
@@ -62814,15 +59161,13 @@
"csE" = (
/obj/machinery/camera{
c_tag = "NT Representative's Office";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/obj/structure/table/wood,
/obj/machinery/photocopier/faxmachine/longrange{
department = "NT Representative's Office"
},
/obj/machinery/newscaster/security_unit{
- pixel_x = 0;
pixel_y = -32
},
/turf/simulated/floor/wood,
@@ -62834,9 +59179,7 @@
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"csG" = (
/obj/structure/closet/firecloset,
/turf/simulated/floor/plasteel,
@@ -62846,26 +59189,21 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"csI" = (
/obj/structure/disposalpipe/segment,
/obj/item/radio/intercom{
dir = 8;
- name = "station intercom (General)";
pixel_x = -28
},
/obj/machinery/camera{
c_tag = "Aft Primary Hallway 1";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -62877,7 +59215,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/light,
@@ -62885,7 +59222,6 @@
dir = 1
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurple"
},
/area/toxins/mixing)
@@ -62902,11 +59238,9 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurple"
},
/area/toxins/mixing)
@@ -62917,16 +59251,13 @@
},
/obj/structure/closet/firecloset,
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/plasteel,
/area/engine/controlroom)
"csO" = (
/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
pixel_y = 30
},
/obj/structure/closet/firecloset,
@@ -62943,7 +59274,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
@@ -62966,7 +59296,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/window/plasmareinforced{
@@ -62986,18 +59315,14 @@
/obj/item/storage/box/monkeycubes/farwacubes,
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
- pixel_x = -22;
- pixel_y = 0
+ pixel_x = -22
},
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (WEST)"
+ icon_state = "whitegreen"
},
/area/medical/virology)
"csT" = (
@@ -63005,7 +59330,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/unary/vent_scrubber/on{
@@ -63030,7 +59354,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -63041,12 +59364,10 @@
"csW" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -63067,12 +59388,10 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -63081,8 +59400,7 @@
"csY" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/disposalpipe/segment{
dir = 2;
@@ -63097,12 +59415,10 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -63110,8 +59426,7 @@
/area/medical/virology)
"cta" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/plasteel{
@@ -63121,12 +59436,10 @@
"ctb" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
},
/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
@@ -63135,12 +59448,10 @@
/area/medical/virology)
"ctc" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/cable{
d1 = 1;
@@ -63154,12 +59465,10 @@
/area/medical/virology)
"ctd" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -63174,8 +59483,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel{
@@ -63209,12 +59517,10 @@
req_access_txt = "39"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/cable{
d1 = 4;
@@ -63228,12 +59534,10 @@
/area/medical/virology)
"ctg" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/cable{
d1 = 4;
@@ -63297,7 +59601,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel,
@@ -63307,7 +59610,6 @@
pixel_x = 32
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "yellowcorner"
},
/area/hallway/primary/aft)
@@ -63324,8 +59626,7 @@
"ctn" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10;
- initialize_directions = 10;
- level = 1
+ initialize_directions = 10
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -63397,15 +59698,12 @@
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"ctw" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
@@ -63423,7 +59721,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -63454,9 +59751,7 @@
dir = 8
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/medical/medbreak)
"ctA" = (
@@ -63489,15 +59784,12 @@
"ctC" = (
/obj/machinery/status_display{
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"ctE" = (
/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
@@ -63540,8 +59832,7 @@
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/obj/structure/table,
/obj/item/stack/cable_coil{
@@ -63566,16 +59857,13 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/window/northleft{
dir = 4;
- icon_state = "left";
name = "Engineering Desk";
- req_access_txt = "0";
req_one_access_txt = "11;24"
},
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/effect/decal/warning_stripes/yellow,
@@ -63583,8 +59871,7 @@
/area/engine/controlroom)
"ctL" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/machinery/portable_atmospherics/pump,
/turf/simulated/floor/plasteel{
@@ -63648,8 +59935,7 @@
"ctQ" = (
/obj/machinery/door/window/southright{
name = "Toxins Launcher";
- req_access_txt = "7";
- req_one_access_txt = "0"
+ req_access_txt = "7"
},
/obj/machinery/door/window/southright{
dir = 1;
@@ -63686,9 +59972,6 @@
/area/hallway/primary/aft)
"ctT" = (
/obj/machinery/door/window/southleft{
- base_state = "left";
- dir = 2;
- icon_state = "left";
name = "Assembly Line Delivery";
req_access_txt = "32"
},
@@ -63735,7 +60018,6 @@
/obj/machinery/door/window/westright{
name = "Engineering Monitoring Station";
req_access = null;
- req_access_txt = "0";
req_one_access_txt = "11;24;34"
},
/obj/effect/decal/warning_stripes/yellow/hollow,
@@ -63750,15 +60032,12 @@
/area/maintenance/asmaint)
"cua" = (
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/structure/disposalpipe/junction{
dir = 2;
- icon_state = "pipe-j2";
- tag = "icon-pipe-j2"
+ icon_state = "pipe-j2"
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -63786,14 +60065,11 @@
/obj/item/pen,
/obj/item/radio/intercom{
dir = 1;
- name = "station intercom (General)";
- pixel_x = -25;
- pixel_y = 0
+ pixel_x = -25
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (WEST)"
+ icon_state = "whitegreen"
},
/area/medical/virology)
"cue" = (
@@ -63801,7 +60077,6 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "yellowcorner"
},
/area/hallway/primary/aft)
@@ -63812,8 +60087,7 @@
initialize_directions = 11
},
/turf/simulated/floor/plasteel{
- icon_state = "whitegreenfull";
- tag = "icon-whitebluefull"
+ icon_state = "whitegreenfull"
},
/area/medical/virology)
"cug" = (
@@ -63822,7 +60096,6 @@
/obj/effect/decal/warning_stripes/northwestcorner,
/obj/item/radio/intercom{
dir = 8;
- name = "station intercom (General)";
pixel_x = -28;
pixel_y = -28
},
@@ -63836,9 +60109,7 @@
dir = 1
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitegreen";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whitegreen"
},
/area/medical/virology)
"cui" = (
@@ -63853,9 +60124,7 @@
/area/engine/controlroom)
"cuj" = (
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitegreen";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whitegreen"
},
/area/medical/virology)
"cuk" = (
@@ -63864,19 +60133,16 @@
icon_state = "pipe-c"
},
/obj/effect/decal/warning_stripes/yellow/partial{
- dir = 4;
- icon_state = "3"
+ dir = 4
},
/obj/effect/decal/warning_stripes/arrow{
- dir = 4;
- icon_state = "4"
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/engine/controlroom)
"cul" = (
/obj/structure/table/glass,
/obj/structure/reagent_dispensers/virusfood{
- pixel_x = 0;
pixel_y = -30
},
/obj/item/reagent_containers/syringe/antiviral,
@@ -63884,9 +60150,7 @@
/obj/item/reagent_containers/dropper/precision,
/obj/item/reagent_containers/spray/cleaner,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitegreen";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whitegreen"
},
/area/medical/virology)
"cum" = (
@@ -63909,16 +60173,13 @@
id_tag = "viro_lab_airlock_control";
name = "Virology Lab Access Console";
pixel_x = 24;
- pixel_y = 0;
req_one_access_txt = "39";
tag_exterior_door = "viro_lab_airlock_exterior";
tag_interior_door = "viro_lab_airlock_interior"
},
/obj/effect/decal/warning_stripes/northeastcorner,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitegreen";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whitegreen"
},
/area/medical/virology)
"cuo" = (
@@ -63939,9 +60200,7 @@
},
/obj/machinery/light,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitegreen";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whitegreen"
},
/area/medical/virology)
"cuq" = (
@@ -63960,7 +60219,6 @@
"cur" = (
/obj/item/radio/intercom{
dir = 8;
- name = "station intercom (General)";
pixel_x = -28
},
/obj/structure/closet/l3closet,
@@ -63988,9 +60246,7 @@
},
/obj/machinery/door/window/northleft{
dir = 4;
- icon_state = "left";
name = "Engineering Monitoring Station";
- req_access_txt = "0";
req_one_access_txt = "11;24"
},
/obj/effect/decal/warning_stripes/yellow,
@@ -64009,9 +60265,7 @@
/area/maintenance/asmaint)
"cuv" = (
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay2)
"cuw" = (
@@ -64041,7 +60295,6 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/obj/structure/cable{
@@ -64058,13 +60311,10 @@
/obj/machinery/alarm{
pixel_y = 25
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (WEST)"
+ icon_state = "whitegreen"
},
/area/medical/virology/lab{
name = "\improper Virology Lobby"
@@ -64073,8 +60323,7 @@
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/obj/structure/cable{
d2 = 4;
@@ -64108,13 +60357,11 @@
dir = 6
},
/obj/structure/sign/poster/random{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/turf/simulated/floor/plasteel{
dir = 10;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (SOUTHWEST)"
+ icon_state = "whitegreen"
},
/area/medical/virology)
"cuG" = (
@@ -64124,8 +60371,7 @@
/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (WEST)"
+ icon_state = "whitegreen"
},
/area/medical/virology/lab{
name = "\improper Virology Lobby"
@@ -64137,15 +60383,12 @@
dir = 9
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitegreen";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whitegreen"
},
/area/medical/virology)
"cuJ" = (
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/obj/structure/table,
@@ -64155,8 +60398,7 @@
},
/obj/item/pen,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 5
@@ -64213,7 +60455,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
@@ -64263,7 +60504,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -64281,7 +60521,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/firealarm{
@@ -64329,9 +60568,7 @@
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cuW" = (
/obj/machinery/atmospherics/unary/portables_connector{
dir = 8
@@ -64347,7 +60584,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/door/firedoor,
@@ -64360,9 +60596,7 @@
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cuY" = (
/obj/structure/cable{
d1 = 1;
@@ -64448,7 +60682,6 @@
department = "Science";
departmentType = 2;
name = "Science Requests Console";
- pixel_x = 0;
pixel_y = -30
},
/obj/machinery/vending/plasmaresearch,
@@ -64458,7 +60691,6 @@
/area/toxins/mixing)
"cvf" = (
/obj/machinery/atmospherics/trinary/mixer{
- density = 0;
dir = 8;
req_access = null
},
@@ -64471,7 +60703,6 @@
dir = 4
},
/obj/item/radio/intercom{
- name = "station intercom (General)";
pixel_y = -28
},
/turf/simulated/floor/plasteel{
@@ -64582,8 +60813,7 @@
/obj/item/flash,
/obj/item/flash,
/obj/machinery/ai_status_display{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/turf/simulated/floor/plating,
/area/storage/tech)
@@ -64592,9 +60822,7 @@
/area/storage/tech)
"cvy" = (
/obj/machinery/camera{
- c_tag = "Tech Storage";
- dir = 2;
- network = list("SS13")
+ c_tag = "Tech Storage"
},
/obj/structure/cable{
d2 = 2;
@@ -64620,7 +60848,6 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/turf/simulated/floor/plating,
@@ -64630,7 +60857,6 @@
dir = 1
},
/obj/machinery/alarm{
- frequency = 1439;
pixel_y = 23
},
/turf/simulated/floor/plating,
@@ -64677,15 +60903,12 @@
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cvG" = (
/obj/machinery/camera{
c_tag = "Research Hallway South";
dir = 1;
- network = list("Research","SS13");
- pixel_x = 0
+ network = list("Research","SS13")
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -64696,27 +60919,21 @@
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cvH" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cvI" = (
/turf/simulated/wall,
/area/construction)
@@ -64735,7 +60952,6 @@
"cvK" = (
/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "yellowcorner"
},
/area/hallway/primary/aft)
@@ -64751,16 +60967,13 @@
/obj/machinery/disposal,
/obj/machinery/camera{
c_tag = "Atmospherics Monitoring";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/structure/disposalpipe/trunk{
@@ -64790,8 +61003,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "whitegreenfull";
- tag = "icon-whitebluefull"
+ icon_state = "whitegreenfull"
},
/area/medical/virology)
"cvP" = (
@@ -64819,15 +61031,13 @@
/obj/machinery/door_control{
id = "psychoffice";
name = "Privacy Shutters Control";
- pixel_x = -25;
- pixel_y = 0
+ pixel_x = -25
},
/turf/simulated/floor/wood,
/area/medical/psych)
"cvS" = (
/obj/structure/sink{
dir = 8;
- icon_state = "sink";
pixel_x = -12;
pixel_y = 2
},
@@ -64841,7 +61051,6 @@
/area/medical/surgery1)
"cvT" = (
/obj/item/radio/intercom{
- name = "station intercom (General)";
pixel_y = -28
},
/turf/simulated/floor/plasteel{
@@ -64853,7 +61062,6 @@
/obj/item/clothing/mask/gas,
/obj/machinery/status_display{
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/plasteel{
@@ -64890,7 +61098,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel,
@@ -64910,47 +61117,39 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/ai_status_display{
pixel_x = -32;
- pixel_y = 0;
step_size = 0
},
/turf/simulated/floor/plasteel{
dir = 9;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (NORTHWEST)"
+ icon_state = "whitegreen"
},
/area/medical/virology)
"cwb" = (
/obj/structure/closet/secure_closet/personal/patient,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (NORTHEAST)"
+ icon_state = "whitegreen"
},
/area/medical/virology)
"cwc" = (
/obj/machinery/camera{
- c_tag = "Virology Break Room";
- network = list("SS13")
+ c_tag = "Virology Break Room"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (WEST)"
+ icon_state = "whitegreen"
},
/area/medical/virology)
"cwd" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
@@ -64962,46 +61161,38 @@
/area/medical/virology)
"cwe" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (NORTHEAST)"
+ icon_state = "whitegreen"
},
/area/medical/virology)
"cwf" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (WEST)"
+ icon_state = "whitegreen"
},
/area/medical/virology)
"cwg" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10
},
/turf/simulated/floor/plasteel{
dir = 9;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (NORTHWEST)"
+ icon_state = "whitegreen"
},
/area/medical/virology)
"cwh" = (
@@ -65012,16 +61203,13 @@
req_access_txt = "39"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "whitegreenfull";
- tag = "icon-whitebluefull"
+ icon_state = "whitegreenfull"
},
/area/medical/virology)
"cwi" = (
@@ -65031,8 +61219,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (NORTHEAST)"
+ icon_state = "whitegreen"
},
/area/medical/virology)
"cwj" = (
@@ -65047,8 +61234,7 @@
"cwk" = (
/obj/machinery/disposal,
/obj/structure/sign/poster/random{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/structure/disposalpipe/trunk{
dir = 4
@@ -65106,9 +61292,7 @@
dir = 8;
icon_state = "whitegreencorner"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cwp" = (
/obj/machinery/light,
/obj/machinery/door/poddoor{
@@ -65119,12 +61303,9 @@
opacity = 0
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitegreencorner"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cwq" = (
/obj/machinery/camera{
c_tag = "Research E.X.P.E.R.I-MENTOR Lab";
@@ -65141,15 +61322,13 @@
/area/toxins/explab)
"cwr" = (
/obj/machinery/light_switch{
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/obj/structure/table,
/obj/item/storage/box/pillbottles{
layer = 4
},
/obj/item/storage/box/bodybags{
- layer = 3;
pixel_x = 5;
pixel_y = 5
},
@@ -65190,9 +61369,7 @@
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cwu" = (
/obj/machinery/atmospherics/unary/tank/air{
dir = 8
@@ -65314,25 +61491,11 @@
},
/turf/simulated/floor/plating,
/area/maintenance/asmaint2)
-"cwL" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0;
- tag = ""
- },
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "yellowcorner"
- },
-/area/hallway/primary/aft)
"cwM" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -65403,8 +61566,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -65448,13 +61610,11 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -65466,40 +61626,17 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plating,
/area/maintenance/genetics)
-"cwZ" = (
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "open";
- id_tag = "Biohazard_medi";
- name = "Quarantine Lockdown";
- opacity = 0
- },
-/obj/machinery/door/airlock/maintenance{
- name = "Medbay Maintenance";
- req_access_txt = "5"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint)
"cxa" = (
/obj/machinery/light/small,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plating,
/area/maintenance/genetics)
@@ -65534,7 +61671,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel,
@@ -65588,7 +61724,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -65597,13 +61732,10 @@
/obj/machinery/door/airlock/medical/glass{
id_tag = "";
name = "Staff Room";
- req_access_txt = "5";
- req_one_access_txt = "0"
+ req_access_txt = "5"
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/medical/medbay2)
"cxk" = (
@@ -65614,8 +61746,7 @@
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -65623,9 +61754,7 @@
/area/construction)
"cxl" = (
/obj/machinery/light/small{
- dir = 4;
- icon_state = "bulb1";
- tag = "icon-bulb1 (EAST)"
+ dir = 4
},
/turf/simulated/floor/plating,
/area/maintenance/asmaint)
@@ -65634,7 +61763,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
@@ -65679,12 +61807,10 @@
/area/engine/controlroom)
"cxs" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "whitegreenfull";
- tag = "icon-whitebluefull"
+ icon_state = "whitegreenfull"
},
/area/medical/virology)
"cxt" = (
@@ -65694,8 +61820,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (WEST)"
+ icon_state = "whitegreen"
},
/area/medical/virology)
"cxu" = (
@@ -65705,8 +61830,7 @@
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (EAST)"
+ icon_state = "whitegreen"
},
/area/medical/virology)
"cxv" = (
@@ -65725,8 +61849,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (WEST)"
+ icon_state = "whitegreen"
},
/area/medical/virology)
"cxx" = (
@@ -65737,8 +61860,7 @@
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (EAST)"
+ icon_state = "whitegreen"
},
/area/medical/virology)
"cxy" = (
@@ -65747,8 +61869,7 @@
/obj/item/flashlight/lamp/green,
/obj/machinery/alarm{
dir = 4;
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/turf/simulated/floor/carpet,
/area/medical/psych)
@@ -65805,7 +61926,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -65828,27 +61948,23 @@
/obj/structure/bed,
/obj/machinery/status_display{
layer = 4;
- pixel_x = 0;
pixel_y = -32
},
/turf/simulated/floor/plasteel{
dir = 10;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (SOUTHWEST)"
+ icon_state = "whitegreen"
},
/area/medical/virology)
"cxG" = (
/obj/structure/table,
/turf/simulated/floor/plasteel{
dir = 6;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (SOUTHEAST)"
+ icon_state = "whitegreen"
},
/area/medical/virology)
"cxH" = (
/turf/simulated/floor/plasteel{
- icon_state = "whitegreenfull";
- tag = "icon-whitebluefull"
+ icon_state = "whitegreenfull"
},
/area/medical/virology)
"cxI" = (
@@ -65863,13 +61979,11 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plating,
/area/maintenance/genetics)
@@ -65878,7 +61992,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/sign/securearea{
@@ -65898,8 +62011,7 @@
/obj/machinery/computer/med_data/laptop,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (EAST)"
+ icon_state = "whitegreen"
},
/area/medical/virology)
"cxM" = (
@@ -65914,7 +62026,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -65931,8 +62042,7 @@
"cxP" = (
/obj/structure/chair/stool,
/turf/simulated/floor/plasteel{
- icon_state = "whitegreenfull";
- tag = "icon-whitebluefull"
+ icon_state = "whitegreenfull"
},
/area/medical/virology)
"cxQ" = (
@@ -65940,7 +62050,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/cable{
@@ -65966,7 +62075,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/light/small{
@@ -65992,7 +62100,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -66008,7 +62115,6 @@
/area/maintenance/asmaint)
"cxU" = (
/obj/structure/sign/poster/contraband/random{
- pixel_x = 0;
pixel_y = 32
},
/obj/machinery/light/small{
@@ -66024,14 +62130,12 @@
/area/maintenance/asmaint2)
"cxW" = (
/obj/structure/sign/securearea{
- pixel_x = 0;
pixel_y = 32
},
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/light{
@@ -66130,8 +62234,7 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/engineering/glass{
name = "Engineering";
- req_access_txt = "32";
- req_one_access_txt = "0"
+ req_access_txt = "32"
},
/turf/simulated/floor/plasteel,
/area/engine/equipmentstorage)
@@ -66176,7 +62279,6 @@
},
/obj/structure/closet/emcloset,
/obj/machinery/alarm{
- frequency = 1439;
pixel_y = 23
},
/obj/machinery/atmospherics/pipe/simple/visible{
@@ -66223,8 +62325,7 @@
/area/storage/tech)
"cys" = (
/obj/machinery/camera{
- c_tag = "Secure Tech Storage";
- dir = 2
+ c_tag = "Secure Tech Storage"
},
/obj/structure/cable{
d1 = 1;
@@ -66332,7 +62433,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/light{
@@ -66360,13 +62460,11 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/junction{
dir = 1;
- icon_state = "pipe-j2";
- tag = "icon-pipe-j2"
+ icon_state = "pipe-j2"
},
/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
@@ -66391,7 +62489,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/cable{
@@ -66413,8 +62510,7 @@
/area/engine/controlroom)
"cyH" = (
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -66425,7 +62521,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -66433,8 +62528,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plating,
/area/maintenance/asmaint2)
@@ -66451,7 +62545,6 @@
/obj/item/twohanded/required/kirbyplants,
/obj/machinery/status_display{
layer = 4;
- pixel_x = 0;
pixel_y = -32
},
/turf/simulated/floor/carpet,
@@ -66499,7 +62592,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plating,
@@ -66528,14 +62620,11 @@
"cyU" = (
/obj/item/twohanded/required/kirbyplants,
/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
pixel_y = -30
},
/obj/machinery/light,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitegreen";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whitegreen"
},
/area/medical/virology)
"cyV" = (
@@ -66552,7 +62641,6 @@
/obj/item/reagent_containers/iv_bag/blood/random,
/obj/item/reagent_containers/iv_bag/blood/random,
/obj/machinery/ai_status_display{
- pixel_x = 0;
pixel_y = -32;
step_size = 0
},
@@ -66562,8 +62650,7 @@
},
/turf/simulated/floor/plasteel{
dir = 10;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (SOUTHWEST)"
+ icon_state = "whitegreen"
},
/area/medical/virology)
"cyW" = (
@@ -66573,30 +62660,25 @@
pixel_y = 6
},
/obj/item/storage/secure/safe{
- pixel_x = 0;
pixel_y = -32
},
/turf/simulated/floor/plasteel{
dir = 6;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (SOUTHEAST)"
+ icon_state = "whitegreen"
},
/area/medical/virology)
"cyX" = (
/obj/structure/table,
/obj/machinery/reagentgrinder,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitegreen";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whitegreen"
},
/area/medical/virology)
"cyY" = (
/obj/structure/table,
/turf/simulated/floor/plasteel{
dir = 10;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (SOUTHWEST)"
+ icon_state = "whitegreen"
},
/area/medical/virology)
"cyZ" = (
@@ -66607,13 +62689,11 @@
/obj/structure/bed,
/obj/machinery/status_display{
layer = 4;
- pixel_x = 0;
pixel_y = -32
},
/turf/simulated/floor/plasteel{
dir = 6;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (SOUTHEAST)"
+ icon_state = "whitegreen"
},
/area/medical/virology)
"czb" = (
@@ -66625,7 +62705,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/mob/living/simple_animal/mouse,
@@ -66646,7 +62725,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/effect/decal/remains/robot,
@@ -66713,7 +62791,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -66726,7 +62803,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/effect/landmark{
@@ -66782,7 +62858,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -66795,7 +62870,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/effect/landmark{
@@ -66815,7 +62889,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -66834,12 +62907,10 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -66861,8 +62932,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4
@@ -66875,7 +62945,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -66891,8 +62960,6 @@
/area/hallway/primary/aft)
"czB" = (
/obj/item/radio/intercom{
- frequency = 1459;
- name = "station intercom (General)";
pixel_x = -28
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -66902,7 +62969,6 @@
"czC" = (
/obj/structure/cable,
/obj/machinery/power/apc{
- dir = 2;
name = "south bump Engineering";
pixel_y = -24;
shock_proof = 1
@@ -66912,10 +62978,7 @@
"czD" = (
/obj/machinery/camera{
c_tag = "Engineering Construction Area";
- dir = 8;
- network = list("SS13");
- pixel_x = 0;
- pixel_y = 0
+ dir = 8
},
/obj/structure/cable{
d1 = 1;
@@ -66943,13 +63006,10 @@
/turf/simulated/wall/r_wall,
/area/maintenance/incinerator)
"czG" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/mob/living/carbon/human/monkey,
/turf/simulated/floor/plasteel{
- icon_state = "whitegreenfull";
- tag = "icon-whitebluefull"
+ icon_state = "whitegreenfull"
},
/area/medical/virology)
"czH" = (
@@ -66966,16 +63026,12 @@
dir = 1
},
/obj/machinery/camera{
- c_tag = "Virology Module North";
- network = list("SS13")
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
+ c_tag = "Virology Module North"
},
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (WEST)"
+ icon_state = "whitegreen"
},
/area/medical/virology)
"czJ" = (
@@ -67088,7 +63144,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plating,
@@ -67098,7 +63153,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/door/firedoor,
@@ -67111,13 +63165,10 @@
"czW" = (
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
- pixel_x = -22;
- pixel_y = 0
+ pixel_x = -22
},
/obj/structure/sink{
dir = 8;
- icon_state = "sink";
pixel_x = -12;
pixel_y = 2
},
@@ -67172,13 +63223,11 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -67218,9 +63267,7 @@
"cAf" = (
/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitegreen";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whitegreen"
},
/area/toxins/xenobiology)
"cAg" = (
@@ -67251,9 +63298,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitegreen";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whitegreen"
},
/area/toxins/xenobiology)
"cAj" = (
@@ -67270,8 +63315,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/hallway/primary/aft)
@@ -67279,7 +63323,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/engineering/glass{
name = "Engineering";
- req_access_txt = "0";
req_one_access_txt = "11;24"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -67291,7 +63334,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -67320,9 +63362,7 @@
},
/area/construction)
"cAp" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -67332,15 +63372,13 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 5
},
/turf/simulated/floor/plasteel{
- icon_state = "whitegreenfull";
- tag = "icon-whitebluefull"
+ icon_state = "whitegreenfull"
},
/area/medical/virology)
"cAr" = (
@@ -67353,8 +63391,7 @@
},
/mob/living/carbon/human/monkey,
/turf/simulated/floor/plasteel{
- icon_state = "whitegreenfull";
- tag = "icon-whitebluefull"
+ icon_state = "whitegreenfull"
},
/area/medical/virology)
"cAs" = (
@@ -67371,16 +63408,13 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay2)
"cAt" = (
@@ -67392,19 +63426,16 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner (WEST)"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay2)
"cAu" = (
@@ -67502,7 +63533,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -67549,7 +63579,6 @@
/obj/machinery/requests_console{
department = "Tech Storage";
name = "Tech Storage Requests Console";
- pixel_x = 0;
pixel_y = -32
},
/turf/simulated/floor/plating,
@@ -67586,8 +63615,7 @@
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -67617,9 +63645,7 @@
/area/toxins/misc_lab)
"cAR" = (
/obj/structure/table,
-/obj/machinery/recharger{
- pixel_y = 0
- },
+/obj/machinery/recharger,
/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plasteel,
/area/engine/controlroom)
@@ -67631,9 +63657,7 @@
"cAT" = (
/obj/structure/table,
/obj/item/mounted/frame/apc_frame,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel,
/area/engine/controlroom)
"cAU" = (
@@ -67664,14 +63688,12 @@
},
/mob/living/carbon/human/monkey,
/turf/simulated/floor/plasteel{
- icon_state = "whitegreenfull";
- tag = "icon-whitebluefull"
+ icon_state = "whitegreenfull"
},
/area/medical/virology)
"cAZ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/turf/simulated/wall/r_wall,
/area/toxins/misc_lab)
@@ -67711,7 +63733,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plating,
@@ -67735,7 +63756,6 @@
icon_state = "space";
layer = 4;
name = "EXTERNAL AIRLOCK";
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/engine,
@@ -67816,8 +63836,7 @@
/area/maintenance/incinerator)
"cBo" = (
/obj/machinery/light/small{
- dir = 4;
- pixel_y = 0
+ dir = 4
},
/turf/simulated/floor/plating,
/area/maintenance/apmaint)
@@ -67856,9 +63875,7 @@
dir = 8;
layer = 2.9
},
-/obj/item/circuitboard/cloning{
- pixel_x = 0
- },
+/obj/item/circuitboard/cloning,
/obj/item/circuitboard/med_data{
pixel_x = 3;
pixel_y = -3
@@ -67929,8 +63946,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/plating,
/area/medical/psych)
@@ -67939,7 +63955,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/door/airlock/maintenance{
@@ -67997,8 +64012,7 @@
/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "vault";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "vault"
},
/area/toxins/misc_lab)
"cBD" = (
@@ -68013,7 +64027,6 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/turf/simulated/floor/plasteel{
@@ -68055,8 +64068,7 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/engine/controlroom)
@@ -68123,7 +64135,6 @@
/obj/machinery/light,
/obj/item/clothing/glasses/welding,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "caution"
},
/area/maintenance/asmaint)
@@ -68135,14 +64146,12 @@
},
/obj/item/storage/toolbox,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "caution"
},
/area/maintenance/asmaint)
"cBX" = (
/obj/structure/reagent_dispensers/fueltank,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "caution"
},
/area/maintenance/asmaint)
@@ -68199,8 +64208,7 @@
"cCd" = (
/obj/structure/closet/bombcloset,
/obj/machinery/light_switch{
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -68220,9 +64228,7 @@
/obj/structure/closet/secure_closet/scientist,
/obj/machinery/camera{
c_tag = "Research Test Lab West";
- dir = 2;
- network = list("Research","SS13");
- pixel_x = 0
+ network = list("Research","SS13")
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -68239,7 +64245,6 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/turf/simulated/floor/plasteel{
@@ -68270,9 +64275,7 @@
on = 1
},
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/plasteel{
@@ -68287,8 +64290,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "vault";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "vault"
},
/area/toxins/misc_lab)
"cCk" = (
@@ -68298,8 +64300,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "vault";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "vault"
},
/area/toxins/misc_lab)
"cCl" = (
@@ -68312,21 +64313,18 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "vault";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "vault"
},
/area/toxins/misc_lab)
"cCm" = (
/obj/machinery/chem_master,
/obj/item/radio/intercom{
dir = 1;
- name = "station intercom (General)";
pixel_y = 25
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "vault";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "vault"
},
/area/toxins/misc_lab)
"cCn" = (
@@ -68336,8 +64334,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "vault";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "vault"
},
/area/toxins/misc_lab)
"cCo" = (
@@ -68345,14 +64342,12 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/structure/cable{
@@ -68368,7 +64363,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_y = 0;
tag = ""
},
/turf/simulated/wall/r_wall,
@@ -68381,7 +64375,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_y = 0;
tag = ""
},
/obj/structure/closet/emcloset,
@@ -68392,7 +64385,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plating/airless,
@@ -68414,14 +64406,12 @@
/area/toxins/test_area)
"cCv" = (
/obj/machinery/door/airlock/external{
- name = "Toxins Test Chamber";
- req_access_txt = "0"
+ name = "Toxins Test Chamber"
},
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plating/airless,
@@ -68448,7 +64438,6 @@
layer = 3.1;
master_tag = "incinerator_access_control";
name = "Incinerator Airlock Control";
- pixel_x = 0;
pixel_y = -23
},
/turf/simulated/floor/engine,
@@ -68468,7 +64457,6 @@
command = "cycle_interior";
master_tag = "incinerator_access_control";
name = "Incinerator Airlock Control";
- pixel_x = 0;
pixel_y = -22
},
/turf/simulated/floor/engine,
@@ -68476,7 +64464,6 @@
"cCz" = (
/obj/effect/decal/remains/human{
desc = "This guy seemed to have died in terrible way! Half his remains are dust.";
- icon_state = "remains";
name = "Human remains"
},
/turf/simulated/floor/plasteel{
@@ -68505,7 +64492,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/door/firedoor,
@@ -68555,7 +64541,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plating,
@@ -68565,7 +64550,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/door/firedoor,
@@ -68585,7 +64569,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/engineering/glass{
name = "Engineering";
- req_access_txt = "0";
req_one_access_txt = "11;24"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -68607,8 +64590,7 @@
/area/construction)
"cCL" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -68658,7 +64640,6 @@
},
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/turf/simulated/floor/plasteel{
@@ -68678,7 +64659,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/atmospherics/unary/vent_pump/on{
@@ -68690,8 +64670,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/turf/simulated/floor/wood,
/area/medical/psych)
@@ -68700,7 +64679,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -68729,13 +64707,11 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -68746,7 +64722,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -68768,7 +64743,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/door/firedoor,
@@ -68791,7 +64765,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
@@ -68807,7 +64780,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -68835,8 +64807,7 @@
"cDb" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -68847,8 +64818,7 @@
/area/toxins/misc_lab)
"cDc" = (
/obj/machinery/light_switch{
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -68909,7 +64879,6 @@
pixel_y = 27
},
/obj/machinery/alarm{
- frequency = 1439;
pixel_y = 23
},
/turf/simulated/floor/plasteel{
@@ -68927,12 +64896,10 @@
/area/atmos)
"cDk" = (
/obj/machinery/camera{
- c_tag = "Atmospherics North-East";
- network = list("SS13")
+ c_tag = "Atmospherics North-East"
},
/obj/item/radio/intercom{
dir = 1;
- name = "station intercom (General)";
pixel_y = 25
},
/obj/machinery/atmospherics/binary/volume_pump/on{
@@ -68955,7 +64922,6 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump Engineering";
- pixel_x = 0;
pixel_y = 24;
shock_proof = 1
},
@@ -68996,8 +64962,7 @@
"cDs" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10;
- initialize_directions = 10;
- level = 1
+ initialize_directions = 10
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -69009,13 +64974,11 @@
"cDt" = (
/obj/effect/decal/warning_stripes/west,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "vault";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "vault"
},
/area/toxins/misc_lab)
"cDu" = (
@@ -69050,7 +65013,6 @@
/obj/structure/disposalpipe/segment,
/obj/item/radio/intercom{
dir = 8;
- name = "station intercom (General)";
pixel_x = -28
},
/turf/simulated/floor/plasteel{
@@ -69073,21 +65035,16 @@
"cDz" = (
/obj/machinery/camera{
c_tag = "Atmospherics Access";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/obj/machinery/light{
dir = 8
},
/obj/item/radio/intercom{
- frequency = 1459;
- name = "station intercom (General)";
pixel_x = -28
},
/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
- dir = 6;
- icon_state = "intact";
- tag = "icon-intact (SOUTHEAST)"
+ dir = 6
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -69099,7 +65056,6 @@
dir = 9
},
/obj/item/radio/intercom{
- name = "station intercom (General)";
pixel_y = -28
},
/turf/simulated/floor/plasteel,
@@ -69131,17 +65087,14 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "vault";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "vault"
},
/area/toxins/misc_lab)
"cDE" = (
/obj/machinery/hologram/holopad,
/obj/machinery/vending/wallmed{
name = "Emergency NanoMed";
- pixel_x = 0;
- pixel_y = -32;
- req_access_txt = "0"
+ pixel_y = -32
},
/obj/machinery/atmospherics/pipe/simple/hidden/universal{
dir = 4
@@ -69154,15 +65107,13 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "vault";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "vault"
},
/area/toxins/misc_lab)
"cDG" = (
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "vault";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "vault"
},
/area/toxins/misc_lab)
"cDH" = (
@@ -69170,8 +65121,7 @@
/obj/item/reagent_containers/glass/beaker/large,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "vault";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "vault"
},
/area/toxins/misc_lab)
"cDI" = (
@@ -69213,7 +65163,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plating/airless,
@@ -69261,8 +65210,6 @@
pixel_y = 5
},
/obj/item/radio/intercom{
- frequency = 1459;
- name = "station intercom (General)";
pixel_x = -28
},
/turf/simulated/floor/plasteel{
@@ -69293,7 +65240,6 @@
/obj/machinery/door_control{
id = "disvent";
name = "Incinerator Vent Control";
- pixel_x = 0;
pixel_y = -24;
req_access_txt = "12"
},
@@ -69327,7 +65273,6 @@
/area/storage/tech)
"cDZ" = (
/obj/item/radio/intercom{
- name = "station intercom (General)";
pixel_y = -28
},
/obj/machinery/atmospherics/binary/pump{
@@ -69368,8 +65313,7 @@
tag = ""
},
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/structure/table,
/turf/simulated/floor/plasteel{
@@ -69383,8 +65327,7 @@
},
/obj/machinery/status_display{
layer = 4;
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/turf/simulated/floor/plating,
/area/storage/tech)
@@ -69444,13 +65387,11 @@
"cEj" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/engine/controlroom)
@@ -69495,13 +65436,11 @@
/obj/effect/decal/warning_stripes/south,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -69563,9 +65502,7 @@
"cEu" = (
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
- pixel_x = 11;
- pixel_y = 0
+ pixel_x = 11
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
@@ -69580,9 +65517,7 @@
/area/engine/mechanic_workshop)
"cEw" = (
/obj/machinery/camera{
- c_tag = "Mechanic's Workshop West";
- dir = 2;
- network = list("SS13")
+ c_tag = "Mechanic's Workshop West"
},
/turf/simulated/floor/engine,
/area/engine/mechanic_workshop)
@@ -69643,9 +65578,7 @@
},
/area/toxins/xenobiology)
"cEI" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/engine,
/area/engine/mechanic_workshop)
"cEJ" = (
@@ -69654,7 +65587,6 @@
icon_state = "space";
layer = 4;
name = "EXTERNAL AIRLOCK";
- pixel_x = 0;
pixel_y = 32
},
/obj/machinery/mecha_part_fabricator/spacepod,
@@ -69686,13 +65618,10 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/camera{
- c_tag = "Mechanic's Workshop East";
- dir = 2;
- network = list("SS13")
+ c_tag = "Mechanic's Workshop East"
},
/obj/machinery/space_heater,
/turf/simulated/floor/plasteel{
@@ -69709,7 +65638,6 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/turf/simulated/floor/plasteel{
@@ -69723,7 +65651,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plating,
@@ -69733,7 +65660,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/closet/emcloset,
@@ -69747,7 +65673,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -69763,7 +65688,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -69791,7 +65715,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -69810,13 +65733,10 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/obj/structure/disposalpipe/segment{
@@ -69835,7 +65755,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -69854,8 +65773,7 @@
/obj/machinery/chem_master,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "vault";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "vault"
},
/area/toxins/misc_lab)
"cFc" = (
@@ -69872,8 +65790,7 @@
"cFd" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'.";
- name = "KEEP CLEAR: DOCKING AREA";
- pixel_y = 0
+ name = "KEEP CLEAR: DOCKING AREA"
},
/turf/simulated/wall/r_wall,
/area/engine/mechanic_workshop)
@@ -69888,8 +65805,7 @@
"cFf" = (
/obj/structure/disposalpipe/junction{
dir = 8;
- icon_state = "pipe-j2";
- tag = "icon-pipe-j1 (WEST)"
+ icon_state = "pipe-j2"
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -69920,8 +65836,7 @@
},
/obj/machinery/portable_atmospherics/pump,
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -69961,9 +65876,7 @@
dir = 4
},
/obj/machinery/camera{
- c_tag = "Aft Primary Hallway 3";
- dir = 2;
- network = list("SS13")
+ c_tag = "Aft Primary Hallway 3"
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -69989,9 +65902,7 @@
dir = 4
},
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/obj/machinery/atmospherics/unary/vent_pump/on,
@@ -70040,13 +65951,10 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/engineering/glass{
name = "Engineering";
- req_access_txt = "0";
req_one_access_txt = "11;24"
},
/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
- dir = 9;
- icon_state = "intact";
- tag = "icon-intact (NORTHWEST)"
+ dir = 9
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -70077,16 +65985,14 @@
pixel_x = -24
},
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (WEST)"
+ icon_state = "whitegreen"
},
/area/medical/virology)
"cFy" = (
@@ -70095,8 +66001,7 @@
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (EAST)"
+ icon_state = "whitegreen"
},
/area/medical/virology)
"cFz" = (
@@ -70104,8 +66009,7 @@
dir = 8
},
/turf/simulated/floor/plasteel{
- icon_state = "whitegreenfull";
- tag = "icon-whitebluefull"
+ icon_state = "whitegreenfull"
},
/area/medical/virology)
"cFA" = (
@@ -70135,7 +66039,6 @@
master_tag = "xeno_airlock_control";
name = "Xenobiology Access Button";
pixel_x = -24;
- pixel_y = 0;
req_access_txt = "55"
},
/obj/structure/cable{
@@ -70165,7 +66068,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/unary/vent_scrubber/on{
@@ -70185,7 +66087,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/visible/purple{
@@ -70204,7 +66105,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/visible/purple{
@@ -70229,7 +66129,6 @@
department = "Science";
departmentType = 2;
name = "Science Requests Console";
- pixel_x = 0;
pixel_y = -30
},
/obj/structure/table,
@@ -70252,7 +66151,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/firealarm{
@@ -70323,8 +66221,7 @@
/obj/effect/decal/warning_stripes/east,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -70392,7 +66289,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_y = 0;
tag = ""
},
/obj/machinery/door/firedoor,
@@ -70418,8 +66314,7 @@
/obj/item/reagent_containers/glass/beaker/large,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "vault";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "vault"
},
/area/toxins/misc_lab)
"cFV" = (
@@ -70441,8 +66336,7 @@
/obj/structure/closet/secure_closet/research_reagents,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "vault";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "vault"
},
/area/toxins/misc_lab)
"cFZ" = (
@@ -70452,7 +66346,6 @@
amount = 50
},
/obj/item/stack/sheet/mineral/plasma{
- amount = 1;
layer = 2.9
},
/obj/item/stack/sheet/glass{
@@ -70464,8 +66357,7 @@
/obj/item/storage/box/pillbottles,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "vault";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "vault"
},
/area/toxins/misc_lab)
"cGa" = (
@@ -70479,8 +66371,7 @@
/obj/item/reagent_containers/dropper/precision,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "vault";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "vault"
},
/area/toxins/misc_lab)
"cGb" = (
@@ -70489,8 +66380,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/hallway/primary/aft)
@@ -70513,8 +66403,7 @@
/obj/machinery/reagentgrinder,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "vault";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "vault"
},
/area/toxins/misc_lab)
"cGe" = (
@@ -70537,8 +66426,7 @@
"cGg" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -70582,7 +66470,6 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "yellowcorner"
},
/area/hallway/primary/aft)
@@ -70590,8 +66477,7 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/hallway/primary/aft)
@@ -70629,8 +66515,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4
@@ -70640,8 +66525,7 @@
"cGp" = (
/obj/structure/disposalpipe/junction{
dir = 2;
- icon_state = "pipe-j2";
- tag = "icon-pipe-j2"
+ icon_state = "pipe-j2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -70679,8 +66563,7 @@
/area/engine/break_room)
"cGu" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/machinery/shower{
pixel_y = 8
@@ -70690,8 +66573,7 @@
/area/engine/break_room)
"cGv" = (
/obj/machinery/camera{
- c_tag = "Atmospherics Control Room";
- network = list("SS13")
+ c_tag = "Atmospherics Control Room"
},
/obj/structure/cable{
d2 = 4;
@@ -70705,7 +66587,6 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump Engineering";
- pixel_x = 0;
pixel_y = 24;
shock_proof = 1
},
@@ -70720,28 +66601,24 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (WEST)"
+ icon_state = "whitegreen"
},
/area/medical/virology)
"cGx" = (
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 1
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (WEST)"
+ icon_state = "whitegreen"
},
/area/medical/virology)
"cGy" = (
/obj/machinery/ai_status_display{
pixel_x = 32;
- pixel_y = 0;
step_size = 0
},
/obj/machinery/atmospherics/unary/vent_pump/on{
@@ -70749,20 +66626,17 @@
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (EAST)"
+ icon_state = "whitegreen"
},
/area/medical/virology)
"cGz" = (
/obj/structure/sink{
dir = 8;
- icon_state = "sink";
pixel_x = -12;
pixel_y = 2
},
/obj/item/radio/intercom{
dir = 8;
- name = "station intercom (General)";
pixel_x = -28
},
/obj/effect/decal/warning_stripes/northwest,
@@ -70777,9 +66651,7 @@
/obj/structure/closet/emcloset,
/obj/machinery/camera{
c_tag = "Xenobiology Access";
- dir = 2;
- network = list("Research","SS13");
- pixel_x = 0
+ network = list("Research","SS13")
},
/obj/effect/decal/warning_stripes/northeast,
/turf/simulated/floor/plasteel{
@@ -70796,8 +66668,7 @@
/obj/effect/decal/warning_stripes/north,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
@@ -70807,7 +66678,6 @@
"cGC" = (
/obj/machinery/alarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/obj/machinery/atmospherics/unary/vent_pump/on{
@@ -70842,8 +66712,7 @@
/obj/machinery/door/window/westright{
name = "Mechanic's Desk";
req_access = null;
- req_access_txt = "70";
- req_one_access_txt = "0"
+ req_access_txt = "70"
},
/obj/machinery/cell_charger,
/turf/simulated/floor/plasteel{
@@ -70886,8 +66755,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/disposalpipe/segment,
@@ -70904,16 +66772,13 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "yellowcorner"
},
/area/hallway/primary/aft)
"cGN" = (
/obj/machinery/meter,
/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{
- dir = 1;
- icon_state = "map";
- tag = "icon-map (NORTH)"
+ dir = 1
},
/turf/simulated/wall,
/area/engine/controlroom)
@@ -70922,14 +66787,12 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_y = 0;
tag = ""
},
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 1
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "yellowcorner"
},
/area/hallway/primary/aft)
@@ -70942,7 +66805,6 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "yellowcorner"
},
/area/hallway/primary/aft)
@@ -70951,8 +66813,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
icon_state = "floorgrime"
@@ -70977,8 +66838,7 @@
/obj/structure/table,
/obj/item/camera,
/obj/machinery/light_switch{
- pixel_x = 25;
- pixel_y = 0
+ pixel_x = 25
},
/turf/simulated/floor/plasteel{
icon_state = "floorgrime"
@@ -70986,8 +66846,7 @@
/area/storage/office)
"cGT" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/structure/cable{
d1 = 1;
@@ -71011,7 +66870,6 @@
/obj/effect/decal/warning_stripes/northeast,
/obj/item/radio/intercom{
dir = 0;
- name = "station intercom (General)";
pixel_x = -28
},
/turf/simulated/floor/plasteel{
@@ -71021,7 +66879,6 @@
"cGW" = (
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "yellowcorner"
},
/area/hallway/primary/aft)
@@ -71047,8 +66904,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -71058,8 +66914,7 @@
"cGZ" = (
/obj/machinery/hologram/holopad,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/cable{
d1 = 4;
@@ -71098,24 +66953,20 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plating,
/area/engine/chiefs_office)
"cHb" = (
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/machinery/computer/station_alert,
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -71127,7 +66978,6 @@
dir = 1
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "yellowcorner"
},
/area/hallway/primary/aft)
@@ -71186,7 +67036,6 @@
"cHj" = (
/obj/structure/table,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "yellowcorner"
},
/area/hallway/primary/aft)
@@ -71224,7 +67073,6 @@
},
/obj/item/radio/intercom{
dir = 1;
- name = "station intercom (General)";
pixel_y = -28
},
/turf/simulated/floor/plasteel{
@@ -71276,8 +67124,7 @@
/obj/structure/table,
/obj/machinery/cell_charger,
/obj/machinery/camera{
- c_tag = "Engineering Foyer";
- network = list("SS13")
+ c_tag = "Engineering Foyer"
},
/obj/structure/noticeboard{
pixel_y = 28
@@ -71335,12 +67182,10 @@
/obj/structure/closet/l3closet/scientist,
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel{
@@ -71450,8 +67295,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel,
@@ -71491,8 +67335,6 @@
/obj/machinery/camera{
c_tag = "Aft Primary Hallway 2";
dir = 8;
- network = list("SS13");
- pixel_x = 0;
pixel_y = -22
},
/obj/structure/disposalpipe/segment{
@@ -71560,9 +67402,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
- dir = 9;
- icon_state = "intact";
- tag = "icon-intact (NORTHWEST)"
+ dir = 9
},
/turf/simulated/wall,
/area/engine/break_room)
@@ -71572,8 +67412,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -71583,8 +67422,7 @@
"cHW" = (
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (WEST)"
+ icon_state = "whitegreen"
},
/area/medical/virology/lab{
name = "\improper Virology Lobby"
@@ -71608,7 +67446,6 @@
sensors = list("n2_sensor" = "Nitrogen", "o2_sensor" = "Oxygen", "co2_sensor" = "Carbon Dioxide", "tox_sensor" = "Toxins", "n2o_sensor" = "Nitrous Oxide", "waste_sensor" = "Gas Mix Tank")
},
/obj/machinery/alarm{
- frequency = 1439;
pixel_y = 23
},
/turf/simulated/floor/plasteel,
@@ -71649,8 +67486,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -71698,8 +67534,7 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10;
- initialize_directions = 10;
- level = 1
+ initialize_directions = 10
},
/turf/simulated/floor/plasteel,
/area/engine/break_room)
@@ -71719,8 +67554,7 @@
/area/atmos/control)
"cIj" = (
/turf/simulated/floor/wood{
- icon_state = "wood-broken7";
- tag = "icon-wood-broken7"
+ icon_state = "wood-broken7"
},
/area/maintenance/asmaint)
"cIk" = (
@@ -71730,8 +67564,7 @@
"cIl" = (
/obj/structure/chair/stool,
/turf/simulated/floor/wood{
- icon_state = "wood-broken3";
- tag = "icon-wood-broken3"
+ icon_state = "wood-broken3"
},
/area/maintenance/asmaint)
"cIm" = (
@@ -71753,9 +67586,7 @@
/turf/simulated/floor/plating,
/area/maintenance/asmaint)
"cIp" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel,
/area/atmos/control)
"cIq" = (
@@ -71819,7 +67650,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -71864,8 +67694,7 @@
/area/maintenance/asmaint)
"cIA" = (
/obj/structure/extinguisher_cabinet{
- pixel_x = 27;
- pixel_y = 0
+ pixel_x = 27
},
/obj/structure/cable{
d1 = 2;
@@ -71874,9 +67703,7 @@
tag = ""
},
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/plasteel{
@@ -71886,7 +67713,6 @@
"cIB" = (
/obj/structure/sink{
dir = 8;
- icon_state = "sink";
pixel_x = -12;
pixel_y = 2
},
@@ -71925,7 +67751,6 @@
desc = "Used for watching the horrors within the test chamber.";
name = "Research Monitor";
network = list("TestChamber");
- pixel_x = 0;
pixel_y = -32
},
/turf/simulated/floor/plasteel{
@@ -71993,7 +67818,6 @@
desc = "A remote control-switch for the pod doors.";
id = "mechpodbay";
name = "Pod Door Control";
- pixel_x = 0;
pixel_y = -24;
req_access_txt = "70"
},
@@ -72011,7 +67835,6 @@
desc = "A remote control-switch for the pod doors.";
id = "mechpodbayouter";
name = "Pod Door Control";
- pixel_x = 0;
pixel_y = -24;
req_access_txt = "70"
},
@@ -72027,8 +67850,7 @@
/obj/effect/decal/warning_stripes/south,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
@@ -72037,13 +67859,10 @@
/area/toxins/xenobiology)
"cIO" = (
/obj/structure/sign/securearea{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/machinery/shower{
- dir = 4;
- icon_state = "shower";
- tag = "icon-shower (EAST)"
+ dir = 4
},
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel{
@@ -72055,7 +67874,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -72112,7 +67930,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/trunk{
@@ -72139,8 +67956,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 5
@@ -72283,8 +68099,7 @@
icon_state = "door_locked";
locked = 1;
name = "Assembly Line (KEEP OUT)";
- req_access_txt = "32";
- req_one_access_txt = "0"
+ req_access_txt = "32"
},
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -72318,8 +68133,7 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/hallway/primary/aft)
@@ -72368,8 +68182,7 @@
/area/atmos/control)
"cJq" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/turf/simulated/floor/plasteel,
/area/engine/break_room)
@@ -72384,8 +68197,7 @@
/area/toxins/xenobiology)
"cJs" = (
/turf/simulated/floor/wood{
- icon_state = "wood-broken6";
- tag = "icon-wood-broken6"
+ icon_state = "wood-broken6"
},
/area/maintenance/asmaint)
"cJt" = (
@@ -72397,8 +68209,7 @@
/area/maintenance/asmaint)
"cJv" = (
/turf/simulated/floor/wood{
- icon_state = "wood-broken";
- tag = "icon-wood-broken"
+ icon_state = "wood-broken"
},
/area/maintenance/asmaint)
"cJw" = (
@@ -72448,7 +68259,6 @@
/obj/item/paper/pamphlet,
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/obj/item/stack/tape_roll,
@@ -72512,7 +68322,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/door/airlock/maintenance{
@@ -72536,7 +68345,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/hologram/holopad,
@@ -72545,16 +68353,13 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/atmos/control)
"cJI" = (
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/wall,
@@ -72564,7 +68369,6 @@
/obj/machinery/door_control{
id = "xenobio3";
name = "Containment Blast Doors";
- pixel_x = 0;
pixel_y = 4;
req_access_txt = "55"
},
@@ -72575,7 +68379,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/effect/decal/warning_stripes/southeast,
@@ -72593,7 +68396,6 @@
/area/toxins/xenobiology)
"cJM" = (
/obj/structure/sign/atmosplaque{
- pixel_x = 0;
pixel_y = -32
},
/obj/structure/closet/secure_closet/atmos_personal,
@@ -72608,7 +68410,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/cable{
@@ -72697,8 +68498,7 @@
/obj/structure/grille,
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'.";
- name = "KEEP CLEAR: DOCKING AREA";
- pixel_y = 0
+ name = "KEEP CLEAR: DOCKING AREA"
},
/turf/simulated/floor/plating/airless,
/area/engine/mechanic_workshop)
@@ -72723,8 +68523,7 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/engineering/glass{
name = "Mechanic Workshop";
- req_access_txt = "70";
- req_one_access_txt = "0"
+ req_access_txt = "70"
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -72758,13 +68557,11 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -72798,7 +68595,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment,
@@ -72871,8 +68667,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plating,
/area/maintenance/asmaint)
@@ -72880,12 +68675,10 @@
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
},
/turf/simulated/floor/plating,
/area/maintenance/asmaint)
@@ -72944,7 +68737,6 @@
/obj/machinery/door_control{
id = "xenobio7";
name = "Containment Blast Doors";
- pixel_x = 0;
pixel_y = 4;
req_access_txt = "55"
},
@@ -72986,21 +68778,16 @@
/area/maintenance/asmaint)
"cKv" = (
/obj/structure/chair/wood/wings{
- dir = 4;
- icon_state = "wooden_chair_wings";
- tag = "icon-wooden_chair_wings (EAST)"
+ dir = 4
},
/turf/simulated/floor/wood,
/area/maintenance/asmaint)
"cKw" = (
/obj/structure/chair/wood/wings{
- dir = 8;
- icon_state = "wooden_chair_wings";
- tag = "icon-wooden_chair_wings (WEST)"
+ dir = 8
},
/turf/simulated/floor/wood{
- icon_state = "wood-broken7";
- tag = "icon-wood-broken7"
+ icon_state = "wood-broken7"
},
/area/maintenance/asmaint)
"cKx" = (
@@ -73008,14 +68795,11 @@
department = "Science";
departmentType = 2;
name = "Science Requests Console";
- pixel_x = 0;
pixel_y = 30
},
/obj/machinery/camera{
c_tag = "Xenobiology Module North";
- dir = 2;
- network = list("Research","SS13");
- pixel_x = 0
+ network = list("Research","SS13")
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -73030,14 +68814,12 @@
icon_state = "0-8"
},
/obj/structure/extinguisher_cabinet{
- pixel_x = 27;
- pixel_y = 0
+ pixel_x = 27
},
/obj/effect/decal/warning_stripes/northwestcorner,
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/turf/simulated/floor/plasteel{
@@ -73057,8 +68839,7 @@
department = "Atmospherics";
departmentType = 3;
name = "Atmospherics Requests Console";
- pixel_x = 30;
- pixel_y = 0
+ pixel_x = 30
},
/turf/simulated/floor/plasteel,
/area/atmos/control)
@@ -73122,8 +68903,7 @@
/obj/effect/decal/warning_stripes/north,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
@@ -73136,7 +68916,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/structure/cable{
@@ -73161,7 +68940,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/structure/disposalpipe/segment,
@@ -73173,8 +68951,7 @@
"cKM" = (
/obj/item/kitchen/utensil/fork,
/turf/simulated/floor/wood{
- icon_state = "wood-broken";
- tag = "icon-wood-broken"
+ icon_state = "wood-broken"
},
/area/maintenance/asmaint)
"cKN" = (
@@ -73211,8 +68988,7 @@
/area/toxins/xenobiology)
"cKS" = (
/turf/simulated/floor/wood{
- icon_state = "wood-broken3";
- tag = "icon-wood-broken3"
+ icon_state = "wood-broken3"
},
/area/maintenance/asmaint)
"cKT" = (
@@ -73301,7 +69077,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/newscaster{
@@ -73334,7 +69109,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/trunk{
@@ -73379,9 +69153,7 @@
"cLj" = (
/obj/machinery/camera{
c_tag = "Research Test Chamber";
- dir = 2;
- network = list("TestChamber","SS13","Research");
- pixel_x = 0
+ network = list("TestChamber","SS13","Research")
},
/turf/simulated/floor/engine,
/area/toxins/test_chamber)
@@ -73421,9 +69193,7 @@
id = "Skynet_heavy"
},
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = -32
},
/obj/effect/decal/warning_stripes/north,
@@ -73463,7 +69233,6 @@
/obj/machinery/door_control{
id = "mechpod";
name = "Mechanic's Inner Door Control";
- pixel_x = 0;
pixel_y = -24;
req_access_txt = "70"
},
@@ -73484,21 +69253,17 @@
/area/engine/mechanic_workshop)
"cLs" = (
/obj/machinery/light_switch{
- dir = 2;
name = "light switch ";
- pixel_x = 0;
pixel_y = -22
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/engine/mechanic_workshop)
"cLt" = (
/obj/machinery/alarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/obj/structure/window/reinforced{
@@ -73511,7 +69276,6 @@
/area/engine/mechanic_workshop)
"cLu" = (
/obj/item/radio/intercom{
- name = "station intercom (General)";
pixel_y = -28
},
/obj/machinery/computer/rdconsole/mechanics,
@@ -73527,7 +69291,6 @@
/area/assembly/assembly_line)
"cLw" = (
/obj/item/radio/intercom{
- name = "station intercom (General)";
pixel_y = -28
},
/obj/structure/closet/secure_closet/atmos_personal,
@@ -73668,7 +69431,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -73681,7 +69443,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/light/small,
@@ -73695,7 +69456,6 @@
/obj/machinery/door_control{
id = "xenobio2";
name = "Containment Blast Doors";
- pixel_x = 0;
pixel_y = 4;
req_access_txt = "55"
},
@@ -73706,7 +69466,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/effect/decal/warning_stripes/east,
@@ -73735,8 +69494,7 @@
"cLU" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 5
@@ -73775,15 +69533,12 @@
"cLY" = (
/obj/item/stack/sheet/wood,
/turf/simulated/floor/wood{
- icon_state = "wood-broken5";
- tag = "icon-wood-broken5"
+ icon_state = "wood-broken5"
},
/area/maintenance/asmaint)
"cLZ" = (
/obj/structure/chair/wood/wings{
- dir = 8;
- icon_state = "wooden_chair_wings";
- tag = "icon-wooden_chair_wings (WEST)"
+ dir = 8
},
/turf/simulated/floor/wood,
/area/maintenance/asmaint)
@@ -73809,8 +69564,7 @@
dir = 4
},
/turf/simulated/floor/wood{
- icon_state = "wood-broken7";
- tag = "icon-wood-broken7"
+ icon_state = "wood-broken7"
},
/area/maintenance/asmaint)
"cMc" = (
@@ -73947,7 +69701,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/effect/decal/cleanable/dirt,
@@ -73976,7 +69729,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/item/paper,
@@ -73998,7 +69750,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plating,
@@ -74113,7 +69864,6 @@
/obj/machinery/door_control{
id = "xenobio4";
name = "Containment Blast Doors";
- pixel_x = 0;
pixel_y = 4;
req_access_txt = "55"
},
@@ -74150,8 +69900,7 @@
dir = 9
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/turf/simulated/floor/plating,
/area/maintenance/asmaint)
@@ -74184,7 +69933,6 @@
"cMR" = (
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/turf/simulated/floor/plasteel{
@@ -74211,9 +69959,7 @@
},
/area/toxins/xenobiology)
"cMT" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/engine,
/area/toxins/test_chamber)
"cMU" = (
@@ -74230,7 +69976,6 @@
tag = ""
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "yellowcorner"
},
/area/hallway/primary/aft)
@@ -74327,8 +70072,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/effect/spawner/random_spawners/oil_maybe,
/turf/simulated/floor/plating,
@@ -74356,7 +70100,6 @@
/obj/machinery/door_control{
id = "xenobio6";
name = "Containment Blast Doors";
- pixel_x = 0;
pixel_y = 4;
req_access_txt = "55"
},
@@ -74388,18 +70131,6 @@
/obj/structure/reagent_dispensers/fueltank,
/turf/simulated/floor/plating,
/area/maintenance/asmaint)
-"cNo" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0;
- tag = ""
- },
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/toxins/xenobiology)
"cNp" = (
/obj/structure/cable{
d1 = 2;
@@ -74413,8 +70144,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plating,
/area/maintenance/asmaint)
@@ -74423,7 +70153,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_y = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -74442,8 +70171,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
@@ -74546,8 +70274,7 @@
/area/maintenance/aft)
"cNE" = (
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 10;
- level = 2
+ dir = 10
},
/obj/structure/lattice/catwalk,
/turf/space,
@@ -74578,14 +70305,12 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_y = 0;
tag = ""
},
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_y = 0;
tag = ""
},
/obj/structure/cable{
@@ -74621,7 +70346,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_y = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -74695,7 +70419,6 @@
},
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "yellowcorner"
},
/area/hallway/primary/aft)
@@ -74712,7 +70435,6 @@
tag = ""
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "yellowcorner"
},
/area/hallway/primary/aft)
@@ -74756,8 +70478,7 @@
/area/assembly/assembly_line)
"cOb" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -74766,7 +70487,6 @@
"cOc" = (
/obj/machinery/alarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/obj/structure/disposalpipe/segment{
@@ -74774,7 +70494,6 @@
},
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "yellowcorner"
},
/area/hallway/primary/aft)
@@ -74839,8 +70558,7 @@
"cOk" = (
/obj/machinery/camera{
c_tag = "Atmospherics East";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/obj/machinery/atmospherics/binary/valve/digital{
color = "";
@@ -74852,8 +70570,7 @@
/area/atmos)
"cOl" = (
/obj/structure/extinguisher_cabinet{
- pixel_x = 27;
- pixel_y = 0
+ pixel_x = 27
},
/obj/machinery/vending/cigarette,
/turf/simulated/floor/plasteel,
@@ -74901,7 +70618,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -74921,7 +70637,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/door/airlock/maintenance{
@@ -74948,8 +70663,7 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/engineering/glass{
name = "Engineering";
- req_access_txt = "32";
- req_one_access_txt = "0"
+ req_access_txt = "32"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -74976,7 +70690,6 @@
},
/obj/item/radio/intercom{
dir = 1;
- name = "station intercom (General)";
pixel_y = -28
},
/turf/simulated/floor/engine,
@@ -75012,12 +70725,10 @@
/area/atmos/distribution)
"cOB" = (
/obj/effect/decal/warning_stripes/yellow/partial{
- dir = 8;
- icon_state = "3"
+ dir = 8
},
/obj/effect/decal/warning_stripes/arrow{
- dir = 8;
- icon_state = "4"
+ dir = 8
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
@@ -75031,8 +70742,7 @@
/area/maintenance/asmaint2)
"cOD" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/turf/simulated/floor/engine,
/area/toxins/test_chamber)
@@ -75042,12 +70752,10 @@
pixel_y = -24
},
/obj/effect/decal/warning_stripes/yellow/partial{
- dir = 4;
- icon_state = "3"
+ dir = 4
},
/obj/effect/decal/warning_stripes/arrow{
- dir = 4;
- icon_state = "4"
+ dir = 4
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
@@ -75080,8 +70788,7 @@
"cOI" = (
/obj/machinery/atmospherics/binary/pump{
dir = 1;
- name = "Mix to Distro";
- on = 0
+ name = "Mix to Distro"
},
/turf/simulated/floor/plasteel,
/area/atmos/distribution)
@@ -75092,9 +70799,7 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel,
/area/atmos/distribution)
"cOK" = (
@@ -75102,7 +70807,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/navbeacon{
@@ -75168,8 +70872,7 @@
/obj/machinery/light,
/obj/machinery/camera{
c_tag = "Assembly Line East";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
@@ -75213,19 +70916,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/cyan,
/turf/simulated/wall/r_wall,
/area/atmos/distribution)
-"cOX" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0;
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/maintenance/aft)
"cOY" = (
/obj/structure/cable{
d1 = 4;
@@ -75235,18 +70925,15 @@
},
/obj/machinery/alarm{
dir = 4;
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/obj/structure/sink{
dir = 8;
- icon_state = "sink";
pixel_x = -12;
pixel_y = 2
},
/obj/item/radio/intercom{
dir = 1;
- name = "station intercom (General)";
pixel_y = 25
},
/turf/simulated/floor/plasteel,
@@ -75303,8 +70990,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/effect/spawner/random_spawners/grille_often,
/turf/simulated/floor/plating,
@@ -75321,7 +71007,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -75411,8 +71096,7 @@
"cPo" = (
/obj/machinery/camera{
c_tag = "Engineering Equipment West";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/obj/structure/cable{
d2 = 4;
@@ -75432,7 +71116,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
@@ -75450,8 +71133,7 @@
/obj/effect/decal/warning_stripes/red/hollow,
/obj/machinery/camera{
c_tag = "Atmospherics North-West";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -75479,9 +71161,7 @@
},
/obj/item/radio/intercom{
dir = 1;
- name = "station intercom (General)";
- pixel_x = 28;
- pixel_y = 0
+ pixel_x = 28
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -75495,7 +71175,6 @@
/obj/structure/table,
/obj/item/radio/intercom{
dir = 1;
- name = "station intercom (General)";
pixel_y = -28
},
/obj/effect/decal/cleanable/dirt,
@@ -75517,7 +71196,6 @@
/obj/item/pen,
/obj/structure/cable,
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
@@ -75537,7 +71215,6 @@
/obj/structure/table/reinforced,
/obj/machinery/alarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/obj/item/clothing/mask/gas,
@@ -75560,9 +71237,7 @@
/turf/space,
/area/solar/port)
"cPD" = (
-/obj/machinery/atmospherics/pipe/manifold/visible/yellow{
- level = 2
- },
+/obj/machinery/atmospherics/pipe/manifold/visible/yellow,
/turf/simulated/floor/plasteel,
/area/atmos/distribution)
"cPE" = (
@@ -75637,8 +71312,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -75660,8 +71334,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
@@ -75682,12 +71355,10 @@
"cPP" = (
/obj/machinery/camera{
c_tag = "Engineering Equipment East";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/structure/engineeringcart,
/obj/item/radio/intercom{
@@ -75704,13 +71375,11 @@
"cPS" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/atmos)
@@ -75729,15 +71398,13 @@
/area/atmos)
"cPV" = (
/obj/machinery/atmospherics/pipe/manifold/visible/green{
- dir = 1;
- tag = "icon-manifold-g (NORTH)"
+ dir = 1
},
/turf/simulated/floor/plasteel,
/area/atmos/distribution)
"cPW" = (
/obj/machinery/atmospherics/pipe/manifold/visible/green{
- dir = 1;
- tag = "icon-manifold-g (NORTH)"
+ dir = 1
},
/obj/structure/cable{
d1 = 1;
@@ -75788,8 +71455,7 @@
/area/solar/port)
"cQe" = (
/obj/machinery/atmospherics/pipe/simple/visible/green{
- dir = 4;
- level = 2
+ dir = 4
},
/obj/effect/decal/warning_stripes/southeast,
/turf/simulated/floor/plasteel,
@@ -75799,7 +71465,6 @@
dir = 1
},
/obj/machinery/meter{
- frequency = 1443;
id = "wloop_atm_meter";
name = "Waste Loop"
},
@@ -75813,7 +71478,6 @@
/area/atmos/distribution)
"cQg" = (
/obj/machinery/firealarm{
- dir = 2;
pixel_y = 24
},
/obj/machinery/atmospherics/pipe/manifold/visible/cyan{
@@ -75823,7 +71487,6 @@
/area/atmos/distribution)
"cQh" = (
/obj/machinery/meter{
- frequency = 1443;
id = "dloop_atm_meter";
name = "Distribution Loop"
},
@@ -75833,11 +71496,9 @@
"cQi" = (
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
dir = 10;
- initialize_directions = 10;
- level = 2
+ initialize_directions = 10
},
/obj/machinery/alarm{
- frequency = 1439;
pixel_y = 23
},
/turf/simulated/floor/plasteel,
@@ -75870,8 +71531,7 @@
opacity = 0
},
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4;
- level = 2
+ dir = 4
},
/turf/simulated/floor/plating,
/area/atmos/distribution)
@@ -75880,16 +71540,14 @@
/area/medical/virology)
"cQo" = (
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 6;
- level = 2
+ dir = 6
},
/turf/simulated/floor/plasteel,
/area/atmos/distribution)
"cQp" = (
/obj/structure/lattice,
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4;
- level = 2
+ dir = 4
},
/turf/space,
/area/space/nearstation)
@@ -75995,8 +71653,7 @@
/area/toxins/xenobiology)
"cQB" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/machinery/smartfridge/secure/extract,
/turf/simulated/floor/plasteel{
@@ -76018,9 +71675,7 @@
},
/obj/machinery/vending/wallmed{
name = "Emergency NanoMed";
- pixel_x = 0;
- pixel_y = -32;
- req_access_txt = "0"
+ pixel_y = -32
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -76032,15 +71687,12 @@
department = "Chief Engineer's Desk";
departmentType = 7;
name = "Chief Engineer Requests Console";
- pixel_x = 0;
pixel_y = 32
},
/obj/machinery/light{
dir = 1
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -76074,8 +71726,7 @@
/area/engine/engineering)
"cQH" = (
/obj/machinery/power/terminal{
- dir = 1;
- icon_state = "term"
+ dir = 1
},
/obj/effect/decal/warning_stripes/south,
/obj/structure/cable/yellow{
@@ -76111,7 +71762,6 @@
desc = "A remote control-switch for secure storage.";
id = "Secure Storage";
name = "Engineering Secure Storage";
- pixel_x = 0;
pixel_y = 24;
req_access_txt = "11"
},
@@ -76184,8 +71834,7 @@
department = "Engineering";
departmentType = 3;
name = "Engineering Requests Console";
- pixel_x = 30;
- pixel_y = 0
+ pixel_x = 30
},
/obj/item/stack/sheet/glass{
amount = 50
@@ -76199,9 +71848,7 @@
/turf/simulated/floor/plasteel,
/area/engine/equipmentstorage)
"cQP" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel,
/area/engine/equipmentstorage)
"cQR" = (
@@ -76219,7 +71866,6 @@
pixel_y = 19
},
/obj/item/reagent_containers/syringe/antiviral{
- pixel_x = 0;
pixel_y = 13
},
/obj/item/reagent_containers/syringe/antiviral{
@@ -76235,7 +71881,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
@@ -76243,8 +71888,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/atmos)
@@ -76260,8 +71904,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 5
@@ -76289,19 +71932,16 @@
/area/engine/engineering)
"cQW" = (
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 6;
- level = 2
+ dir = 6
},
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -76313,7 +71953,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/visible/purple{
@@ -76334,8 +71973,7 @@
"cRa" = (
/obj/machinery/atmospherics/pipe/manifold/visible/cyan{
dir = 8;
- initialize_directions = 11;
- level = 2
+ initialize_directions = 11
},
/obj/machinery/meter,
/turf/simulated/floor/plasteel,
@@ -76359,15 +71997,13 @@
},
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
dir = 10;
- initialize_directions = 10;
- level = 2
+ initialize_directions = 10
},
/turf/simulated/floor/plating,
/area/atmos/distribution)
"cRd" = (
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 4;
- level = 2
+ dir = 4
},
/obj/machinery/atmospherics/binary/pump{
dir = 1;
@@ -76400,8 +72036,7 @@
"cRf" = (
/obj/effect/decal/warning_stripes/south,
/obj/machinery/atmospherics/pipe/simple/visible/green{
- dir = 4;
- level = 2
+ dir = 4
},
/obj/machinery/meter,
/turf/simulated/floor/engine,
@@ -76426,8 +72061,7 @@
/area/engine/engineering)
"cRh" = (
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4;
- level = 2
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -76440,14 +72074,12 @@
"cRj" = (
/obj/machinery/atmospherics/binary/pump{
dir = 1;
- name = "Pure to Mix";
- on = 0
+ name = "Pure to Mix"
},
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -76457,14 +72089,12 @@
/area/atmos/distribution)
"cRk" = (
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 9;
- tag = "icon-intact-y (NORTHWEST)"
+ dir = 9
},
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -76536,14 +72166,12 @@
"cRr" = (
/obj/machinery/door/airlock/engineering/glass{
name = "Supermatter Engine Room";
- req_access_txt = "10";
- req_one_access_txt = "0"
+ req_access_txt = "10"
},
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plating,
/area/engine/engineering)
@@ -76578,8 +72206,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/obj/machinery/light,
/turf/simulated/floor/plasteel,
@@ -76641,8 +72268,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 5
@@ -76654,7 +72280,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_y = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -76693,7 +72318,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_y = 0;
tag = ""
},
/obj/structure/cable{
@@ -76707,8 +72331,7 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10;
- initialize_directions = 10;
- level = 1
+ initialize_directions = 10
},
/turf/simulated/floor/plating,
/area/maintenance/aft)
@@ -76734,8 +72357,7 @@
/obj/structure/table,
/obj/machinery/camera{
c_tag = "Assembly Line West";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -76746,8 +72368,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -76759,8 +72380,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -76775,7 +72395,6 @@
/obj/item/multitool,
/obj/item/radio/intercom{
dir = 0;
- name = "station intercom (General)";
pixel_x = 28
},
/turf/simulated/floor/plasteel{
@@ -76791,8 +72410,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
@@ -76864,7 +72482,6 @@
},
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/item/stack/rods{
@@ -76875,8 +72492,7 @@
"cRV" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/engine/equipmentstorage)
@@ -76902,14 +72518,12 @@
/obj/machinery/camera{
c_tag = "Xenobiology Module South";
dir = 4;
- network = list("Research","SS13");
- pixel_x = 0
+ network = list("Research","SS13")
},
/obj/structure/table/reinforced,
/obj/machinery/door_control{
id = "xenobio1";
name = "Containment Blast Doors";
- pixel_x = 0;
pixel_y = 4;
req_access_txt = "55"
},
@@ -76920,7 +72534,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/effect/decal/warning_stripes/east,
@@ -76948,13 +72561,10 @@
/area/toxins/xenobiology)
"cSa" = (
/obj/machinery/camera{
- c_tag = "Engineering Equipment North";
- network = list("SS13")
+ c_tag = "Engineering Equipment North"
},
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/obj/machinery/vending/engivend,
@@ -76984,8 +72594,7 @@
dir = 5
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -77025,8 +72634,7 @@
/area/engine/engineering)
"cSm" = (
/obj/machinery/atmospherics/pipe/manifold/visible/yellow{
- dir = 1;
- level = 2
+ dir = 1
},
/turf/simulated/floor/plasteel,
/area/atmos/distribution)
@@ -77040,20 +72648,16 @@
/area/atmos)
"cSo" = (
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4;
- level = 2
+ dir = 4
},
/obj/machinery/atmospherics/binary/pump{
dir = 0;
- name = "Air to Mix";
- on = 0
+ name = "Air to Mix"
},
/turf/simulated/floor/plasteel,
/area/atmos/distribution)
"cSp" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel,
/area/engine/engineering)
"cSq" = (
@@ -77066,18 +72670,14 @@
opacity = 0
},
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4;
- level = 2
- },
-/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- level = 2
+ dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/visible/cyan,
/turf/simulated/floor/plating,
/area/atmos/distribution)
"cSr" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/machinery/atmospherics/pipe/manifold/visible/yellow,
/turf/simulated/floor/plasteel{
@@ -77087,8 +72687,7 @@
/area/atmos/distribution)
"cSs" = (
/obj/machinery/camera{
- c_tag = "Atmospherics Waste Tank";
- network = list("SS13")
+ c_tag = "Atmospherics Waste Tank"
},
/turf/simulated/floor/engine{
name = "vacuum floor";
@@ -77128,8 +72727,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/engine,
@@ -77145,8 +72743,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/engine,
/area/engine/engineering)
@@ -77154,8 +72751,7 @@
/obj/machinery/door/airlock/engineering/glass{
heat_proof = 1;
name = "Supermatter Chamber";
- req_access_txt = "10";
- req_one_access_txt = "0"
+ req_access_txt = "10"
},
/turf/simulated/floor/engine,
/area/engine/supermatter)
@@ -77184,8 +72780,7 @@
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/visible/green{
- dir = 4;
- tag = "icon-manifold-g (NORTH)"
+ dir = 4
},
/turf/simulated/floor/engine,
/area/engine/engineering)
@@ -77252,8 +72847,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/obj/structure/cable/yellow{
d1 = 1;
@@ -77280,7 +72874,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel,
@@ -77293,7 +72886,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/sign/poster/official/random{
@@ -77323,8 +72915,7 @@
icon_state = "space";
layer = 4;
name = "EXTERNAL AIRLOCK";
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/machinery/atmospherics/unary/portables_connector,
/obj/machinery/portable_atmospherics/canister/air,
@@ -77344,9 +72935,7 @@
d2 = 2;
icon_state = "0-2"
},
-/obj/machinery/power/smes{
- charge = 0
- },
+/obj/machinery/power/smes,
/turf/simulated/floor/plating,
/area/maintenance/portsolar)
"cSU" = (
@@ -77354,7 +72943,6 @@
/area/engine/engineering)
"cSV" = (
/obj/machinery/ai_status_display{
- pixel_x = 0;
pixel_y = -32
},
/turf/simulated/floor/carpet,
@@ -77382,7 +72970,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -77395,7 +72982,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/computer/atmos_alert,
@@ -77432,7 +73018,6 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/turf/simulated/floor/plating,
@@ -77442,7 +73027,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plating,
@@ -77463,7 +73047,6 @@
/area/engine/equipmentstorage)
"cTf" = (
/obj/machinery/newscaster{
- pixel_x = 0;
pixel_y = 30
},
/turf/simulated/floor/plasteel{
@@ -77504,7 +73087,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -77517,7 +73099,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/visible/purple{
@@ -77528,7 +73109,6 @@
"cTl" = (
/obj/item/radio/intercom{
dir = 8;
- name = "station intercom (General)";
pixel_x = -28
},
/obj/machinery/portable_atmospherics/canister/air,
@@ -77546,12 +73126,9 @@
},
/area/engine/engineering)
"cTn" = (
-/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- level = 2
- },
+/obj/machinery/atmospherics/pipe/simple/visible/yellow,
/obj/machinery/atmospherics/pipe/simple/visible/green{
- dir = 4;
- level = 2
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/atmos/distribution)
@@ -77571,8 +73148,7 @@
/area/atmos)
"cTp" = (
/obj/machinery/atmospherics/pipe/manifold/visible/green{
- dir = 4;
- tag = "icon-manifold-g (NORTH)"
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/atmos/distribution)
@@ -77593,9 +73169,7 @@
name = "Atmos Blast Door";
opacity = 0
},
-/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- level = 2
- },
+/obj/machinery/atmospherics/pipe/simple/visible/cyan,
/turf/simulated/floor/plating,
/area/atmos/distribution)
"cTs" = (
@@ -77689,8 +73263,7 @@
"cTE" = (
/obj/effect/decal/warning_stripes/east,
/obj/machinery/atmospherics/pipe/manifold/visible/yellow{
- dir = 4;
- level = 2
+ dir = 4
},
/obj/machinery/light{
dir = 4
@@ -77713,8 +73286,7 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/engineering/glass{
name = "Engineering";
- req_access_txt = "32";
- req_one_access_txt = "0"
+ req_access_txt = "32"
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -77788,8 +73360,7 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10;
- initialize_directions = 10;
- level = 1
+ initialize_directions = 10
},
/obj/structure/cable{
d1 = 1;
@@ -77806,8 +73377,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/engine/equipmentstorage)
@@ -77816,8 +73386,8 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/item/airlock_painter,
-/obj/item/airlock_painter{
+/obj/item/painter,
+/obj/item/painter{
pixel_x = -4;
pixel_y = 4
},
@@ -77828,7 +73398,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/structure/cable{
@@ -77869,7 +73438,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/structure/table,
@@ -77912,13 +73480,11 @@
icon_state = "0-4"
},
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 10;
- level = 2
+ dir = 10
},
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/obj/effect/decal/cleanable/dirt,
@@ -77937,9 +73503,7 @@
id_tag = "robotics_solar_pump"
},
/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
- frequency = 1379;
id_tag = "robotics_solar_airlock";
- pixel_x = 0;
pixel_y = -25;
req_access_txt = "13";
tag_airpump = "robotics_solar_pump";
@@ -77948,7 +73512,6 @@
tag_interior_door = "robotics_solar_inner"
},
/obj/machinery/airlock_sensor{
- frequency = 1379;
id_tag = "robotics_solar_sensor";
pixel_x = 12;
pixel_y = -25
@@ -77987,8 +73550,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 9;
- icon_state = "intact"
+ dir = 9
},
/obj/machinery/access_button{
command = "cycle_interior";
@@ -78068,7 +73630,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plating,
@@ -78099,15 +73660,12 @@
},
/obj/item/book/manual/engineering_singularity_safety,
/obj/machinery/camera{
- c_tag = "Engineering North-West";
- network = list("SS13")
+ c_tag = "Engineering North-West"
},
/turf/simulated/floor/plasteel,
/area/engine/engineering)
"cUk" = (
/obj/item/radio/intercom{
- broadcasting = 0;
- name = "station intercom (General)";
pixel_y = 25
},
/obj/structure/table,
@@ -78123,8 +73681,7 @@
/obj/effect/decal/warning_stripes/west,
/obj/machinery/atmospherics/pipe/manifold/visible/cyan{
dir = 8;
- initialize_directions = 11;
- level = 2
+ initialize_directions = 11
},
/obj/machinery/meter,
/obj/machinery/light{
@@ -78165,7 +73722,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -78185,7 +73741,6 @@
/area/engine/equipmentstorage)
"cUu" = (
/obj/machinery/keycard_auth{
- pixel_x = 0;
pixel_y = 24
},
/obj/structure/table/reinforced,
@@ -78240,8 +73795,7 @@
/area/engine/chiefs_office)
"cUz" = (
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 4;
- level = 2
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -78269,8 +73823,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plating,
@@ -78282,8 +73835,7 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10;
- initialize_directions = 10;
- level = 1
+ initialize_directions = 10
},
/turf/simulated/floor/plating,
/area/maintenance/asmaint)
@@ -78298,13 +73850,11 @@
/area/engine/engineering)
"cUN" = (
/obj/machinery/atmospherics/pipe/simple/visible/green{
- dir = 4;
- level = 2
+ dir = 4
},
/obj/machinery/atmospherics/binary/pump{
dir = 1;
- name = "Unfiltered to Mix";
- on = 0
+ name = "Unfiltered to Mix"
},
/turf/simulated/floor/plasteel,
/area/atmos/distribution)
@@ -78322,7 +73872,6 @@
/obj/machinery/door_control{
id = "xenobio5";
name = "Containment Blast Doors";
- pixel_x = 0;
pixel_y = 4;
req_access_txt = "55"
},
@@ -78385,8 +73934,7 @@
dir = 5
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/structure/cable{
d1 = 1;
@@ -78413,7 +73961,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -78509,7 +74056,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel,
@@ -78517,8 +74063,7 @@
"cVl" = (
/obj/machinery/power/solar_control{
id = "portsolar";
- name = "Aft Port Solar Control";
- track = 0
+ name = "Aft Port Solar Control"
},
/obj/structure/cable,
/turf/simulated/floor/plating,
@@ -78526,12 +74071,10 @@
"cVm" = (
/obj/machinery/camera{
c_tag = "Aft Port Solar Control";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/obj/structure/cable,
/obj/machinery/power/apc{
- dir = 2;
name = "south bump Engineering";
pixel_y = -24;
shock_proof = 1
@@ -78542,8 +74085,7 @@
/obj/structure/closet/wardrobe/black,
/obj/machinery/camera{
c_tag = "Aft Port Solar Access";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/obj/effect/spawner/lootdrop/maintenance{
lootcount = 2;
@@ -78553,7 +74095,6 @@
desc = "A warning sign which reads 'HIGH VOLTAGE'";
icon_state = "shock";
name = "HIGH VOLTAGE";
- pixel_x = 0;
pixel_y = -32
},
/turf/simulated/floor/plating,
@@ -78563,7 +74104,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -78581,8 +74121,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -78593,8 +74132,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/obj/structure/cable{
d1 = 2;
@@ -78647,9 +74185,7 @@
"cVv" = (
/obj/structure/sink{
dir = 8;
- icon_state = "sink";
- pixel_x = -12;
- pixel_y = 0
+ pixel_x = -12
},
/obj/structure/mirror{
pixel_x = -28
@@ -78661,8 +74197,7 @@
"cVw" = (
/obj/effect/decal/warning_stripes/south,
/obj/machinery/atmospherics/pipe/simple/visible/green{
- dir = 4;
- level = 2
+ dir = 4
},
/obj/machinery/light,
/turf/simulated/floor/engine,
@@ -78681,7 +74216,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel,
@@ -78689,8 +74223,7 @@
"cVy" = (
/obj/effect/decal/warning_stripes/south,
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 4;
- level = 2
+ dir = 4
},
/obj/machinery/meter,
/obj/machinery/light,
@@ -78703,9 +74236,7 @@
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'RADIOACTIVE AREA'";
icon_state = "radiation";
- name = "RADIOACTIVE AREA";
- pixel_x = 0;
- pixel_y = 0
+ name = "RADIOACTIVE AREA"
},
/turf/simulated/wall/r_wall,
/area/engine/supermatter)
@@ -78715,8 +74246,7 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10;
- initialize_directions = 10;
- level = 1
+ initialize_directions = 10
},
/turf/simulated/floor/plasteel,
/area/engine/engineering)
@@ -78734,8 +74264,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/disposal,
/obj/structure/sign/deathsposal{
@@ -78768,8 +74297,7 @@
"cVK" = (
/obj/effect/spawner/window/reinforced,
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 4;
- level = 2
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
/turf/simulated/floor/plating,
@@ -78778,16 +74306,14 @@
/obj/effect/spawner/window/reinforced,
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
dir = 6;
- initialize_directions = 6;
- level = 2
+ initialize_directions = 6
},
/obj/structure/sign/nosmoking_2,
/turf/simulated/floor/plating,
/area/atmos/distribution)
"cVM" = (
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 4;
- level = 2
+ dir = 4
},
/obj/effect/spawner/window/reinforced,
/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
@@ -78805,15 +74331,12 @@
"cVO" = (
/obj/effect/spawner/window/reinforced,
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 4;
- level = 2
+ dir = 4
},
/turf/simulated/floor/plating,
/area/atmos/distribution)
"cVP" = (
-/obj/machinery/atmospherics/pipe/simple/visible/green{
- level = 2
- },
+/obj/machinery/atmospherics/pipe/simple/visible/green,
/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
dir = 4;
level = 2
@@ -78823,8 +74346,7 @@
/area/atmos/distribution)
"cVQ" = (
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 4;
- level = 2
+ dir = 4
},
/obj/effect/spawner/window/reinforced,
/turf/simulated/floor/plating,
@@ -78840,8 +74362,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/visible/cyan{
dir = 4;
- initialize_directions = 11;
- level = 2
+ initialize_directions = 11
},
/turf/simulated/floor/plating,
/area/atmos/distribution)
@@ -78855,7 +74376,6 @@
cell_type = 25000;
dir = 1;
name = "Engineering Engine Super APC";
- pixel_x = 0;
pixel_y = 24;
shock_proof = 1
},
@@ -78903,8 +74423,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel,
/area/engine/chiefs_office)
@@ -79021,7 +74540,6 @@
/area/maintenance/asmaint)
"cWr" = (
/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
pixel_y = 27
},
/turf/simulated/floor/plasteel{
@@ -79045,8 +74563,7 @@
/obj/item/toy/plushie/octopus,
/obj/machinery/camera{
c_tag = "Departure Lounge East";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
@@ -79083,16 +74600,13 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel,
/area/engine/engineering)
"cWz" = (
/obj/item/radio/intercom{
- name = "station intercom (General)";
- pixel_x = -28;
- pixel_y = 0
+ pixel_x = -28
},
/obj/machinery/computer/monitor{
name = "Grid Power Monitoring Computer"
@@ -79108,7 +74622,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plasteel,
@@ -79119,15 +74632,12 @@
/area/engine/equipmentstorage)
"cWC" = (
/obj/structure/sign/poster/official/random{
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/plasteel,
/area/engine/engineering)
"cWD" = (
-/obj/structure/closet/secure_closet/engineering_chief{
- req_access_txt = "0"
- },
+/obj/structure/closet/secure_closet/engineering_chief,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -79139,12 +74649,9 @@
/area/hallway/secondary/exit)
"cWG" = (
/obj/machinery/door/window/southleft{
- base_state = "left";
dir = 8;
- icon_state = "left";
name = "Bar Delivery";
- req_access_txt = "25";
- tag = "icon-left (WEST)"
+ req_access_txt = "25"
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
@@ -79168,7 +74675,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel,
@@ -79202,7 +74708,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/cable{
@@ -79220,21 +74725,17 @@
/obj/machinery/light{
dir = 1
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel,
/area/engine/engineering)
"cWN" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/engine/engineering)
@@ -79254,9 +74755,7 @@
/turf/simulated/floor/beach/sand,
/area/hallway/secondary/exit)
"cWR" = (
-/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- level = 2
- },
+/obj/machinery/atmospherics/pipe/simple/visible/yellow,
/obj/machinery/meter,
/turf/simulated/floor/plasteel,
/area/atmos)
@@ -79274,7 +74773,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/binary/volume_pump/on{
@@ -79304,11 +74802,9 @@
"cWV" = (
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
dir = 6;
- initialize_directions = 6;
- level = 2
+ initialize_directions = 6
},
/obj/machinery/firealarm{
- dir = 2;
pixel_y = 24
},
/turf/simulated/floor/plasteel,
@@ -79316,28 +74812,22 @@
"cWW" = (
/obj/machinery/atmospherics/pipe/manifold/visible/cyan{
dir = 4;
- initialize_directions = 11;
- level = 2
+ initialize_directions = 11
},
/obj/machinery/meter,
/turf/simulated/floor/plasteel,
/area/atmos)
"cWX" = (
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
-/obj/machinery/atmospherics/pipe/manifold/visible/yellow{
- level = 2
- },
+/obj/machinery/atmospherics/pipe/manifold/visible/yellow,
/turf/simulated/floor/plasteel,
/area/atmos)
"cWY" = (
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 6;
- level = 2
+ dir = 6
},
/obj/machinery/meter,
/turf/simulated/floor/plasteel,
@@ -79346,20 +74836,16 @@
/turf/simulated/floor/engine/n20,
/area/atmos)
"cXa" = (
-/obj/machinery/atmospherics/pipe/simple/visible/green{
- level = 2
- },
+/obj/machinery/atmospherics/pipe/simple/visible/green,
/obj/machinery/atmospherics/binary/pump{
dir = 8;
- name = "N2O to Pure";
- on = 0
+ name = "N2O to Pure"
},
/turf/simulated/floor/plasteel,
/area/atmos)
"cXb" = (
/obj/machinery/atmospherics/pipe/manifold/visible/yellow{
- dir = 1;
- level = 2
+ dir = 1
},
/turf/simulated/floor/plasteel,
/area/atmos)
@@ -79373,12 +74859,9 @@
opacity = 0
},
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4;
- level = 2
- },
-/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- level = 2
+ dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/visible/cyan,
/turf/simulated/floor/plating,
/area/atmos)
"cXd" = (
@@ -79410,7 +74893,6 @@
"cXf" = (
/obj/machinery/light,
/obj/machinery/newscaster{
- pixel_x = 0;
pixel_y = -30
},
/turf/simulated/floor/plasteel,
@@ -79421,15 +74903,13 @@
name = "Central Access"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "purple"
},
/area/hallway/secondary/exit)
"cXh" = (
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "ramptop";
- tag = "icon-stage_stairs"
+ icon_state = "ramptop"
},
/area/hallway/primary/starboard/east)
"cXj" = (
@@ -79448,7 +74928,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/effect/decal/warning_stripes/southeastcorner,
@@ -79456,8 +74935,7 @@
/area/hallway/secondary/exit)
"cXm" = (
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4;
- level = 2
+ dir = 4
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
@@ -79465,8 +74943,7 @@
"cXn" = (
/obj/machinery/camera{
c_tag = "Departure Lounge West";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -79479,7 +74956,6 @@
},
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/turf/simulated/floor/plasteel{
@@ -79518,9 +74994,7 @@
/area/maintenance/asmaint)
"cXs" = (
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/plasteel{
@@ -79558,7 +75032,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_y = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -79595,7 +75068,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -79617,7 +75089,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
@@ -79652,13 +75123,10 @@
"cXG" = (
/obj/machinery/camera{
c_tag = "Engineering Chief Engineer's Office";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/obj/item/radio/intercom{
- name = "station intercom (General)";
- pixel_x = -28;
- pixel_y = 0
+ pixel_x = -28
},
/obj/machinery/disposal,
/obj/structure/disposalpipe/trunk,
@@ -79702,8 +75170,7 @@
"cXM" = (
/obj/machinery/door/airlock/engineering/glass{
name = "SMES Room";
- req_access_txt = "32";
- req_one_access_txt = "0"
+ req_access_txt = "32"
},
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
@@ -79716,8 +75183,7 @@
/area/engine/engineering)
"cXO" = (
/obj/machinery/shower{
- dir = 4;
- icon_state = "shower"
+ dir = 4
},
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
@@ -79739,8 +75205,7 @@
/area/atmos)
"cXR" = (
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 4;
- level = 2
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/visible/purple,
/turf/simulated/floor/plasteel,
@@ -79748,15 +75213,13 @@
"cXS" = (
/obj/machinery/camera{
c_tag = "Engineering West";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/obj/machinery/door_control{
desc = "A remote control-switch for secure storage.";
id = "Secure Storage";
name = "Engineering Secure Storage";
pixel_x = -24;
- pixel_y = 0;
req_access_txt = "56"
},
/obj/structure/cable{
@@ -79768,15 +75231,11 @@
/turf/simulated/floor/plasteel,
/area/engine/engineering)
"cXT" = (
-/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- level = 2
- },
+/obj/machinery/atmospherics/pipe/simple/visible/yellow,
/turf/simulated/floor/plasteel,
/area/atmos)
"cXU" = (
-/obj/machinery/atmospherics/pipe/simple/visible/green{
- level = 2
- },
+/obj/machinery/atmospherics/pipe/simple/visible/green,
/turf/simulated/floor/plasteel,
/area/atmos)
"cXV" = (
@@ -79787,31 +75246,27 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 4;
- level = 2
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/atmos)
"cXW" = (
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 9;
- level = 2
+ dir = 9
},
/turf/simulated/floor/plasteel,
/area/atmos)
"cXX" = (
/obj/machinery/atmospherics/binary/pump{
dir = 0;
- name = "Mix to Port";
- on = 0
+ name = "Mix to Port"
},
/turf/simulated/floor/plasteel,
/area/atmos)
"cXY" = (
/obj/machinery/atmospherics/binary/pump{
dir = 0;
- name = "Air to Port";
- on = 0
+ name = "Air to Port"
},
/turf/simulated/floor/plasteel,
/area/atmos)
@@ -79824,8 +75279,7 @@
"cYa" = (
/obj/machinery/atmospherics/binary/pump{
dir = 0;
- name = "Pure to Port";
- on = 0
+ name = "Pure to Port"
},
/turf/simulated/floor/plasteel,
/area/atmos)
@@ -79838,9 +75292,7 @@
name = "Atmos Blast Door";
opacity = 0
},
-/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- level = 2
- },
+/obj/machinery/atmospherics/pipe/simple/visible/cyan,
/turf/simulated/floor/plating,
/area/atmos)
"cYc" = (
@@ -79909,8 +75361,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel,
/area/hallway/secondary/exit)
@@ -79973,8 +75424,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -80043,8 +75493,7 @@
pixel_y = -8
},
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4;
- level = 2
+ dir = 4
},
/obj/structure/lattice,
/turf/space,
@@ -80064,15 +75513,13 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plating,
/area/storage/secure)
"cYD" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 9
@@ -80084,7 +75531,6 @@
/obj/item/twohanded/required/kirbyplants,
/obj/item/radio/intercom{
dir = 0;
- name = "station intercom (General)";
pixel_x = -28
},
/turf/simulated/floor/plasteel{
@@ -80137,7 +75583,6 @@
/obj/effect/decal/warning_stripes/white/hollow,
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/obj/machinery/light,
@@ -80160,8 +75605,7 @@
"cYP" = (
/obj/machinery/camera{
c_tag = "Central Hallway West";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/obj/structure/cable{
d1 = 1;
@@ -80193,8 +75637,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -80230,8 +75673,7 @@
"cYY" = (
/obj/machinery/door/airlock/engineering/glass{
name = "Supermatter Engine Room";
- req_access_txt = "10";
- req_one_access_txt = "0"
+ req_access_txt = "10"
},
/turf/simulated/floor/plating,
/area/engine/engineering)
@@ -80244,7 +75686,6 @@
/obj/machinery/door_control{
id = "stationawaygate";
name = "Gateway Shutters Access Control";
- pixel_x = 0;
pixel_y = -24;
req_access_txt = "62"
},
@@ -80262,14 +75703,12 @@
"cZc" = (
/obj/machinery/atmospherics/pipe/manifold/visible{
dir = 4;
- initialize_directions = 11;
- level = 2
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/atmos)
"cZd" = (
/obj/machinery/atmospherics/trinary/filter{
- density = 0;
dir = 1;
filter_type = 4;
name = "Gas filter (N2O tank)";
@@ -80287,18 +75726,14 @@
opacity = 0
},
/obj/machinery/atmospherics/pipe/simple/visible/green{
- dir = 4;
- level = 2
- },
-/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- level = 2
+ dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/visible/cyan,
/turf/simulated/floor/plating,
/area/atmos)
"cZg" = (
/obj/machinery/atmospherics/pipe/simple/visible/green{
- dir = 4;
- level = 2
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 6;
@@ -80308,8 +75743,7 @@
"cZh" = (
/obj/structure/lattice,
/obj/machinery/atmospherics/pipe/simple/visible/green{
- dir = 4;
- level = 2
+ dir = 4
},
/turf/space,
/area/space/nearstation)
@@ -80326,8 +75760,7 @@
/area/atmos)
"cZj" = (
/obj/structure/extinguisher_cabinet{
- pixel_x = 27;
- pixel_y = 0
+ pixel_x = 27
},
/obj/structure/cable{
d1 = 1;
@@ -80556,7 +75989,6 @@
/obj/machinery/vending/snack,
/obj/machinery/ai_status_display{
pixel_x = 32;
- pixel_y = 0;
step_size = 0
},
/turf/simulated/floor/plasteel,
@@ -80578,8 +76010,7 @@
/area/engine/engineering)
"cZP" = (
/obj/machinery/camera{
- c_tag = "Engineering East";
- network = list("SS13")
+ c_tag = "Engineering East"
},
/obj/machinery/computer/security/telescreen{
desc = "A telescreen that connects to the engine's camera network.";
@@ -80587,7 +76018,6 @@
layer = 4;
name = "Engine Monitor";
network = list("engine");
- pixel_x = 0;
pixel_y = 30
},
/turf/simulated/floor/plasteel,
@@ -80602,8 +76032,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/engine,
/area/engine/engineering)
@@ -80625,10 +76054,7 @@
/turf/simulated/wall/r_wall,
/area/atmos)
"cZT" = (
-/obj/machinery/vending/cigarette{
- pixel_x = 0;
- pixel_y = 0
- },
+/obj/machinery/vending/cigarette,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "purple"
@@ -80646,15 +76072,13 @@
icon_state = "0-8"
},
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel,
/area/hallway/secondary/exit)
@@ -80676,9 +76100,7 @@
/turf/simulated/floor/plasteel,
/area/atmos)
"cZZ" = (
-/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- level = 2
- },
+/obj/machinery/atmospherics/pipe/simple/visible/yellow,
/obj/machinery/atmospherics/binary/pump{
dir = 4;
name = "Mix to Engine"
@@ -80689,13 +76111,9 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/obj/item/radio/intercom{
- frequency = 1459;
- name = "station intercom (General)";
- pixel_x = 0;
pixel_y = -28
},
/turf/simulated/floor/plasteel,
@@ -80727,8 +76145,7 @@
"dad" = (
/obj/structure/lattice,
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 10;
- level = 2
+ dir = 10
},
/turf/space,
/area/space/nearstation)
@@ -80743,14 +76160,12 @@
/obj/machinery/requests_console{
department = "EVA";
name = "EVA Requests Console";
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -80764,12 +76179,9 @@
/turf/simulated/floor/plasteel,
/area/atmos)
"dah" = (
-/obj/machinery/atmospherics/pipe/simple/visible/green{
- level = 2
- },
+/obj/machinery/atmospherics/pipe/simple/visible/green,
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4;
- level = 2
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/atmos)
@@ -80784,8 +76196,7 @@
"dak" = (
/obj/machinery/camera{
c_tag = "Departure Lounge South";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/turf/simulated/floor/plasteel,
/area/hallway/secondary/exit)
@@ -80803,7 +76214,6 @@
/area/engine/engineering)
"dam" = (
/obj/machinery/newscaster{
- pixel_x = 0;
pixel_y = -30
},
/turf/simulated/floor/plasteel,
@@ -80826,14 +76236,12 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/machinery/light,
/obj/machinery/camera{
c_tag = "EVA";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -80845,12 +76253,10 @@
/area/escapepodbay)
"dau" = (
/obj/machinery/power/terminal{
- dir = 1;
- icon_state = "term"
+ dir = 1
},
/obj/effect/decal/warning_stripes/south,
/obj/structure/cable/yellow{
- d1 = 0;
d2 = 8;
icon_state = "0-8"
},
@@ -80892,8 +76298,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -80926,8 +76331,7 @@
/obj/structure/grille,
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'.";
- name = "KEEP CLEAR: DOCKING AREA";
- pixel_y = 0
+ name = "KEEP CLEAR: DOCKING AREA"
},
/turf/simulated/floor/plating/airless,
/area/escapepodbay)
@@ -80935,8 +76339,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -81083,8 +76486,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -81099,8 +76501,7 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10;
- initialize_directions = 10;
- level = 1
+ initialize_directions = 10
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 10
@@ -81114,13 +76515,10 @@
/turf/simulated/floor/plasteel,
/area/atmos)
"daW" = (
-/obj/machinery/atmospherics/pipe/simple/visible/green{
- level = 2
- },
+/obj/machinery/atmospherics/pipe/simple/visible/green,
/obj/machinery/atmospherics/binary/pump{
dir = 8;
- name = "Plasma to Pure";
- on = 0
+ name = "Plasma to Pure"
},
/turf/simulated/floor/plasteel,
/area/atmos)
@@ -81131,8 +76529,7 @@
/area/maintenance/asmaint)
"daY" = (
/obj/machinery/atmospherics/pipe/manifold/visible/yellow{
- dir = 8;
- level = 2
+ dir = 8
},
/turf/simulated/floor/plasteel,
/area/atmos)
@@ -81151,8 +76548,7 @@
"dba" = (
/obj/structure/lattice,
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4;
- level = 2
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/visible/yellow,
/turf/space,
@@ -81180,8 +76576,7 @@
dir = 5
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/turf/simulated/floor/plating,
/area/maintenance/asmaint)
@@ -81252,8 +76647,7 @@
/area/maintenance/genetics)
"dbo" = (
/obj/machinery/light_switch{
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/turf/simulated/floor/plasteel,
/area/escapepodbay)
@@ -81293,8 +76687,7 @@
},
/obj/machinery/camera{
c_tag = "Engineering Secure Storage North";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/obj/machinery/field/generator,
/turf/simulated/floor/plating,
@@ -81308,8 +76701,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -81323,7 +76715,6 @@
/area/maintenance/genetics)
"dbx" = (
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
@@ -81359,8 +76750,7 @@
dir = 5
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/turf/simulated/floor/plating,
/area/maintenance/asmaint)
@@ -81370,8 +76760,7 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10;
- initialize_directions = 10;
- level = 1
+ initialize_directions = 10
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 10
@@ -81407,12 +76796,10 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plating,
/area/maintenance/asmaint)
@@ -81426,8 +76813,7 @@
/area/escapepodbay)
"dbJ" = (
/obj/machinery/power/terminal{
- dir = 1;
- icon_state = "term"
+ dir = 1
},
/obj/structure/cable/yellow{
d2 = 4;
@@ -81440,8 +76826,7 @@
"dbK" = (
/obj/machinery/camera{
c_tag = "Atmospherics West";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/obj/structure/reagent_dispensers/fueltank,
/obj/effect/decal/warning_stripes/yellow/partial,
@@ -81465,8 +76850,7 @@
/obj/machinery/meter,
/obj/machinery/atmospherics/pipe/manifold/visible{
dir = 4;
- initialize_directions = 11;
- level = 2
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/atmos)
@@ -81575,8 +76959,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -81592,12 +76975,10 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plating,
/area/maintenance/asmaint)
@@ -81621,8 +77002,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
@@ -81657,7 +77037,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plating,
@@ -81670,18 +77049,10 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 10;
- level = 2
+ dir = 10
},
/turf/simulated/floor/plating,
/area/maintenance/storage)
-"dco" = (
-/obj/structure/sign/directions/security{
- dir = 1;
- pixel_y = 7
- },
-/turf/simulated/wall,
-/area/crew_quarters/mrchangs)
"dcp" = (
/obj/structure/cable{
d1 = 2;
@@ -81692,8 +77063,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -81757,8 +77127,7 @@
/area/maintenance/turbine)
"dcx" = (
/obj/machinery/power/terminal{
- dir = 1;
- icon_state = "term"
+ dir = 1
},
/obj/structure/cable{
d2 = 8;
@@ -81766,8 +77135,7 @@
},
/obj/machinery/alarm{
dir = 8;
- pixel_x = 25;
- pixel_y = 0
+ pixel_x = 25
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
@@ -81789,8 +77157,7 @@
"dcA" = (
/obj/machinery/atmospherics/pipe/manifold/visible{
dir = 4;
- initialize_directions = 11;
- level = 2
+ initialize_directions = 11
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
@@ -81838,8 +77205,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/cable{
d1 = 1;
@@ -81855,8 +77221,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/light{
dir = 1
@@ -81897,7 +77262,6 @@
/area/storage/secure)
"dcO" = (
/obj/machinery/atmospherics/trinary/filter{
- density = 0;
dir = 1;
name = "Gas filter (Toxins tank)";
on = 1
@@ -81930,8 +77294,7 @@
"dcS" = (
/obj/structure/lattice,
/obj/machinery/atmospherics/pipe/simple/visible/green{
- dir = 4;
- level = 2
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/visible/yellow,
/turf/space,
@@ -82068,8 +77431,7 @@
"ddl" = (
/obj/machinery/atmospherics/pipe/manifold/visible{
dir = 4;
- initialize_directions = 11;
- level = 2
+ initialize_directions = 11
},
/obj/machinery/meter,
/obj/machinery/light{
@@ -82130,8 +77492,7 @@
"ddt" = (
/obj/machinery/atmospherics/binary/pump{
dir = 0;
- name = "Port to Filter";
- on = 0
+ name = "Port to Filter"
},
/turf/simulated/floor/plasteel,
/area/atmos)
@@ -82177,8 +77538,7 @@
"ddx" = (
/obj/machinery/camera{
c_tag = "Atmospherics Central";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/turf/simulated/floor/plasteel,
/area/atmos)
@@ -82226,7 +77586,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/structure/lattice/catwalk,
@@ -82256,7 +77615,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/structure/lattice/catwalk,
@@ -82295,8 +77653,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plating,
/area/maintenance/asmaint2)
@@ -82320,8 +77677,7 @@
/area/solar/starboard)
"ddO" = (
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 6;
- level = 2
+ dir = 6
},
/obj/structure/lattice/catwalk,
/turf/space,
@@ -82359,7 +77715,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/lattice/catwalk,
@@ -82377,8 +77732,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/obj/structure/cable{
d1 = 2;
@@ -82413,7 +77767,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/lattice/catwalk,
@@ -82453,8 +77806,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plating,
/area/maintenance/asmaint2)
@@ -82464,8 +77816,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plating,
/area/maintenance/asmaint2)
@@ -82500,7 +77851,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/lattice/catwalk,
@@ -82551,13 +77901,10 @@
/turf/simulated/floor/plasteel,
/area/atmos)
"dej" = (
-/obj/machinery/atmospherics/pipe/simple/visible/green{
- level = 2
- },
+/obj/machinery/atmospherics/pipe/simple/visible/green,
/obj/machinery/atmospherics/binary/pump{
dir = 8;
- name = "CO2 to Pure";
- on = 0
+ name = "CO2 to Pure"
},
/turf/simulated/floor/plasteel,
/area/atmos)
@@ -82629,8 +77976,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plating,
/area/maintenance/asmaint2)
@@ -82639,8 +77985,7 @@
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/turf/simulated/floor/plasteel,
/area/maintenance/turbine)
@@ -82700,8 +78045,7 @@
"deA" = (
/obj/effect/decal/warning_stripes/south,
/obj/machinery/atmospherics/pipe/manifold/visible/green{
- dir = 1;
- tag = "icon-manifold-g (NORTH)"
+ dir = 1
},
/obj/machinery/camera{
c_tag = "Engineering Supermatter Fore";
@@ -82724,8 +78068,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/engine,
/area/engine/engineering)
@@ -82756,8 +78099,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel,
/area/atmos)
@@ -82765,8 +78107,7 @@
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'HIGH VOLTAGE'";
icon_state = "shock";
- name = "HIGH VOLTAGE";
- pixel_y = 0
+ name = "HIGH VOLTAGE"
},
/turf/simulated/wall/r_wall,
/area/maintenance/starboardsolar)
@@ -82781,7 +78122,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel,
@@ -82818,16 +78158,13 @@
opacity = 0
},
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = -32
},
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/door/airlock/maintenance{
@@ -82889,16 +78226,14 @@
"deQ" = (
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
dir = 6;
- initialize_directions = 6;
- level = 2
+ initialize_directions = 6
},
/turf/simulated/floor/plasteel,
/area/atmos)
"deR" = (
/obj/machinery/atmospherics/binary/pump{
dir = 4;
- name = "N2 to Pure";
- on = 0
+ name = "N2 to Pure"
},
/turf/simulated/floor/plasteel,
/area/atmos)
@@ -82922,8 +78257,7 @@
/area/maintenance/asmaint)
"deU" = (
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 9;
- tag = "icon-intact-y (NORTHWEST)"
+ dir = 9
},
/turf/simulated/floor/plasteel,
/area/atmos)
@@ -82952,8 +78286,7 @@
pixel_x = 32
},
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 5;
- tag = "icon-intact-y (NORTHWEST)"
+ dir = 5
},
/turf/simulated/floor/plating,
/area/maintenance/storage)
@@ -82971,9 +78304,7 @@
/turf/simulated/floor/engine/co2,
/area/atmos)
"deZ" = (
-/obj/machinery/power/smes{
- charge = 0
- },
+/obj/machinery/power/smes,
/obj/structure/cable{
d2 = 8;
icon_state = "0-8"
@@ -82993,8 +78324,7 @@
/obj/structure/chair/stool,
/obj/machinery/camera{
c_tag = "Aft Starboard Solar Control";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/turf/simulated/floor/plating,
/area/maintenance/starboardsolar)
@@ -83008,8 +78338,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plating,
/area/maintenance/asmaint2)
@@ -83042,8 +78371,7 @@
/area/maintenance/asmaint2)
"dfj" = (
/obj/machinery/power/terminal{
- dir = 1;
- icon_state = "term"
+ dir = 1
},
/obj/structure/cable{
d2 = 8;
@@ -83077,16 +78405,13 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plating,
/area/maintenance/starboardsolar)
"dfm" = (
/obj/machinery/door/airlock/external{
- aiControlDisabled = 0;
frequency = 1379;
- hackProof = 0;
icon_state = "door_locked";
id_tag = "atmospherics_south_outer";
locked = 1;
@@ -83098,8 +78423,7 @@
"dfn" = (
/obj/machinery/power/solar_control{
id = "starboardsolar";
- name = "Aft Starboard Solar Control";
- track = 0
+ name = "Aft Starboard Solar Control"
},
/obj/structure/cable{
d2 = 4;
@@ -83123,7 +78447,6 @@
icon_state = "space";
layer = 4;
name = "EXTERNAL AIRLOCK";
- pixel_x = 0;
pixel_y = -32
},
/obj/machinery/atmospherics/unary/portables_connector{
@@ -83140,14 +78463,12 @@
/obj/machinery/door/airlock/engineering/glass{
heat_proof = 1;
name = "Supermatter Chamber";
- req_access_txt = "10";
- req_one_access_txt = "0"
+ req_access_txt = "10"
},
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/engine,
/area/engine/supermatter)
@@ -83181,7 +78502,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/door/airlock/external{
@@ -83201,11 +78521,9 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
- frequency = 1379;
id_tag = "solar_xeno_airlock";
pixel_x = 25;
req_access_txt = "13";
@@ -83215,7 +78533,6 @@
tag_interior_door = "solar_xeno_inner"
},
/obj/machinery/airlock_sensor{
- frequency = 1379;
id_tag = "solar_xeno_sensor";
pixel_x = 25;
pixel_y = 12
@@ -83237,7 +78554,6 @@
/area/atmos)
"dfA" = (
/obj/machinery/firealarm{
- dir = 2;
pixel_y = 24
},
/obj/structure/transit_tube{
@@ -83249,15 +78565,12 @@
},
/area/maintenance/storage)
"dfB" = (
-/obj/machinery/atmospherics/pipe/manifold/visible/cyan{
- level = 2
- },
+/obj/machinery/atmospherics/pipe/manifold/visible/cyan,
/turf/simulated/floor/plasteel,
/area/atmos)
"dfC" = (
/obj/item/radio/intercom{
dir = 1;
- name = "station intercom (General)";
pixel_y = 25
},
/turf/simulated/floor/plasteel{
@@ -83272,9 +78585,7 @@
/area/maintenance/storage)
"dfE" = (
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/obj/structure/transit_tube/station,
@@ -83287,28 +78598,24 @@
/area/maintenance/storage)
"dfF" = (
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 4;
- level = 2
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/atmos)
"dfG" = (
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 4;
- level = 2
+ dir = 4
},
/obj/machinery/meter,
/turf/simulated/floor/plasteel,
/area/atmos)
"dfH" = (
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 4;
- level = 2
+ dir = 4
},
/obj/machinery/atmospherics/binary/pump{
dir = 1;
- name = "O2 to Pure";
- on = 0
+ name = "O2 to Pure"
},
/turf/simulated/floor/plasteel,
/area/atmos)
@@ -83319,15 +78626,12 @@
node1_concentration = 0.8;
node2_concentration = 0.2;
on = 1;
- pixel_x = 0;
- pixel_y = 0;
target_pressure = 4500
},
/turf/simulated/floor/plasteel,
/area/atmos)
"dfJ" = (
/obj/machinery/atmospherics/trinary/filter{
- density = 0;
dir = 1;
filter_type = 3;
name = "Gas filter (CO2 tank)";
@@ -83338,8 +78642,7 @@
"dfK" = (
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
dir = 10;
- initialize_directions = 10;
- level = 2
+ initialize_directions = 10
},
/turf/simulated/floor/plasteel,
/area/atmos)
@@ -83356,8 +78659,7 @@
/area/maintenance/asmaint)
"dfN" = (
/obj/machinery/atmospherics/pipe/simple/visible/green{
- dir = 4;
- level = 2
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 6;
@@ -83381,9 +78683,7 @@
/area/maintenance/asmaint2)
"dfQ" = (
/obj/machinery/light_switch{
- dir = 2;
name = "light switch ";
- pixel_x = 0;
pixel_y = -22
},
/turf/simulated/floor/plasteel{
@@ -83404,7 +78704,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/door/airlock/external{
@@ -83428,7 +78727,6 @@
/obj/structure/grille,
/obj/structure/window/reinforced/tinted{
dir = 8;
- icon_state = "twindow";
tag = ""
},
/obj/structure/window/reinforced/tinted{
@@ -83436,7 +78734,6 @@
},
/obj/structure/window/reinforced/tinted{
dir = 4;
- icon_state = "twindow";
tag = ""
},
/obj/structure/window/reinforced/tinted,
@@ -83478,9 +78775,7 @@
/turf/simulated/floor/plating,
/area/maintenance/asmaint2)
"dgg" = (
-/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- level = 2
- },
+/obj/machinery/atmospherics/pipe/simple/visible/cyan,
/turf/simulated/floor/plasteel,
/area/atmos)
"dgi" = (
@@ -83500,7 +78795,6 @@
/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
frequency = 1450;
id_tag = "dorms_maint";
- pixel_x = 0;
pixel_y = -25;
req_access_txt = "13";
tag_airpump = "dorms_pump";
@@ -83519,9 +78813,7 @@
/obj/machinery/light{
dir = 1
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel,
/area/teleporter)
"dgm" = (
@@ -83549,8 +78841,7 @@
"dgr" = (
/obj/machinery/camera{
c_tag = "Atmospherics South-West";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/obj/machinery/light{
dir = 8
@@ -83574,8 +78865,7 @@
"dgt" = (
/obj/machinery/atmospherics/pipe/manifold/visible/cyan{
dir = 8;
- initialize_directions = 11;
- level = 2
+ initialize_directions = 11
},
/obj/machinery/meter,
/turf/simulated/floor/plasteel,
@@ -83620,7 +78910,6 @@
/obj/structure/table/wood,
/obj/item/reagent_containers/food/drinks/mug,
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
@@ -83639,15 +78928,13 @@
/obj/machinery/camera{
c_tag = "Engineering Supermatter Port";
dir = 4;
- network = list("SS13","engine");
- pixel_x = 0
+ network = list("SS13","engine")
},
/turf/simulated/floor/engine,
/area/engine/engineering)
"dgM" = (
/obj/item/radio/intercom{
dir = 8;
- name = "station intercom (General)";
pixel_x = -28
},
/obj/machinery/atmospherics/pipe/simple/visible/purple{
@@ -83657,7 +78944,6 @@
/area/atmos)
"dgN" = (
/obj/machinery/atmospherics/trinary/filter{
- density = 0;
dir = 4;
filter_type = 2;
name = "Gas filter (N2 tank)";
@@ -83667,24 +78953,19 @@
/area/atmos)
"dgP" = (
/obj/machinery/atmospherics/pipe/simple/visible/green{
- dir = 4;
- level = 2
- },
-/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- level = 2
+ dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/visible/cyan,
/turf/simulated/floor/plasteel,
/area/atmos)
"dgQ" = (
/obj/machinery/atmospherics/pipe/simple/visible/green{
- dir = 4;
- level = 2
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/atmos)
"dgR" = (
/obj/machinery/atmospherics/trinary/filter{
- density = 0;
dir = 4;
filter_type = 1;
name = "Gas filter (O2 tank)";
@@ -83711,8 +78992,7 @@
/area/maintenance/port)
"dgV" = (
/obj/machinery/atmospherics/pipe/simple/visible/green{
- dir = 9;
- level = 2
+ dir = 9
},
/turf/simulated/floor/plasteel,
/area/atmos)
@@ -83726,8 +79006,7 @@
opacity = 0
},
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 9;
- level = 2
+ dir = 9
},
/turf/simulated/floor/plating,
/area/atmos)
@@ -83760,18 +79039,14 @@
/area/space/nearstation)
"dhf" = (
/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
- dir = 6;
- icon_state = "intact";
- tag = "icon-intact (SOUTHEAST)"
+ dir = 6
},
/obj/structure/lattice,
/turf/space,
/area/space/nearstation)
"dhj" = (
/obj/effect/decal/warning_stripes/north,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plating,
/area/turret_protected/aisat_interior)
"dhk" = (
@@ -83786,9 +79061,7 @@
/area/maintenance/asmaint)
"dho" = (
/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{
- dir = 8;
- icon_state = "intact";
- tag = "icon-intact (WEST)"
+ dir = 8
},
/turf/simulated/wall/r_wall,
/area/engine/engineering)
@@ -83806,9 +79079,6 @@
"dhq" = (
/obj/machinery/light,
/obj/item/radio/intercom{
- broadcasting = 0;
- listening = 1;
- name = "station intercom (General)";
pixel_y = -28
},
/obj/structure/chair/wood{
@@ -83832,8 +79102,7 @@
/area/crew_quarters/dorms)
"dhs" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -83842,7 +79111,6 @@
/area/crew_quarters/dorms)
"dht" = (
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
@@ -83860,8 +79128,7 @@
"dhu" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock{
- name = "Unisex Restrooms";
- req_access_txt = "0"
+ name = "Unisex Restrooms"
},
/obj/structure/cable{
d1 = 4;
@@ -83887,8 +79154,7 @@
/area/engine/engineering)
"dhw" = (
/obj/machinery/door/airlock{
- name = "Unisex Restrooms";
- req_access_txt = "0"
+ name = "Unisex Restrooms"
},
/turf/simulated/floor/plasteel{
icon_state = "freezerfloor"
@@ -83928,9 +79194,7 @@
output_tag = "n2_out";
sensors = list("n2_sensor" = "Tank")
},
-/obj/machinery/atmospherics/pipe/simple/visible/green{
- level = 2
- },
+/obj/machinery/atmospherics/pipe/simple/visible/green,
/turf/simulated/floor/plasteel{
icon_state = "red"
},
@@ -83964,9 +79228,7 @@
},
/area/atmos)
"dhE" = (
-/obj/machinery/atmospherics/pipe/simple/visible/green{
- level = 2
- },
+/obj/machinery/atmospherics/pipe/simple/visible/green,
/turf/simulated/floor/plasteel{
dir = 10;
icon_state = "blue"
@@ -83995,9 +79257,7 @@
},
/area/atmos)
"dhH" = (
-/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- level = 2
- },
+/obj/machinery/atmospherics/pipe/simple/visible/cyan,
/turf/simulated/floor/plasteel{
dir = 10;
icon_state = "arrival"
@@ -84017,8 +79277,7 @@
"dhJ" = (
/obj/machinery/camera{
c_tag = "Atmospherics South-East";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/obj/machinery/atmospherics/binary/valve/digital/open{
name = "Mixed Air Outlet Valve"
@@ -84030,9 +79289,6 @@
/area/atmos)
"dhK" = (
/obj/item/radio/intercom{
- broadcasting = 0;
- listening = 1;
- name = "station intercom (General)";
pixel_y = -28
},
/turf/simulated/floor/plasteel{
@@ -84041,22 +79297,19 @@
/area/crew_quarters/toilet)
"dhL" = (
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4;
- level = 2
+ dir = 4
},
/turf/simulated/wall/r_wall,
/area/maintenance/turbine)
"dhM" = (
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 5;
- tag = "icon-intact-y (NORTHWEST)"
+ dir = 5
},
/turf/simulated/wall/r_wall,
/area/maintenance/turbine)
"dhN" = (
/obj/machinery/alarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/turf/simulated/floor/plasteel{
@@ -84069,9 +79322,7 @@
id = "toilet_unitb";
name = "Door Bolt Control";
normaldoorcontrol = 1;
- pixel_x = 0;
pixel_y = 25;
- req_access_txt = "0";
specialfunctions = 4
},
/turf/simulated/floor/plasteel{
@@ -84127,8 +79378,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plating,
/area/maintenance/asmaint2)
@@ -84173,8 +79423,7 @@
/area/maintenance/fsmaint2)
"dii" = (
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4;
- level = 2
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -84214,8 +79463,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -84246,9 +79494,7 @@
name = "Atmos Blast Door";
opacity = 0
},
-/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- level = 2
- },
+/obj/machinery/atmospherics/pipe/simple/visible/yellow,
/turf/simulated/floor/plating,
/area/atmos)
"diq" = (
@@ -84276,15 +79522,12 @@
name = "Atmos Blast Door";
opacity = 0
},
-/obj/machinery/atmospherics/pipe/simple/visible/green{
- level = 2
- },
+/obj/machinery/atmospherics/pipe/simple/visible/green,
/turf/simulated/floor/plating,
/area/atmos)
"diu" = (
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 6;
- level = 2
+ dir = 6
},
/obj/structure/lattice,
/turf/space,
@@ -84300,8 +79543,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -84310,12 +79552,9 @@
"diw" = (
/obj/item/flag/nt,
/obj/machinery/camera{
- c_tag = "Central Hallway North";
- dir = 2;
- network = list("SS13")
+ c_tag = "Central Hallway North"
},
/obj/machinery/firealarm{
- dir = 2;
pixel_y = 24
},
/turf/simulated/floor/plasteel{
@@ -84344,8 +79583,7 @@
network = list("SS13","MiniSat")
},
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4;
- level = 2
+ dir = 4
},
/turf/simulated/floor/plating,
/area/turret_protected/aisat_interior)
@@ -84360,8 +79598,7 @@
icon_state = "pipe-c"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- level = 1
+ dir = 9
},
/turf/simulated/floor/plating,
/area/maintenance/port)
@@ -84373,14 +79610,12 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/turret_protected/aisat_interior)
"diC" = (
@@ -84388,8 +79623,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/turret_protected/aisat_interior)
"diD" = (
@@ -84404,16 +79638,14 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/turret_protected/aisat_interior)
"diE" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/effect/landmark/start{
name = "Cyborg"
@@ -84437,8 +79669,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/turret_protected/aisat_interior)
"diH" = (
@@ -84456,17 +79687,13 @@
desc = "A remote control-switch for the engineering security doors.";
id = "teledoor";
name = "AI Satellite Teleport Shutters Control";
- pixel_x = 0;
pixel_y = 25;
req_access_txt = "17;75"
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/turret_protected/aisat_interior)
"diK" = (
@@ -84485,8 +79712,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/turret_protected/aisat_interior)
"diM" = (
@@ -84515,8 +79741,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/turret_protected/aisat_interior)
"diO" = (
@@ -84541,29 +79766,17 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/turret_protected/aisat_interior)
"diU" = (
/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/visible/green{
- level = 2
- },
-/turf/space,
-/area/space/nearstation)
-"diV" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- level = 2
- },
+/obj/machinery/atmospherics/pipe/simple/visible/green,
/turf/space,
/area/space/nearstation)
"dja" = (
/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- level = 2
- },
+/obj/machinery/atmospherics/pipe/simple/visible/cyan,
/turf/space,
/area/space/nearstation)
"djb" = (
@@ -84587,6 +79800,15 @@
/area/space/nearstation)
"dje" = (
/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
/turf/simulated/floor/plasteel{
dir = 5;
icon_state = "blue"
@@ -84597,8 +79819,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -84617,14 +79838,12 @@
/area/crew_quarters/dorms)
"djh" = (
/obj/machinery/firealarm{
- dir = 2;
pixel_y = 24
},
/obj/structure/table/reinforced,
/obj/item/stack/packageWrap,
/obj/item/book/manual/sop_service,
/obj/item/pen/blue{
- pixel_x = 0;
pixel_y = 4
},
/obj/item/book/manual/barman_recipes,
@@ -84638,9 +79857,7 @@
pixel_y = 25
},
/obj/machinery/camera{
- c_tag = "Bar North";
- dir = 2;
- network = list("SS13")
+ c_tag = "Bar North"
},
/obj/structure/table/reinforced,
/obj/machinery/chem_dispenser/soda,
@@ -84656,7 +79873,6 @@
/obj/item/reagent_containers/food/drinks/flask/barflask,
/obj/item/reagent_containers/food/drinks/flask/barflask,
/obj/machinery/status_display{
- pixel_x = 0;
pixel_y = 32
},
/obj/item/clothing/head/that{
@@ -84713,8 +79929,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/turret_protected/aisat_interior)
"djq" = (
@@ -84742,10 +79957,8 @@
"djt" = (
/obj/machinery/door/window/eastright{
dir = 2;
- icon_state = "right";
name = "Hydroponics Delivery";
- req_access_txt = "35";
- tag = "icon-right"
+ req_access_txt = "35"
},
/obj/effect/decal/warning_stripes/yellow,
/obj/structure/disposalpipe/segment{
@@ -84765,9 +79978,7 @@
/area/hydroponics)
"djv" = (
/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{
- dir = 8;
- icon_state = "intact";
- tag = "icon-intact (WEST)"
+ dir = 8
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/wall/r_wall,
@@ -84780,8 +79991,7 @@
pixel_y = 22
},
/obj/machinery/camera{
- c_tag = "Hydroponics Pasture";
- network = list("SS13")
+ c_tag = "Hydroponics Pasture"
},
/obj/machinery/hydroponics/soil,
/obj/structure/disposalpipe/segment{
@@ -84793,7 +80003,6 @@
"djx" = (
/obj/machinery/hydroponics/soil,
/obj/machinery/firealarm{
- dir = 2;
pixel_y = 24
},
/turf/simulated/floor/grass,
@@ -84811,7 +80020,6 @@
/obj/structure/grille,
/obj/structure/window/reinforced/tinted{
dir = 8;
- icon_state = "twindow";
tag = ""
},
/obj/structure/window/reinforced/tinted{
@@ -84819,7 +80027,6 @@
},
/obj/structure/window/reinforced/tinted{
dir = 4;
- icon_state = "twindow";
tag = ""
},
/obj/structure/window/reinforced/tinted,
@@ -84846,15 +80053,13 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/effect/landmark/start{
name = "Cyborg"
@@ -84878,8 +80083,7 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
@@ -84899,8 +80103,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/turret_protected/aisat_interior)
"djH" = (
@@ -84908,7 +80111,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_y = 0;
tag = ""
},
/obj/machinery/atmospherics/unary/vent_scrubber/on{
@@ -84930,8 +80132,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/turret_protected/aisat_interior)
"djJ" = (
@@ -84945,8 +80146,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/turret_protected/aisat_interior)
"djK" = (
@@ -84992,7 +80192,6 @@
/obj/machinery/turretid/stun{
control_area = "\improper AI Satellite Antechamber";
name = "AI Antechamber Turret Control";
- pixel_x = 0;
pixel_y = -24;
req_access_txt = "75"
},
@@ -85003,15 +80202,13 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/turret_protected/aisat_interior)
"djS" = (
/obj/machinery/atmospherics/pipe/simple/visible,
/obj/structure/grille,
/obj/machinery/meter{
- frequency = 1443;
id = "mair_in_meter";
name = "Mixed Air Tank In"
},
@@ -85027,7 +80224,6 @@
/obj/machinery/atmospherics/pipe/simple/visible,
/obj/structure/grille,
/obj/machinery/meter{
- frequency = 1443;
id = "mair_out_meter";
name = "Mixed Air Tank Out"
},
@@ -85037,7 +80233,6 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/obj/structure/cable{
@@ -85049,9 +80244,7 @@
/area/hallway/primary/central/nw)
"djW" = (
/obj/machinery/camera{
- c_tag = "Central Hallway North-West";
- dir = 2;
- network = list("SS13")
+ c_tag = "Central Hallway North-West"
},
/obj/structure/extinguisher_cabinet{
pixel_x = 5;
@@ -85099,8 +80292,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/turret_protected/aisat_interior)
"dkb" = (
@@ -85126,15 +80318,13 @@
},
/obj/item/radio/intercom{
dir = 4;
- name = "station intercom (General)";
pixel_x = 28
},
/obj/machinery/atmospherics/unary/vent_pump/on,
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -85153,18 +80343,15 @@
/obj/machinery/hologram/holopad,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/turret_protected/aisat_interior)
"dkg" = (
@@ -85179,7 +80366,6 @@
control_area = "\improper AI Satellite Atmospherics";
name = "AI Satellite Atmospherics Turret Control";
pixel_x = -28;
- pixel_y = 0;
req_access_txt = "75"
},
/obj/machinery/atmospherics/unary/vent_scrubber/on{
@@ -85241,18 +80427,14 @@
/area/atmos)
"dkl" = (
/obj/item/radio/intercom{
- broadcasting = 0;
- listening = 1;
- name = "station intercom (General)";
pixel_y = 25
},
+/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel,
/area/hallway/primary/central/north)
"dkm" = (
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/plasteel{
@@ -85264,7 +80446,6 @@
/obj/machinery/light{
dir = 1
},
-/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel,
/area/hallway/primary/central/ne)
"dko" = (
@@ -85272,7 +80453,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
@@ -85373,9 +80553,7 @@
/area/atmos)
"dky" = (
/obj/machinery/camera{
- c_tag = "Central Hallway North-East";
- dir = 2;
- network = list("SS13")
+ c_tag = "Central Hallway North-East"
},
/obj/machinery/light{
dir = 1
@@ -85441,7 +80619,6 @@
control_area = "\improper AI Satellite Service";
name = "AI Satellite Service Bay Turret Control";
pixel_x = 24;
- pixel_y = 0;
req_access_txt = "75"
},
/obj/machinery/atmospherics/unary/vent_pump/on{
@@ -85460,8 +80637,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/aisat/maintenance{
name = "\improper AI Satellite Service"
@@ -85476,7 +80652,6 @@
},
/obj/item/radio/intercom{
dir = 8;
- name = "station intercom (General)";
pixel_x = -28
},
/obj/machinery/computer/cryopod/robot{
@@ -85497,8 +80672,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/aisat/maintenance{
name = "\improper AI Satellite Service"
@@ -85524,7 +80698,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_y = 0;
tag = ""
},
/obj/machinery/ai_slipper{
@@ -85532,14 +80705,12 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/aisat/entrance{
name = "\improper AI Satellite Atmospherics"
@@ -85574,7 +80745,6 @@
"dkR" = (
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/obj/machinery/light/small{
@@ -85601,20 +80771,17 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_y = 0;
tag = ""
},
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/aisat/entrance{
name = "\improper AI Satellite Atmospherics"
@@ -85636,7 +80803,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_y = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -85647,8 +80813,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/aisat/entrance{
name = "\improper AI Satellite Atmospherics"
@@ -85658,7 +80823,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_y = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -85673,8 +80837,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/aisat/entrance{
name = "\improper AI Satellite Atmospherics"
@@ -85705,22 +80868,19 @@
/mob/living/simple_animal/bot/secbot/pingsky,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/turret_protected/aisat_interior)
"dkZ" = (
/obj/machinery/atmospherics/binary/pump{
- dir = 4;
- name = "gas pump"
+ dir = 4
},
/turf/simulated/floor/plating,
/area/maintenance/asmaint)
"dla" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plating,
/area/maintenance/asmaint)
@@ -85729,7 +80889,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_y = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -85740,8 +80899,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/turret_protected/aisat_interior)
"dlc" = (
@@ -85754,7 +80912,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_y = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -85765,8 +80922,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/aisat/maintenance{
name = "\improper AI Satellite Service"
@@ -85776,7 +80932,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_y = 0;
tag = ""
},
/obj/structure/cable{
@@ -85793,13 +80948,11 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/aisat/maintenance{
name = "\improper AI Satellite Service"
@@ -85852,7 +81005,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_y = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -85863,8 +81015,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/aisat/maintenance{
name = "\improper AI Satellite Service"
@@ -85884,7 +81035,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_y = 0;
tag = ""
},
/obj/machinery/atmospherics/unary/vent_scrubber/on{
@@ -85892,8 +81042,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/aisat/maintenance{
name = "\improper AI Satellite Service"
@@ -85909,8 +81058,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/aisat/entrance{
name = "\improper AI Satellite Atmospherics"
@@ -85950,8 +81098,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/turret_protected/aisat_interior)
"dlu" = (
@@ -85959,8 +81106,7 @@
dir = 1
},
/obj/structure/sign/securearea{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/turf/simulated/floor/plasteel{
icon_state = "darkbluecorners"
@@ -86053,8 +81199,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/aisat/maintenance{
name = "\improper AI Satellite Service"
@@ -86130,8 +81275,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/aisat{
name = "\improper AI Satellite Hallway"
@@ -86245,8 +81389,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/aisat{
name = "\improper AI Satellite Hallway"
@@ -86291,8 +81434,7 @@
/area/maintenance/asmaint)
"dmk" = (
/obj/structure/sign/securearea{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
@@ -86302,8 +81444,7 @@
"dml" = (
/obj/structure/disposalpipe/junction{
dir = 4;
- icon_state = "pipe-j2";
- tag = "icon-pipe-j2 (EAST)"
+ icon_state = "pipe-j2"
},
/obj/machinery/atmospherics/binary/pump{
name = "Waste Out";
@@ -86359,8 +81500,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/aisat{
name = "\improper AI Satellite Hallway"
@@ -86409,8 +81549,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/hallway/primary/port)
@@ -86428,7 +81567,6 @@
external_pressure_bound = 0;
initialize_directions = 1;
internal_pressure_bound = 4000;
- on = 0;
pressure_checks = 2;
pump_direction = 0
},
@@ -86490,8 +81628,7 @@
tag = ""
},
/obj/structure/sign/securearea{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plating,
@@ -86538,8 +81675,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/aisat{
name = "\improper AI Satellite Hallway"
@@ -86574,8 +81710,7 @@
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/turf/simulated/floor/bluegrid,
/area/aisat{
@@ -86589,8 +81724,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/turf/simulated/floor/plating,
/area/aisat{
@@ -86605,7 +81739,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_y = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -86618,9 +81751,7 @@
"dmS" = (
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
- pixel_x = -22;
- pixel_y = 0
+ pixel_x = -22
},
/obj/machinery/camera/motion{
c_tag = "AI Satellite Hallway";
@@ -86648,8 +81779,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/aisat{
name = "\improper AI Satellite Hallway"
@@ -86680,8 +81810,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/aisat{
name = "\improper AI Satellite Hallway"
@@ -86713,8 +81842,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/turret_protected/ai)
"dmZ" = (
@@ -86757,14 +81885,12 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/turret_protected/ai)
"dng" = (
@@ -86786,8 +81912,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/turret_protected/ai)
"dni" = (
@@ -86796,8 +81921,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/turret_protected/ai)
"dnj" = (
@@ -86810,19 +81934,16 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/turret_protected/ai)
"dnk" = (
/obj/machinery/atm{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/turf/simulated/floor/plasteel,
/area/hallway/primary/central/ne)
@@ -86832,8 +81953,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/turret_protected/ai)
"dnm" = (
@@ -86852,8 +81972,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/turret_protected/ai)
"dnn" = (
@@ -86891,8 +82010,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/turret_protected/ai)
"dnr" = (
@@ -86906,8 +82024,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/turret_protected/ai)
"dnt" = (
@@ -86928,13 +82045,11 @@
dir = 5
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/turret_protected/ai)
"dnu" = (
@@ -86952,7 +82067,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_y = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -86960,8 +82074,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/turret_protected/ai)
"dnx" = (
@@ -86978,8 +82091,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/turret_protected/ai)
"dnz" = (
@@ -86995,8 +82107,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/turret_protected/ai)
"dnA" = (
@@ -87006,8 +82117,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/turret_protected/ai)
"dnB" = (
@@ -87022,8 +82132,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/turret_protected/ai)
"dnC" = (
@@ -87031,7 +82140,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/cable{
@@ -87063,8 +82171,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/turret_protected/ai)
"dnG" = (
@@ -87080,7 +82187,6 @@
department = "Hydroponics";
departmentType = 2;
name = "Hydroponics Requests Console";
- pixel_x = 0;
pixel_y = 30
},
/obj/machinery/plantgenes,
@@ -87128,13 +82234,11 @@
/obj/machinery/airlock_sensor{
frequency = 1450;
id_tag = "south_sensor";
- pixel_x = 0;
pixel_y = -25
},
/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
frequency = 1450;
id_tag = "south_maint";
- pixel_x = 0;
pixel_y = 25;
req_access_txt = "13";
tag_airpump = "south_pump";
@@ -87146,21 +82250,15 @@
/area/maintenance/asmaint)
"dnM" = (
/obj/structure/table/wood,
-/obj/item/taperecorder{
- pixel_y = 0
- },
+/obj/item/taperecorder,
/obj/item/camera{
desc = "A one use - polaroid camera. 30 photos left.";
name = "Camera";
- pictures_left = 30;
- pixel_x = 0;
- pixel_y = 0
+ pictures_left = 30
},
/obj/item/book/codex_gigas,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "cult"
},
/area/library)
"dnN" = (
@@ -87236,15 +82334,13 @@
"dnT" = (
/obj/effect/spawner/window/reinforced,
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4;
- level = 2
+ dir = 4
},
/turf/simulated/floor/plating,
/area/turret_protected/aisat_interior)
"dnU" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/machinery/floodlight,
/turf/simulated/floor/plasteel{
@@ -87254,20 +82350,17 @@
"dnV" = (
/obj/effect/spawner/window/reinforced,
/obj/structure/sign/securearea{
- pixel_x = 0;
pixel_y = -32
},
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4;
- level = 2
+ dir = 4
},
/turf/simulated/floor/plating,
/area/turret_protected/aisat_interior)
"dnW" = (
/obj/structure/closet/emcloset,
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4;
- level = 2
+ dir = 4
},
/turf/simulated/floor/plating,
/area/turret_protected/aisat_interior)
@@ -87299,13 +82392,10 @@
"dnY" = (
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
- pixel_x = 11;
- pixel_y = 0
+ pixel_x = 11
},
/obj/structure/extinguisher_cabinet{
- pixel_x = 27;
- pixel_y = 0
+ pixel_x = 27
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -87327,12 +82417,10 @@
/obj/machinery/light/small,
/obj/item/radio/intercom{
dir = 1;
- name = "station intercom (General)";
pixel_y = -28
},
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4;
- level = 2
+ dir = 4
},
/turf/simulated/floor/plating,
/area/turret_protected/aisat_interior)
@@ -87351,12 +82439,10 @@
"doe" = (
/obj/effect/spawner/window/reinforced,
/obj/structure/sign/securearea{
- pixel_x = 0;
pixel_y = -32
},
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 9;
- tag = "icon-intact-y (NORTHWEST)"
+ dir = 9
},
/turf/simulated/floor/plating,
/area/turret_protected/aisat_interior)
@@ -87390,7 +82476,6 @@
/obj/machinery/computer/card,
/obj/item/radio/intercom{
dir = 1;
- name = "station intercom (General)";
pixel_y = 25
},
/obj/machinery/light{
@@ -87420,15 +82505,12 @@
id_tag = "atmospherics_south_pump"
},
/obj/machinery/airlock_sensor{
- frequency = 1379;
id_tag = "atmospherics_south_sensor";
pixel_x = -8;
pixel_y = -30
},
/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
- frequency = 1379;
id_tag = "atmospherics_south";
- pixel_x = 0;
pixel_y = -25;
req_access_txt = null;
tag_airpump = "atmospherics_south_pump";
@@ -87464,9 +82546,7 @@
dir = 4
},
/obj/machinery/door/airlock/external{
- aiControlDisabled = 0;
frequency = 1379;
- hackProof = 0;
icon_state = "door_locked";
id_tag = "atmospherics_south_inner";
locked = 1;
@@ -87498,7 +82578,6 @@
dir = 1
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
@@ -87511,8 +82590,7 @@
/area/maintenance/storage)
"dos" = (
/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 9;
- icon_state = "intact"
+ dir = 9
},
/turf/simulated/floor/plating,
/area/maintenance/storage)
@@ -87539,8 +82617,7 @@
/obj/item/pen/multi,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/turret_protected/aisat_interior)
"doz" = (
@@ -87551,7 +82628,6 @@
/obj/structure/table/wood,
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/item/camera,
@@ -87586,9 +82662,6 @@
/area/turret_protected/aisat_interior)
"doI" = (
/obj/item/radio/intercom{
- broadcasting = 0;
- listening = 1;
- name = "station intercom (General)";
pixel_y = 25
},
/obj/structure/chair/comfy/shuttle{
@@ -87616,9 +82689,7 @@
/area/shuttle/pod_4)
"doM" = (
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/obj/machinery/light,
@@ -87631,13 +82702,11 @@
/obj/machinery/computer/station_alert,
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/turret_protected/aisat_interior)
"doW" = (
@@ -87645,20 +82714,17 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/turret_protected/aisat_interior)
"doY" = (
@@ -87666,12 +82732,10 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -87719,8 +82783,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/turret_protected/aisat_interior)
"dpl" = (
@@ -87758,39 +82821,33 @@
},
/obj/machinery/status_display{
layer = 4;
- pixel_x = 0;
pixel_y = -32
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/turret_protected/aisat_interior)
"dpw" = (
/obj/machinery/light/small,
/obj/item/radio/intercom{
dir = 1;
- name = "station intercom (General)";
pixel_y = -28
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/turret_protected/aisat_interior)
"dpx" = (
/obj/structure/table,
/obj/machinery/status_display{
layer = 4;
- pixel_x = 0;
pixel_y = -32
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/turret_protected/aisat_interior)
"dpA" = (
@@ -87810,7 +82867,6 @@
})
"dpD" = (
/obj/machinery/atmospherics/binary/pump{
- dir = 2;
name = "Air Out"
},
/turf/simulated/floor/plating,
@@ -87819,7 +82875,6 @@
})
"dpE" = (
/obj/machinery/atmospherics/binary/pump{
- dir = 2;
name = "Mix to MiniSat"
},
/turf/simulated/floor/plating,
@@ -87882,7 +82937,6 @@
},
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/obj/machinery/space_heater,
@@ -87901,8 +82955,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/universal,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/aisat/entrance{
name = "\improper AI Satellite Atmospherics"
@@ -87912,8 +82965,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/universal,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/aisat/entrance{
name = "\improper AI Satellite Atmospherics"
@@ -87925,7 +82977,6 @@
},
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/structure/rack,
@@ -87933,10 +82984,7 @@
pixel_x = -3;
pixel_y = 3
},
-/obj/item/storage/toolbox/mechanical{
- pixel_x = 0;
- pixel_y = 0
- },
+/obj/item/storage/toolbox/mechanical,
/obj/item/multitool,
/obj/machinery/camera{
c_tag = "AI Satellite Service Bay";
@@ -87956,8 +83004,7 @@
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/turf/simulated/floor/plating,
/area/aisat/entrance{
@@ -88000,8 +83047,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/aisat/entrance{
name = "\improper AI Satellite Atmospherics"
@@ -88027,8 +83073,7 @@
pixel_y = -29
},
/obj/structure/sign/securearea{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -88055,8 +83100,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/aisat/maintenance{
name = "\improper AI Satellite Service"
@@ -88072,8 +83116,7 @@
/area/aisat)
"dqM" = (
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/obj/machinery/porta_turret{
dir = 4;
@@ -88086,8 +83129,7 @@
})
"dqO" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/machinery/porta_turret{
dir = 8;
@@ -88151,8 +83193,7 @@
/obj/item/pen/multi,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/turret_protected/ai)
"drq" = (
@@ -88164,8 +83205,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/turret_protected/ai)
"drt" = (
@@ -88173,8 +83213,7 @@
/obj/item/folder,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/turret_protected/ai)
"dru" = (
@@ -88192,41 +83231,34 @@
/area/turret_protected/ai)
"drA" = (
/obj/structure/extinguisher_cabinet{
- pixel_x = 27;
- pixel_y = 0
+ pixel_x = 27
},
/obj/structure/chair/office/dark,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/turret_protected/ai)
"drB" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/turret_protected/ai)
"drE" = (
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/turret_protected/ai)
"drG" = (
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/turf/simulated/floor/bluegrid,
/area/turret_protected/ai)
@@ -88239,13 +83271,11 @@
"drK" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10;
- initialize_directions = 10;
- level = 1
+ initialize_directions = 10
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/turret_protected/ai)
"drM" = (
@@ -88259,14 +83289,11 @@
/area/turret_protected/ai)
"drO" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/turf/simulated/floor/bluegrid,
/area/turret_protected/ai)
@@ -88325,7 +83352,6 @@
},
/obj/machinery/power/apc{
cell_type = 5000;
- dir = 2;
name = "south bump Important Area";
pixel_y = -24
},
@@ -88357,7 +83383,6 @@
},
/obj/item/radio/intercom{
dir = 1;
- name = "station intercom (General)";
pixel_y = -28
},
/obj/machinery/requests_console{
@@ -88418,8 +83443,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/turret_protected/ai)
"dsc" = (
@@ -88437,15 +83461,13 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_y = 0;
tag = ""
},
/turf/simulated/wall,
/area/turret_protected/ai)
"dse" = (
/obj/machinery/power/terminal{
- dir = 1;
- icon_state = "term"
+ dir = 1
},
/obj/machinery/ai_slipper{
icon_state = "motion0"
@@ -88455,7 +83477,6 @@
"dsg" = (
/obj/machinery/camera/motion{
c_tag = "AI Core South";
- dir = 2;
network = list("SS13","MiniSat")
},
/turf/simulated/floor/bluegrid,
@@ -88468,8 +83489,7 @@
/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/turret_protected/ai)
"dsi" = (
@@ -88479,14 +83499,12 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/turret_protected/ai)
"dsj" = (
/obj/machinery/camera{
c_tag = "AI Satellite Exterior South";
- dir = 2;
network = list("SS13","MiniSat")
},
/turf/space,
@@ -88515,8 +83533,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- icon_state = "rampbottom";
- tag = "icon-stage_stairs"
+ icon_state = "rampbottom"
},
/area/maintenance/asmaint2)
"dsx" = (
@@ -88574,7 +83591,6 @@
cell_type = 25000;
dir = 1;
name = "Engineering Engine Super APC";
- pixel_x = 0;
pixel_y = 24;
shock_proof = 1
},
@@ -88595,7 +83611,6 @@
},
/obj/item/radio/intercom{
dir = 1;
- name = "station intercom (General)";
pixel_y = 25
},
/obj/machinery/portable_atmospherics/canister/oxygen,
@@ -88633,8 +83648,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/obj/structure/cable{
d1 = 2;
@@ -88708,9 +83722,8 @@
/turf/simulated/floor/plasteel,
/area/atmos)
"dtk" = (
-/obj/item/pipe_painter,
+/obj/item/painter,
/obj/item/clothing/ears/earmuffs{
- pixel_x = 0;
pixel_y = 6
},
/obj/item/clothing/ears/earmuffs{
@@ -88749,7 +83762,6 @@
"dtq" = (
/obj/machinery/alarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/obj/structure/table,
@@ -88761,7 +83773,6 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump Engineering";
- pixel_x = 0;
pixel_y = 24;
shock_proof = 1
},
@@ -88779,7 +83790,6 @@
layer = 2.9
},
/obj/machinery/alarm{
- pixel_x = 0;
pixel_y = 24
},
/obj/effect/decal/warning_stripes/south,
@@ -88869,8 +83879,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/engine/engineering)
@@ -88888,25 +83897,19 @@
"dVs" = (
/obj/effect/spawner/window/reinforced,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
+ dir = 5
},
/turf/simulated/floor/plating,
/area/crew_quarters/dorms)
"edp" = (
/obj/machinery/power/terminal{
- dir = 1;
- icon_state = "term"
+ dir = 1
},
/obj/machinery/camera{
c_tag = "Engineering SMES";
- dir = 8;
- network = list("SS13");
- pixel_x = 0;
- pixel_y = 0
+ dir = 8
},
/obj/structure/cable/yellow{
- d1 = 0;
d2 = 8;
icon_state = "0-8"
},
@@ -88943,8 +83946,7 @@
"esG" = (
/obj/effect/decal/warning_stripes/northwestcorner,
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 9;
- level = 2
+ dir = 9
},
/turf/simulated/floor/engine,
/area/engine/engineering)
@@ -88989,8 +83991,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/visible/cyan{
dir = 8;
- initialize_directions = 11;
- level = 2
+ initialize_directions = 11
},
/obj/machinery/meter,
/turf/simulated/floor/engine,
@@ -89005,8 +84006,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/obj/structure/cable/yellow{
d1 = 1;
@@ -89039,9 +84039,7 @@
/turf/simulated/floor/plating,
/area/engine/supermatter)
"eTE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = "0"
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/wall,
/area/crew_quarters/dorms)
"eYG" = (
@@ -89083,8 +84081,7 @@
/obj/effect/decal/warning_stripes/north,
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
dir = 6;
- initialize_directions = 6;
- level = 2
+ initialize_directions = 6
},
/turf/simulated/floor/engine,
/area/engine/engineering)
@@ -89099,8 +84096,7 @@
/obj/machinery/tcomms/core/station,
/obj/machinery/camera{
c_tag = "Telecommunications Core";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/turf/simulated/floor/plasteel/dark,
/area/tcommsat/chamber)
@@ -89149,8 +84145,7 @@
"gei" = (
/obj/effect/decal/warning_stripes/north,
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 4;
- level = 2
+ dir = 4
},
/obj/machinery/light{
dir = 1
@@ -89159,8 +84154,7 @@
/area/engine/engineering)
"ggO" = (
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4;
- level = 2
+ dir = 4
},
/obj/structure/lattice/catwalk,
/turf/space,
@@ -89209,8 +84203,7 @@
"gDJ" = (
/obj/effect/decal/warning_stripes/north,
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 4;
- level = 2
+ dir = 4
},
/turf/simulated/floor/engine,
/area/engine/engineering)
@@ -89232,7 +84225,6 @@
},
/obj/machinery/camera{
c_tag = "Supermatter Chamber";
- dir = 2;
network = list("engine");
pixel_x = 23
},
@@ -89273,8 +84265,7 @@
/area/toxins/mixing)
"gSS" = (
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 9;
- tag = "icon-intact-y (NORTHWEST)"
+ dir = 9
},
/obj/structure/lattice/catwalk,
/turf/space,
@@ -89313,8 +84304,7 @@
"hxf" = (
/obj/machinery/door/airlock/engineering/glass{
name = "Laser Room";
- req_access_txt = "10";
- req_one_access_txt = "0"
+ req_access_txt = "10"
},
/obj/structure/cable{
d1 = 1;
@@ -89326,7 +84316,6 @@
"hyv" = (
/obj/structure/cable,
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
@@ -89503,8 +84492,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
@@ -89546,8 +84534,7 @@
"jve" = (
/obj/effect/decal/warning_stripes/east,
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4;
- level = 2
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/engine,
@@ -89570,8 +84557,7 @@
"jPN" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/computer/mob_battle_terminal/blue{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/turf/simulated/floor/plasteel,
/area/crew_quarters/dorms)
@@ -89604,7 +84590,6 @@
anchored = 1
},
/obj/structure/cable/yellow{
- d1 = 0;
d2 = 8;
icon_state = "0-8"
},
@@ -89627,8 +84612,7 @@
/area/engine/engineering)
"kcS" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- level = 1
+ dir = 9
},
/turf/simulated/wall/r_wall,
/area/engine/engineering)
@@ -89636,7 +84620,6 @@
/obj/structure/table/wood,
/obj/item/deck/cards,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/crew_quarters/dorms)
@@ -89660,14 +84643,13 @@
},
/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plating,
@@ -89680,8 +84662,7 @@
"kLx" = (
/obj/effect/spawner/window/reinforced/plasma,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plating,
/area/engine/engineering)
@@ -89709,15 +84690,13 @@
},
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/turf/simulated/floor/engine,
/area/engine/engineering)
"kNZ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/wall,
/area/crew_quarters/dorms)
@@ -89745,8 +84724,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/visible/red{
dir = 10
@@ -89789,7 +84767,6 @@
initialize_directions = 11
},
/obj/structure/cable/yellow{
- d1 = 0;
d2 = 8;
icon_state = "0-8"
},
@@ -89827,12 +84804,10 @@
"lLC" = (
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/obj/effect/decal/warning_stripes/yellow/partial{
- dir = 1;
- icon_state = "3"
+ dir = 1
},
/turf/simulated/floor/plasteel,
/area/atmos)
@@ -89886,8 +84861,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -89895,8 +84869,7 @@
/area/engine/engineering)
"mtr" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
+ dir = 5
},
/turf/simulated/wall/r_wall,
/area/engine/engineering)
@@ -89913,15 +84886,12 @@
/turf/simulated/floor/plasteel,
/area/crew_quarters/dorms)
"mAG" = (
-/obj/machinery/atmospherics/pipe/simple/visible/red{
- dir = 2
- },
+/obj/machinery/atmospherics/pipe/simple/visible/red,
/turf/simulated/floor/plating/airless,
/area/engine/engineering)
"mTX" = (
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4;
- level = 2
+ dir = 4
},
/turf/simulated/wall/r_wall,
/area/maintenance/storage)
@@ -89980,8 +84950,7 @@
"nCT" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6;
- level = 1
+ dir = 6
},
/obj/machinery/light{
dir = 8
@@ -89991,12 +84960,10 @@
"nFa" = (
/obj/effect/decal/warning_stripes/yellow,
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 4;
- level = 2
+ dir = 4
},
/obj/machinery/camera{
c_tag = "Engineering Supermatter Aft";
- dir = 2;
network = list("SS13","engine");
pixel_x = 23
},
@@ -90025,8 +84992,7 @@
"nPw" = (
/obj/effect/spawner/window/reinforced/plasma,
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4;
- level = 2
+ dir = 4
},
/turf/simulated/floor/plating,
/area/engine/engineering)
@@ -90043,7 +85009,6 @@
icon_state = "1-4"
},
/obj/machinery/atmospherics/binary/pump{
- dir = 2;
name = "Cooling Loop Bypass"
},
/turf/simulated/floor/engine,
@@ -90060,8 +85025,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/status_display{
layer = 4;
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/turf/simulated/floor/plasteel,
/area/crew_quarters/dorms)
@@ -90071,7 +85035,6 @@
"oyv" = (
/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/crew_quarters/dorms)
@@ -90094,6 +85057,13 @@
/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
/turf/simulated/wall/r_wall,
/area/tcommsat/chamber)
+"oQa" = (
+/obj/machinery/light,
+/turf/simulated/floor/plasteel{
+ dir = 0;
+ icon_state = "blue"
+ },
+/area/hallway/primary/starboard/west)
"oQe" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/hatch{
@@ -90104,20 +85074,17 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_y = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/tcommsat/chamber)
"oSI" = (
@@ -90174,7 +85141,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/effect/decal/cleanable/dirt,
@@ -90195,7 +85161,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel,
@@ -90240,8 +85205,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 4
@@ -90252,8 +85216,7 @@
/obj/effect/decal/warning_stripes/east,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/engine,
/area/engine/engineering)
@@ -90270,8 +85233,8 @@
/obj/item/clothing/gloves/color/black,
/obj/item/clothing/gloves/color/black,
/obj/item/clothing/gloves/color/black,
-/obj/item/pipe_painter,
-/obj/item/pipe_painter,
+/obj/item/painter,
+/obj/item/painter,
/obj/item/clothing/glasses/welding,
/obj/item/clothing/glasses/welding,
/turf/simulated/floor/plasteel,
@@ -90356,9 +85319,7 @@
/area/engine/engineering)
"rlX" = (
/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
- dir = 5;
- icon_state = "intact";
- tag = "icon-intact (NORTHEAST)"
+ dir = 5
},
/obj/structure/lattice,
/turf/space,
@@ -90378,8 +85339,7 @@
tag = ""
},
/obj/effect/decal/warning_stripes/yellow/partial{
- dir = 4;
- icon_state = "3"
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/atmos)
@@ -90414,8 +85374,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/turret_protected/aisat_interior)
"rWB" = (
@@ -90449,12 +85408,10 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 5;
- tag = "icon-intact-y (NORTHWEST)"
+ dir = 5
},
/obj/machinery/meter,
/turf/simulated/floor/engine,
@@ -90474,8 +85431,7 @@
/area/holodeck/alphadeck)
"sIy" = (
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4;
- level = 2
+ dir = 4
},
/obj/structure/lattice,
/turf/space,
@@ -90529,8 +85485,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/obj/machinery/light{
dir = 1
@@ -90568,7 +85523,6 @@
/area/engine/engineering)
"tPd" = (
/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
- frequency = 1379;
id_tag = "engineering_east_airlock";
pixel_x = -25;
req_access_txt = "10;13";
@@ -90578,7 +85532,6 @@
tag_interior_door = "engineering_east_inner"
},
/obj/machinery/airlock_sensor{
- frequency = 1379;
id_tag = "engineering_east_sensor";
pixel_x = -25;
pixel_y = 12
@@ -90636,9 +85589,7 @@
/area/engine/engineering)
"uDK" = (
/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
- dir = 5;
- icon_state = "intact";
- tag = "icon-intact (NORTHEAST)"
+ dir = 5
},
/turf/space,
/area/space/nearstation)
@@ -90717,7 +85668,6 @@
dir = 5
},
/obj/structure/cable/yellow{
- d1 = 0;
d2 = 8;
icon_state = "0-8"
},
@@ -90747,8 +85697,7 @@
/area/space/nearstation)
"vBs" = (
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 10;
- level = 2
+ dir = 10
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -90770,7 +85719,6 @@
dir = 1
},
/obj/item/radio/intercom{
- frequency = 1459;
name = "Station Intercom (General)";
pixel_y = -28
},
@@ -90817,8 +85765,7 @@
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 6
@@ -90838,7 +85785,6 @@
"wnU" = (
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/turf/simulated/floor/plasteel{
@@ -90849,8 +85795,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/obj/structure/cable/yellow{
d1 = 1;
@@ -90933,8 +85878,7 @@
/area/engine/engineering)
"xwz" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/wall/r_wall,
/area/engine/engineering)
@@ -90972,15 +85916,12 @@
"xVt" = (
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/crew_quarters/dorms)
"xWg" = (
/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
- dir = 6;
- icon_state = "intact";
- tag = "icon-intact (SOUTHEAST)"
+ dir = 6
},
/turf/space,
/area/space/nearstation)
@@ -90990,8 +85931,7 @@
/obj/machinery/camera{
c_tag = "Engineering Supermatter Starboard";
dir = 8;
- network = list("SS13","engine");
- pixel_x = 0
+ network = list("SS13","engine")
},
/turf/simulated/floor/engine,
/area/engine/engineering)
@@ -91009,8 +85949,7 @@
opacity = 0
},
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4;
- level = 2
+ dir = 4
},
/turf/simulated/floor/plating,
/area/maintenance/storage)
@@ -91021,8 +85960,7 @@
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4;
- level = 2
+ dir = 4
},
/turf/simulated/floor/engine,
/area/engine/engineering)
@@ -107829,7 +102767,7 @@ aGn
aHn
aLn
aGn
-aKe
+aLx
aLq
aMx
aNE
@@ -108086,7 +103024,7 @@ aHS
aHS
aHl
aHl
-aKe
+aLx
aLp
aGn
aNF
@@ -108343,7 +103281,7 @@ aEL
aEL
aHS
aHl
-aKe
+aLx
aGn
aGn
aNH
@@ -108600,7 +103538,7 @@ aGn
aGn
aGn
aGn
-aKe
+aLx
aHS
aHS
aHS
@@ -109887,7 +104825,7 @@ aGn
aGn
aGn
aHS
-aKe
+aLx
aGn
aPc
aGn
@@ -113776,7 +108714,7 @@ bzJ
byB
bAF
bDX
-bNO
+bOp
bDX
bSK
bPV
@@ -114579,7 +109517,7 @@ cDS
cvo
cEQ
cGi
-cqy
+cMV
cKb
cKf
cKf
@@ -115776,7 +110714,7 @@ afb
afo
afU
ago
-aib
+aie
ajp
aIo
aIo
@@ -116290,7 +111228,7 @@ afd
afq
aef
aqX
-aib
+aie
ajM
alc
anZ
@@ -116318,7 +111256,7 @@ aRM
aEl
aVD
aPi
-baf
+aPi
aSA
aSA
aSA
@@ -116386,7 +111324,7 @@ cJx
cNZ
cLd
cKb
-cOX
+cPj
cSU
cSU
cSU
@@ -116643,7 +111581,7 @@ cME
cMx
cLf
cKb
-cOX
+cPj
cSU
cUk
cVh
@@ -116838,7 +111776,7 @@ aRw
aRw
aRw
bml
-aSA
+aRw
aRw
aRw
djZ
@@ -116900,7 +111838,7 @@ cJx
cJx
cLn
cKb
-cOX
+cPj
cSU
cUj
cVi
@@ -117157,7 +112095,7 @@ cNG
cNG
cLf
cKb
-cOX
+cPj
cSU
dsI
pxP
@@ -117414,7 +112352,7 @@ cNG
cOG
cOE
cKb
-cOX
+cPj
cSU
dsH
dsP
@@ -117832,7 +112770,7 @@ afi
afv
aeg
aqX
-aib
+aie
ajR
alo
axL
@@ -117928,7 +112866,7 @@ cJx
cJx
cLD
cKb
-cOX
+cPj
cSU
dsK
cVj
@@ -118185,7 +113123,7 @@ cJx
cJx
cPv
cKb
-cOX
+cPj
cSU
dsL
cVj
@@ -118442,7 +113380,7 @@ cJx
cJx
cNG
cKb
-cOX
+cPj
cSU
dsK
cVj
@@ -119213,7 +114151,7 @@ cMG
cMG
cPL
cJZ
-cOX
+cPj
cRR
cUu
cRM
@@ -119631,7 +114569,7 @@ afl
apj
aqx
ago
-aiy
+ase
akd
alN
aop
@@ -119725,7 +114663,7 @@ cHJ
cHI
cHD
cHD
-cwL
+cMV
cJZ
cRR
cRR
@@ -120219,12 +115157,12 @@ ciN
cfn
clZ
cnA
-cqy
+cMV
crV
ctl
cue
cvK
-cwL
+cMV
crV
cnA
cHD
@@ -120437,11 +115375,11 @@ aDN
aDN
aDN
aDN
-dco
+aDN
bdw
bgW
bni
-bkC
+bkz
kwt
aYf
aYg
@@ -120470,8 +115408,8 @@ bFC
bFC
cex
cgj
-cfv
-che
+bGt
+chc
chc
chc
chc
@@ -120689,7 +115627,7 @@ avq
avq
aHp
aRx
-aUw
+bdN
aDN
biQ
bpQ
@@ -121211,8 +116149,8 @@ cUi
dhp
aDN
dkl
-bna
-bkz
+bkG
+bno
bma
boh
bpB
@@ -121725,8 +116663,8 @@ bez
dhq
aDN
dkn
-bno
-bkG
+bnn
+bkF
bmi
aaa
bmc
@@ -122496,7 +117434,7 @@ aRx
dhr
djf
dko
-bnp
+bnN
dnC
bmi
aaa
@@ -122787,7 +117725,7 @@ cjn
ckT
clS
cPd
-cos
+cPd
cPd
cqY
cmt
@@ -122980,7 +117918,7 @@ axt
ati
auT
awe
-axO
+axR
ayY
ayr
aAZ
@@ -124372,7 +119310,7 @@ dgg
dgP
dhC
dip
-diV
+djE
djB
dkk
dkO
@@ -124562,10 +119500,10 @@ bsN
aUS
bsN
aUS
-bzc
+aUS
bAg
bHr
-bAg
+bkC
bEp
bEp
bEp
@@ -125336,7 +120274,7 @@ aVG
aUS
cMK
bHy
-bAk
+bDa
bEp
aTV
bDf
@@ -125400,7 +120338,7 @@ dgt
dgP
dhF
dip
-diV
+djE
djB
dks
dkT
@@ -127653,7 +122591,7 @@ bDb
bEp
aVx
bDg
-bGt
+bNz
bJP
bEo
bEo
@@ -127906,7 +122844,7 @@ bdT
bdT
bAk
bHy
-bDb
+oQa
bNe
aVI
bDj
@@ -128136,7 +123074,7 @@ aFJ
aFJ
aOI
aQG
-aSO
+qFg
aVq
aVq
aZE
@@ -130504,7 +125442,7 @@ ckC
cxj
ckC
ciY
-cwZ
+czY
cqM
crE
cvX
@@ -132218,8 +127156,8 @@ aaa
alv
aab
alD
-amo
-amo
+axq
+axq
ann
aoK
apn
@@ -133362,9 +128300,9 @@ cOm
daJ
dbq
dep
-cac
-cac
-cac
+cBe
+cBe
+cBe
dcI
dcW
bGH
@@ -134588,7 +129526,7 @@ bau
bau
bFn
bHI
-bwv
+bzc
bEA
bEA
bIa
@@ -134825,7 +129763,7 @@ aGX
aUe
aGY
aGX
-aWy
+bbh
bau
bau
bch
@@ -135082,7 +130020,7 @@ aIE
aGY
aGY
aGX
-aWy
+bbh
bau
bav
bci
@@ -135339,7 +130277,7 @@ aGX
aMz
aMz
aQL
-aWy
+bbh
bau
bao
bcs
@@ -135596,7 +130534,7 @@ aKX
aIE
aUW
aUW
-aWy
+bbh
bau
bax
bcj
@@ -135853,7 +130791,7 @@ aUU
aIE
aGY
aGY
-aWy
+bbh
aGX
aGX
aGX
@@ -136170,15 +131108,15 @@ aaa
cBR
cKY
cEH
-cNo
+cPp
cEH
-cNo
+cPp
cEH
-cNo
+cPp
cEH
-cNo
+cPp
cEH
-cNo
+cPp
cXv
cMQ
cZs
@@ -136685,7 +131623,7 @@ cBR
cxN
cxN
cKx
-cNo
+cPp
cEH
cOo
cOP
@@ -136942,7 +131880,7 @@ cIO
cIB
cxN
cKt
-cNo
+cPp
cEH
cOn
cOO
@@ -137207,7 +132145,7 @@ cPK
cQs
cRt
cSf
-cNo
+cPp
cMQ
cZy
cJK
@@ -137721,7 +132659,7 @@ cSH
cQr
cVg
cSh
-cNo
+cPp
cNc
cxN
cxN
@@ -138235,7 +133173,7 @@ cSH
cQD
cxN
cWg
-cNo
+cPp
cMQ
cZB
cJK
@@ -139739,7 +134677,7 @@ cZp
cZT
bEG
cjT
-cac
+cBe
cba
ccM
cdP
@@ -141591,7 +136529,7 @@ cuQ
cuQ
cuQ
det
-cac
+cBe
dcm
deN
dfa
@@ -141817,36 +136755,36 @@ cyR
bGG
bGG
cBD
-cac
-cac
-cac
-cac
-cac
-cac
-cac
-cac
-cac
+cBe
+cBe
+cBe
+cBe
+cBe
+cBe
+cBe
+cBe
+cBe
cNR
-cac
-cac
+cBe
+cBe
cNR
-cac
-cac
-cac
-cac
-cac
-cac
+cBe
+cBe
+cBe
+cBe
+cBe
+cBe
dfU
-cac
-cac
-cac
-cac
-cac
-cac
+cBe
+cBe
+cBe
+cBe
+cBe
+cBe
dfU
-cac
-cac
-cac
+cBe
+cBe
+cBe
cjY
djr
deE
diff --git a/_maps/map_files/generic/Lavaland.dmm b/_maps/map_files/generic/Lavaland.dmm
index f69ecd1cce4..02e8c553456 100644
--- a/_maps/map_files/generic/Lavaland.dmm
+++ b/_maps/map_files/generic/Lavaland.dmm
@@ -26,9 +26,7 @@
/area/lavaland/surface/outdoors)
"af" = (
/obj/structure/necropolis_gate/legion_gate,
-/obj/structure/necropolis_arch{
- pixel_y = -40
- },
+/obj/structure/necropolis_arch,
/obj/structure/stone_tile/slab,
/turf/simulated/floor/indestructible/boss,
/area/lavaland/surface/outdoors)
@@ -78,8 +76,7 @@
/area/lavaland/surface/outdoors)
"ao" = (
/obj/machinery/computer/shuttle/labor/one_way{
- dir = 4;
- icon_state = "computer"
+ dir = 4
},
/obj/effect/decal/cleanable/cobweb,
/turf/simulated/floor/plasteel,
@@ -189,7 +186,6 @@
/area/lavaland/surface/outdoors/explored)
"aE" = (
/obj/item/radio/intercom/locked/prison{
- dir = 2;
pixel_y = 24
},
/obj/effect/decal/cleanable/dirt,
@@ -197,8 +193,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -238,7 +233,6 @@
"aK" = (
/obj/machinery/camera{
c_tag = "Labor Camp Infirmary";
- dir = 2;
network = list("Labor Camp")
},
/obj/effect/decal/cleanable/cobweb,
@@ -247,7 +241,6 @@
pixel_x = -23
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "barber"
},
/area/mine/laborcamp)
@@ -281,7 +274,6 @@
/obj/structure/table,
/obj/item/storage/firstaid/ancient,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "barber"
},
/area/mine/laborcamp)
@@ -297,7 +289,6 @@
/obj/item/stack/medical/bruise_pack/advanced,
/obj/item/stack/medical/bruise_pack/advanced,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "barber"
},
/area/mine/laborcamp)
@@ -354,7 +345,6 @@
name = "Door Bolt Control";
normaldoorcontrol = 1;
pixel_x = 24;
- pixel_y = 0;
specialfunctions = 4
},
/turf/simulated/floor/carpet,
@@ -366,14 +356,11 @@
/obj/machinery/door_control{
id = "Labor";
name = "Labor Camp Lockdown";
- pixel_x = 0;
pixel_y = 25;
req_access_txt = "2"
},
/obj/machinery/flasher_button{
id = "labor";
- pixel_w = 0;
- pixel_x = 0;
pixel_y = 34
},
/turf/simulated/floor/plasteel,
@@ -441,7 +428,6 @@
name = "Door Bolt Control";
normaldoorcontrol = 1;
pixel_x = 24;
- pixel_y = 0;
specialfunctions = 4
},
/turf/simulated/floor/carpet,
@@ -469,7 +455,6 @@
pixel_y = -32
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "brown"
},
/area/mine/laborcamp)
@@ -490,7 +475,6 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "browncorner"
},
/area/mine/laborcamp)
@@ -535,7 +519,6 @@
name = "Door Bolt Control";
normaldoorcontrol = 1;
pixel_x = 24;
- pixel_y = 0;
specialfunctions = 4
},
/turf/simulated/floor/carpet,
@@ -608,7 +591,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "brown"
},
/area/mine/laborcamp)
@@ -709,9 +691,7 @@
/obj/machinery/light_switch{
pixel_x = 27
},
-/obj/effect/turf_decal/tile/brown{
- dir = 2
- },
+/obj/effect/turf_decal/tile/brown,
/obj/effect/turf_decal/tile/brown{
dir = 4
},
@@ -780,8 +760,7 @@
"bO" = (
/obj/machinery/door/airlock/titanium{
id_tag = "s_docking_airlock";
- name = "Labor Shuttle Airlock";
- req_access_txt = "0"
+ name = "Labor Shuttle Airlock"
},
/obj/docking_port/mobile{
dir = 8;
@@ -831,9 +810,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 1
},
-/obj/effect/turf_decal/tile/brown{
- dir = 2
- },
+/obj/effect/turf_decal/tile/brown,
/obj/effect/turf_decal/tile/brown{
dir = 4
},
@@ -893,9 +870,7 @@
pixel_y = 25;
req_access_txt = null
},
-/obj/effect/turf_decal/tile/brown{
- dir = 2
- },
+/obj/effect/turf_decal/tile/brown,
/obj/effect/turf_decal/tile/brown{
dir = 4
},
@@ -911,14 +886,12 @@
},
/obj/effect/decal/cleanable/cobweb,
/obj/machinery/computer/prisoner{
- dir = 1;
- icon_state = "computer"
+ dir = 1
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 6
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkredcorners"
},
/area/mine/laborcamp)
@@ -937,7 +910,6 @@
pixel_y = 24
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkred"
},
/area/mine/laborcamp/security)
@@ -953,7 +925,6 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkred"
},
/area/mine/laborcamp/security)
@@ -973,7 +944,6 @@
name = "Prison Ofitser"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkred"
},
/area/mine/laborcamp/security)
@@ -1081,7 +1051,6 @@
/area/mine/production)
"co" = (
/obj/machinery/power/apc{
- dir = 2;
name = "Mining EVA APC";
pixel_x = 1;
pixel_y = -23
@@ -1098,9 +1067,7 @@
/turf/simulated/floor/plasteel,
/area/mine/eva)
"cq" = (
-/obj/effect/turf_decal/tile/brown{
- dir = 2
- },
+/obj/effect/turf_decal/tile/brown,
/obj/effect/turf_decal/tile/brown{
dir = 4
},
@@ -1149,9 +1116,7 @@
/obj/effect/turf_decal/tile/brown{
dir = 4
},
-/obj/effect/turf_decal/tile/brown{
- dir = 2
- },
+/obj/effect/turf_decal/tile/brown,
/obj/machinery/camera{
c_tag = "Shuttle Docking Foyer North";
dir = 8;
@@ -1187,7 +1152,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plating,
@@ -1238,9 +1202,7 @@
/obj/effect/turf_decal/tile/brown{
dir = 4
},
-/obj/effect/turf_decal/tile/brown{
- dir = 2
- },
+/obj/effect/turf_decal/tile/brown,
/turf/simulated/floor/plasteel,
/area/mine/production)
"cG" = (
@@ -1298,9 +1260,7 @@
/area/mine/living_quarters)
"cN" = (
/obj/machinery/mineral/equipment_vendor,
-/obj/effect/turf_decal/tile/brown{
- dir = 2
- },
+/obj/effect/turf_decal/tile/brown,
/obj/effect/turf_decal/tile/brown{
dir = 4
},
@@ -1589,9 +1549,7 @@
/obj/effect/turf_decal/tile/brown{
dir = 4
},
-/obj/effect/turf_decal/tile/brown{
- dir = 2
- },
+/obj/effect/turf_decal/tile/brown,
/obj/machinery/camera{
c_tag = "Shuttle Docking Foyer South";
dir = 8;
@@ -1645,9 +1603,7 @@
name = "Station Intercom (General)";
pixel_x = 28
},
-/obj/effect/turf_decal/tile/brown{
- dir = 2
- },
+/obj/effect/turf_decal/tile/brown,
/obj/effect/turf_decal/tile/brown{
dir = 4
},
@@ -1771,7 +1727,6 @@
/area/mine/production)
"dO" = (
/obj/machinery/conveyor{
- dir = 2;
id = "mining_internal"
},
/obj/effect/turf_decal/stripes/line{
@@ -1944,9 +1899,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/effect/turf_decal/tile/brown{
- dir = 2
- },
+/obj/effect/turf_decal/tile/brown,
/obj/effect/turf_decal/tile/brown{
dir = 4
},
@@ -1971,9 +1924,7 @@
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 8
},
-/obj/effect/turf_decal/tile/brown{
- dir = 2
- },
+/obj/effect/turf_decal/tile/brown,
/obj/effect/turf_decal/tile/brown{
dir = 4
},
@@ -1991,8 +1942,7 @@
/area/mine/production)
"em" = (
/obj/machinery/mineral/processing_unit{
- dir = 1;
- output_dir = 2
+ dir = 1
},
/obj/effect/turf_decal/stripes/line{
dir = 9
@@ -2106,9 +2056,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 6
},
-/obj/effect/turf_decal/tile/brown{
- dir = 2
- },
+/obj/effect/turf_decal/tile/brown,
/obj/effect/turf_decal/tile/brown{
dir = 4
},
@@ -2158,9 +2106,7 @@
/obj/structure/cable{
icon_state = "4-8"
},
-/obj/effect/turf_decal/tile/brown{
- dir = 2
- },
+/obj/effect/turf_decal/tile/brown,
/obj/effect/turf_decal/tile/brown{
dir = 4
},
@@ -2199,9 +2145,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/effect/turf_decal/tile/brown{
- dir = 2
- },
+/obj/effect/turf_decal/tile/brown,
/obj/effect/turf_decal/tile/brown{
dir = 4
},
@@ -2246,9 +2190,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 9
},
-/obj/effect/turf_decal/tile/brown{
- dir = 2
- },
+/obj/effect/turf_decal/tile/brown,
/obj/effect/turf_decal/tile/brown{
dir = 8
},
@@ -2292,9 +2234,7 @@
/obj/effect/turf_decal/tile/brown{
dir = 8
},
-/obj/effect/turf_decal/tile/brown{
- dir = 2
- },
+/obj/effect/turf_decal/tile/brown,
/turf/simulated/floor/plasteel,
/area/mine/living_quarters)
"eP" = (
@@ -2364,15 +2304,12 @@
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/turf/simulated/floor/plasteel,
/area/mine/laborcamp)
"eZ" = (
-/obj/effect/turf_decal/tile/brown{
- dir = 2
- },
+/obj/effect/turf_decal/tile/brown,
/obj/effect/turf_decal/tile/brown{
dir = 4
},
@@ -2408,9 +2345,7 @@
/obj/effect/turf_decal/tile/brown{
dir = 8
},
-/obj/effect/turf_decal/tile/brown{
- dir = 2
- },
+/obj/effect/turf_decal/tile/brown,
/obj/machinery/mech_bay_recharge_port,
/obj/structure/cable,
/turf/simulated/floor/plasteel,
@@ -2452,12 +2387,9 @@
/obj/effect/turf_decal/tile/brown{
dir = 8
},
-/obj/effect/turf_decal/tile/brown{
- dir = 2
- },
+/obj/effect/turf_decal/tile/brown,
/obj/machinery/computer/mech_bay_power_console{
- dir = 1;
- icon_state = "computer"
+ dir = 1
},
/turf/simulated/floor/plasteel,
/area/mine/production)
@@ -2555,7 +2487,6 @@
"fv" = (
/obj/machinery/camera{
c_tag = "Storage";
- dir = 2;
network = list("Mining Outpost")
},
/obj/structure/reagent_dispensers/watertank,
@@ -2569,9 +2500,7 @@
/obj/effect/turf_decal/tile/brown{
dir = 1
},
-/obj/effect/turf_decal/tile/brown{
- dir = 2
- },
+/obj/effect/turf_decal/tile/brown,
/turf/simulated/floor/plasteel,
/area/mine/living_quarters)
"fw" = (
@@ -2745,9 +2674,7 @@
/obj/effect/turf_decal/tile/brown{
dir = 1
},
-/obj/effect/turf_decal/tile/brown{
- dir = 2
- },
+/obj/effect/turf_decal/tile/brown,
/obj/structure/closet/secure_closet/miner,
/turf/simulated/floor/plasteel,
/area/mine/living_quarters)
@@ -2784,9 +2711,7 @@
/obj/effect/turf_decal/tile/brown{
dir = 8
},
-/obj/effect/turf_decal/tile/brown{
- dir = 2
- },
+/obj/effect/turf_decal/tile/brown,
/turf/simulated/floor/plasteel,
/area/mine/living_quarters)
"fQ" = (
@@ -2825,9 +2750,7 @@
/area/lavaland/surface/outdoors)
"fX" = (
/obj/structure/closet/secure_closet/miner,
-/obj/effect/turf_decal/tile/brown{
- dir = 2
- },
+/obj/effect/turf_decal/tile/brown,
/obj/effect/turf_decal/tile/brown{
dir = 4
},
@@ -3080,7 +3003,6 @@
"gu" = (
/obj/machinery/door/airlock/external{
id_tag = "laborcamp_away";
- locked = 0;
name = "Labor Camp Airlock";
req_access_txt = "2"
},
@@ -3116,7 +3038,6 @@
},
/obj/machinery/door/airlock/external{
id_tag = "laborcamp_away2";
- locked = 0;
name = "Labor Camp Airlock";
req_access_txt = null;
req_one_access_txt = null
@@ -3176,7 +3097,6 @@
/obj/effect/decal/cleanable/dirt,
/obj/machinery/door/airlock/external{
id_tag = "laborcamp_away2";
- locked = 0;
name = "Labor Camp Airlock";
req_access_txt = null;
req_one_access_txt = null
@@ -3266,7 +3186,6 @@
/obj/machinery/flasher_button{
id = "gulagshuttleflasher";
name = "Flash Control";
- pixel_x = 0;
pixel_y = -26;
req_access_txt = "1"
},
@@ -3284,8 +3203,7 @@
pixel_x = 25
},
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/structure/chair/comfy/shuttle{
dir = 8
@@ -3351,7 +3269,6 @@
"hQ" = (
/obj/machinery/door/airlock/external{
id_tag = "laborcamp_away";
- locked = 0;
name = "Labor Camp Airlock";
req_access_txt = null;
req_one_access_txt = null
@@ -3470,7 +3387,6 @@
pixel_y = -32
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "brown"
},
/area/mine/laborcamp)
@@ -4362,7 +4278,6 @@
/area/shuttle/siberia)
"pt" = (
/obj/machinery/mineral/labor_claim_console{
- machinedir = 2;
pixel_x = 30;
pixel_y = 30
},
@@ -4385,8 +4300,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -4421,8 +4335,7 @@
"rr" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/turf/simulated/floor/wood{
broken = 1;
@@ -4477,7 +4390,6 @@
dir = 1
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "barber"
},
/area/mine/laborcamp)
@@ -4526,7 +4438,6 @@
"tJ" = (
/obj/machinery/light/small,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "brown"
},
/area/mine/laborcamp)
@@ -4557,8 +4468,7 @@
dir = 8
},
/turf/simulated/floor/wood{
- icon_state = "wood-broken6";
- tag = "icon-wood-broken6"
+ icon_state = "wood-broken6"
},
/area/mine/laborcamp)
"ug" = (
@@ -4803,7 +4713,7 @@
/obj/effect/decal/cleanable/cobweb2,
/obj/structure/table,
/obj/effect/decal/cleanable/dirt,
-/obj/item/toy/figure/assistant,
+/obj/item/toy/figure/crew/assistant,
/obj/machinery/light/small{
dir = 4
},
@@ -4811,8 +4721,7 @@
dir = 8
},
/turf/simulated/floor/wood{
- icon_state = "wood-broken6";
- tag = "icon-wood-broken6"
+ icon_state = "wood-broken6"
},
/area/mine/laborcamp)
"DX" = (
@@ -4874,8 +4783,7 @@
/obj/item/bedsheet/orange,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/wood{
- icon_state = "wood-broken7";
- tag = "icon-wood-broken7"
+ icon_state = "wood-broken7"
},
/area/mine/laborcamp)
"FO" = (
@@ -4935,7 +4843,6 @@
"HA" = (
/obj/machinery/atmospherics/binary/pump/on,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "brown"
},
/area/mine/laborcamp)
@@ -4954,8 +4861,7 @@
dir = 8
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -5017,8 +4923,7 @@
network = list("Labor Camp")
},
/turf/simulated/floor/wood{
- icon_state = "wood-broken3";
- tag = "icon-wood-broken3"
+ icon_state = "wood-broken3"
},
/area/mine/laborcamp)
"JQ" = (
@@ -5074,8 +4979,7 @@
"KR" = (
/obj/machinery/mineral/labor_claim_console{
machinedir = 1;
- pixel_x = 30;
- pixel_y = 0
+ pixel_x = 30
},
/turf/simulated/floor/mineral/titanium,
/area/shuttle/siberia)
@@ -5099,8 +5003,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/light/small{
dir = 1
@@ -5151,8 +5054,7 @@
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/wood{
- icon_state = "wood-broken3";
- tag = "icon-wood-broken3"
+ icon_state = "wood-broken3"
},
/area/mine/laborcamp)
"NG" = (
@@ -5210,7 +5112,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/turf/simulated/floor/plasteel{
@@ -5374,8 +5275,7 @@
/area/mine/production)
"VJ" = (
/obj/machinery/computer/secure_data{
- dir = 1;
- icon_state = "computer"
+ dir = 1
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -5386,8 +5286,7 @@
/obj/structure/bed,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/wood{
- icon_state = "wood-broken7";
- tag = "icon-wood-broken7"
+ icon_state = "wood-broken7"
},
/area/mine/laborcamp)
"VO" = (
@@ -5418,8 +5317,7 @@
/obj/item/folder/red,
/obj/item/restraints/handcuffs,
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/turf/simulated/floor/mineral/plastitanium/red,
/area/shuttle/siberia)
@@ -5429,7 +5327,6 @@
dir = 5
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "brown"
},
/area/mine/laborcamp)
diff --git a/_maps/map_files/generic/centcomm.dmm b/_maps/map_files/generic/centcomm.dmm
index 9bb63d73f29..a4efbde1682 100644
--- a/_maps/map_files/generic/centcomm.dmm
+++ b/_maps/map_files/generic/centcomm.dmm
@@ -20,7 +20,7 @@
/turf/simulated/wall/indestructible/riveted,
/area/space)
"ag" = (
-/obj/item/toy/figure/syndie,
+/obj/item/toy/figure/crew/syndie,
/turf/simulated/floor/plating/asteroid/snow/airless,
/area/syndicate_mothership)
"ai" = (
@@ -34,8 +34,7 @@
/obj/item/clothing/under/dress/dress_saloon,
/obj/item/clothing/head/hairflower,
/turf/simulated/floor/holofloor{
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "cult"
},
/area/holodeck/source_theatre)
"ak" = (
@@ -48,8 +47,7 @@
/obj/effect/landmark/costume/random,
/obj/structure/rack/holorack,
/turf/simulated/floor/holofloor{
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "cult"
},
/area/holodeck/source_theatre)
"an" = (
@@ -65,8 +63,7 @@
/obj/structure/chair/stool/holostool,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/holofloor{
- icon_state = "asteroid";
- tag = "icon-asteroid"
+ icon_state = "asteroid"
},
/area/holodeck/source_picnicarea)
"ap" = (
@@ -82,8 +79,7 @@
"ar" = (
/turf/simulated/floor/holofloor{
icon = 'icons/turf/floors/plating.dmi';
- icon_state = "asteroid";
- tag = "icon-asteroid"
+ icon_state = "asteroid"
},
/area/holodeck/source_desert)
"as" = (
@@ -104,8 +100,7 @@
/obj/structure/table/holotable/wood,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/holofloor{
- icon_state = "asteroid";
- tag = "icon-asteroid"
+ icon_state = "asteroid"
},
/area/holodeck/source_picnicarea)
"ax" = (
@@ -166,8 +161,7 @@
/obj/structure/chair/stool/holostool,
/turf/simulated/floor/holofloor{
dir = 4;
- icon_state = "carpet7-3";
- tag = "icon-carpet7-3 (EAST)"
+ icon_state = "carpet7-3"
},
/area/holodeck/source_theatre)
"aI" = (
@@ -186,16 +180,14 @@
/obj/structure/flora/ausbushes/fullgrass,
/turf/simulated/floor/holofloor{
icon = 'icons/turf/floors/plating.dmi';
- icon_state = "asteroid";
- tag = "icon-asteroid"
+ icon_state = "asteroid"
},
/area/holodeck/source_desert)
"aM" = (
/obj/structure/chair/stool/holostool,
/turf/simulated/floor/holofloor{
dir = 4;
- icon_state = "carpet15-15";
- tag = "icon-carpet15-15 (EAST)"
+ icon_state = "carpet15-15"
},
/area/holodeck/source_theatre)
"aN" = (
@@ -203,8 +195,7 @@
/area/space)
"aO" = (
/turf/simulated/floor/holofloor{
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "cult"
},
/area/holodeck/source_theatre)
"aP" = (
@@ -239,16 +230,14 @@
/obj/structure/chair/stool/holostool,
/turf/simulated/floor/holofloor{
dir = 4;
- icon_state = "carpet11-12";
- tag = "icon-carpet11-12 (EAST)"
+ icon_state = "carpet11-12"
},
/area/holodeck/source_theatre)
"aV" = (
/obj/structure/chair/stool/holostool,
/turf/simulated/floor/holofloor{
dir = 4;
- icon_state = "carpet5-1";
- tag = "icon-carpet5-1 (EAST)"
+ icon_state = "carpet5-1"
},
/area/holodeck/source_theatre)
"aW" = (
@@ -261,53 +250,46 @@
/obj/structure/flora/ausbushes/sparsegrass,
/turf/simulated/floor/holofloor{
icon = 'icons/turf/floors/plating.dmi';
- icon_state = "asteroid";
- tag = "icon-asteroid"
+ icon_state = "asteroid"
},
/area/holodeck/source_desert)
"aY" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/holofloor{
- icon_state = "asteroid";
- tag = "icon-asteroid"
+ icon_state = "asteroid"
},
/area/holodeck/source_picnicarea)
"aZ" = (
/obj/structure/chair/stool/holostool,
/turf/simulated/floor/holofloor{
dir = 4;
- icon_state = "carpet13-5";
- tag = "icon-carpet13-5 (EAST)"
+ icon_state = "carpet13-5"
},
/area/holodeck/source_theatre)
"ba" = (
/obj/structure/chair/stool/holostool,
/turf/simulated/floor/holofloor{
dir = 4;
- icon_state = "carpet9-4";
- tag = "icon-carpet9-4 (EAST)"
+ icon_state = "carpet9-4"
},
/area/holodeck/source_theatre)
"bb" = (
/obj/structure/table/holotable/wood,
/turf/simulated/floor/holofloor{
- icon_state = "grimy";
- tag = "icon-grimy"
+ icon_state = "grimy"
},
/area/holodeck/source_meetinghall)
"bc" = (
/obj/structure/chair/stool/holostool,
/turf/simulated/floor/holofloor{
dir = 4;
- icon_state = "carpet6-0";
- tag = "icon-carpet6-0 (EAST)"
+ icon_state = "carpet6-0"
},
/area/holodeck/source_meetinghall)
"bd" = (
/turf/simulated/floor/holofloor{
icon = 'icons/turf/floors/plating.dmi';
- icon_state = "asteroid7";
- tag = "icon-asteroid7"
+ icon_state = "asteroid7"
},
/area/holodeck/source_desert)
"be" = (
@@ -318,16 +300,14 @@
/obj/structure/chair/stool/holostool,
/turf/simulated/floor/holofloor{
dir = 4;
- icon_state = "carpet14-0";
- tag = "icon-carpet14-0 (EAST)"
+ icon_state = "carpet14-0"
},
/area/holodeck/source_meetinghall)
"bg" = (
/obj/structure/chair/stool/holostool,
/turf/simulated/floor/holofloor{
dir = 4;
- icon_state = "carpet10-0";
- tag = "icon-carpet10-0 (EAST)"
+ icon_state = "carpet10-0"
},
/area/holodeck/source_meetinghall)
"bh" = (
@@ -342,8 +322,7 @@
/obj/structure/chair/stool/holostool,
/turf/simulated/floor/holofloor{
dir = 4;
- icon_state = "carpet7-0";
- tag = "icon-carpet7-0 (EAST)"
+ icon_state = "carpet7-0"
},
/area/holodeck/source_meetinghall)
"bk" = (
@@ -359,53 +338,46 @@
/obj/structure/chair/stool/holostool,
/turf/simulated/floor/holofloor{
dir = 4;
- icon_state = "carpet15-0";
- tag = "icon-carpet15-0 (EAST)"
+ icon_state = "carpet15-0"
},
/area/holodeck/source_meetinghall)
"bn" = (
/turf/simulated/floor/holofloor{
dir = 4;
- icon_state = "carpet6-2";
- tag = "icon-carpet6-2 (EAST)"
+ icon_state = "carpet6-2"
},
/area/holodeck/source_theatre)
"bo" = (
/turf/simulated/floor/holofloor{
dir = 4;
- icon_state = "wood";
- tag = "icon-wood (EAST)"
+ icon_state = "wood"
},
/area/holodeck/source_theatre)
"bp" = (
/obj/structure/chair/stool/holostool,
/turf/simulated/floor/holofloor{
dir = 4;
- icon_state = "carpet11-0";
- tag = "icon-carpet11-0 (EAST)"
+ icon_state = "carpet11-0"
},
/area/holodeck/source_meetinghall)
"bq" = (
/turf/simulated/floor/holofloor{
dir = 4;
- icon_state = "carpet14-10";
- tag = "icon-carpet14-10 (EAST)"
+ icon_state = "carpet14-10"
},
/area/holodeck/source_theatre)
"br" = (
/obj/structure/chair/stool/holostool,
/turf/simulated/floor/holofloor{
dir = 4;
- icon_state = "carpet5-0";
- tag = "icon-carpet5-0 (EAST)"
+ icon_state = "carpet5-0"
},
/area/holodeck/source_meetinghall)
"bs" = (
/obj/structure/chair/stool/holostool,
/turf/simulated/floor/holofloor{
dir = 4;
- icon_state = "carpet13-0";
- tag = "icon-carpet13-0 (EAST)"
+ icon_state = "carpet13-0"
},
/area/holodeck/source_meetinghall)
"bt" = (
@@ -422,8 +394,7 @@
/obj/structure/chair/stool/holostool,
/turf/simulated/floor/holofloor{
dir = 4;
- icon_state = "carpet9-0";
- tag = "icon-carpet9-0 (EAST)"
+ icon_state = "carpet9-0"
},
/area/holodeck/source_meetinghall)
"bz" = (
@@ -551,14 +522,12 @@
/area/space)
"cl" = (
/turf/simulated/floor/holofloor{
- icon_state = "snow";
- tag = "icon-snow"
+ icon_state = "snow"
},
/area/holodeck/source_snowfield)
"cm" = (
/turf/simulated/floor/holofloor{
- icon_state = "grimy";
- tag = "icon-grimy"
+ icon_state = "grimy"
},
/area/holodeck/source_meetinghall)
"cn" = (
@@ -640,16 +609,14 @@
"cA" = (
/obj/structure/flora/grass/both,
/turf/simulated/floor/holofloor{
- icon_state = "snow";
- tag = "icon-snow"
+ icon_state = "snow"
},
/area/holodeck/source_snowfield)
"cB" = (
/turf/simulated/floor/holofloor{
dir = 4;
icon = 'icons/turf/floors/plating.dmi';
- icon_state = "asteroid3";
- tag = "icon-asteroid3 (EAST)"
+ icon_state = "asteroid3"
},
/area/holodeck/source_desert)
"cC" = (
@@ -663,8 +630,7 @@
"cD" = (
/turf/simulated/floor/holofloor{
dir = 6;
- icon_state = "carpetsymbol";
- tag = "icon-carpetsymbol (SOUTHEAST)"
+ icon_state = "carpetsymbol"
},
/area/holodeck/source_meetinghall)
"cE" = (
@@ -720,14 +686,12 @@
"cO" = (
/obj/structure/flora/tree/pine,
/turf/simulated/floor/holofloor{
- icon_state = "snow";
- tag = "icon-snow"
+ icon_state = "snow"
},
/area/holodeck/source_snowfield)
"cP" = (
/turf/simulated/floor/plasteel{
- icon_state = "whiteblue";
- tag = "icon-whiteblue"
+ icon_state = "whiteblue"
},
/area/shuttle/escape)
"cQ" = (
@@ -747,8 +711,7 @@
/area/ninja/outpost)
"cW" = (
/obj/machinery/light/spot{
- dir = 1;
- tag = "icon-tube1 (NORTH)"
+ dir = 1
},
/turf/simulated/floor/plasteel/dark,
/area/ninja/outpost)
@@ -756,8 +719,7 @@
/obj/structure/table,
/obj/machinery/kitchen_machine/microwave/upgraded,
/obj/machinery/light/spot{
- dir = 1;
- tag = "icon-tube1 (NORTH)"
+ dir = 1
},
/turf/simulated/floor/plasteel/freezer,
/area/ninja/holding)
@@ -815,8 +777,7 @@
/obj/structure/rack,
/obj/item/camera,
/obj/machinery/light/spot{
- dir = 1;
- tag = "icon-tube1 (NORTH)"
+ dir = 1
},
/turf/simulated/floor/plasteel{
icon_state = "cafeteria"
@@ -836,8 +797,7 @@
/area/ninja/holding)
"di" = (
/obj/machinery/light/spot{
- dir = 1;
- tag = "icon-tube1 (NORTH)"
+ dir = 1
},
/turf/simulated/floor/beach/away/sand,
/area/ninja/holding)
@@ -850,8 +810,7 @@
"dk" = (
/obj/structure/flora/grass/green,
/turf/simulated/floor/holofloor{
- icon_state = "snow";
- tag = "icon-snow"
+ icon_state = "snow"
},
/area/holodeck/source_snowfield)
"do" = (
@@ -920,8 +879,7 @@
"dA" = (
/obj/structure/flora/tree/dead,
/turf/simulated/floor/holofloor{
- icon_state = "snow";
- tag = "icon-snow"
+ icon_state = "snow"
},
/area/holodeck/source_snowfield)
"dE" = (
@@ -1005,8 +963,7 @@
/area/ninja/outpost)
"dQ" = (
/obj/machinery/light/spot{
- dir = 1;
- tag = "icon-tube1 (NORTH)"
+ dir = 1
},
/turf/simulated/floor/plasteel/grimy,
/area/ninja/outpost)
@@ -1216,8 +1173,7 @@
/area/shuttle/escape)
"eG" = (
/obj/structure/shuttle/engine/propulsion{
- dir = 1;
- tag = "icon-propulsion (NORTH)"
+ dir = 1
},
/turf/simulated/floor/plating/airless,
/area/shuttle/syndicate_elite)
@@ -1295,8 +1251,7 @@
/area/ninja/holding)
"eT" = (
/obj/machinery/light/spot{
- dir = 1;
- tag = "icon-tube1 (NORTH)"
+ dir = 1
},
/obj/machinery/computer/syndicate_depot/teleporter,
/turf/simulated/floor/plasteel/dark,
@@ -1369,8 +1324,7 @@
name = "Holding Facility"
},
/obj/machinery/light/spot{
- dir = 8;
- tag = "icon-tube1 (WEST)"
+ dir = 8
},
/turf/simulated/floor/engine,
/area/ninja/holding)
@@ -1471,8 +1425,7 @@
"fq" = (
/obj/machinery/vending/magivend,
/obj/machinery/light/spot{
- dir = 1;
- tag = "icon-tube1 (NORTH)"
+ dir = 1
},
/turf/simulated/floor/engine/cult,
/area/wizard_station)
@@ -1671,8 +1624,7 @@
/area/shuttle/gamma/space)
"fW" = (
/obj/machinery/light/spot{
- dir = 8;
- tag = "icon-tube1 (WEST)"
+ dir = 8
},
/turf/simulated/floor/engine/cult,
/area/wizard_station)
@@ -1692,15 +1644,13 @@
/area/trader_station/sol)
"ga" = (
/obj/machinery/light/spot{
- dir = 8;
- tag = "icon-tube1 (WEST)"
+ dir = 8
},
/turf/simulated/floor/plasteel/dark,
/area/syndicate_mothership)
"gb" = (
/obj/machinery/light/spot{
- dir = 4;
- tag = "icon-tube1 (EAST)"
+ dir = 4
},
/turf/simulated/floor/plasteel/dark,
/area/syndicate_mothership)
@@ -1725,8 +1675,7 @@
/area/ninja/holding)
"gg" = (
/obj/machinery/light/spot{
- dir = 1;
- tag = "icon-tube1 (NORTH)"
+ dir = 1
},
/turf/simulated/floor/plasteel/dark,
/area/syndicate_mothership)
@@ -2111,8 +2060,7 @@
/area/syndicate_mothership)
"hY" = (
/obj/structure/shuttle/engine/propulsion{
- icon_state = "propulsion_l";
- tag = "icon-propulsion_l"
+ icon_state = "propulsion_l"
},
/turf/simulated/floor/plating/airless,
/area/shuttle/syndicate)
@@ -2144,8 +2092,7 @@
/obj/machinery/iv_drip,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (EAST)"
+ icon_state = "whiteblue"
},
/area/shuttle/escape)
"ih" = (
@@ -2500,8 +2447,7 @@
/area/tdome/arena_source)
"jq" = (
/obj/machinery/light/spot{
- dir = 4;
- tag = "icon-tube1 (EAST)"
+ dir = 4
},
/obj/structure/closet/syndicate/sst,
/turf/simulated/floor/plasteel/dark,
@@ -2522,8 +2468,7 @@
/area/syndicate_mothership)
"jt" = (
/obj/machinery/light/small{
- dir = 4;
- tag = "icon-bulb1 (EAST)"
+ dir = 4
},
/obj/structure/chair/comfy/shuttle{
dir = 8
@@ -2540,8 +2485,7 @@
/area/syndicate_mothership)
"jw" = (
/obj/machinery/light/small{
- dir = 8;
- tag = "icon-bulb1 (WEST)"
+ dir = 8
},
/obj/structure/chair/comfy/shuttle{
dir = 4
@@ -2641,8 +2585,7 @@
req_access_txt = "150"
},
/obj/machinery/light/spot{
- dir = 1;
- tag = "icon-tube1 (NORTH)"
+ dir = 1
},
/turf/simulated/floor/mineral/plastitanium/red,
/area/shuttle/syndicate)
@@ -2797,8 +2740,7 @@
/area/syndicate_mothership)
"kp" = (
/obj/machinery/light/spot{
- dir = 1;
- tag = "icon-tube1 (NORTH)"
+ dir = 1
},
/obj/machinery/sleeper/syndie{
dir = 2
@@ -2892,8 +2834,7 @@
/obj/structure/table,
/obj/item/storage/fancy/crayons,
/obj/machinery/light/spot{
- dir = 1;
- tag = "icon-tube1 (NORTH)"
+ dir = 1
},
/turf/simulated/floor/plasteel/dark,
/area/syndicate_mothership)
@@ -2967,8 +2908,7 @@
"kX" = (
/obj/structure/closet/secure_closet/personal,
/obj/machinery/light/spot{
- dir = 4;
- tag = "icon-tube1 (EAST)"
+ dir = 4
},
/turf/simulated/floor/carpet,
/area/centcom/control)
@@ -3091,8 +3031,7 @@
"lq" = (
/obj/structure/reagent_dispensers/beerkeg,
/obj/machinery/light/spot{
- dir = 1;
- tag = "icon-tube1 (NORTH)"
+ dir = 1
},
/turf/simulated/floor/plasteel{
icon_state = "cafeteria"
@@ -3112,8 +3051,7 @@
/area/centcom/control)
"lv" = (
/obj/machinery/light/spot{
- dir = 1;
- tag = "icon-tube1 (NORTH)"
+ dir = 1
},
/turf/simulated/floor/plasteel/freezer,
/area/centcom/control)
@@ -3171,8 +3109,7 @@
"lG" = (
/obj/structure/chair/stool,
/obj/machinery/light/spot{
- dir = 4;
- tag = "icon-tube1 (EAST)"
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "redyellowfull"
@@ -3367,8 +3304,7 @@
"ml" = (
/obj/structure/table,
/obj/machinery/light/spot{
- dir = 4;
- tag = "icon-tube1 (EAST)"
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "cafeteria"
@@ -3572,8 +3508,7 @@
"mR" = (
/obj/machinery/sleeper/upgraded,
/obj/machinery/light/spot{
- dir = 4;
- tag = "icon-tube1 (EAST)"
+ dir = 4
},
/turf/simulated/floor/carpet,
/area/centcom/control)
@@ -3709,8 +3644,7 @@
/obj/structure/table,
/obj/item/card/id/centcom,
/obj/machinery/light/spot{
- dir = 4;
- tag = "icon-tube1 (EAST)"
+ dir = 4
},
/obj/item/door_remote/centcomm,
/turf/simulated/floor/wood,
@@ -4083,8 +4017,7 @@
pixel_y = 32
},
/obj/machinery/light/spot{
- dir = 8;
- tag = "icon-tube1 (WEST)"
+ dir = 8
},
/turf/simulated/floor/mineral/plastitanium/red,
/area/shuttle/gamma/space)
@@ -4094,8 +4027,7 @@
/obj/item/gun/energy/sniperrifle,
/obj/item/gun/energy/sniperrifle,
/obj/machinery/light/spot{
- dir = 4;
- tag = "icon-tube1 (EAST)"
+ dir = 4
},
/obj/machinery/ai_status_display{
pixel_y = 32
@@ -4721,8 +4653,7 @@
"qC" = (
/obj/machinery/shower{
dir = 4;
- pixel_x = 5;
- tag = "icon-shower (EAST)"
+ pixel_x = 5
},
/obj/structure/curtain/open/shower/centcom,
/turf/simulated/floor/plasteel/freezer,
@@ -4730,8 +4661,7 @@
"qD" = (
/obj/machinery/shower{
dir = 8;
- pixel_x = -5;
- tag = "icon-shower (WEST)"
+ pixel_x = -5
},
/obj/structure/curtain/open/shower/centcom,
/turf/simulated/floor/plasteel/freezer,
@@ -5064,8 +4994,7 @@
/area/centcom/evac)
"rJ" = (
/obj/structure/shuttle/engine/propulsion{
- dir = 1;
- tag = "icon-propulsion (NORTH)"
+ dir = 1
},
/turf/simulated/floor/plating/airless,
/area/centcom/evac)
@@ -5075,16 +5004,14 @@
"rL" = (
/obj/structure/shuttle/engine/propulsion{
dir = 1;
- icon_state = "propulsion_r";
- tag = "icon-propulsion_r (NORTH)"
+ icon_state = "propulsion_r"
},
/turf/simulated/floor/plating/airless,
/area/centcom/evac)
"rN" = (
/obj/structure/shuttle/engine/propulsion{
dir = 1;
- icon_state = "propulsion_l";
- tag = "icon-propulsion_l (NORTH)"
+ icon_state = "propulsion_l"
},
/turf/simulated/floor/plating/airless,
/area/centcom/evac)
@@ -5111,8 +5038,7 @@
"rR" = (
/obj/structure/window/reinforced,
/obj/structure/shuttle/engine/heater{
- dir = 1;
- tag = "icon-heater (NORTH)"
+ dir = 1
},
/turf/simulated/floor/plating/airless,
/area/centcom/evac)
@@ -5265,8 +5191,7 @@
"sy" = (
/obj/machinery/computer/secure_data,
/obj/machinery/light/spot{
- dir = 8;
- tag = "icon-tube1 (WEST)"
+ dir = 8
},
/turf/simulated/floor/mineral/plastitanium/red,
/area/centcom/evac)
@@ -5487,23 +5412,20 @@
/obj/machinery/atmospherics/unary/cryo_cell,
/turf/simulated/floor/plasteel{
dir = 9;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTHWEST)"
+ icon_state = "whiteblue"
},
/area/centcom/evac)
"tf" = (
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
+ icon_state = "whiteblue"
},
/area/centcom/evac)
"tg" = (
/obj/machinery/atmospherics/unary/cryo_cell,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
+ icon_state = "whiteblue"
},
/area/centcom/evac)
"th" = (
@@ -5518,8 +5440,7 @@
"tj" = (
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTHEAST)"
+ icon_state = "whiteblue"
},
/area/centcom/evac)
"tk" = (
@@ -5551,8 +5472,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (WEST)"
+ icon_state = "whiteblue"
},
/area/centcom/evac)
"tp" = (
@@ -5564,8 +5484,7 @@
"tq" = (
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (EAST)"
+ icon_state = "whiteblue"
},
/area/centcom/evac)
"ts" = (
@@ -5611,8 +5530,7 @@
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (EAST)"
+ icon_state = "whiteblue"
},
/area/centcom/evac)
"tw" = (
@@ -5625,8 +5543,7 @@
},
/turf/simulated/floor/plasteel{
dir = 10;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (SOUTHWEST)"
+ icon_state = "whiteblue"
},
/area/centcom/evac)
"tx" = (
@@ -5634,8 +5551,7 @@
/obj/item/reagent_containers/glass/beaker/cryoxadone,
/obj/item/reagent_containers/glass/beaker/cryoxadone,
/turf/simulated/floor/plasteel{
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whiteblue"
},
/area/centcom/evac)
"ty" = (
@@ -5647,8 +5563,7 @@
name = "Canister: \[O2] (CRYO)"
},
/turf/simulated/floor/plasteel{
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whiteblue"
},
/area/centcom/evac)
"tz" = (
@@ -5657,8 +5572,7 @@
},
/turf/simulated/floor/plasteel{
dir = 6;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (SOUTHEAST)"
+ icon_state = "whiteblue"
},
/area/centcom/evac)
"tA" = (
@@ -5669,8 +5583,7 @@
/obj/item/storage/firstaid/adv,
/obj/item/storage/firstaid/brute,
/turf/simulated/floor/plasteel{
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whiteblue"
},
/area/centcom/evac)
"tB" = (
@@ -7906,8 +7819,7 @@
"Ax" = (
/obj/structure/window/reinforced,
/obj/structure/shuttle/engine/heater{
- dir = 1;
- tag = "icon-heater (NORTH)"
+ dir = 1
},
/turf/simulated/floor/plating/airless,
/area/shuttle/syndicate_elite)
@@ -8070,8 +7982,7 @@
/area/syndicate_mothership)
"AY" = (
/obj/machinery/light/spot{
- dir = 8;
- tag = "icon-tube1 (WEST)"
+ dir = 8
},
/obj/machinery/pdapainter,
/turf/simulated/floor/plasteel/dark,
@@ -8079,8 +7990,7 @@
"AZ" = (
/obj/structure/table,
/obj/machinery/light/spot{
- dir = 4;
- tag = "icon-tube1 (EAST)"
+ dir = 4
},
/obj/item/storage/backpack/satchel,
/obj/item/storage/backpack/satchel,
@@ -8088,8 +7998,7 @@
/area/syndicate_mothership)
"Ba" = (
/obj/machinery/light/spot{
- dir = 8;
- tag = "icon-tube1 (WEST)"
+ dir = 8
},
/obj/machinery/vending/tool,
/turf/simulated/floor/plasteel/dark,
@@ -8690,8 +8599,7 @@
"DI" = (
/obj/structure/shuttle/engine/propulsion{
dir = 8;
- icon_state = "propulsion_r";
- tag = "icon-propulsion_r (EAST)"
+ icon_state = "propulsion_r"
},
/turf/simulated/floor/plating/airless,
/area/shuttle/administration)
@@ -8704,8 +8612,7 @@
/area/shuttle/supply)
"DP" = (
/obj/machinery/light/spot{
- dir = 1;
- tag = "icon-tube1 (NORTH)"
+ dir = 1
},
/obj/effect/spawner/lootdrop/trade_sol/donksoft,
/obj/structure/closet,
@@ -8738,8 +8645,7 @@
},
/turf/simulated/floor/plasteel{
dir = 6;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (SOUTHEAST)"
+ icon_state = "whiteblue"
},
/area/shuttle/escape)
"Ed" = (
@@ -8778,30 +8684,26 @@
/area/shuttle/syndicate)
"Et" = (
/obj/structure/shuttle/engine/propulsion{
- icon_state = "propulsion_r";
- tag = "icon-propulsion_r"
+ icon_state = "propulsion_r"
},
/turf/simulated/floor/plating/airless,
/area/shuttle/syndicate)
"Ew" = (
/turf/simulated/floor/holofloor{
dir = 4;
- icon_state = "carpet2-0";
- tag = "icon-carpet2-0 (EAST)"
+ icon_state = "carpet2-0"
},
/area/holodeck/source_theatre)
"Ex" = (
/obj/structure/shuttle/engine/propulsion{
- icon_state = "burst_r";
- tag = "icon-burst_r"
+ icon_state = "burst_r"
},
/turf/simulated/floor/plating/airless,
/area/shuttle/supply)
"Ez" = (
/turf/simulated/floor/holofloor{
dir = 4;
- icon_state = "carpet8-0";
- tag = "icon-carpet8-0 (EAST)"
+ icon_state = "carpet8-0"
},
/area/holodeck/source_meetinghall)
"EA" = (
@@ -8833,8 +8735,7 @@
"EF" = (
/obj/structure/shuttle/engine/propulsion{
dir = 1;
- icon_state = "propulsion_r";
- tag = "icon-propulsion_r (NORTH)"
+ icon_state = "propulsion_r"
},
/turf/simulated/floor/plating/airless,
/area/shuttle/syndicate_sit)
@@ -9078,8 +8979,7 @@
/obj/machinery/cell_charger,
/obj/item/stock_parts/cell/high,
/obj/machinery/light/small{
- dir = 8;
- tag = "icon-bulb1 (WEST)"
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -9099,8 +8999,7 @@
/area/holodeck/source_thunderdomecourt)
"FG" = (
/obj/machinery/light/spot{
- dir = 1;
- tag = "icon-tube1 (NORTH)"
+ dir = 1
},
/turf/simulated/floor/mineral/titanium/blue,
/area/shuttle/supply)
@@ -9174,8 +9073,7 @@
/turf/simulated/floor/holofloor{
dir = 4;
icon = 'icons/turf/floors/plating.dmi';
- icon_state = "asteroid11";
- tag = "icon-asteroid11 (EAST)"
+ icon_state = "asteroid11"
},
/area/holodeck/source_desert)
"Gi" = (
@@ -9333,8 +9231,7 @@
/area/shuttle/syndicate)
"Hp" = (
/turf/simulated/floor/holofloor{
- icon_state = "rampbottom";
- tag = "icon-rampbottom"
+ icon_state = "rampbottom"
},
/area/holodeck/source_theatre)
"Hq" = (
@@ -9406,15 +9303,14 @@
/area/shuttle/syndicate)
"HN" = (
/obj/machinery/light/spot{
- dir = 1;
- tag = "icon-tube1 (NORTH)"
+ dir = 1
},
/turf/simulated/floor/plasteel/dark,
/area/syndicate_mothership/jail)
"HP" = (
/obj/machinery/door/airlock/security/glass{
name = "Escape Shuttle Cell";
- req_access_txt = "2"
+ req_access_txt = "63"
},
/turf/simulated/floor/mineral/plastitanium/red/brig,
/area/shuttle/escape)
@@ -9543,8 +9439,7 @@
dir = 1
},
/turf/simulated/floor/holofloor{
- icon_state = "asteroid7";
- tag = "icon-asteroid7"
+ icon_state = "asteroid7"
},
/area/holodeck/source_knightarena)
"IF" = (
@@ -9564,8 +9459,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTHEAST)"
+ icon_state = "whiteblue"
},
/area/shuttle/escape)
"II" = (
@@ -9612,8 +9506,7 @@
"IR" = (
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "browncorner";
- tag = "icon-browncorner (EAST)"
+ icon_state = "browncorner"
},
/area/shuttle/escape)
"IS" = (
@@ -9622,8 +9515,7 @@
"IU" = (
/turf/simulated/floor/holofloor{
dir = 4;
- icon_state = "carpet10-8";
- tag = "icon-carpet10-8 (EAST)"
+ icon_state = "carpet10-8"
},
/area/holodeck/source_theatre)
"IV" = (
@@ -9675,8 +9567,7 @@
/area/shuttle/supply)
"Jn" = (
/obj/machinery/light/spot{
- dir = 8;
- tag = "icon-tube1 (WEST)"
+ dir = 8
},
/turf/simulated/floor/mineral/plastitanium/red,
/area/shuttle/administration)
@@ -9878,8 +9769,7 @@
/area/shuttle/administration)
"KM" = (
/obj/machinery/light/spot{
- dir = 8;
- tag = "icon-tube1 (WEST)"
+ dir = 8
},
/obj/structure/chair/comfy/shuttle{
dir = 4
@@ -9892,8 +9782,7 @@
pixel_y = 32
},
/obj/machinery/light/spot{
- dir = 1;
- tag = "icon-tube1 (NORTH)"
+ dir = 1
},
/obj/structure/chair/comfy/shuttle,
/turf/simulated/floor/mineral/plastitanium/red,
@@ -9966,21 +9855,18 @@
/turf/simulated/floor/holofloor{
dir = 4;
icon = 'icons/turf/floors/plating.dmi';
- icon_state = "asteroid8";
- tag = "icon-asteroid8 (EAST)"
+ icon_state = "asteroid8"
},
/area/holodeck/source_desert)
"Li" = (
/obj/machinery/light/spot{
- dir = 4;
- tag = "icon-tube1 (EAST)"
+ dir = 4
},
/turf/simulated/floor/mineral/plastitanium/red,
/area/shuttle/administration)
"Lj" = (
/obj/machinery/light/spot{
- dir = 8;
- tag = "icon-tube1 (WEST)"
+ dir = 8
},
/turf/simulated/floor/mineral/plastitanium/red,
/area/shuttle/syndicate)
@@ -10016,8 +9902,7 @@
/obj/item/reagent_containers/iv_bag/blood/random,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (EAST)"
+ icon_state = "whiteblue"
},
/area/shuttle/escape)
"Lt" = (
@@ -10026,8 +9911,7 @@
"Lx" = (
/obj/structure/shuttle/engine/propulsion{
dir = 1;
- icon_state = "propulsion_r";
- tag = "icon-propulsion_r (NORTH)"
+ icon_state = "propulsion_r"
},
/turf/simulated/floor/plating/airless,
/area/shuttle/syndicate_elite)
@@ -10044,8 +9928,7 @@
/obj/structure/table,
/obj/item/storage/box/handcuffs,
/obj/machinery/light/spot{
- dir = 8;
- tag = "icon-tube1 (WEST)"
+ dir = 8
},
/turf/simulated/floor/mineral/plastitanium/red,
/area/shuttle/administration)
@@ -10063,8 +9946,7 @@
"LG" = (
/turf/simulated/floor/holofloor{
dir = 4;
- icon_state = "carpet1-0";
- tag = "icon-carpet1-0 (EAST)"
+ icon_state = "carpet1-0"
},
/area/holodeck/source_theatre)
"LH" = (
@@ -10199,8 +10081,7 @@
/area/shuttle/syndicate_sit)
"MB" = (
/obj/machinery/light/spot{
- dir = 1;
- tag = "icon-tube1 (NORTH)"
+ dir = 1
},
/turf/simulated/floor/mineral/titanium/blue,
/area/shuttle/trade/sol)
@@ -10252,8 +10133,7 @@
/turf/simulated/floor/holofloor{
dir = 4;
icon = 'icons/turf/floors/plating.dmi';
- icon_state = "asteroid1";
- tag = "icon-asteroid1 (EAST)"
+ icon_state = "asteroid1"
},
/area/holodeck/source_desert)
"MT" = (
@@ -10282,8 +10162,7 @@
/area/shuttle/transport)
"Nb" = (
/obj/machinery/light/spot{
- dir = 8;
- tag = "icon-tube1 (WEST)"
+ dir = 8
},
/turf/simulated/floor/mineral/plastitanium/red,
/area/shuttle/syndicate_sit)
@@ -10300,8 +10179,7 @@
"Nl" = (
/obj/machinery/clonepod/upgraded,
/obj/machinery/light/spot{
- dir = 1;
- tag = "icon-tube1 (NORTH)"
+ dir = 1
},
/turf/simulated/floor/mineral/titanium,
/area/shuttle/administration)
@@ -10326,8 +10204,7 @@
/area/shuttle/administration)
"Nv" = (
/obj/machinery/light/spot{
- dir = 4;
- tag = "icon-tube1 (EAST)"
+ dir = 4
},
/turf/simulated/floor/plasteel/dark,
/area/syndicate_mothership/jail)
@@ -10437,8 +10314,7 @@
/area/syndicate_mothership/jail)
"NY" = (
/obj/machinery/light/spot{
- dir = 1;
- tag = "icon-tube1 (NORTH)"
+ dir = 1
},
/obj/structure/chair/comfy/shuttle{
dir = 4
@@ -10457,7 +10333,7 @@
"Of" = (
/obj/machinery/door/airlock/titanium/glass{
name = "Emergency Airlock Access";
- req_one_access_txt = "2;19"
+ req_access_txt = "63"
},
/turf/simulated/floor/plasteel,
/area/shuttle/escape)
@@ -10599,8 +10475,7 @@
/turf/simulated/floor/holofloor{
dir = 4;
icon = 'icons/turf/floors/plating.dmi';
- icon_state = "asteroid2";
- tag = "icon-asteroid2 (EAST)"
+ icon_state = "asteroid2"
},
/area/holodeck/source_desert)
"OZ" = (
@@ -10630,8 +10505,7 @@
/area/shuttle/administration)
"Pl" = (
/obj/machinery/light/spot{
- dir = 8;
- tag = "icon-tube1 (WEST)"
+ dir = 8
},
/obj/machinery/suit_storage_unit/syndicate/secure,
/turf/simulated/floor/mineral/plastitanium/red,
@@ -10687,8 +10561,7 @@
/obj/item/harpoon,
/obj/item/tank/internals/nitrogen,
/obj/machinery/light/spot{
- dir = 4;
- tag = "icon-tube1 (EAST)"
+ dir = 4
},
/turf/simulated/floor/mineral/plastitanium/red/nitrogen,
/area/shuttle/vox)
@@ -10778,8 +10651,7 @@
"Qe" = (
/obj/structure/shuttle/engine/propulsion{
dir = 1;
- icon_state = "propulsion_l";
- tag = "icon-propulsion_l (NORTH)"
+ icon_state = "propulsion_l"
},
/turf/simulated/floor/plating/airless,
/area/shuttle/syndicate_elite)
@@ -10887,8 +10759,7 @@
/area/shuttle/escape)
"QK" = (
/obj/machinery/light/spot{
- dir = 8;
- tag = "icon-tube1 (WEST)"
+ dir = 8
},
/obj/structure/chair/comfy/shuttle{
dir = 4
@@ -10907,8 +10778,7 @@
"QQ" = (
/turf/simulated/floor/holofloor{
icon = 'icons/turf/floors/plating.dmi';
- icon_state = "asteroid6";
- tag = "icon-asteroid6"
+ icon_state = "asteroid6"
},
/area/holodeck/source_desert)
"QR" = (
@@ -10956,8 +10826,7 @@
/area/shuttle/administration)
"Re" = (
/obj/machinery/light/spot{
- dir = 8;
- tag = "icon-tube1 (WEST)"
+ dir = 8
},
/obj/machinery/sleeper/syndie{
dir = 4
@@ -10973,8 +10842,7 @@
"Rg" = (
/obj/structure/window/reinforced,
/obj/structure/shuttle/engine/heater{
- dir = 1;
- tag = "icon-heater (NORTH)"
+ dir = 1
},
/turf/simulated/floor/plating/airless,
/area/shuttle/syndicate_sit)
@@ -10998,8 +10866,7 @@
/area/shuttle/syndicate)
"Rn" = (
/obj/machinery/light/spot{
- dir = 4;
- tag = "icon-tube1 (EAST)"
+ dir = 4
},
/obj/machinery/door_control{
id = "QMLoaddoor2";
@@ -11065,8 +10932,7 @@
/area/centcom/control)
"RF" = (
/obj/structure/shuttle/engine/propulsion{
- dir = 1;
- tag = "icon-propulsion (NORTH)"
+ dir = 1
},
/turf/simulated/floor/plating/airless,
/area/shuttle/syndicate_sit)
@@ -11209,8 +11075,7 @@
/area/shuttle/administration)
"SH" = (
/obj/machinery/light/spot{
- dir = 8;
- tag = "icon-tube1 (WEST)"
+ dir = 8
},
/turf/simulated/floor/mineral/titanium/blue,
/area/shuttle/supply)
@@ -11235,8 +11100,7 @@
/area/shuttle/syndicate_elite)
"SP" = (
/obj/structure/shuttle/engine/propulsion{
- icon_state = "burst_l";
- tag = "icon-burst_l"
+ icon_state = "burst_l"
},
/turf/simulated/floor/plating/airless,
/area/shuttle/supply)
@@ -11362,8 +11226,7 @@
"TQ" = (
/obj/structure/holowindow,
/turf/simulated/floor/holofloor{
- icon_state = "asteroid7";
- tag = "icon-asteroid7"
+ icon_state = "asteroid7"
},
/area/holodeck/source_knightarena)
"TR" = (
@@ -11450,8 +11313,7 @@
"Uv" = (
/turf/simulated/floor/holofloor{
icon = 'icons/turf/floors/plating.dmi';
- icon_state = "asteroid5";
- tag = "icon-asteroid5"
+ icon_state = "asteroid5"
},
/area/holodeck/source_desert)
"Uw" = (
@@ -11480,8 +11342,7 @@
/area/shuttle/syndicate)
"UC" = (
/obj/machinery/light/spot{
- dir = 8;
- tag = "icon-tube1 (WEST)"
+ dir = 8
},
/obj/structure/window/reinforced,
/obj/structure/chair/comfy/shuttle{
@@ -11522,15 +11383,13 @@
"UK" = (
/turf/simulated/floor/holofloor{
dir = 4;
- icon_state = "carpet3-0";
- tag = "icon-carpet3-0 (EAST)"
+ icon_state = "carpet3-0"
},
/area/holodeck/source_theatre)
"UM" = (
/obj/structure/flora/grass/brown,
/turf/simulated/floor/holofloor{
- icon_state = "snow";
- tag = "icon-snow"
+ icon_state = "snow"
},
/area/holodeck/source_snowfield)
"UN" = (
@@ -11581,8 +11440,7 @@
req_access_txt = "150"
},
/obj/machinery/light/spot{
- dir = 1;
- tag = "icon-tube1 (NORTH)"
+ dir = 1
},
/turf/simulated/floor/mineral/plastitanium/red,
/area/shuttle/syndicate)
@@ -11598,8 +11456,7 @@
"Vi" = (
/obj/structure/shuttle/engine/propulsion{
dir = 1;
- icon_state = "propulsion_l";
- tag = "icon-propulsion_l (NORTH)"
+ icon_state = "propulsion_l"
},
/turf/simulated/floor/plating/airless,
/area/shuttle/syndicate_sit)
@@ -11685,8 +11542,7 @@
/area/centcom/evac)
"VK" = (
/obj/structure/shuttle/engine/propulsion{
- icon_state = "propulsion_l";
- tag = "icon-propulsion_l"
+ icon_state = "propulsion_l"
},
/turf/simulated/floor/plating/airless,
/area/shuttle/vox)
@@ -11726,8 +11582,7 @@
/area/shuttle/syndicate)
"VZ" = (
/turf/simulated/floor/holofloor{
- icon_state = "asteroid7";
- tag = "icon-asteroid7"
+ icon_state = "asteroid7"
},
/area/holodeck/source_knightarena)
"Wa" = (
@@ -11766,7 +11621,7 @@
"Wh" = (
/obj/machinery/door/airlock/command/glass{
name = "Escape Shuttle Cockpit";
- req_one_access_txt = "2;19"
+ req_access_txt = "63"
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -11805,8 +11660,7 @@
/area/shuttle/escape)
"Wp" = (
/obj/machinery/light/spot{
- dir = 1;
- tag = "icon-tube1 (NORTH)"
+ dir = 1
},
/obj/structure/chair/comfy/shuttle,
/turf/simulated/floor/mineral/titanium,
@@ -11845,8 +11699,7 @@
/area/centcom/evac)
"WL" = (
/obj/machinery/light/spot{
- dir = 4;
- tag = "icon-tube1 (EAST)"
+ dir = 4
},
/obj/structure/chair/comfy/shuttle{
dir = 8
@@ -11873,8 +11726,7 @@
"WR" = (
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "browncorner";
- tag = "icon-browncorner (EAST)"
+ icon_state = "browncorner"
},
/area/shuttle/escape)
"WU" = (
@@ -11891,8 +11743,7 @@
/area/shuttle/transport)
"Xi" = (
/obj/machinery/light/spot{
- dir = 1;
- tag = "icon-tube1 (NORTH)"
+ dir = 1
},
/obj/machinery/door_control{
id = "adminshuttleblast";
@@ -11991,8 +11842,7 @@
"Xx" = (
/obj/structure/shuttle/engine/propulsion{
dir = 8;
- icon_state = "propulsion_l";
- tag = "icon-propulsion_l (EAST)"
+ icon_state = "propulsion_l"
},
/turf/simulated/floor/plating/airless,
/area/shuttle/administration)
@@ -12004,8 +11854,7 @@
/area/shuttle/vox)
"XC" = (
/obj/machinery/light/spot{
- dir = 4;
- tag = "icon-tube1 (EAST)"
+ dir = 4
},
/turf/simulated/floor/mineral/titanium,
/area/shuttle/administration)
@@ -12020,8 +11869,7 @@
/area/shuttle/supply)
"XJ" = (
/obj/machinery/light/spot{
- dir = 8;
- tag = "icon-tube1 (WEST)"
+ dir = 8
},
/obj/machinery/access_button{
command = "cycle_interior";
@@ -12059,8 +11907,7 @@
"XT" = (
/turf/simulated/floor/holofloor{
dir = 4;
- icon_state = "carpet4-0";
- tag = "icon-carpet4-0 (EAST)"
+ icon_state = "carpet4-0"
},
/area/holodeck/source_meetinghall)
"XW" = (
@@ -12122,8 +11969,7 @@
/area/shuttle/escape)
"Yl" = (
/obj/machinery/light/spot{
- dir = 4;
- tag = "icon-tube1 (EAST)"
+ dir = 4
},
/turf/simulated/floor/mineral/plastitanium/red,
/area/shuttle/syndicate)
@@ -12221,14 +12067,12 @@
"YX" = (
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
+ icon_state = "whiteblue"
},
/area/shuttle/escape)
"Za" = (
/obj/structure/shuttle/engine/heater{
- dir = 8;
- tag = "icon-heater (WEST)"
+ dir = 8
},
/obj/structure/window/plasmareinforced{
color = "#FF0000";
@@ -12286,8 +12130,7 @@
req_access_txt = "152"
},
/obj/machinery/light/spot{
- dir = 8;
- tag = "icon-tube1 (WEST)"
+ dir = 8
},
/turf/simulated/floor/plating/nitrogen,
/area/shuttle/vox)
@@ -12324,8 +12167,7 @@
req_access_txt = "152"
},
/obj/machinery/light/spot{
- dir = 4;
- tag = "icon-tube1 (EAST)"
+ dir = 4
},
/turf/simulated/floor/plating/nitrogen,
/area/shuttle/vox)
@@ -12340,8 +12182,7 @@
/area/shuttle/vox)
"ZK" = (
/obj/machinery/light/spot{
- dir = 8;
- tag = "icon-tube1 (WEST)"
+ dir = 8
},
/turf/simulated/floor/mineral/plastitanium/red,
/area/shuttle/syndicate_elite)
diff --git a/_maps/map_files/shuttles/admin_admin.dmm b/_maps/map_files/shuttles/admin_admin.dmm
index f84d6a2940b..bdd7944d5b8 100644
--- a/_maps/map_files/shuttles/admin_admin.dmm
+++ b/_maps/map_files/shuttles/admin_admin.dmm
@@ -60,7 +60,6 @@
req_access_txt = "101"
},
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/turf/simulated/floor/mineral/plastitanium/red,
@@ -88,8 +87,6 @@
/area/shuttle/administration)
"aq" = (
/obj/machinery/light/spot{
- tag = "icon-tube1 (EAST)";
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/mineral/plastitanium/red,
@@ -110,8 +107,6 @@
/area/shuttle/administration)
"as" = (
/obj/machinery/light/spot{
- tag = "icon-tube1 (WEST)";
- icon_state = "tube1";
dir = 8
},
/turf/simulated/floor/mineral/plastitanium/red,
@@ -178,15 +173,12 @@
"aC" = (
/obj/structure/shuttle/engine/propulsion{
dir = 8;
- icon_state = "propulsion_l";
- tag = "icon-propulsion_l (EAST)"
+ icon_state = "propulsion_l"
},
/turf/simulated/floor/plating/airless,
/area/shuttle/administration)
"aD" = (
/obj/structure/shuttle/engine/heater{
- tag = "icon-heater (WEST)";
- icon_state = "heater";
dir = 8
},
/obj/structure/window/plasmareinforced{
@@ -224,8 +216,7 @@
"aK" = (
/obj/structure/shuttle/engine/propulsion{
dir = 8;
- icon_state = "propulsion_r";
- tag = "icon-propulsion_r (EAST)"
+ icon_state = "propulsion_r"
},
/turf/simulated/floor/plating/airless,
/area/shuttle/administration)
@@ -261,7 +252,6 @@
"aU" = (
/obj/machinery/door/poddoor/shutters{
density = 0;
- dir = 4;
icon_state = "open";
id_tag = "adminshuttleshutters";
name = "Blast Shutters";
@@ -272,8 +262,6 @@
/area/shuttle/administration)
"aV" = (
/obj/machinery/light/spot{
- tag = "icon-tube1 (NORTH)";
- icon_state = "tube1";
dir = 1
},
/obj/machinery/door_control{
@@ -281,16 +269,14 @@
name = "Blast door control";
pixel_x = -5;
pixel_y = 35;
- req_access = list(101);
- req_access_txt = "0"
+ req_access = list(101)
},
/obj/machinery/door_control{
id = "adminshuttleshutters";
name = "Shutter control";
pixel_x = 5;
pixel_y = 35;
- req_access = list(101);
- req_access_txt = "0"
+ req_access = list(101)
},
/obj/structure/chair/comfy/black{
dir = 4
@@ -326,8 +312,6 @@
"bb" = (
/obj/machinery/clonepod/upgraded,
/obj/machinery/light/spot{
- tag = "icon-tube1 (NORTH)";
- icon_state = "tube1";
dir = 1
},
/turf/simulated/floor/mineral/titanium,
@@ -376,8 +360,6 @@
/area/shuttle/administration)
"bl" = (
/obj/machinery/light/spot{
- tag = "icon-tube1 (EAST)";
- icon_state = "tube1";
dir = 4
},
/obj/structure/chair/comfy/shuttle{
@@ -427,8 +409,6 @@
/area/shuttle/administration)
"bt" = (
/obj/machinery/light/spot{
- tag = "icon-tube1 (EAST)";
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/mineral/titanium,
@@ -437,8 +417,6 @@
/obj/structure/table,
/obj/item/storage/box/handcuffs,
/obj/machinery/light/spot{
- tag = "icon-tube1 (WEST)";
- icon_state = "tube1";
dir = 8
},
/turf/simulated/floor/mineral/plastitanium/red,
diff --git a/_maps/map_files/shuttles/admin_armory.dmm b/_maps/map_files/shuttles/admin_armory.dmm
index 673aca28604..d2873d05de7 100644
--- a/_maps/map_files/shuttles/admin_armory.dmm
+++ b/_maps/map_files/shuttles/admin_armory.dmm
@@ -18,9 +18,7 @@
"aP" = (
/obj/machinery/vending/security,
/obj/machinery/light/spot{
- dir = 8;
- icon_state = "tube1";
- tag = "icon-tube1 (WEST)"
+ dir = 8
},
/turf/simulated/floor/mineral/titanium/blue,
/area/shuttle/administration)
@@ -110,9 +108,7 @@
/area/shuttle/administration)
"fF" = (
/obj/machinery/light/spot{
- dir = 4;
- icon_state = "tube1";
- tag = "icon-tube1 (EAST)"
+ dir = 4
},
/turf/simulated/floor/mineral/plastitanium/red,
/area/shuttle/administration)
@@ -147,9 +143,7 @@
"ir" = (
/obj/structure/closet/emcloset,
/obj/machinery/light/spot{
- dir = 1;
- icon_state = "tube1";
- tag = "icon-tube1 (NORTH)"
+ dir = 1
},
/turf/simulated/floor/mineral/titanium/blue,
/area/shuttle/administration)
@@ -193,16 +187,13 @@
"oY" = (
/obj/structure/chair,
/obj/machinery/light/spot{
- dir = 1;
- icon_state = "tube1";
- tag = "icon-tube1 (NORTH)"
+ dir = 1
},
/turf/simulated/floor/mineral/titanium/blue,
/area/shuttle/administration)
"pK" = (
/obj/structure/shuttle/engine/propulsion{
- dir = 4;
- icon_state = "propulsion"
+ dir = 4
},
/turf/simulated/floor/plating/airless,
/area/shuttle/administration)
@@ -220,9 +211,7 @@
pixel_y = 35
},
/obj/machinery/light/spot{
- dir = 1;
- icon_state = "tube1";
- tag = "icon-tube1 (NORTH)"
+ dir = 1
},
/obj/machinery/door_control{
id = "adminshuttlebridge";
@@ -287,8 +276,7 @@
/area/shuttle/administration)
"uW" = (
/obj/structure/shuttle/engine/heater{
- dir = 4;
- icon_state = "heater"
+ dir = 4
},
/obj/structure/window/plasmareinforced{
dir = 8
@@ -311,9 +299,7 @@
/area/shuttle/administration)
"vA" = (
/obj/machinery/light/spot{
- dir = 1;
- icon_state = "tube1";
- tag = "icon-tube1 (NORTH)"
+ dir = 1
},
/obj/machinery/portable_atmospherics/canister/oxygen,
/turf/simulated/floor/mineral/plastitanium/red,
@@ -332,23 +318,15 @@
dir = 1;
layer = 2.9
},
-/obj/item/clothing/suit/armor/bulletproof{
- pixel_x = 0;
- pixel_y = 0
- },
+/obj/item/clothing/suit/armor/bulletproof,
/obj/item/clothing/head/helmet/alt,
-/obj/item/clothing/suit/armor/bulletproof{
- pixel_x = 0;
- pixel_y = 0
- },
+/obj/item/clothing/suit/armor/bulletproof,
/obj/item/clothing/head/helmet/alt,
/turf/simulated/floor/mineral/plastitanium/red,
/area/shuttle/administration)
"wH" = (
/obj/machinery/light/spot{
- dir = 8;
- icon_state = "tube1";
- tag = "icon-tube1 (WEST)"
+ dir = 8
},
/turf/simulated/floor/mineral/plastitanium/red,
/area/shuttle/administration)
@@ -392,9 +370,7 @@
dir = 4
},
/obj/machinery/light/spot{
- dir = 1;
- icon_state = "tube1";
- tag = "icon-tube1 (NORTH)"
+ dir = 1
},
/turf/simulated/floor/mineral/plastitanium/red,
/area/shuttle/administration)
@@ -669,16 +645,10 @@
/obj/structure/window/reinforced{
dir = 4
},
-/obj/item/clothing/suit/armor/bulletproof{
- pixel_x = 0;
- pixel_y = 0
- },
+/obj/item/clothing/suit/armor/bulletproof,
/obj/structure/rack,
/obj/item/clothing/head/helmet/alt,
-/obj/item/clothing/suit/armor/bulletproof{
- pixel_x = 0;
- pixel_y = 0
- },
+/obj/item/clothing/suit/armor/bulletproof,
/obj/item/clothing/head/helmet/alt,
/turf/simulated/floor/mineral/plastitanium/red,
/area/shuttle/administration)
@@ -720,15 +690,9 @@
/obj/structure/window/reinforced{
dir = 8
},
-/obj/item/clothing/suit/armor/bulletproof{
- pixel_x = 0;
- pixel_y = 0
- },
+/obj/item/clothing/suit/armor/bulletproof,
/obj/item/clothing/head/helmet/alt,
-/obj/item/clothing/suit/armor/bulletproof{
- pixel_x = 0;
- pixel_y = 0
- },
+/obj/item/clothing/suit/armor/bulletproof,
/obj/item/clothing/head/helmet/alt,
/turf/simulated/floor/mineral/plastitanium/red,
/area/shuttle/administration)
@@ -796,8 +760,7 @@
/area/shuttle/administration)
"PR" = (
/obj/machinery/light/spot{
- dir = 8;
- tag = "icon-tube1 (WEST)"
+ dir = 8
},
/obj/machinery/door_control{
id = "adminarmoryshutters";
@@ -868,9 +831,7 @@
pixel_y = 3
},
/obj/machinery/light/spot{
- dir = 8;
- icon_state = "tube1";
- tag = "icon-tube1 (WEST)"
+ dir = 8
},
/obj/item/clothing/mask/breath{
pixel_x = -3;
@@ -925,10 +886,7 @@
pixel_x = 3;
pixel_y = -3
},
-/obj/item/gun/energy/gun/advtaser{
- pixel_x = 0;
- pixel_y = 0
- },
+/obj/item/gun/energy/gun/advtaser,
/turf/simulated/floor/mineral/plastitanium/red,
/area/shuttle/administration)
"WV" = (
@@ -943,9 +901,7 @@
pixel_y = 3
},
/obj/machinery/light/spot{
- dir = 4;
- icon_state = "tube1";
- tag = "icon-tube1 (EAST)"
+ dir = 4
},
/turf/simulated/floor/mineral/plastitanium/red,
/area/shuttle/administration)
diff --git a/_maps/map_files/shuttles/admin_hospital.dmm b/_maps/map_files/shuttles/admin_hospital.dmm
index e37b06c17a1..c02fd11d80c 100644
--- a/_maps/map_files/shuttles/admin_hospital.dmm
+++ b/_maps/map_files/shuttles/admin_hospital.dmm
@@ -68,8 +68,6 @@
"ar" = (
/obj/machinery/chem_heater,
/obj/machinery/light{
- tag = "icon-tube1 (NORTH)";
- icon_state = "tube1";
dir = 1
},
/turf/simulated/floor/mineral/titanium,
@@ -92,8 +90,6 @@
/area/shuttle/administration)
"av" = (
/obj/structure/chair{
- tag = "icon-chair (EAST)";
- icon_state = "chair";
dir = 4
},
/obj/structure/chair/comfy/shuttle{
@@ -110,7 +106,6 @@
},
/obj/machinery/camera{
dir = 8;
- icon_state = "camera";
name = "NHV Asclepius Lobby";
network = list("NHV Asclepius")
},
@@ -133,8 +128,6 @@
"aA" = (
/obj/machinery/computer/cloning,
/obj/machinery/light{
- tag = "icon-tube1 (NORTH)";
- icon_state = "tube1";
dir = 1
},
/turf/simulated/floor/mineral/titanium,
@@ -173,8 +166,7 @@
/area/shuttle/administration)
"aI" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/turf/simulated/floor/mineral/titanium,
/area/shuttle/administration)
@@ -188,7 +180,6 @@
/area/shuttle/administration)
"aL" = (
/obj/structure/shuttle/engine/heater{
- icon_state = "heater";
dir = 4
},
/obj/structure/window/plasmareinforced{
@@ -198,8 +189,7 @@
/area/shuttle/administration)
"aM" = (
/obj/structure/shuttle/engine/propulsion{
- dir = 4;
- icon_state = "propulsion"
+ dir = 4
},
/turf/simulated/floor/plating/airless,
/area/shuttle/administration)
@@ -249,7 +239,6 @@
/obj/machinery/reagentgrinder,
/obj/machinery/camera{
dir = 4;
- icon_state = "camera";
name = "NHV Asclepius Chemistry";
network = list("NHV Asclepius")
},
@@ -269,7 +258,6 @@
"aV" = (
/obj/machinery/camera{
dir = 8;
- icon_state = "camera";
name = "NHV Asclepius Cloning";
network = list("NHV Asclepius")
},
@@ -372,7 +360,6 @@
"bq" = (
/obj/machinery/camera{
c_tag = "Tech Storage";
- dir = 2;
name = "NHV Asclepius Command Center";
network = list("NHV Asclepius")
},
@@ -385,21 +372,17 @@
name = "remote shutter control";
pixel_x = -5;
pixel_y = 35;
- req_access = list(101);
- req_access_txt = "0"
+ req_access = list(101)
},
/obj/machinery/keycard_auth{
pixel_y = 24
},
/obj/machinery/door_control{
- dir = 2;
id = "asclblast";
name = "blast door control";
pixel_x = 5;
pixel_y = 35;
- pixel_z = 0;
- req_access = list(101);
- req_access_txt = "0"
+ req_access = list(101)
},
/obj/structure/chair/comfy/shuttle{
dir = 8
@@ -417,7 +400,6 @@
/area/shuttle/administration)
"bt" = (
/obj/structure/sink{
- icon_state = "sink";
dir = 8;
pixel_x = -12;
pixel_y = 2
@@ -426,8 +408,6 @@
/area/shuttle/administration)
"bu" = (
/obj/machinery/light{
- tag = "icon-tube1 (NORTH)";
- icon_state = "tube1";
dir = 1
},
/obj/structure/closet/walllocker/emerglocker{
@@ -438,8 +418,6 @@
"bv" = (
/obj/machinery/vending/medical,
/obj/machinery/light{
- tag = "icon-tube1 (NORTH)";
- icon_state = "tube1";
dir = 1
},
/turf/simulated/floor/mineral/titanium,
@@ -466,8 +444,6 @@
"by" = (
/obj/machinery/computer/operating,
/obj/machinery/light{
- tag = "icon-tube1 (NORTH)";
- icon_state = "tube1";
dir = 1
},
/turf/simulated/floor/mineral/titanium,
@@ -505,7 +481,6 @@
"bG" = (
/obj/machinery/camera{
dir = 4;
- icon_state = "camera";
name = "NHV Asclepius OR 1";
network = list("NHV Asclepius")
},
@@ -528,9 +503,7 @@
"bJ" = (
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
- pixel_x = 11;
- pixel_y = 0
+ pixel_x = 11
},
/turf/simulated/floor/mineral/titanium,
/area/shuttle/administration)
@@ -604,7 +577,6 @@
},
/obj/machinery/camera{
dir = 5;
- icon_state = "camera";
name = "NHV Asclepius Central";
network = list("NHV Asclepius")
},
@@ -612,8 +584,7 @@
/area/shuttle/administration)
"cb" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/structure/bed{
name = "Triage: High Priority"
@@ -641,13 +612,10 @@
name = "Canister: \[O2] (CRYO)"
},
/obj/machinery/light{
- tag = "icon-tube1 (NORTH)";
- icon_state = "tube1";
dir = 1
},
/obj/machinery/camera{
dir = 4;
- icon_state = "camera";
name = "NHV Asclepius Cryo";
network = list("NHV Asclepius")
},
@@ -677,7 +645,6 @@
"ck" = (
/obj/machinery/camera{
dir = 4;
- icon_state = "camera";
name = "NHV Asclepius OR 2";
network = list("NHV Asclepius")
},
@@ -731,8 +698,7 @@
/area/shuttle/administration)
"cu" = (
/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 5;
- icon_state = "intact"
+ dir = 5
},
/turf/simulated/floor/mineral/titanium,
/area/shuttle/administration)
@@ -742,15 +708,13 @@
/area/shuttle/administration)
"cw" = (
/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/mineral/titanium,
/area/shuttle/administration)
"cx" = (
/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 9;
- icon_state = "intact"
+ dir = 9
},
/turf/simulated/floor/mineral/titanium,
/area/shuttle/administration)
diff --git a/_maps/map_files/shuttles/cargo_base.dmm b/_maps/map_files/shuttles/cargo_base.dmm
index 49eca02c975..b75c9b788a3 100644
--- a/_maps/map_files/shuttles/cargo_base.dmm
+++ b/_maps/map_files/shuttles/cargo_base.dmm
@@ -7,8 +7,6 @@
/area/shuttle/supply)
"f" = (
/obj/machinery/light/spot{
- tag = "icon-tube1 (NORTH)";
- icon_state = "tube1";
dir = 1
},
/turf/simulated/floor/mineral/titanium/blue,
@@ -31,16 +29,12 @@
/area/shuttle/supply)
"i" = (
/obj/machinery/light/spot{
- tag = "icon-tube1 (WEST)";
- icon_state = "tube1";
dir = 8
},
/turf/simulated/floor/mineral/titanium/blue,
/area/shuttle/supply)
"j" = (
/obj/machinery/light/spot{
- tag = "icon-tube1 (EAST)";
- icon_state = "tube1";
dir = 4
},
/obj/machinery/door_control{
@@ -48,16 +42,14 @@
layer = 3;
name = "Loading Doors";
pixel_x = 24;
- pixel_y = 8;
- req_access_txt = "0"
+ pixel_y = 8
},
/obj/machinery/door_control{
id = "QMLoaddoor";
layer = 3;
name = "Loading Doors";
pixel_x = 24;
- pixel_y = -8;
- req_access_txt = "0"
+ pixel_y = -8
},
/turf/simulated/floor/mineral/titanium/blue,
/area/shuttle/supply)
@@ -96,7 +88,6 @@
/area/space)
"w" = (
/obj/structure/shuttle/engine/propulsion{
- tag = "icon-burst_l";
icon_state = "burst_l"
},
/turf/simulated/floor/plating/airless,
@@ -107,7 +98,6 @@
/area/shuttle/supply)
"y" = (
/obj/structure/shuttle/engine/propulsion{
- tag = "icon-burst_r";
icon_state = "burst_r"
},
/turf/simulated/floor/plating/airless,
diff --git a/_maps/map_files/shuttles/emergency_bar.dmm b/_maps/map_files/shuttles/emergency_bar.dmm
index 5839657ec3d..13e3ca24ec5 100644
--- a/_maps/map_files/shuttles/emergency_bar.dmm
+++ b/_maps/map_files/shuttles/emergency_bar.dmm
@@ -92,8 +92,6 @@
pixel_y = 30
},
/obj/machinery/light/spot{
- tag = "icon-tube1 (NORTH)";
- icon_state = "tube1";
dir = 1
},
/obj/structure/chair,
@@ -103,14 +101,12 @@
"az" = (
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- icon_state = "cafeteria";
- dir = 2
+ icon_state = "cafeteria"
},
/area/shuttle/escape)
"aA" = (
/turf/simulated/floor/plasteel{
- icon_state = "cafeteria";
- dir = 2
+ icon_state = "cafeteria"
},
/area/shuttle/escape)
"aB" = (
@@ -124,8 +120,6 @@
pixel_y = 30
},
/obj/machinery/light/spot{
- tag = "icon-tube1 (NORTH)";
- icon_state = "tube1";
dir = 1
},
/obj/structure/piano,
@@ -157,7 +151,7 @@
"aG" = (
/obj/machinery/door/airlock/security/glass{
name = "Escape Shuttle Cell";
- req_access_txt = "2"
+ req_access_txt = "63"
},
/turf/simulated/floor/mineral/plastitanium/red/brig,
/area/shuttle/escape)
@@ -192,15 +186,13 @@
"aM" = (
/obj/structure/chair/stool/bar,
/turf/simulated/floor/plasteel{
- icon_state = "cafeteria";
- dir = 2
+ icon_state = "cafeteria"
},
/area/shuttle/escape)
"aN" = (
/obj/structure/table/wood,
/turf/simulated/floor/plasteel{
- icon_state = "cafeteria";
- dir = 2
+ icon_state = "cafeteria"
},
/area/shuttle/escape)
"aO" = (
@@ -227,24 +219,19 @@
/obj/structure/table/wood,
/obj/item/instrument/violin,
/turf/simulated/floor/plasteel{
- icon_state = "cafeteria";
- dir = 2
+ icon_state = "cafeteria"
},
/area/shuttle/escape)
"aS" = (
/obj/machinery/light/spot{
- tag = "icon-tube1 (EAST)";
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "cafeteria";
- dir = 2
+ icon_state = "cafeteria"
},
/area/shuttle/escape)
"aT" = (
/obj/docking_port/mobile/emergency{
- dir = 4;
dwidth = 11;
height = 13;
name = "The Emergency Escape Bar";
@@ -264,8 +251,7 @@
/obj/item/storage/box/drinkingglasses,
/obj/item/reagent_containers/food/drinks/shaker,
/turf/simulated/floor/plasteel{
- icon_state = "cafeteria";
- dir = 2
+ icon_state = "cafeteria"
},
/area/shuttle/escape)
"aV" = (
@@ -278,14 +264,11 @@
/obj/structure/table,
/obj/machinery/chem_dispenser/beer,
/turf/simulated/floor/plasteel{
- icon_state = "cafeteria";
- dir = 2
+ icon_state = "cafeteria"
},
/area/shuttle/escape)
"aX" = (
/obj/structure/chair/wood/wings{
- tag = "icon-wooden_chair_wings (EAST)";
- icon_state = "wooden_chair_wings";
dir = 4
},
/turf/simulated/floor/plasteel{
@@ -302,8 +285,7 @@
/obj/structure/table,
/obj/machinery/chem_dispenser/soda,
/turf/simulated/floor/plasteel{
- icon_state = "cafeteria";
- dir = 2
+ icon_state = "cafeteria"
},
/area/shuttle/escape)
"bb" = (
@@ -327,14 +309,11 @@
/obj/item/reagent_containers/food/drinks/shaker,
/obj/item/clothing/mask/cigarette/cigar,
/turf/simulated/floor/plasteel{
- icon_state = "cafeteria";
- dir = 2
+ icon_state = "cafeteria"
},
/area/shuttle/escape)
"be" = (
/obj/structure/chair/wood/wings{
- tag = "icon-wooden_chair_wings (NORTH)";
- icon_state = "wooden_chair_wings";
dir = 1
},
/turf/simulated/floor/plasteel{
@@ -344,13 +323,10 @@
"bf" = (
/obj/structure/chair/stool/bar,
/obj/machinery/light/spot{
- tag = "icon-tube1 (EAST)";
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "cafeteria";
- dir = 2
+ icon_state = "cafeteria"
},
/area/shuttle/escape)
"bh" = (
@@ -359,14 +335,12 @@
},
/obj/machinery/light/spot,
/turf/simulated/floor/plasteel{
- icon_state = "cafeteria";
- dir = 2
+ icon_state = "cafeteria"
},
/area/shuttle/escape)
"bi" = (
/obj/machinery/door/airlock{
- name = "Toilet";
- req_access_txt = "0"
+ name = "Toilet"
},
/turf/simulated/floor/plasteel{
icon_state = "freezerfloor"
@@ -389,8 +363,7 @@
"bn" = (
/obj/machinery/door/airlock/medical/glass{
id_tag = null;
- name = "Escape Shuttle Infirmary";
- req_access_txt = "0"
+ name = "Escape Shuttle Infirmary"
},
/turf/simulated/floor/mineral/titanium,
/area/shuttle/escape)
@@ -401,8 +374,6 @@
/area/shuttle/escape)
"bp" = (
/obj/machinery/light/spot{
- tag = "icon-tube1 (EAST)";
- icon_state = "tube1";
dir = 4
},
/obj/machinery/shower,
@@ -415,8 +386,7 @@
/obj/structure/table/wood,
/obj/item/instrument/guitar,
/turf/simulated/floor/plasteel{
- icon_state = "cafeteria";
- dir = 2
+ icon_state = "cafeteria"
},
/area/shuttle/escape)
"br" = (
@@ -426,9 +396,7 @@
/obj/machinery/vending/wallmed{
layer = 3.3;
name = "Emergency NanoMed";
- pixel_x = 28;
- pixel_y = 0;
- req_access_txt = "0"
+ pixel_x = 28
},
/obj/structure/bed/roller,
/turf/simulated/floor/mineral/titanium,
@@ -459,12 +427,9 @@
/area/shuttle/escape)
"bx" = (
/obj/machinery/status_display{
- pixel_x = -30;
- pixel_y = 0
+ pixel_x = -30
},
/obj/machinery/light/spot{
- tag = "icon-tube1 (WEST)";
- icon_state = "tube1";
dir = 8
},
/turf/simulated/floor/mineral/titanium,
@@ -472,7 +437,6 @@
"by" = (
/obj/item/radio/intercom{
dir = 4;
- name = "station intercom (General)";
pixel_x = 28
},
/obj/structure/bed/roller,
@@ -501,9 +465,8 @@
/area/shuttle/escape)
"bC" = (
/obj/machinery/sleeper{
- tag = "icon-sleeper (NORTH)";
- icon_state = "sleeper";
- dir = 1
+ dir = 1;
+ icon_state = "sleeper"
},
/turf/simulated/floor/mineral/titanium,
/area/shuttle/escape)
diff --git a/_maps/map_files/shuttles/emergency_clown.dmm b/_maps/map_files/shuttles/emergency_clown.dmm
index 8fb6721df5b..bc2446ab505 100644
--- a/_maps/map_files/shuttles/emergency_clown.dmm
+++ b/_maps/map_files/shuttles/emergency_clown.dmm
@@ -116,8 +116,6 @@
pixel_y = 30
},
/obj/machinery/light/spot{
- tag = "icon-tube1 (NORTH)";
- icon_state = "tube1";
dir = 1
},
/turf/simulated/floor/chasm,
@@ -132,8 +130,6 @@
pixel_y = 30
},
/obj/machinery/light/spot{
- tag = "icon-tube1 (NORTH)";
- icon_state = "tube1";
dir = 1
},
/obj/item/toy/snappop/phoenix,
@@ -159,7 +155,7 @@
"aI" = (
/obj/machinery/door/airlock/security/glass{
name = "Escape Shuttle Cell";
- req_access_txt = "2"
+ req_access_txt = "63"
},
/turf/simulated/floor/noslip,
/area/shuttle/escape)
@@ -174,14 +170,12 @@
"aL" = (
/obj/item/radio/intercom{
dir = 4;
- name = "station intercom (General)";
pixel_x = 28
},
/turf/simulated/floor/chasm,
/area/shuttle/escape)
"aP" = (
/obj/docking_port/mobile/emergency{
- dir = 4;
dwidth = 11;
height = 13;
name = "Snappop(tm)!";
@@ -199,12 +193,9 @@
"aQ" = (
/obj/item/radio/intercom{
dir = 8;
- name = "station intercom (General)";
pixel_x = -28
},
/obj/machinery/light/spot{
- tag = "icon-tube1 (WEST)";
- icon_state = "tube1";
dir = 8
},
/obj/structure/bed,
@@ -227,8 +218,6 @@
/obj/item/extinguisher,
/obj/item/crowbar,
/obj/machinery/light/spot{
- tag = "icon-tube1 (WEST)";
- icon_state = "tube1";
dir = 8
},
/obj/item/multitool/ai_detect,
@@ -280,8 +269,7 @@
"bb" = (
/obj/machinery/door/airlock/medical/glass{
id_tag = null;
- name = "Escape Shuttle Infirmary";
- req_access_txt = "0"
+ name = "Escape Shuttle Infirmary"
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -315,9 +303,7 @@
/obj/machinery/vending/wallmed{
layer = 3.3;
name = "Emergency NanoMed";
- pixel_x = 28;
- pixel_y = 0;
- req_access_txt = "0"
+ pixel_x = 28
},
/obj/structure/bed/roller,
/turf/simulated/floor/noslip,
@@ -328,20 +314,15 @@
/area/shuttle/escape)
"bg" = (
/obj/machinery/light/spot{
- tag = "icon-tube1 (EAST)";
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/noslip,
/area/shuttle/escape)
"bh" = (
/obj/machinery/status_display{
- pixel_x = -30;
- pixel_y = 0
+ pixel_x = -30
},
/obj/machinery/light/spot{
- tag = "icon-tube1 (WEST)";
- icon_state = "tube1";
dir = 8
},
/turf/simulated/floor/noslip,
@@ -349,7 +330,6 @@
"bi" = (
/obj/item/radio/intercom{
dir = 4;
- name = "station intercom (General)";
pixel_x = 28
},
/obj/structure/bed/roller,
@@ -370,9 +350,8 @@
/area/shuttle/escape)
"bm" = (
/obj/machinery/sleeper{
- tag = "icon-sleeper (NORTH)";
- icon_state = "sleeper";
- dir = 1
+ dir = 1;
+ icon_state = "sleeper"
},
/turf/simulated/floor/noslip,
/area/shuttle/escape)
diff --git a/_maps/map_files/shuttles/emergency_cramped.dmm b/_maps/map_files/shuttles/emergency_cramped.dmm
index 0b263aef6ef..8584a27ae2f 100644
--- a/_maps/map_files/shuttles/emergency_cramped.dmm
+++ b/_maps/map_files/shuttles/emergency_cramped.dmm
@@ -80,8 +80,6 @@
/obj/structure/closet/crate,
/obj/effect/spawner/lootdrop/maintenance,
/obj/machinery/light/spot{
- tag = "icon-tube1 (EAST)";
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/plating,
@@ -118,14 +116,12 @@
/area/shuttle/escape)
"B" = (
/obj/structure/shuttle/engine/propulsion{
- tag = "icon-burst_l";
icon_state = "burst_l"
},
/turf/simulated/floor/plating/airless,
/area/shuttle/escape)
"C" = (
/obj/structure/shuttle/engine/propulsion{
- tag = "icon-propulsion_r";
icon_state = "propulsion_r"
},
/turf/simulated/floor/plating/airless,
diff --git a/_maps/map_files/shuttles/emergency_cyb.dmm b/_maps/map_files/shuttles/emergency_cyb.dmm
index 551a52ccc52..dfd54e97f1e 100644
--- a/_maps/map_files/shuttles/emergency_cyb.dmm
+++ b/_maps/map_files/shuttles/emergency_cyb.dmm
@@ -105,8 +105,7 @@
network = list("SS13","Research Outpost","Mining Outpost","Telecomms")
},
/obj/structure/sign/poster/official/nanotrasen_logo{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/turf/simulated/floor/plasteel{
dir = 9;
@@ -143,8 +142,7 @@
"ax" = (
/obj/machinery/computer/station_alert,
/obj/structure/sign/poster/official/nanotrasen_logo{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/turf/simulated/floor/plasteel{
dir = 5;
@@ -250,8 +248,7 @@
/area/shuttle/escape)
"aR" = (
/obj/structure/closet/fireaxecabinet{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/machinery/light{
dir = 1;
@@ -275,15 +272,15 @@
},
/obj/structure/chair/comfy/shuttle,
/turf/simulated/floor/plasteel{
- icon_state = "bot";
- dir = 1
+ dir = 1;
+ icon_state = "bot"
},
/area/shuttle/escape)
"aU" = (
/obj/structure/chair/comfy/shuttle,
/turf/simulated/floor/plasteel{
- icon_state = "bot";
- dir = 1
+ dir = 1;
+ icon_state = "bot"
},
/area/shuttle/escape)
"aV" = (
@@ -297,14 +294,13 @@
/obj/item/tank/internals/emergency_oxygen/engi,
/obj/item/tank/internals/emergency_oxygen/engi,
/turf/simulated/floor/plasteel{
- icon_state = "bot";
- dir = 1
+ dir = 1;
+ icon_state = "bot"
},
/area/shuttle/escape)
"aW" = (
/obj/item/radio/intercom{
dir = 8;
- name = "station intercom (General)";
pixel_x = -28
},
/obj/structure/chair/comfy/shuttle{
@@ -341,7 +337,7 @@
"be" = (
/obj/machinery/door/airlock/titanium/glass{
name = "Emergency Airlock Access";
- req_one_access_txt = "2;19"
+ req_access_txt = "63"
},
/turf/simulated/floor/plasteel,
/area/shuttle/escape)
@@ -371,7 +367,7 @@
"bj" = (
/obj/machinery/door/airlock/security/glass{
name = "Escape Shuttle Cell";
- req_access_txt = "2"
+ req_access_txt = "63"
},
/turf/simulated/floor/mineral/plastitanium/red/brig,
/area/shuttle/escape)
@@ -449,8 +445,8 @@
dir = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "bot";
- dir = 1
+ dir = 1;
+ icon_state = "bot"
},
/area/shuttle/escape)
"bA" = (
@@ -461,8 +457,8 @@
dir = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "bot";
- dir = 1
+ dir = 1;
+ icon_state = "bot"
},
/area/shuttle/escape)
"bB" = (
@@ -470,15 +466,14 @@
dir = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "bot";
- dir = 1
+ dir = 1;
+ icon_state = "bot"
},
/area/shuttle/escape)
"bC" = (
/obj/machinery/door/airlock/command/glass{
name = "Escape Shuttle Cockpit";
- req_access_txt = "0";
- req_one_access_txt = "2;19"
+ req_access_txt = "63"
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -493,7 +488,6 @@
name = "Shuttle Hatch"
},
/obj/docking_port/mobile/emergency{
- dir = 4;
dwidth = 11;
height = 18;
timid = 1;
@@ -516,8 +510,8 @@
"bG" = (
/obj/machinery/mech_bay_recharge_port,
/turf/simulated/floor/plasteel{
- icon_state = "bot";
- dir = 1
+ dir = 1;
+ icon_state = "bot"
},
/area/shuttle/escape)
"bH" = (
@@ -538,14 +532,13 @@
pixel_y = 8
},
/turf/simulated/floor/plasteel{
- icon_state = "bot";
- dir = 1
+ dir = 1;
+ icon_state = "bot"
},
/area/shuttle/escape)
"bJ" = (
/obj/item/twohanded/required/kirbyplants,
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/turf/simulated/floor/plasteel,
@@ -553,24 +546,21 @@
"bK" = (
/obj/item/twohanded/required/kirbyplants,
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/plasteel,
/area/shuttle/escape)
"bL" = (
/obj/structure/reagent_dispensers/fueltank/chem{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/turf/simulated/floor/plasteel{
- icon_state = "bot";
- dir = 1
+ dir = 1;
+ icon_state = "bot"
},
/area/shuttle/escape)
"bM" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "browncorner"
},
/area/shuttle/escape)
@@ -582,8 +572,8 @@
/area/shuttle/escape)
"bO" = (
/turf/simulated/floor/plasteel{
- icon_state = "bot";
- dir = 1
+ dir = 1;
+ icon_state = "bot"
},
/area/shuttle/escape)
"bP" = (
@@ -591,8 +581,8 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "bot";
- dir = 1
+ dir = 1;
+ icon_state = "bot"
},
/area/shuttle/escape)
"bQ" = (
@@ -600,8 +590,8 @@
dir = 8
},
/turf/simulated/floor/plasteel{
- icon_state = "bot";
- dir = 1
+ dir = 1;
+ icon_state = "bot"
},
/area/shuttle/escape)
"bR" = (
@@ -633,8 +623,8 @@
"bV" = (
/obj/structure/reagent_dispensers/watertank,
/turf/simulated/floor/plasteel{
- icon_state = "bot";
- dir = 1
+ dir = 1;
+ icon_state = "bot"
},
/area/shuttle/escape)
"bX" = (
@@ -654,13 +644,11 @@
/obj/machinery/cell_charger,
/obj/item/stock_parts/cell/high,
/obj/machinery/light/small{
- tag = "icon-bulb1 (WEST)";
- icon_state = "bulb1";
dir = 8
},
/turf/simulated/floor/plasteel{
- icon_state = "bot";
- dir = 1
+ dir = 1;
+ icon_state = "bot"
},
/area/shuttle/escape)
"ca" = (
@@ -673,8 +661,8 @@
/obj/item/wrench,
/obj/item/radio,
/turf/simulated/floor/plasteel{
- icon_state = "bot";
- dir = 1
+ dir = 1;
+ icon_state = "bot"
},
/area/shuttle/escape)
"cb" = (
@@ -688,13 +676,12 @@
"cd" = (
/obj/item/radio/intercom{
dir = 8;
- name = "station intercom (General)";
pixel_x = -28
},
/obj/machinery/recharge_station,
/turf/simulated/floor/plasteel{
- icon_state = "bot";
- dir = 1
+ dir = 1;
+ icon_state = "bot"
},
/area/shuttle/escape)
"ce" = (
@@ -709,8 +696,8 @@
pixel_y = -4
},
/turf/simulated/floor/plasteel{
- icon_state = "bot";
- dir = 1
+ dir = 1;
+ icon_state = "bot"
},
/area/shuttle/escape)
"cf" = (
@@ -719,22 +706,20 @@
},
/obj/machinery/recharge_station,
/turf/simulated/floor/plasteel{
- icon_state = "bot";
- dir = 1
+ dir = 1;
+ icon_state = "bot"
},
/area/shuttle/escape)
"cg" = (
/turf/simulated/floor/plasteel{
- tag = "icon-browncorner (EAST)";
- icon_state = "browncorner";
- dir = 4
+ dir = 4;
+ icon_state = "browncorner"
},
/area/shuttle/escape)
"ch" = (
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "browncorner";
- tag = "icon-browncorner (EAST)"
+ icon_state = "browncorner"
},
/area/shuttle/escape)
"ci" = (
@@ -750,13 +735,12 @@
},
/obj/machinery/light/small,
/turf/simulated/floor/plasteel{
- icon_state = "bot";
- dir = 1
+ dir = 1;
+ icon_state = "bot"
},
/area/shuttle/escape)
"cj" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/turf/simulated/floor/plasteel,
@@ -766,19 +750,17 @@
dir = 8
},
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "bot";
- dir = 1
+ dir = 1;
+ icon_state = "bot"
},
/area/shuttle/escape)
"cl" = (
/obj/machinery/door/airlock/medical/glass{
id_tag = null;
- name = "Escape Shuttle Infirmary";
- req_access_txt = "0"
+ name = "Escape Shuttle Infirmary"
},
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
@@ -792,20 +774,17 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cmo"
},
/area/shuttle/escape)
"cp" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cmo"
},
/area/shuttle/escape)
"cq" = (
/obj/machinery/sleeper,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cmo"
},
/area/shuttle/escape)
@@ -817,9 +796,8 @@
/area/shuttle/escape)
"cs" = (
/turf/simulated/floor/plasteel{
- tag = "icon-whiteblue (NORTH)";
- icon_state = "whiteblue";
- dir = 1
+ dir = 1;
+ icon_state = "whiteblue"
},
/area/shuttle/escape)
"ct" = (
@@ -831,16 +809,14 @@
pixel_y = 8
},
/turf/simulated/floor/plasteel{
- tag = "icon-whiteblue (SOUTHEAST)";
- icon_state = "whiteblue";
- dir = 6
+ dir = 6;
+ icon_state = "whiteblue"
},
/area/shuttle/escape)
"cu" = (
/obj/machinery/door/airlock/medical/glass{
id_tag = null;
- name = "Escape Shuttle Infirmary";
- req_access_txt = "0"
+ name = "Escape Shuttle Infirmary"
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -856,9 +832,8 @@
/obj/structure/bed/roller,
/obj/machinery/iv_drip,
/turf/simulated/floor/plasteel{
- tag = "icon-whiteblue (EAST)";
- icon_state = "whiteblue";
- dir = 4
+ dir = 4;
+ icon_state = "whiteblue"
},
/area/shuttle/escape)
"cx" = (
@@ -867,14 +842,12 @@
/obj/item/reagent_containers/iv_bag/blood/random,
/obj/item/reagent_containers/iv_bag/blood/random,
/turf/simulated/floor/plasteel{
- tag = "icon-whiteblue (EAST)";
- icon_state = "whiteblue";
- dir = 4
+ dir = 4;
+ icon_state = "whiteblue"
},
/area/shuttle/escape)
"cy" = (
/turf/simulated/floor/plasteel{
- tag = "icon-whiteblue";
icon_state = "whiteblue"
},
/area/shuttle/escape)
@@ -890,40 +863,35 @@
pixel_y = 3
},
/turf/simulated/floor/plasteel{
- tag = "icon-whiteblue (NORTHEAST)";
- icon_state = "whiteblue";
- dir = 5
+ dir = 5;
+ icon_state = "whiteblue"
},
/area/shuttle/escape)
"cA" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/obj/structure/chair/comfy/shuttle{
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "bot";
- dir = 1
+ dir = 1;
+ icon_state = "bot"
},
/area/shuttle/escape)
"cB" = (
/obj/structure/table/reinforced,
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/obj/item/reagent_containers/food/drinks/mug/med,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cmo"
},
/area/shuttle/escape)
"cC" = (
/obj/item/flag/med,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cmo"
},
/area/shuttle/escape)
@@ -932,14 +900,12 @@
/obj/item/storage/backpack/medic,
/obj/item/storage/belt/medical,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cmo"
},
/area/shuttle/escape)
"cE" = (
/obj/structure/bed/roller,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cmo"
},
/area/shuttle/escape)
@@ -952,7 +918,6 @@
},
/obj/structure/bed/roller,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cmo"
},
/area/shuttle/escape)
@@ -961,7 +926,6 @@
/obj/item/clothing/gloves/color/latex/nitrile,
/obj/item/clothing/mask/breath,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cmo"
},
/area/shuttle/escape)
diff --git a/_maps/map_files/shuttles/emergency_dept.dmm b/_maps/map_files/shuttles/emergency_dept.dmm
index 22cb29655c6..f1aa34cc155 100644
--- a/_maps/map_files/shuttles/emergency_dept.dmm
+++ b/_maps/map_files/shuttles/emergency_dept.dmm
@@ -105,8 +105,7 @@
network = list("SS13","Research Outpost","Mining Outpost","Telecomms")
},
/obj/structure/sign/poster/official/nanotrasen_logo{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/turf/simulated/floor/plasteel{
dir = 9;
@@ -143,8 +142,7 @@
"ax" = (
/obj/machinery/computer/station_alert,
/obj/structure/sign/poster/official/nanotrasen_logo{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/turf/simulated/floor/plasteel{
dir = 5;
@@ -208,14 +206,12 @@
dir = 8
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cmo"
},
/area/shuttle/escape)
"aG" = (
/obj/machinery/recharger/wallcharger{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/turf/simulated/floor/mineral/plastitanium/red/brig,
/area/shuttle/escape)
@@ -225,11 +221,9 @@
"aI" = (
/obj/machinery/door/airlock/medical/glass{
id_tag = null;
- name = "Escape Shuttle Infirmary";
- req_access_txt = "0"
+ name = "Escape Shuttle Infirmary"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cmo"
},
/area/shuttle/escape)
@@ -247,20 +241,17 @@
req_access_txt = "5"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cmo"
},
/area/shuttle/escape)
"aM" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/obj/structure/chair/comfy/shuttle{
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cmo"
},
/area/shuttle/escape)
@@ -274,8 +265,7 @@
"aO" = (
/mob/living/simple_animal/bot/secbot,
/turf/simulated/floor/plasteel{
- icon_state = "cafeteria";
- dir = 2
+ icon_state = "cafeteria"
},
/area/shuttle/escape)
"aR" = (
@@ -286,8 +276,7 @@
/area/shuttle/escape)
"aS" = (
/turf/simulated/floor/plasteel{
- icon_state = "cafeteria";
- dir = 2
+ icon_state = "cafeteria"
},
/area/shuttle/escape)
"aT" = (
@@ -300,15 +289,13 @@
"aU" = (
/obj/structure/chair/stool/bar,
/turf/simulated/floor/plasteel{
- icon_state = "cafeteria";
- dir = 2
+ icon_state = "cafeteria"
},
/area/shuttle/escape)
"aV" = (
/obj/structure/table/wood,
/turf/simulated/floor/plasteel{
- icon_state = "cafeteria";
- dir = 2
+ icon_state = "cafeteria"
},
/area/shuttle/escape)
"aW" = (
@@ -342,7 +329,6 @@
on = 1
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cmo"
},
/area/shuttle/escape)
@@ -351,20 +337,17 @@
/obj/item/reagent_containers/food/drinks/shaker,
/obj/structure/table/wood,
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "cafeteria";
- dir = 2
+ icon_state = "cafeteria"
},
/area/shuttle/escape)
"be" = (
/obj/machinery/chem_dispenser/beer,
/obj/structure/table/wood,
/turf/simulated/floor/plasteel{
- icon_state = "cafeteria";
- dir = 2
+ icon_state = "cafeteria"
},
/area/shuttle/escape)
"bf" = (
@@ -379,9 +362,8 @@
pixel_y = 5
},
/turf/simulated/floor/plasteel{
- tag = "icon-whiteblue (NORTHEAST)";
- icon_state = "whiteblue";
- dir = 5
+ dir = 5;
+ icon_state = "whiteblue"
},
/area/shuttle/escape)
"bg" = (
@@ -404,8 +386,7 @@
/obj/machinery/chem_dispenser/soda,
/obj/structure/table/wood,
/turf/simulated/floor/plasteel{
- icon_state = "cafeteria";
- dir = 2
+ icon_state = "cafeteria"
},
/area/shuttle/escape)
"bj" = (
@@ -432,7 +413,6 @@
dir = 4
},
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/turf/simulated/floor/mineral/plastitanium/red/brig,
@@ -442,7 +422,6 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cmo"
},
/area/shuttle/escape)
@@ -464,7 +443,6 @@
dir = 8
},
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/mineral/plastitanium/red/brig,
@@ -491,9 +469,8 @@
/obj/machinery/iv_drip,
/obj/machinery/light,
/turf/simulated/floor/plasteel{
- tag = "icon-whiteblue (EAST)";
- icon_state = "whiteblue";
- dir = 4
+ dir = 4;
+ icon_state = "whiteblue"
},
/area/shuttle/escape)
"by" = (
@@ -527,7 +504,6 @@
name = "Shuttle Hatch"
},
/obj/docking_port/mobile/emergency{
- dir = 4;
dwidth = 11;
height = 18;
timid = 1;
@@ -546,7 +522,6 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cmo"
},
/area/shuttle/escape)
@@ -555,11 +530,9 @@
dir = 8
},
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cmo"
},
/area/shuttle/escape)
@@ -583,7 +556,6 @@
dir = 4
},
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/turf/simulated/floor/mineral/titanium/yellow,
@@ -593,7 +565,6 @@
dir = 8
},
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/mineral/titanium/yellow,
@@ -603,12 +574,11 @@
dir = 4
},
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/turf/simulated/floor/plasteel{
- icon_state = "bot";
- dir = 1
+ dir = 1;
+ icon_state = "bot"
},
/area/shuttle/escape)
"bP" = (
@@ -616,8 +586,8 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "bot";
- dir = 1
+ dir = 1;
+ icon_state = "bot"
},
/area/shuttle/escape)
"bQ" = (
@@ -625,8 +595,8 @@
dir = 8
},
/turf/simulated/floor/plasteel{
- icon_state = "bot";
- dir = 1
+ dir = 1;
+ icon_state = "bot"
},
/area/shuttle/escape)
"bR" = (
@@ -642,7 +612,6 @@
dir = 4
},
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/turf/simulated/floor/mineral/titanium/purple,
@@ -652,7 +621,6 @@
dir = 8
},
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/mineral/titanium/purple,
@@ -704,8 +672,7 @@
/obj/machinery/door/airlock/engineering/glass{
name = "Escape Shuttle Engineering";
normalspeed = 0;
- req_access_txt = "32";
- req_one_access_txt = "0"
+ req_access_txt = "32"
},
/turf/simulated/floor/mineral/titanium/yellow,
/area/shuttle/escape)
@@ -726,17 +693,15 @@
dir = 8
},
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "bot";
- dir = 1
+ dir = 1;
+ icon_state = "bot"
},
/area/shuttle/escape)
"cp" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cmo"
},
/area/shuttle/escape)
@@ -744,22 +709,20 @@
/obj/structure/bed/roller,
/obj/machinery/iv_drip,
/turf/simulated/floor/plasteel{
- tag = "icon-whiteblue (EAST)";
- icon_state = "whiteblue";
- dir = 4
+ dir = 4;
+ icon_state = "whiteblue"
},
/area/shuttle/escape)
"cA" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/obj/structure/chair/comfy/shuttle{
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "bot";
- dir = 1
+ dir = 1;
+ icon_state = "bot"
},
/area/shuttle/escape)
"cD" = (
@@ -767,14 +730,12 @@
/obj/item/storage/backpack/medic,
/obj/item/storage/belt/medical,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cmo"
},
/area/shuttle/escape)
"cE" = (
/obj/structure/bed/roller,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cmo"
},
/area/shuttle/escape)
@@ -783,7 +744,6 @@
/obj/item/clothing/gloves/color/latex/nitrile,
/obj/item/clothing/mask/breath,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cmo"
},
/area/shuttle/escape)
@@ -798,10 +758,19 @@
req_access_txt = "5"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cmo"
},
/area/shuttle/escape)
+"tG" = (
+/obj/machinery/door/airlock/command/glass{
+ name = "Escape Shuttle Cockpit";
+ normalspeed = 0;
+ req_access_txt = "63"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/shuttle/escape)
"xD" = (
/obj/structure/table/reinforced,
/obj/item/reagent_containers/iv_bag/blood/random,
@@ -811,9 +780,8 @@
/obj/item/reagent_containers/iv_bag/blood/random,
/obj/item/reagent_containers/iv_bag/blood/random,
/turf/simulated/floor/plasteel{
- tag = "icon-whiteblue (EAST)";
- icon_state = "whiteblue";
- dir = 4
+ dir = 4;
+ icon_state = "whiteblue"
},
/area/shuttle/escape)
"PY" = (
@@ -828,7 +796,6 @@
pixel_y = 5
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cmo"
},
/area/shuttle/escape)
@@ -1108,7 +1075,7 @@ an
an
an
an
-aE
+tG
ba
ba
ba
@@ -1139,7 +1106,7 @@ an
an
an
an
-aE
+tG
ba
ba
ba
diff --git a/_maps/map_files/shuttles/emergency_meta.dmm b/_maps/map_files/shuttles/emergency_meta.dmm
index 9a6f9844e7d..bd819b0071d 100644
--- a/_maps/map_files/shuttles/emergency_meta.dmm
+++ b/_maps/map_files/shuttles/emergency_meta.dmm
@@ -24,8 +24,7 @@
"ai" = (
/obj/machinery/door/airlock/titanium{
id_tag = "s_docking_airlock";
- name = "Emergency Shuttle Airlock";
- req_access_txt = "0"
+ name = "Emergency Shuttle Airlock"
},
/turf/simulated/floor/plating,
/area/shuttle/escape)
@@ -80,7 +79,6 @@
/obj/item/radio/intercom{
dir = 4;
name = "Station Intercom (General)";
- pixel_x = 0;
pixel_y = 27
},
/obj/structure/chair/comfy/shuttle,
@@ -129,16 +127,12 @@
/area/shuttle/escape)
"aA" = (
/obj/structure/shuttle/engine/propulsion{
- dir = 8;
- icon_state = "propulsion";
- tag = "icon-propulsion (EAST)"
+ dir = 8
},
/turf/simulated/floor/plating/airless,
/area/shuttle/escape)
"aB" = (
/obj/structure/shuttle/engine/heater{
- tag = "icon-heater (WEST)";
- icon_state = "heater";
dir = 8
},
/obj/structure/window/reinforced{
@@ -177,22 +171,18 @@
"aH" = (
/obj/structure/shuttle/engine/propulsion{
dir = 8;
- icon_state = "propulsion_r";
- tag = "icon-propulsion_r (EAST)"
+ icon_state = "propulsion_r"
},
/turf/simulated/floor/plating/airless,
/area/shuttle/escape)
"aI" = (
/obj/structure/shuttle/engine/heater{
- tag = "icon-heater (WEST)";
- icon_state = "heater";
dir = 8
},
/obj/structure/window/reinforced{
dir = 4
},
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/plating/airless,
@@ -258,7 +248,6 @@
/obj/item/clothing/head/hardhat,
/obj/item/clothing/head/hardhat,
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/mineral/titanium,
@@ -293,9 +282,6 @@
"aS" = (
/obj/machinery/vending/wallmed{
name = "Emergency NanoMed";
- pixel_x = 0;
- pixel_y = 0;
- req_access_txt = "0";
use_power = 0
},
/turf/simulated/wall/mineral/titanium,
@@ -320,8 +306,7 @@
/obj/machinery/status_display{
dir = 4;
layer = 4;
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/turf/simulated/floor/mineral/titanium/blue,
/area/shuttle/escape)
@@ -348,8 +333,6 @@
"bb" = (
/obj/structure/table,
/obj/item/radio/intercom{
- broadcasting = 0;
- listening = 1;
name = "Station Intercom (General)";
pixel_y = -28
},
@@ -363,15 +346,12 @@
/obj/structure/table,
/obj/item/folder/blue,
/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
pixel_y = -30
},
/turf/simulated/floor/mineral/titanium/blue,
/area/shuttle/escape)
"bd" = (
/obj/item/radio/intercom{
- broadcasting = 0;
- listening = 1;
name = "Station Intercom (General)";
pixel_y = -28
},
@@ -391,7 +371,6 @@
/obj/item/stack/medical/ointment,
/obj/item/stack/medical/bruise_pack,
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/mineral/titanium,
@@ -407,15 +386,14 @@
"bj" = (
/obj/machinery/door/airlock/security/glass{
name = "Brig";
- req_access_txt = "2"
+ req_access_txt = "63"
},
/turf/simulated/floor/mineral/plastitanium/red/brig,
/area/shuttle/escape)
"bl" = (
/obj/machinery/door/airlock/medical/glass{
id_tag = null;
- name = "Escape Shuttle Infirmary";
- req_access_txt = "0"
+ name = "Escape Shuttle Infirmary"
},
/turf/simulated/floor/mineral/titanium/blue,
/area/shuttle/escape)
@@ -473,7 +451,6 @@
"bw" = (
/obj/machinery/sleeper,
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/mineral/titanium/blue,
@@ -533,8 +510,7 @@
"bF" = (
/obj/structure/table,
/obj/item/reagent_containers/glass/bottle/epinephrine{
- pixel_x = 6;
- pixel_y = 0
+ pixel_x = 6
},
/obj/item/reagent_containers/glass/bottle/charcoal{
pixel_x = -3
@@ -576,7 +552,6 @@
pixel_y = 1
},
/obj/item/storage/toolbox/mechanical{
- pixel_x = 0;
pixel_y = -1
},
/obj/item/storage/toolbox/emergency{
@@ -653,8 +628,6 @@
pixel_y = 4
},
/obj/item/radio/intercom{
- broadcasting = 0;
- listening = 1;
name = "Station Intercom (General)";
pixel_y = -28
},
@@ -696,7 +669,6 @@
/obj/item/radio/intercom{
dir = 4;
name = "Station Intercom (General)";
- pixel_x = 0;
pixel_y = -27
},
/turf/simulated/floor/mineral/titanium/blue,
@@ -738,7 +710,6 @@
/area/shuttle/escape)
"ca" = (
/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
pixel_y = -30
},
/obj/machinery/space_heater,
@@ -770,9 +741,7 @@
},
/area/shuttle/escape)
"cc" = (
-/obj/structure/closet/crate/medical{
- name = "medical crate"
- },
+/obj/structure/closet/crate/medical,
/obj/item/storage/firstaid/regular,
/obj/item/storage/firstaid/o2{
pixel_x = 3;
@@ -799,8 +768,6 @@
/area/shuttle/escape)
"cd" = (
/obj/item/radio/intercom{
- broadcasting = 0;
- listening = 1;
name = "Station Intercom (General)";
pixel_y = -28
},
@@ -831,8 +798,7 @@
},
/obj/machinery/door/airlock/titanium{
id_tag = "s_docking_airlock";
- name = "Emergency Shuttle Airlock";
- req_access_txt = "0"
+ name = "Emergency Shuttle Airlock"
},
/turf/simulated/floor/plating,
/area/shuttle/escape)
diff --git a/_maps/map_files/shuttles/emergency_mil.dmm b/_maps/map_files/shuttles/emergency_mil.dmm
index 482970ba92d..72fb0489545 100644
--- a/_maps/map_files/shuttles/emergency_mil.dmm
+++ b/_maps/map_files/shuttles/emergency_mil.dmm
@@ -29,8 +29,6 @@
"ak" = (
/obj/machinery/computer/communications,
/obj/machinery/light/spot{
- tag = "icon-tube1 (NORTH)";
- icon_state = "tube1";
dir = 1
},
/turf/simulated/floor/mineral/titanium/blue,
@@ -48,8 +46,6 @@
network = list("SS13","Telecomms","Research Outpost","Mining Outpost")
},
/obj/machinery/light/spot{
- tag = "icon-tube1 (NORTH)";
- icon_state = "tube1";
dir = 1
},
/turf/simulated/floor/mineral/titanium/blue,
@@ -91,8 +87,6 @@
pixel_y = 30
},
/obj/machinery/light/spot{
- tag = "icon-tube1 (NORTH)";
- icon_state = "tube1";
dir = 1
},
/obj/structure/chair/comfy/shuttle,
@@ -104,9 +98,8 @@
"aJ" = (
/obj/machinery/atmospherics/unary/cryo_cell,
/turf/simulated/floor/plasteel{
- tag = "icon-whiteblue (NORTHWEST)";
- icon_state = "whiteblue";
- dir = 9
+ dir = 9;
+ icon_state = "whiteblue"
},
/area/shuttle/escape)
"aK" = (
@@ -116,9 +109,8 @@
},
/obj/item/wrench,
/turf/simulated/floor/plasteel{
- tag = "icon-whiteblue (NORTH)";
- icon_state = "whiteblue";
- dir = 1
+ dir = 1;
+ icon_state = "whiteblue"
},
/area/shuttle/escape)
"aL" = (
@@ -126,22 +118,18 @@
pixel_y = 30
},
/obj/machinery/light/spot{
- tag = "icon-tube1 (NORTH)";
- icon_state = "tube1";
dir = 1
},
/turf/simulated/floor/plasteel{
- tag = "icon-whiteblue (NORTH)";
- icon_state = "whiteblue";
- dir = 1
+ dir = 1;
+ icon_state = "whiteblue"
},
/area/shuttle/escape)
"aM" = (
/obj/machinery/sleeper,
/turf/simulated/floor/plasteel{
- tag = "icon-whiteblue (NORTHEAST)";
- icon_state = "whiteblue";
- dir = 5
+ dir = 5;
+ icon_state = "whiteblue"
},
/area/shuttle/escape)
"aN" = (
@@ -158,15 +146,13 @@
dir = 8
},
/turf/simulated/floor/plasteel{
- tag = "icon-whiteblue (WEST)";
- icon_state = "whiteblue";
- dir = 8
+ dir = 8;
+ icon_state = "whiteblue"
},
/area/shuttle/escape)
"aR" = (
/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 9;
- icon_state = "intact"
+ dir = 9
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -181,36 +167,30 @@
/obj/machinery/vending/wallmed{
layer = 3.3;
name = "Emergency NanoMed";
- pixel_x = 28;
- pixel_y = 0;
- req_access_txt = "0"
+ pixel_x = 28
},
/obj/machinery/sleeper,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whiteblue"
},
/area/shuttle/escape)
"aU" = (
/obj/machinery/atmospherics/pipe/simple/hidden,
/turf/simulated/floor/plasteel{
- tag = "icon-whiteblue (WEST)";
- icon_state = "whiteblue";
- dir = 8
+ dir = 8;
+ icon_state = "whiteblue"
},
/area/shuttle/escape)
"aV" = (
/obj/item/radio/intercom{
dir = 4;
- name = "station intercom (General)";
pixel_x = 28
},
/obj/structure/bed/roller,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whiteblue"
},
/area/shuttle/escape)
"aW" = (
@@ -233,9 +213,8 @@
dir = 1
},
/turf/simulated/floor/plasteel{
- tag = "icon-whiteblue (SOUTHWEST)";
- icon_state = "whiteblue";
- dir = 10
+ dir = 10;
+ icon_state = "whiteblue"
},
/area/shuttle/escape)
"aZ" = (
@@ -258,40 +237,30 @@
pixel_x = 2;
pixel_y = 3
},
-/obj/item/reagent_containers/glass/beaker/cryoxadone{
- pixel_x = 0;
- pixel_y = 0
- },
+/obj/item/reagent_containers/glass/beaker/cryoxadone,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whiteblue"
},
/area/shuttle/escape)
"ba" = (
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whiteblue"
},
/area/shuttle/escape)
"bb" = (
/obj/machinery/light/spot{
- tag = "icon-tube1 (EAST)";
- icon_state = "tube1";
dir = 4
},
/obj/structure/bed/roller,
/turf/simulated/floor/plasteel{
- tag = "icon-whiteblue (SOUTHEAST)";
- icon_state = "whiteblue";
- dir = 6
+ dir = 6;
+ icon_state = "whiteblue"
},
/area/shuttle/escape)
"bc" = (
/obj/machinery/door/airlock/security/glass{
name = "Escape Shuttle Cell";
- req_access_txt = "2"
+ req_access_txt = "63"
},
/turf/simulated/floor/plating,
/area/shuttle/escape)
@@ -316,7 +285,6 @@
/area/shuttle/escape)
"bh" = (
/obj/docking_port/mobile/emergency{
- dir = 4;
dwidth = 11;
height = 13;
timid = 1;
@@ -339,12 +307,9 @@
"bj" = (
/obj/item/radio/intercom{
dir = 8;
- name = "station intercom (General)";
pixel_x = -28
},
/obj/machinery/light/spot{
- tag = "icon-tube1 (WEST)";
- icon_state = "tube1";
dir = 8
},
/obj/structure/chair/comfy/shuttle{
@@ -366,8 +331,6 @@
/area/shuttle/escape)
"bm" = (
/obj/machinery/light/spot{
- tag = "icon-tube1 (EAST)";
- icon_state = "tube1";
dir = 4
},
/obj/structure/chair/comfy/shuttle{
@@ -377,8 +340,6 @@
/area/shuttle/escape)
"bn" = (
/obj/machinery/light/spot{
- tag = "icon-tube1 (WEST)";
- icon_state = "tube1";
dir = 8
},
/obj/structure/chair/comfy/shuttle{
@@ -424,8 +385,6 @@
name = "shuttle turret"
},
/obj/machinery/light/spot{
- tag = "icon-tube1 (NORTH)";
- icon_state = "tube1";
dir = 1
},
/turf/simulated/floor/plating/airless,
diff --git a/_maps/map_files/shuttles/emergency_narnar.dmm b/_maps/map_files/shuttles/emergency_narnar.dmm
index 2b34425b9d2..b52115e22c5 100644
--- a/_maps/map_files/shuttles/emergency_narnar.dmm
+++ b/_maps/map_files/shuttles/emergency_narnar.dmm
@@ -90,7 +90,6 @@
"as" = (
/obj/effect/decal/remains/human{
desc = "This guy seemed to have died in terrible way! Half his remains are dust.";
- icon_state = "remains";
name = "Human remains"
},
/obj/structure/chair/comfy/shuttle{
@@ -103,13 +102,10 @@
pixel_y = 30
},
/obj/machinery/light/spot{
- tag = "icon-tube1 (NORTH)";
- icon_state = "tube1";
dir = 1
},
/obj/effect/decal/remains/human{
desc = "This guy seemed to have died in terrible way! Half his remains are dust.";
- icon_state = "remains";
name = "Human remains"
},
/obj/structure/chair/comfy/shuttle,
@@ -118,7 +114,6 @@
"au" = (
/obj/effect/decal/remains/human{
desc = "This guy seemed to have died in terrible way! Half his remains are dust.";
- icon_state = "remains";
name = "Human remains"
},
/obj/structure/chair/comfy/shuttle{
@@ -135,8 +130,6 @@
pixel_y = 30
},
/obj/machinery/light/spot{
- tag = "icon-tube1 (NORTH)";
- icon_state = "tube1";
dir = 1
},
/turf/simulated/floor/engine/cult,
@@ -147,7 +140,6 @@
},
/obj/effect/decal/remains/human{
desc = "This guy seemed to have died in terrible way! Half his remains are dust.";
- icon_state = "remains";
name = "Human remains"
},
/obj/structure/chair/comfy/shuttle{
@@ -172,7 +164,6 @@
"aB" = (
/obj/effect/decal/remains/human{
desc = "This guy seemed to have died in terrible way! Half his remains are dust.";
- icon_state = "remains";
name = "Human remains"
},
/obj/structure/chair/comfy/shuttle{
@@ -183,12 +174,10 @@
"aC" = (
/obj/item/radio/intercom{
dir = 4;
- name = "station intercom (General)";
pixel_x = 28
},
/obj/effect/decal/remains/human{
desc = "This guy seemed to have died in terrible way! Half his remains are dust.";
- icon_state = "remains";
name = "Human remains"
},
/obj/structure/chair/comfy/shuttle{
@@ -204,7 +193,6 @@
/area/shuttle/escape)
"aE" = (
/obj/docking_port/mobile/emergency{
- dir = 4;
dwidth = 11;
height = 13;
name = "Shuttle 667";
@@ -221,12 +209,9 @@
"aG" = (
/obj/item/radio/intercom{
dir = 8;
- name = "station intercom (General)";
pixel_x = -28
},
/obj/machinery/light/spot{
- tag = "icon-tube1 (WEST)";
- icon_state = "tube1";
dir = 8
},
/obj/item/flag/cult,
@@ -245,8 +230,6 @@
pixel_x = 28
},
/obj/machinery/light/spot{
- tag = "icon-tube1 (EAST)";
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/engine/cult,
@@ -278,8 +261,6 @@
/obj/item/extinguisher,
/obj/item/crowbar,
/obj/machinery/light/spot{
- tag = "icon-tube1 (WEST)";
- icon_state = "tube1";
dir = 8
},
/turf/simulated/floor/engine/cult,
@@ -340,8 +321,6 @@
/area/shuttle/escape)
"bb" = (
/obj/machinery/light/spot{
- tag = "icon-tube1 (EAST)";
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/engine/cult,
@@ -367,9 +346,8 @@
/area/shuttle/escape)
"bg" = (
/obj/machinery/sleeper{
- tag = "icon-sleeper (NORTH)";
- icon_state = "sleeper";
- dir = 1
+ dir = 1;
+ icon_state = "sleeper"
},
/obj/effect/decal/cleanable/blood/splatter,
/turf/simulated/floor/engine/cult,
diff --git a/_maps/map_files/shuttles/emergency_old.dmm b/_maps/map_files/shuttles/emergency_old.dmm
index d8493cc5c3b..cc82f51542e 100644
--- a/_maps/map_files/shuttles/emergency_old.dmm
+++ b/_maps/map_files/shuttles/emergency_old.dmm
@@ -31,7 +31,6 @@
/area/shuttle/escape)
"ak" = (
/obj/docking_port/mobile/emergency{
- dir = 4;
dwidth = 11;
height = 13;
timid = 1;
@@ -115,8 +114,6 @@
pixel_y = 30
},
/obj/machinery/light/spot{
- tag = "icon-tube1 (NORTH)";
- icon_state = "tube1";
dir = 1
},
/turf/simulated/floor/mineral/titanium/blue,
@@ -151,12 +148,9 @@
"aL" = (
/obj/item/radio/intercom{
dir = 8;
- name = "station intercom (General)";
pixel_x = -28
},
/obj/machinery/light/spot{
- tag = "icon-tube1 (WEST)";
- icon_state = "tube1";
dir = 8
},
/obj/structure/chair/comfy/shuttle{
@@ -169,8 +163,6 @@
pixel_x = 28
},
/obj/machinery/light/spot{
- tag = "icon-tube1 (EAST)";
- icon_state = "tube1";
dir = 4
},
/obj/structure/chair/comfy/shuttle{
@@ -188,8 +180,6 @@
/obj/item/extinguisher,
/obj/item/crowbar,
/obj/machinery/light/spot{
- tag = "icon-tube1 (WEST)";
- icon_state = "tube1";
dir = 8
},
/turf/simulated/floor/mineral/titanium/blue,
@@ -213,8 +203,7 @@
"aV" = (
/obj/machinery/door/airlock/medical/glass{
id_tag = null;
- name = "Escape Shuttle Infirmary";
- req_access_txt = "0"
+ name = "Escape Shuttle Infirmary"
},
/turf/simulated/floor/mineral/titanium/blue,
/area/shuttle/escape)
@@ -244,20 +233,15 @@
/area/shuttle/escape)
"bc" = (
/obj/machinery/light/spot{
- tag = "icon-tube1 (EAST)";
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/mineral/titanium/yellow,
/area/shuttle/escape)
"bd" = (
/obj/machinery/status_display{
- pixel_x = -30;
- pixel_y = 0
+ pixel_x = -30
},
/obj/machinery/light/spot{
- tag = "icon-tube1 (WEST)";
- icon_state = "tube1";
dir = 8
},
/turf/simulated/floor/mineral/titanium,
@@ -265,7 +249,6 @@
"be" = (
/obj/item/radio/intercom{
dir = 4;
- name = "station intercom (General)";
pixel_x = 28
},
/obj/structure/bed/roller,
@@ -302,15 +285,14 @@
"db" = (
/obj/machinery/door/airlock/security/glass{
name = "Escape Shuttle Cell";
- req_access_txt = "2"
+ req_access_txt = "63"
},
/turf/simulated/floor/plating,
/area/shuttle/escape)
"ev" = (
/obj/machinery/sleeper{
- tag = "icon-sleeper (NORTH)";
- icon_state = "sleeper";
- dir = 1
+ dir = 1;
+ icon_state = "sleeper"
},
/turf/simulated/floor/mineral/titanium,
/area/shuttle/escape)
@@ -345,8 +327,6 @@
pixel_y = 30
},
/obj/machinery/light/spot{
- tag = "icon-tube1 (NORTH)";
- icon_state = "tube1";
dir = 1
},
/obj/structure/chair/comfy/shuttle,
@@ -356,9 +336,7 @@
/obj/machinery/vending/wallmed{
layer = 3.3;
name = "Emergency NanoMed";
- pixel_x = 28;
- pixel_y = 0;
- req_access_txt = "0"
+ pixel_x = 28
},
/obj/structure/bed/roller,
/turf/simulated/floor/mineral/titanium,
diff --git a/_maps/map_files/shuttles/ferry_base.dmm b/_maps/map_files/shuttles/ferry_base.dmm
index 84d89e20639..31df36a0d03 100644
--- a/_maps/map_files/shuttles/ferry_base.dmm
+++ b/_maps/map_files/shuttles/ferry_base.dmm
@@ -4,9 +4,7 @@
/area/space)
"b" = (
/obj/structure/shuttle/engine/propulsion{
- dir = 8;
- icon_state = "propulsion";
- tag = "icon-propulsion (EAST)"
+ dir = 8
},
/turf/simulated/wall/mineral/titanium,
/area/shuttle/transport)
@@ -19,8 +17,6 @@
/area/shuttle/transport)
"h" = (
/obj/machinery/light/spot{
- tag = "icon-tube1 (NORTH)";
- icon_state = "tube1";
dir = 1
},
/obj/structure/chair/comfy/shuttle{
@@ -38,8 +34,6 @@
/area/shuttle/transport)
"k" = (
/obj/machinery/light/spot{
- tag = "icon-tube1 (NORTH)";
- icon_state = "tube1";
dir = 1
},
/obj/structure/chair/comfy/shuttle,
diff --git a/_maps/map_files/shuttles/ferry_meat.dmm b/_maps/map_files/shuttles/ferry_meat.dmm
index 6dcf2379026..0d0a4f7fab4 100644
--- a/_maps/map_files/shuttles/ferry_meat.dmm
+++ b/_maps/map_files/shuttles/ferry_meat.dmm
@@ -4,9 +4,7 @@
/area/space)
"b" = (
/obj/structure/shuttle/engine/propulsion{
- dir = 8;
- icon_state = "propulsion";
- tag = "icon-propulsion (EAST)"
+ dir = 8
},
/turf/simulated/wall/mineral/titanium,
/area/shuttle/transport)
@@ -19,8 +17,6 @@
/area/shuttle/transport)
"h" = (
/obj/machinery/light/spot{
- tag = "icon-tube1 (NORTH)";
- icon_state = "tube1";
dir = 1
},
/obj/structure/chair/comfy/shuttle{
@@ -58,8 +54,6 @@
/area/shuttle/transport)
"l" = (
/obj/machinery/light/spot{
- tag = "icon-tube1 (NORTH)";
- icon_state = "tube1";
dir = 1
},
/obj/machinery/gibber,
@@ -81,8 +75,6 @@
/area/shuttle/transport)
"o" = (
/obj/machinery/light/spot{
- tag = "icon-tube1 (NORTH)";
- icon_state = "tube1";
dir = 1
},
/obj/structure/chair/comfy/shuttle,
diff --git a/_maps/map_files/templates/medium_shuttle1.dmm b/_maps/map_files/templates/medium_shuttle1.dmm
index dc79e62c111..47f04ea3a01 100644
--- a/_maps/map_files/templates/medium_shuttle1.dmm
+++ b/_maps/map_files/templates/medium_shuttle1.dmm
@@ -4,9 +4,7 @@
/area/space)
"b" = (
/obj/structure/shuttle/engine/propulsion/burst/left{
- dir = 8;
- icon_state = "burst_l";
- tag = "icon-burst_l (EAST)"
+ dir = 8
},
/turf/simulated/floor/plating/airless,
/area/ruin/powered{
@@ -14,13 +12,9 @@
})
"c" = (
/obj/structure/shuttle/engine/heater{
- tag = "icon-heater (WEST)";
- icon_state = "heater";
dir = 8
},
/obj/structure/window/reinforced{
- tag = "icon-rwindow (EAST)";
- icon_state = "rwindow";
dir = 4
},
/turf/simulated/floor/plating/airless,
@@ -53,7 +47,6 @@
})
"j" = (
/turf/simulated/floor/plasteel{
- tag = "icon-dark";
icon_state = "dark"
},
/area/ruin/powered{
@@ -62,7 +55,6 @@
"k" = (
/obj/machinery/door/airlock/public/glass,
/turf/simulated/floor/plasteel{
- tag = "icon-dark";
icon_state = "dark"
},
/area/ruin/powered{
@@ -72,7 +64,6 @@
/obj/structure/computerframe,
/obj/item/circuitboard/teleporter,
/turf/simulated/floor/plasteel{
- tag = "icon-dark";
icon_state = "dark"
},
/area/ruin/powered{
@@ -82,7 +73,6 @@
/obj/structure/table,
/obj/item/storage/firstaid/regular,
/turf/simulated/floor/plasteel{
- tag = "icon-bluefull";
icon_state = "bluefull"
},
/area/ruin/powered{
@@ -93,7 +83,6 @@
/obj/item/clothing/head/helmet/space/eva,
/obj/item/clothing/suit/space/eva,
/turf/simulated/floor/plasteel{
- tag = "icon-dark";
icon_state = "dark"
},
/area/ruin/powered{
@@ -112,7 +101,6 @@
})
"q" = (
/turf/simulated/floor/plasteel{
- tag = "icon-bluefull";
icon_state = "bluefull"
},
/area/ruin/powered{
@@ -120,7 +108,6 @@
})
"r" = (
/turf/simulated/floor/plasteel{
- tag = "icon-whiteyellowfull";
icon_state = "whiteyellowfull"
},
/area/ruin/powered{
@@ -129,7 +116,6 @@
"s" = (
/obj/structure/table/reinforced,
/turf/simulated/floor/plasteel{
- tag = "icon-whiteyellowfull";
icon_state = "whiteyellowfull"
},
/area/ruin/powered{
@@ -145,7 +131,6 @@
/obj/machinery/teleport/hub,
/obj/item/hand_tele,
/turf/simulated/floor/plasteel{
- tag = "icon-dark";
icon_state = "dark"
},
/area/ruin/powered{
@@ -156,7 +141,6 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- tag = "icon-dark";
icon_state = "dark"
},
/area/ruin/powered{
@@ -164,9 +148,7 @@
})
"z" = (
/obj/structure/shuttle/engine/propulsion/burst/right{
- dir = 8;
- icon_state = "burst_r";
- tag = "icon-burst_r (EAST)"
+ dir = 8
},
/turf/simulated/floor/plating/airless,
/area/ruin/powered{
@@ -178,7 +160,6 @@
},
/obj/machinery/teleport/station,
/turf/simulated/floor/plasteel{
- tag = "icon-dark";
icon_state = "dark"
},
/area/ruin/powered{
@@ -187,7 +168,6 @@
"D" = (
/obj/machinery/light,
/turf/simulated/floor/plasteel{
- tag = "icon-dark";
icon_state = "dark"
},
/area/ruin/powered{
@@ -196,7 +176,6 @@
"E" = (
/obj/machinery/vending/snack,
/turf/simulated/floor/plasteel{
- tag = "icon-dark";
icon_state = "dark"
},
/area/ruin/powered{
@@ -205,7 +184,6 @@
"F" = (
/obj/machinery/portable_atmospherics/canister/oxygen,
/turf/simulated/floor/plasteel{
- tag = "icon-dark";
icon_state = "dark"
},
/area/ruin/powered{
@@ -214,7 +192,6 @@
"H" = (
/obj/machinery/sleeper,
/turf/simulated/floor/plasteel{
- tag = "icon-bluefull";
icon_state = "bluefull"
},
/area/ruin/powered{
@@ -224,7 +201,6 @@
/obj/structure/bed,
/obj/item/bedsheet/purple,
/turf/simulated/floor/plasteel{
- tag = "icon-dark";
icon_state = "dark"
},
/area/ruin/powered{
@@ -233,7 +209,6 @@
"J" = (
/obj/machinery/vending/medical,
/turf/simulated/floor/plasteel{
- tag = "icon-dark";
icon_state = "dark"
},
/area/ruin/powered{
@@ -245,7 +220,6 @@
},
/obj/machinery/vending/engivend,
/turf/simulated/floor/plasteel{
- tag = "icon-dark";
icon_state = "dark"
},
/area/ruin/powered{
@@ -256,7 +230,6 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- tag = "icon-whiteyellowfull";
icon_state = "whiteyellowfull"
},
/area/ruin/powered{
@@ -265,7 +238,6 @@
"M" = (
/obj/machinery/computer,
/turf/simulated/floor/plasteel{
- tag = "icon-whiteyellowfull";
icon_state = "whiteyellowfull"
},
/area/ruin/powered{
@@ -276,7 +248,6 @@
/obj/item/storage/toolbox/electrical,
/obj/item/clothing/gloves/color/yellow,
/turf/simulated/floor/plasteel{
- tag = "icon-dark";
icon_state = "dark"
},
/area/ruin/powered{
@@ -300,7 +271,6 @@
/obj/structure/table,
/obj/item/storage/belt/utility/full/multitool,
/turf/simulated/floor/plasteel{
- tag = "icon-dark";
icon_state = "dark"
},
/area/ruin/powered{
@@ -309,7 +279,6 @@
"R" = (
/obj/machinery/vending/coffee,
/turf/simulated/floor/plasteel{
- tag = "icon-dark";
icon_state = "dark"
},
/area/ruin/powered{
@@ -318,7 +287,6 @@
"S" = (
/obj/item/radio/beacon,
/turf/simulated/floor/plasteel{
- tag = "icon-dark";
icon_state = "dark"
},
/area/ruin/powered{
@@ -332,7 +300,6 @@
/obj/machinery/recharger,
/obj/item/gun/energy/laser/retro,
/turf/simulated/floor/plasteel{
- tag = "icon-whiteyellowfull";
icon_state = "whiteyellowfull"
},
/area/ruin/powered{
diff --git a/_maps/map_files/templates/medium_shuttle2.dmm b/_maps/map_files/templates/medium_shuttle2.dmm
index 6dde84a55bf..98c0db59aa6 100644
--- a/_maps/map_files/templates/medium_shuttle2.dmm
+++ b/_maps/map_files/templates/medium_shuttle2.dmm
@@ -4,9 +4,7 @@
/area/space)
"b" = (
/obj/structure/shuttle/engine/propulsion/burst/left{
- dir = 8;
- icon_state = "burst_l";
- tag = "icon-burst_l (EAST)"
+ dir = 8
},
/turf/simulated/floor/plating/airless,
/area/ruin/powered{
@@ -14,13 +12,9 @@
})
"c" = (
/obj/structure/shuttle/engine/heater{
- tag = "icon-heater (WEST)";
- icon_state = "heater";
dir = 8
},
/obj/structure/window/reinforced{
- tag = "icon-rwindow (EAST)";
- icon_state = "rwindow";
dir = 4
},
/turf/simulated/floor/plating/airless,
@@ -34,9 +28,7 @@
})
"f" = (
/obj/structure/shuttle/engine/propulsion/burst/right{
- dir = 8;
- icon_state = "burst_r";
- tag = "icon-burst_r (EAST)"
+ dir = 8
},
/turf/simulated/floor/plating/airless,
/area/ruin/powered{
@@ -57,7 +49,6 @@
})
"k" = (
/turf/simulated/floor/plasteel{
- tag = "icon-dark";
icon_state = "dark"
},
/area/ruin/powered{
@@ -71,7 +62,6 @@
"n" = (
/obj/machinery/door/airlock/public/glass,
/turf/simulated/floor/plasteel{
- tag = "icon-dark";
icon_state = "dark"
},
/area/ruin/powered{
@@ -85,7 +75,6 @@
})
"p" = (
/turf/simulated/floor/plasteel{
- tag = "icon-bluefull";
icon_state = "bluefull"
},
/area/ruin/powered{
@@ -99,7 +88,6 @@
})
"r" = (
/turf/simulated/floor/plasteel{
- tag = "icon-whiteyellowfull";
icon_state = "whiteyellowfull"
},
/area/ruin/powered{
@@ -115,7 +103,6 @@
/obj/structure/table,
/obj/item/storage/firstaid/regular,
/turf/simulated/floor/plasteel{
- tag = "icon-bluefull";
icon_state = "bluefull"
},
/area/ruin/powered{
@@ -123,12 +110,10 @@
})
"v" = (
/obj/machinery/sleeper{
- tag = "icon-sleeper (NORTH)";
- icon_state = "sleeper";
- dir = 1
+ dir = 1;
+ icon_state = "sleeper"
},
/turf/simulated/floor/plasteel{
- tag = "icon-bluefull";
icon_state = "bluefull"
},
/area/ruin/powered{
@@ -137,7 +122,6 @@
"w" = (
/obj/structure/table/reinforced,
/turf/simulated/floor/plasteel{
- tag = "icon-whiteyellowfull";
icon_state = "whiteyellowfull"
},
/area/ruin/powered{
@@ -166,7 +150,6 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- tag = "icon-whiteyellowfull";
icon_state = "whiteyellowfull"
},
/area/ruin/powered{
@@ -176,7 +159,6 @@
/obj/structure/computerframe,
/obj/item/circuitboard/teleporter,
/turf/simulated/floor/plasteel{
- tag = "icon-dark";
icon_state = "dark"
},
/area/ruin/powered{
@@ -186,7 +168,6 @@
/obj/machinery/teleport/hub,
/obj/item/hand_tele,
/turf/simulated/floor/plasteel{
- tag = "icon-dark";
icon_state = "dark"
},
/area/ruin/powered{
@@ -195,7 +176,6 @@
"G" = (
/obj/item/radio/beacon,
/turf/simulated/floor/plasteel{
- tag = "icon-dark";
icon_state = "dark"
},
/area/ruin/powered{
@@ -204,7 +184,6 @@
"H" = (
/obj/machinery/vending/coffee,
/turf/simulated/floor/plasteel{
- tag = "icon-dark";
icon_state = "dark"
},
/area/ruin/powered{
@@ -219,7 +198,6 @@
},
/obj/machinery/vending/snack,
/turf/simulated/floor/plasteel{
- tag = "icon-dark";
icon_state = "dark"
},
/area/ruin/powered{
@@ -228,7 +206,6 @@
"K" = (
/obj/machinery/light,
/turf/simulated/floor/plasteel{
- tag = "icon-dark";
icon_state = "dark"
},
/area/ruin/powered{
@@ -238,7 +215,6 @@
/obj/structure/bed,
/obj/item/bedsheet/purple,
/turf/simulated/floor/plasteel{
- tag = "icon-dark";
icon_state = "dark"
},
/area/ruin/powered{
@@ -247,7 +223,6 @@
"N" = (
/obj/structure/table,
/turf/simulated/floor/plasteel{
- tag = "icon-dark";
icon_state = "dark"
},
/area/ruin/powered{
@@ -257,7 +232,6 @@
/obj/structure/table,
/obj/item/storage/belt/utility/full/multitool,
/turf/simulated/floor/plasteel{
- tag = "icon-dark";
icon_state = "dark"
},
/area/ruin/powered{
@@ -268,7 +242,6 @@
/obj/item/storage/toolbox/electrical,
/obj/item/clothing/gloves/color/yellow,
/turf/simulated/floor/plasteel{
- tag = "icon-dark";
icon_state = "dark"
},
/area/ruin/powered{
@@ -279,7 +252,6 @@
/obj/machinery/recharger,
/obj/item/gun/energy/laser/retro,
/turf/simulated/floor/plasteel{
- tag = "icon-whiteyellowfull";
icon_state = "whiteyellowfull"
},
/area/ruin/powered{
@@ -290,7 +262,6 @@
/obj/item/clothing/head/helmet/space/eva,
/obj/item/clothing/suit/space/eva,
/turf/simulated/floor/plasteel{
- tag = "icon-dark";
icon_state = "dark"
},
/area/ruin/powered{
@@ -299,7 +270,6 @@
"U" = (
/obj/machinery/teleport/station,
/turf/simulated/floor/plasteel{
- tag = "icon-dark";
icon_state = "dark"
},
/area/ruin/powered{
@@ -318,7 +288,6 @@
dir = 1
},
/turf/simulated/floor/plasteel{
- tag = "icon-bluefull";
icon_state = "bluefull"
},
/area/ruin/powered{
@@ -329,7 +298,6 @@
dir = 1
},
/turf/simulated/floor/plasteel{
- tag = "icon-whiteyellowfull";
icon_state = "whiteyellowfull"
},
/area/ruin/powered{
@@ -338,7 +306,6 @@
"Y" = (
/obj/machinery/light,
/turf/simulated/floor/plasteel{
- tag = "icon-whiteyellowfull";
icon_state = "whiteyellowfull"
},
/area/ruin/powered{
@@ -347,7 +314,6 @@
"Z" = (
/obj/machinery/computer,
/turf/simulated/floor/plasteel{
- tag = "icon-whiteyellowfull";
icon_state = "whiteyellowfull"
},
/area/ruin/powered{
diff --git a/_maps/map_files/templates/medium_shuttle3.dmm b/_maps/map_files/templates/medium_shuttle3.dmm
index 9f2ce97d6d5..2240cdc193f 100644
--- a/_maps/map_files/templates/medium_shuttle3.dmm
+++ b/_maps/map_files/templates/medium_shuttle3.dmm
@@ -4,8 +4,6 @@
/area/space)
"b" = (
/obj/structure/shuttle/engine/propulsion{
- tag = "icon-propulsion (NORTH)";
- icon_state = "propulsion";
dir = 1
},
/turf/simulated/floor/plating/airless,
@@ -19,8 +17,6 @@
})
"d" = (
/obj/structure/shuttle/engine/heater{
- tag = "icon-heater (NORTH)";
- icon_state = "heater";
dir = 1
},
/turf/simulated/floor/plating/airless,
@@ -56,9 +52,7 @@
})
"n" = (
/obj/structure/shuttle/engine/propulsion{
- dir = 8;
- icon_state = "propulsion";
- tag = "icon-propulsion (EAST)"
+ dir = 8
},
/turf/simulated/floor/plating/airless,
/area/ruin/powered{
@@ -66,8 +60,6 @@
})
"o" = (
/obj/structure/shuttle/engine/heater{
- tag = "icon-heater (WEST)";
- icon_state = "heater";
dir = 8
},
/turf/simulated/floor/plating/airless,
@@ -82,8 +74,6 @@
})
"q" = (
/obj/structure/shuttle/engine/heater{
- tag = "icon-heater (EAST)";
- icon_state = "heater";
dir = 4
},
/turf/simulated/floor/plating/airless,
@@ -92,9 +82,7 @@
})
"r" = (
/obj/structure/shuttle/engine/propulsion{
- dir = 4;
- icon_state = "propulsion";
- tag = "icon-propulsion (WEST)"
+ dir = 4
},
/turf/simulated/floor/plating/airless,
/area/ruin/powered{
@@ -109,7 +97,6 @@
"v" = (
/obj/structure/table,
/turf/simulated/floor/plasteel{
- tag = "icon-whiteyellowfull";
icon_state = "whiteyellowfull"
},
/area/ruin/powered{
@@ -117,7 +104,6 @@
})
"w" = (
/turf/simulated/floor/plasteel{
- tag = "icon-whiteyellowfull";
icon_state = "whiteyellowfull"
},
/area/ruin/powered{
@@ -128,7 +114,6 @@
dir = 8
},
/turf/simulated/floor/plasteel{
- tag = "icon-whiteyellowfull";
icon_state = "whiteyellowfull"
},
/area/ruin/powered{
@@ -137,7 +122,6 @@
"z" = (
/obj/machinery/sleeper,
/turf/simulated/floor/plasteel{
- tag = "icon-bluefull";
icon_state = "bluefull"
},
/area/ruin/powered{
@@ -145,7 +129,6 @@
})
"A" = (
/turf/simulated/floor/plasteel{
- tag = "icon-dark";
icon_state = "dark"
},
/area/ruin/powered{
@@ -159,7 +142,6 @@
})
"D" = (
/turf/simulated/floor/plasteel{
- tag = "icon-bluefull";
icon_state = "bluefull"
},
/area/ruin/powered{
@@ -169,7 +151,6 @@
/obj/structure/table,
/obj/item/storage/firstaid,
/turf/simulated/floor/plasteel{
- tag = "icon-bluefull";
icon_state = "bluefull"
},
/area/ruin/powered{
diff --git a/_maps/map_files/templates/shelter_1.dmm b/_maps/map_files/templates/shelter_1.dmm
index 2455db765b9..4f21956549d 100644
--- a/_maps/map_files/templates/shelter_1.dmm
+++ b/_maps/map_files/templates/shelter_1.dmm
@@ -4,8 +4,6 @@
/area/survivalpod)
"b" = (
/obj/structure/sign/mining/survival{
- tag = "icon-survival (NORTH)";
- icon_state = "survival";
dir = 1
},
/turf/simulated/wall/mineral/titanium/survival,
@@ -45,8 +43,6 @@
/area/survivalpod)
"j" = (
/obj/structure/sign/mining/survival{
- tag = "icon-survival (EAST)";
- icon_state = "survival";
dir = 4
},
/turf/simulated/wall/mineral/titanium/survival,
diff --git a/_maps/map_files/templates/shelter_2.dmm b/_maps/map_files/templates/shelter_2.dmm
index 9cdd8931c5a..5b18cfa2647 100644
--- a/_maps/map_files/templates/shelter_2.dmm
+++ b/_maps/map_files/templates/shelter_2.dmm
@@ -27,8 +27,6 @@
/area/survivalpod)
"g" = (
/obj/structure/sign/mining/survival{
- tag = "icon-survival (NORTH)";
- icon_state = "survival";
dir = 1
},
/turf/simulated/wall/mineral/titanium/survival,
@@ -79,9 +77,7 @@
/obj/machinery/shower{
pixel_y = 20
},
-/turf/simulated/floor/pod{
- pixel_y = 0
- },
+/turf/simulated/floor/pod,
/area/survivalpod)
"o" = (
/obj/structure/window/reinforced/survival_pod{
@@ -143,8 +139,6 @@
/area/survivalpod)
"x" = (
/obj/structure/sign/mining/survival{
- tag = "icon-survival (EAST)";
- icon_state = "survival";
dir = 4
},
/turf/simulated/wall/mineral/titanium/survival,
diff --git a/_maps/map_files/templates/small_shuttle_1.dmm b/_maps/map_files/templates/small_shuttle_1.dmm
index 261b74c7874..c39a2cdf1dc 100644
--- a/_maps/map_files/templates/small_shuttle_1.dmm
+++ b/_maps/map_files/templates/small_shuttle_1.dmm
@@ -36,7 +36,6 @@
/area/ruin/powered)
"n" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/obj/structure/window/reinforced,
@@ -66,8 +65,7 @@
/area/ruin/powered)
"v" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/structure/window/reinforced,
/turf/simulated/floor/mineral/titanium/blue,
diff --git a/code/__DEFINES/layers.dm b/code/__DEFINES/layers.dm
index 9286ea2726d..a633ddab5eb 100644
--- a/code/__DEFINES/layers.dm
+++ b/code/__DEFINES/layers.dm
@@ -117,3 +117,6 @@
#define SPLASHSCREEN_LAYER 23
#define SPLASHSCREEN_PLANE 23
+
+///Plane master controller keys
+#define PLANE_MASTERS_GAME "plane_masters_game"
diff --git a/code/__DEFINES/misc.dm b/code/__DEFINES/misc.dm
index 3d38b8716b6..67d9a70bb19 100644
--- a/code/__DEFINES/misc.dm
+++ b/code/__DEFINES/misc.dm
@@ -306,10 +306,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 (config && (ROUND_TIME < (config.round_abandon_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
@@ -363,7 +363,7 @@
#define INVESTIGATE_BOMB "bombs"
// The SQL version required by this version of the code
-#define SQL_VERSION 24
+#define SQL_VERSION 25
// Vending machine stuff
#define CAT_NORMAL 1
@@ -432,9 +432,6 @@
/// Prepares a text to be used for maptext. Use this so it doesn't look hideous.
#define MAPTEXT(text) {"[##text]"}
-// Filters
-#define FILTER_AMBIENT_OCCLUSION filter(type="drop_shadow", x=0, y=-2, size=4, color="#04080FAA")
-
//Fullscreen overlay resolution in tiles.
#define FULLSCREEN_OVERLAY_RESOLUTION_X 15
#define FULLSCREEN_OVERLAY_RESOLUTION_Y 15
@@ -494,3 +491,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/mobs.dm b/code/__DEFINES/mobs.dm
index b714a79a4c5..561c8720750 100644
--- a/code/__DEFINES/mobs.dm
+++ b/code/__DEFINES/mobs.dm
@@ -287,3 +287,6 @@
#define FLASH_PROTECTION_NONE 0
#define FLASH_PROTECTION_FLASH 1
#define FLASH_PROTECTION_WELDER 2
+
+#define MAX_EYE_BLURRY_FILTER_SIZE 2
+#define EYE_BLUR_TO_FILTER_SIZE_MULTIPLIER 0.1
diff --git a/code/__DEFINES/rust_g.dm b/code/__DEFINES/rust_g.dm
index fe4b644096b..6a331a6131f 100644
--- a/code/__DEFINES/rust_g.dm
+++ b/code/__DEFINES/rust_g.dm
@@ -18,14 +18,46 @@
// Noise related operations //
#define rustg_noise_get_at_coordinates(seed, x, y) call(RUST_G, "noise_get_at_coordinates")(seed, x, y)
+// File related operations //
+#define rustg_file_read(fname) call(RUST_G, "file_read")(fname)
+#define rustg_file_write(text, fname) call(RUST_G, "file_write")(text, fname)
+#define rustg_file_append(text, fname) call(RUST_G, "file_append")(text, fname)
+
+#ifdef RUSTG_OVERRIDE_BUILTINS
+#define file2text(fname) rustg_file_read(fname)
+#define text2file(text, fname) rustg_file_append(text, fname)
+#endif
+
// Git related operations //
#define rustg_git_revparse(rev) call(RUST_G, "rg_git_revparse")(rev)
#define rustg_git_commit_date(rev) call(RUST_G, "rg_git_commit_date")(rev)
+// Hash related operations //
+#define rustg_hash_string(algorithm, text) call(RUST_G, "hash_string")(algorithm, text)
+#define rustg_hash_file(algorithm, fname) call(RUST_G, "hash_file")(algorithm, fname)
+
+#define RUSTG_HASH_MD5 "md5"
+#define RUSTG_HASH_SHA1 "sha1"
+#define RUSTG_HASH_SHA256 "sha256"
+#define RUSTG_HASH_SHA512 "sha512"
+
+#ifdef RUSTG_OVERRIDE_BUILTINS
+#define md5(thing) (isfile(thing) ? rustg_hash_file(RUSTG_HASH_MD5, "[thing]") : rustg_hash_string(RUSTG_HASH_MD5, thing))
+#endif
+
// Logging stuff //
#define rustg_log_write(fname, text) call(RUST_G, "log_write")(fname, text)
/proc/rustg_log_close_all() return call(RUST_G, "log_close_all")()
+// URL encoding stuff
+#define rustg_url_encode(text) call(RUST_G, "url_encode")(text)
+#define rustg_url_decode(text) call(RUST_G, "url_decode")(text)
+
+#ifdef RUSTG_OVERRIDE_BUILTINS
+#define url_encode(text) rustg_url_encode(text)
+#define url_decode(text) rustg_url_decode(text)
+#endif
+
// HTTP library stuff //
#define RUSTG_HTTP_METHOD_GET "get"
#define RUSTG_HTTP_METHOD_PUT "put"
@@ -50,5 +82,8 @@
#define rustg_sql_disconnect_pool(handle) call(RUST_G, "sql_disconnect_pool")(handle)
#define rustg_sql_check_query(job_id) call(RUST_G, "sql_check_query")("[job_id]")
+// toml2json stuff //
+#define rustg_toml2json(tomlfile) call(RUST_G, "toml2json")(tomlfile)
+
// RUSTG Version //
-#define RUST_G_VERSION "0.4.5-P2"
+#define RUST_G_VERSION "0.4.5-P3"
diff --git a/code/__DEFINES/text.dm b/code/__DEFINES/text.dm
new file mode 100644
index 00000000000..483f09f47ca
--- /dev/null
+++ b/code/__DEFINES/text.dm
@@ -0,0 +1,6 @@
+//Don't set this very much higher then 1024 unless you like inviting people in to dos your server with message spam
+#define MAX_MESSAGE_LEN 1024
+#define MAX_PAPER_MESSAGE_LEN 3072
+#define MAX_PAPER_FIELDS 50
+#define MAX_BOOK_MESSAGE_LEN 9216
+#define MAX_NAME_LEN 50 //diona names can get loooooooong
diff --git a/code/__HELPERS/_logging.dm b/code/__HELPERS/_logging.dm
index fea2756f664..c61d8319d39 100644
--- a/code/__HELPERS/_logging.dm
+++ b/code/__HELPERS/_logging.dm
@@ -28,11 +28,12 @@ GLOBAL_PROTECT(log_end)
/proc/log_admin(text)
GLOB.admin_log.Add(text)
- if(config.log_admin)
+ if(GLOB.configuration.logging.admin_logging)
rustg_log_write(GLOB.world_game_log, "ADMIN: [text][GLOB.log_end]")
/proc/log_debug(text)
- if(config.log_debug)
+ // This has presence checks as this may be called before GLOB has loaded
+ if(GLOB?.configuration?.logging.debug_logging)
rustg_log_write(GLOB.world_game_log, "DEBUG: [text][GLOB.log_end]")
for(var/client/C in GLOB.admins)
@@ -40,80 +41,80 @@ GLOBAL_PROTECT(log_end)
to_chat(C, "DEBUG: [text]")
/proc/log_game(text)
- if(config.log_game)
+ if(GLOB.configuration.logging.game_logging)
rustg_log_write(GLOB.world_game_log, "GAME: [text][GLOB.log_end]")
/proc/log_vote(text)
- if(config.log_vote)
+ if(GLOB.configuration.logging.vote_logging)
rustg_log_write(GLOB.world_game_log, "VOTE: [text][GLOB.log_end]")
/proc/log_access_in(client/new_client)
- if(config.log_access)
+ 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]"
rustg_log_write(GLOB.world_game_log, "ACCESS IN: [message][GLOB.log_end]")
/proc/log_access_out(mob/last_mob)
- if(config.log_access)
+ if(GLOB.configuration.logging.access_logging)
var/message = "[key_name(last_mob)] - IP:[last_mob.lastKnownIP] - CID:[last_mob.computer_id] - BYOND Logged Out"
rustg_log_write(GLOB.world_game_log, "ACCESS OUT: [message][GLOB.log_end]")
/proc/log_say(text, mob/speaker)
- if(config.log_say)
+ if(GLOB.configuration.logging.say_logging)
rustg_log_write(GLOB.world_game_log, "SAY: [speaker.simple_info_line()]: [html_decode(text)][GLOB.log_end]")
/proc/log_whisper(text, mob/speaker)
- if(config.log_whisper)
+ if(GLOB.configuration.logging.whisper_logging)
rustg_log_write(GLOB.world_game_log, "WHISPER: [speaker.simple_info_line()]: [html_decode(text)][GLOB.log_end]")
/proc/log_ooc(text, client/user)
- if(config.log_ooc)
+ if(GLOB.configuration.logging.ooc_logging)
rustg_log_write(GLOB.world_game_log, "OOC: [user.simple_info_line()]: [html_decode(text)][GLOB.log_end]")
/proc/log_aooc(text, client/user)
- if(config.log_ooc)
+ if(GLOB.configuration.logging.ooc_logging)
rustg_log_write(GLOB.world_game_log, "AOOC: [user.simple_info_line()]: [html_decode(text)][GLOB.log_end]")
/proc/log_looc(text, client/user)
- if(config.log_ooc)
+ if(GLOB.configuration.logging.ooc_logging)
rustg_log_write(GLOB.world_game_log, "LOOC: [user.simple_info_line()]: [html_decode(text)][GLOB.log_end]")
/proc/log_emote(text, mob/speaker)
- if(config.log_emote)
+ if(GLOB.configuration.logging.emote_logging)
rustg_log_write(GLOB.world_game_log, "EMOTE: [speaker.simple_info_line()]: [html_decode(text)][GLOB.log_end]")
/proc/log_attack(attacker, defender, message)
- if(config.log_attack)
+ if(GLOB.configuration.logging.attack_logging)
rustg_log_write(GLOB.world_game_log, "ATTACK: [attacker] against [defender]: [message][GLOB.log_end]") //Seperate attack logs? Why?
/proc/log_adminsay(text, mob/speaker)
- if(config.log_adminchat)
+ if(GLOB.configuration.logging.adminchat_logging)
rustg_log_write(GLOB.world_game_log, "ADMINSAY: [speaker.simple_info_line()]: [html_decode(text)][GLOB.log_end]")
/proc/log_qdel(text)
rustg_log_write(GLOB.world_qdel_log, "QDEL: [text][GLOB.log_end]")
/proc/log_mentorsay(text, mob/speaker)
- if(config.log_adminchat)
+ if(GLOB.configuration.logging.adminchat_logging)
rustg_log_write(GLOB.world_game_log, "MENTORSAY: [speaker.simple_info_line()]: [html_decode(text)][GLOB.log_end]")
/proc/log_ghostsay(text, mob/speaker)
- if(config.log_say)
+ if(GLOB.configuration.logging.say_logging)
rustg_log_write(GLOB.world_game_log, "DEADCHAT: [speaker.simple_info_line()]: [html_decode(text)][GLOB.log_end]")
/proc/log_ghostemote(text, mob/speaker)
- if(config.log_emote)
+ if(GLOB.configuration.logging.emote_logging)
rustg_log_write(GLOB.world_game_log, "DEADEMOTE: [speaker.simple_info_line()]: [html_decode(text)][GLOB.log_end]")
/proc/log_adminwarn(text)
- if(config.log_adminwarn)
+ if(GLOB.configuration.logging.admin_warning_logging)
rustg_log_write(GLOB.world_game_log, "ADMINWARN: [html_decode(text)][GLOB.log_end]")
/proc/log_pda(text, mob/speaker)
- if(config.log_pda)
+ if(GLOB.configuration.logging.pda_logging)
rustg_log_write(GLOB.world_game_log, "PDA: [speaker.simple_info_line()]: [html_decode(text)][GLOB.log_end]")
/proc/log_chat(text, mob/speaker)
- if(config.log_pda)
+ if(GLOB.configuration.logging.pda_logging)
rustg_log_write(GLOB.world_game_log, "CHAT: [speaker.simple_info_line()] [html_decode(text)][GLOB.log_end]")
/proc/log_misc(text)
@@ -121,7 +122,8 @@ GLOBAL_PROTECT(log_end)
/proc/log_world(text)
SEND_TEXT(world.log, text)
- if(config && config.log_world_output)
+ // This has to be presence checked as log_world() is used before world/New().
+ if(GLOB?.configuration?.logging.world_logging)
rustg_log_write(GLOB.world_game_log, "WORLD: [html_decode(text)][GLOB.log_end]")
/proc/log_runtime_txt(text) // different from /tg/'s log_runtime because our error handler has a log_runtime proc already that does other stuff
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 b8b47aa8656..14add1b8308 100644
--- a/code/__HELPERS/names.dm
+++ b/code/__HELPERS/names.dm
@@ -15,10 +15,6 @@ GLOBAL_VAR(church_name)
return name
-// 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/text.dm b/code/__HELPERS/text.dm
index 1d9b6550b84..fa357006723 100644
--- a/code/__HELPERS/text.dm
+++ b/code/__HELPERS/text.dm
@@ -8,10 +8,6 @@
* Misc
*/
-
-/proc/format_table_name(table as text)
- return sqlfdbktableprefix + table
-
/*
* Text sanitization
*/
@@ -720,9 +716,9 @@
/proc/client2rankcolour(client/C)
// First check if end user is an admin
if(C.holder)
- if(C.holder.rank in GLOB.rank_colour_map)
+ if(C.holder.rank in GLOB.configuration.admin.rank_colour_map)
// Return their rank colour if they are in here
- return GLOB.rank_colour_map[C.holder.rank]
+ return GLOB.configuration.admin.rank_colour_map[C.holder.rank]
// If they arent an admin, see if they are a patreon. Just accept any level
if(C.donator_level)
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/unsorted.dm b/code/__HELPERS/unsorted.dm
index 8478d8c0c91..4bbc7d03d07 100644
--- a/code/__HELPERS/unsorted.dm
+++ b/code/__HELPERS/unsorted.dm
@@ -539,10 +539,6 @@ Returns 1 if the chain up to the area contains the given typepath
var/y = min(world.maxy, max(1, A.y + dy))
return locate(x,y,A.z)
-//Makes sure MIDDLE is between LOW and HIGH. If not, it adjusts it. Returns the adjusted value.
-/proc/between(low, middle, high)
- return max(min(middle, high), low)
-
//returns random gauss number
/proc/GaussRand(sigma)
var/x,y,rsq
@@ -2082,7 +2078,7 @@ GLOBAL_DATUM_INIT(dview_mob, /mob/dview, new)
/proc/log_connection(ckey, ip, cid, connection_type)
ASSERT(connection_type in list(CONNECTION_TYPE_ESTABLISHED, CONNECTION_TYPE_DROPPED_IPINTEL, CONNECTION_TYPE_DROPPED_BANNED, CONNECTION_TYPE_DROPPED_INVALID))
- var/datum/db_query/query_accesslog = SSdbcore.NewQuery("INSERT INTO `[format_table_name("connection_log")]`(`datetime`, `ckey`, `ip`, `computerid`, `result`) VALUES(Now(), :ckey, :ip, :cid, :result)", list(
+ var/datum/db_query/query_accesslog = SSdbcore.NewQuery("INSERT INTO connection_log (`datetime`, `ckey`, `ip`, `computerid`, `result`) VALUES(Now(), :ckey, :ip, :cid, :result)", list(
"ckey" = ckey,
"ip" = "[ip ? ip : ""]", // This is important. NULL is not the same as "", and if you directly open the `.dmb` file, you get a NULL IP.
"cid" = cid,
diff --git a/code/_compile_options.dm b/code/_compile_options.dm
index f409af92aaa..0e73437dd93 100644
--- a/code/_compile_options.dm
+++ b/code/_compile_options.dm
@@ -21,13 +21,6 @@
#define IS_MODE_COMPILED(MODE) (ispath(text2path("/datum/game_mode/"+(MODE))))
-//Don't set this very much higher then 1024 unless you like inviting people in to dos your server with message spam
-#define MAX_MESSAGE_LEN 1024
-#define MAX_PAPER_MESSAGE_LEN 3072
-#define MAX_PAPER_FIELDS 50
-#define MAX_BOOK_MESSAGE_LEN 9216
-#define MAX_NAME_LEN 50 //diona names can get loooooooong
-
//Update this whenever you need to take advantage of more recent byond features
#define MIN_COMPILER_VERSION 513
#define MIN_COMPILER_BUILD 1514
diff --git a/code/_globalvars/configuration.dm b/code/_globalvars/configuration.dm
index ea2cf1290fd..3b7d061ace3 100644
--- a/code/_globalvars/configuration.dm
+++ b/code/_globalvars/configuration.dm
@@ -1,44 +1,30 @@
-GLOBAL_REAL(config, /datum/configuration)
-
-GLOBAL_VAR(host)
+/// Join MOTD for the server
GLOBAL_VAR(join_motd)
+GLOBAL_PROTECT(join_motd) // Takes up a lot of space in VV
+/// Join TOS for the server
GLOBAL_VAR(join_tos)
-GLOBAL_VAR_INIT(game_version, "ParaCode")
+GLOBAL_PROTECT(join_tos) // Takes up a lot of space. Also dont touch this shit
+
+/// The current game year
GLOBAL_VAR_INIT(game_year, (text2num(time2text(world.realtime, "YYYY")) + 544))
-GLOBAL_VAR_INIT(aliens_allowed, 1)
-GLOBAL_VAR_INIT(traitor_scaling, 1)
-//GLOBAL_VAR_INIT(goonsay_allowed, 0)
-GLOBAL_VAR_INIT(dna_ident, 1)
-GLOBAL_VAR_INIT(abandon_allowed, 0)
-GLOBAL_VAR_INIT(enter_allowed, 1)
-GLOBAL_VAR_INIT(guests_allowed, 1)
-GLOBAL_VAR_INIT(shuttle_frozen, 0)
-GLOBAL_VAR_INIT(shuttle_left, 0)
-GLOBAL_VAR_INIT(tinted_weldhelh, 1)
-GLOBAL_VAR_INIT(mouse_respawn_time, 5) //Amount of time that must pass between a player dying as a mouse and repawning as a mouse. In minutes.
+/// Allow new players to enter the game?
+GLOBAL_VAR_INIT(enter_allowed, TRUE)
-// Debug is used exactly once (in living.dm) but is commented out in a lot of places. It is not set anywhere and only checked.
-// Debug2 is used in conjunction with a lot of admin verbs and therefore is actually legit.
-GLOBAL_VAR_INIT(debug, 0) // global debug switch
-GLOBAL_VAR_INIT(debug2, 1) // enables detailed job debug file in secrets
+/// Is OOC currently enabled?
+GLOBAL_VAR_INIT(ooc_enabled, TRUE)
-//This was a define, but I changed it to a variable so it can be changed in-game.(kept the all-caps definition because... code...) -Errorage
-GLOBAL_VAR_INIT(max_ex_devastation_range, 3)
-GLOBAL_VAR_INIT(max_ex_heavy_range, 7)
-GLOBAL_VAR_INIT(max_ex_light_range, 14)
-GLOBAL_VAR_INIT(max_ex_flash_range, 14)
-GLOBAL_VAR_INIT(max_ex_flame_range, 14)
+/// Is LOOC currently enabled?
+GLOBAL_VAR_INIT(looc_enabled, TRUE)
-//Random event stuff, apparently used
-GLOBAL_VAR_INIT(eventchance, 10) //% per 5 mins
-GLOBAL_VAR_INIT(event, 0)
-GLOBAL_VAR_INIT(hadevent, 0)
-GLOBAL_VAR_INIT(blobevent, 0)
+/// Is OOC currently enabled for dead people?
+GLOBAL_VAR_INIT(dooc_enabled, TRUE)
-// These vars are protected because changing them could pose a security risk, though they are fine to be read since they are just system paths
-GLOBAL_VAR(shutdown_shell_command) // Command to run if shutting down (SHUTDOWN_ON_REBOOT) instead of rebooting
-GLOBAL_PROTECT(shutdown_shell_command)
+/// Is deadchat currently enabled?
+GLOBAL_VAR_INIT(dsay_enabled, TRUE)
-GLOBAL_VAR(python_path) //Path to the python executable. Defaults to "python" on windows and "/usr/bin/env python2" on unix
-GLOBAL_PROTECT(python_path)
+/// Amount of time (in minutes) that must pass between a player dying as a mouse and repawning as a mouse
+GLOBAL_VAR_INIT(mouse_respawn_time, 5)
+
+/// Enable debugging of things such as job starts and other things
+GLOBAL_VAR_INIT(debug2, TRUE)
diff --git a/code/_globalvars/lists/misc.dm b/code/_globalvars/lists/misc.dm
index 2873a626590..5464ed64bb4 100644
--- a/code/_globalvars/lists/misc.dm
+++ b/code/_globalvars/lists/misc.dm
@@ -55,7 +55,4 @@ GLOBAL_LIST_INIT(cooking_recipes, list(RECIPE_MICROWAVE = list(), RECIPE_OVEN =
GLOBAL_LIST_INIT(cooking_ingredients, list(RECIPE_MICROWAVE = list(), RECIPE_OVEN = list(), RECIPE_GRILL = list(), RECIPE_CANDY = list()))
GLOBAL_LIST_INIT(cooking_reagents, list(RECIPE_MICROWAVE = list(), RECIPE_OVEN = list(), RECIPE_GRILL = list(), RECIPE_CANDY = list()))
-/// Associative list of admin rank to colour. Set in config/rank_colours.txt
-GLOBAL_LIST_EMPTY(rank_colour_map)
-
#define EGG_LAYING_MESSAGES list("lays an egg.", "squats down and croons.", "begins making a huge racket.", "begins clucking raucously.")
diff --git a/code/_globalvars/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/_globalvars/sensitive.dm b/code/_globalvars/sensitive.dm
deleted file mode 100644
index 4c04b2d480b..00000000000
--- a/code/_globalvars/sensitive.dm
+++ /dev/null
@@ -1,12 +0,0 @@
-// All global vars in this file require a different handler as we dont want their data to be exposed, not even to admins with permission to view globals
-// They write as native BYOND globals, which means they cant be edited at all, and also use a format
-// Please only throw absolutely crucial do-not-view shit in here please. -aa07
-
-// MySQL configuration
-GLOBAL_REAL_VAR(sqladdress) = "localhost"
-GLOBAL_REAL_VAR(sqlport) = "3306"
-GLOBAL_REAL_VAR(sqlfdbkdb) = "test"
-GLOBAL_REAL_VAR(sqlfdbklogin) = "root"
-GLOBAL_REAL_VAR(sqlfdbkpass) = ""
-GLOBAL_REAL_VAR(sqlfdbktableprefix) = "erro_"
-GLOBAL_REAL_VAR(sql_version) = 0
diff --git a/code/_onclick/hud/alert.dm b/code/_onclick/hud/alert.dm
index 180e5a55e64..2eb3d0b36ed 100644
--- a/code/_onclick/hud/alert.dm
+++ b/code/_onclick/hud/alert.dm
@@ -308,6 +308,11 @@ or shoot a gun to move around via Newton's 3rd Law of Motion."
var/mob/living/L = usr
return L.resist()
+//Constructs
+/obj/screen/alert/holy_fire
+ name = "Holy Fire"
+ desc = "Your body is crumbling from the holy energies. Get out."
+ icon_state = "fire"
//ALIENS
diff --git a/code/_onclick/hud/fullscreen.dm b/code/_onclick/hud/fullscreen.dm
index 9d00f216eac..f6c8880a485 100644
--- a/code/_onclick/hud/fullscreen.dm
+++ b/code/_onclick/hud/fullscreen.dm
@@ -99,11 +99,6 @@
/obj/screen/fullscreen/impaired
icon_state = "impairedoverlay"
-/obj/screen/fullscreen/blurry
- icon = 'icons/mob/screen_gen.dmi'
- screen_loc = "WEST,SOUTH to EAST,NORTH"
- icon_state = "blurry"
-
/obj/screen/fullscreen/flash
icon = 'icons/mob/screen_gen.dmi'
screen_loc = "WEST,SOUTH to EAST,NORTH"
diff --git a/code/_onclick/hud/hud.dm b/code/_onclick/hud/hud.dm
index 0cfb6985b8e..9779e306939 100644
--- a/code/_onclick/hud/hud.dm
+++ b/code/_onclick/hud/hud.dm
@@ -37,6 +37,8 @@
var/action_buttons_hidden = FALSE
var/list/obj/screen/plane_master/plane_masters = list() // see "appearance_flags" in the ref, assoc list of "[plane]" = object
+ ///Assoc list of controller groups, associated with key string group name with value of the plane master controller ref
+ var/list/atom/movable/plane_master_controller/plane_master_controllers = list()
/mob/proc/create_mob_hud()
if(client && !hud_used)
@@ -53,6 +55,10 @@
plane_masters["[instance.plane]"] = instance
instance.backdrop(mymob)
+ for(var/mytype in subtypesof(/atom/movable/plane_master_controller))
+ var/atom/movable/plane_master_controller/controller_instance = new mytype(src)
+ plane_master_controllers[controller_instance.name] = controller_instance
+
/datum/hud/Destroy()
if(mymob.hud_used == src)
mymob.hud_used = null
@@ -89,6 +95,7 @@
nightvisionicon = null
QDEL_LIST_ASSOC_VAL(plane_masters)
+ QDEL_LIST_ASSOC_VAL(plane_master_controllers)
mymob = null
return ..()
diff --git a/code/_onclick/hud/human.dm b/code/_onclick/hud/human.dm
index 8f125079d6b..39807d6a8c5 100644
--- a/code/_onclick/hud/human.dm
+++ b/code/_onclick/hud/human.dm
@@ -376,7 +376,7 @@
for(var/obj/screen/craft/crafting in static_inventory)
if(!S.can_craft)
crafting.invisibility = INVISIBILITY_ABSTRACT
- H.handcrafting.close(H)
+ H.handcrafting?.close(H)
else
crafting.invisibility = initial(crafting.invisibility)
diff --git a/code/_onclick/hud/plane_master_controller.dm b/code/_onclick/hud/plane_master_controller.dm
new file mode 100644
index 00000000000..b525dfc0ef3
--- /dev/null
+++ b/code/_onclick/hud/plane_master_controller.dm
@@ -0,0 +1,77 @@
+///Atom that manages and controls multiple planes. It's an atom so we can hook into add_filter etc. Multiple controllers can control one plane.
+/atom/movable/plane_master_controller
+ ///List of planes in this controllers control. Initially this is a normal list, but becomes an assoc list of plane numbers as strings | plane instance
+ var/list/controlled_planes = list()
+ ///hud that owns this controller
+ var/datum/hud/owner_hud
+
+///Ensures that all the planes are correctly in the controlled_planes list.
+/atom/movable/plane_master_controller/New(hud)
+ . = ..()
+ owner_hud = hud
+ var/assoc_controlled_planes = list()
+ for(var/i in controlled_planes)
+ var/obj/screen/plane_master/instance = owner_hud.plane_masters["[i]"]
+ assoc_controlled_planes["[i]"] = instance
+ controlled_planes = assoc_controlled_planes
+
+///Full override so we can just use filterrific
+/atom/movable/plane_master_controller/add_filter(name, priority, list/params)
+ . = ..()
+ for(var/i in controlled_planes)
+ var/obj/screen/plane_master/pm_iterator = controlled_planes[i]
+ pm_iterator.add_filter(name, priority, params)
+
+///Full override so we can just use filterrific
+/atom/movable/plane_master_controller/remove_filter(name_or_names)
+ . = ..()
+ for(var/i in controlled_planes)
+ var/obj/screen/plane_master/pm_iterator = controlled_planes[i]
+ pm_iterator.remove_filter(name_or_names)
+
+/atom/movable/plane_master_controller/update_filters()
+ . = ..()
+ for(var/i in controlled_planes)
+ var/obj/screen/plane_master/pm_iterator = controlled_planes[i]
+ pm_iterator.update_filters()
+
+///Gets all filters for this controllers plane masters
+/atom/movable/plane_master_controller/proc/get_filters(name)
+ . = list()
+ for(var/i in controlled_planes)
+ var/obj/screen/plane_master/pm_iterator = controlled_planes[i]
+ . += pm_iterator.get_filter(name)
+
+///Transitions all filters owned by this plane master controller
+/atom/movable/plane_master_controller/transition_filter(name, time, list/new_params, easing, loop)
+ . = ..()
+ for(var/i in controlled_planes)
+ var/obj/screen/plane_master/pm_iterator = controlled_planes[i]
+ pm_iterator.transition_filter(name, time, new_params, easing, loop)
+
+///Full override so we can just use filterrific
+/atom/movable/plane_master_controller/add_atom_colour(coloration, colour_priority)
+ . = ..()
+ for(var/i in controlled_planes)
+ var/obj/screen/plane_master/pm_iterator = controlled_planes[i]
+ pm_iterator.add_atom_colour(coloration, colour_priority)
+
+
+///Removes an instance of colour_type from the atom's atom_colours list
+/atom/movable/plane_master_controller/remove_atom_colour(colour_priority, coloration)
+ . = ..()
+ for(var/i in controlled_planes)
+ var/obj/screen/plane_master/pm_iterator = controlled_planes[i]
+ pm_iterator.remove_atom_colour(colour_priority, coloration)
+
+
+///Resets the atom's color to null, and then sets it to the highest priority colour available
+/atom/movable/plane_master_controller/update_atom_colour()
+ for(var/i in controlled_planes)
+ var/obj/screen/plane_master/pm_iterator = controlled_planes[i]
+ pm_iterator.update_atom_colour()
+
+
+/atom/movable/plane_master_controller/game
+ name = PLANE_MASTERS_GAME
+ controlled_planes = list(FLOOR_PLANE, GAME_PLANE, LIGHTING_PLANE)
diff --git a/code/_onclick/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.dm b/code/controllers/configuration.dm
deleted file mode 100644
index 2c3d3202a31..00000000000
--- a/code/controllers/configuration.dm
+++ /dev/null
@@ -1,968 +0,0 @@
-/datum/configuration
- var/server_name = null // server name (for world name / status)
- var/server_tag_line = null // server tagline (for showing on hub entry)
- var/server_extra_features = null // server-specific extra features (for hub entry)
- var/server_suffix = 0 // generate numeric suffix based on server port
-
- var/minimum_client_build = 1421 // Build 1421 due to the middle mouse button exploit
-
- var/nudge_script_path = "nudge.py" // where the nudge.py script is located
-
- var/log_ooc = 0 // log OOC channel
- var/log_access = 0 // log login/logout
- var/log_say = 0 // log client say
- var/log_admin = 0 // log admin actions
- var/log_debug = 1 // log debug output
- var/log_game = 0 // log game events
- var/log_vote = 0 // log voting
- var/log_whisper = 0 // log client whisper
- var/log_emote = 0 // log emotes
- var/log_attack = 0 // log attack messages
- var/log_adminchat = 0 // log admin chat messages
- var/log_adminwarn = 0 // log warnings admins get about bomb construction and such
- var/log_pda = 0 // log pda messages
- var/log_world_output = 0 // log world.log << messages
- var/log_runtimes = 0 // logs world.log to a file
- var/log_hrefs = 0 // logs all links clicked in-game. Could be used for debugging and tracking down exploits
- var/sql_enabled = 0 // for sql switching
- var/allow_admin_ooccolor = 0 // Allows admins with relevant permissions to have their own ooc colour
- var/pregame_timestart = 240 // Time it takes for the server to start the game
- var/allow_vote_restart = 0 // allow votes to restart
- var/allow_vote_mode = 0 // allow votes to change mode
- var/vote_delay = 6000 // minimum time between voting sessions (deciseconds, 10 minute default)
- var/vote_period = 600 // length of voting period (deciseconds, default 1 minute)
- var/vote_autotransfer_initial = 72000 // Length of time before the first autotransfer vote is called
- var/vote_autotransfer_interval = 18000 // length of time before next sequential autotransfer vote
- var/vote_no_default = 0 // vote does not default to nochange/norestart (tbi)
- var/vote_no_dead = 0 // dead people can't vote (tbi)
-// var/enable_authentication = 0 // goon authentication
- var/del_new_on_log = 1 // qdel's new players if they log before they spawn in
- var/feature_object_spell_system = 0 //spawns a spellbook which gives object-type spells instead of verb-type spells for the wizard
- var/traitor_scaling = 0 //if amount of traitors scales based on amount of players
- var/protect_roles_from_antagonist = 0// If security and such can be tratior/cult/other
- var/continuous_rounds = 0 // Gamemodes which end instantly will instead keep on going until the round ends by escape shuttle or nuke.
- var/allow_Metadata = 0 // Metadata is supported.
- var/popup_admin_pm = 0 //adminPMs to non-admins show in a pop-up 'reply' window when set to 1.
- var/Ticklag = 0.5
- var/socket_talk = 0 // use socket_talk to communicate with other processes
- var/list/resource_urls = null
- var/antag_hud_allowed = 0 // Ghosts can turn on Antagovision to see a HUD of who is the bad guys this round.
- var/antag_hud_restricted = 0 // Ghosts that turn on Antagovision cannot rejoin the round.
- var/list/mode_names = list()
- var/list/modes = list() // allowed modes
- var/list/votable_modes = list() // votable modes
- var/list/probabilities = list() // relative probability of each mode
- var/humans_need_surnames = 0
- var/allow_random_events = 0 // enables random events mid-round when set to 1
- var/allow_ai = 1 // allow ai job
- var/respawn = 0
- var/guest_jobban = 1
- var/panic_bunker_threshold = 150 // above this player count threshold, never-before-seen players are blocked from connecting
- var/usewhitelist = 0
- var/mods_are_mentors = 0
- var/load_jobs_from_txt = 0
- var/automute_on = 0 //enables automuting/spam prevention
- var/jobs_have_minimal_access = 0 //determines whether jobs use minimal access or expanded access.
- var/round_abandon_penalty_period = 30 MINUTES // Time from round start during which ghosting out is penalized
- var/medal_hub_address = null
- var/medal_hub_password = null
-
- var/reactionary_explosions = 0 //If we use reactionary explosions, explosions that react to walls and doors
-
- var/assistantlimit = 0 //enables assistant limiting
- var/assistantratio = 2 //how many assistants to security members
-
- // The AFK subsystem will not be activated if any of the below config values are equal or less than 0
- var/warn_afk_minimum = 0 // How long till you get a warning while being AFK
- var/auto_cryo_afk = 0 // How long till you get put into cryo when you're AFK
- var/auto_despawn_afk = 0 // How long till you actually despawn in cryo when you're AFK (Not ssd so not automatic)
-
- var/auto_cryo_ssd_mins = 0
- var/ssd_warning = 0
-
- var/list_afk_minimum = 5 // How long people have to be AFK before it's listed on the "List AFK players" verb
-
- var/traitor_objectives_amount = 2
- var/shadowling_max_age = 0
-
- var/max_maint_drones = 5 //This many drones can spawn,
- var/allow_drone_spawn = 1 //assuming the admin allow them to.
- var/drone_build_time = 1200 //A drone will become available every X ticks since last drone spawn. Default is 2 minutes.
-
- var/usealienwhitelist = 0
- var/limitalienplayers = 0
- var/alien_to_human_ratio = 0.5
-
- var/server
- var/banappeals
- var/wikiurl = "http://example.org"
- var/forumurl = "http://example.org"
- var/rulesurl = "http://example.org"
- var/githuburl = "http://example.org"
- var/donationsurl = "http://example.org"
- var/repositoryurl = "http://example.org"
- var/discordurl = "http://example.org"
- var/discordforumurl = "http://example.org"
-
- var/overflow_server_url
- var/forbid_singulo_possession = 0
-
- var/check_randomizer = 0
-
- //game_options.txt configs
-
- var/bones_can_break = 1
-
- var/revival_pod_plants = 1
- var/revival_cloning = 1
- var/revival_brain_life = -1
-
- var/auto_toggle_ooc_during_round = 0
-
- var/shuttle_refuel_delay = 12000
-
- //Used for modifying movement speed for mobs.
- //Unversal modifiers
- var/run_speed = 0
- var/walk_speed = 0
-
- //Mob specific modifiers. NOTE: These will affect different mob types in different ways
- var/human_delay = 0
- var/robot_delay = 0
- var/monkey_delay = 0
- var/alien_delay = 0
- var/slime_delay = 0
- var/animal_delay = 0
-
- //IP Intel vars
- var/ipintel_email
- var/ipintel_rating_bad = 1
- var/ipintel_save_good = 12
- var/ipintel_save_bad = 1
- var/ipintel_domain = "check.getipintel.net"
- var/ipintel_maxplaytime = 0
- var/ipintel_whitelist = 0
- var/ipintel_detailsurl = "https://iphub.info/?ip="
-
- var/forum_link_url
- var/forum_playerinfo_url
-
- var/admin_legacy_system = 0 //Defines whether the server uses the legacy admin system with admins.txt or the SQL system. Config option in config.txt
- var/ban_legacy_system = 0 //Defines whether the server uses the legacy banning system with the files in /data or the SQL system. Config option in config.txt
- var/use_age_restriction_for_jobs = 0 //Do jobs use account age restrictions? --requires database
- var/use_age_restriction_for_antags = 0 //Do antags use account age restrictions? --requires database
-
- var/use_exp_tracking = 0
- var/use_exp_restrictions = 0
- var/use_exp_restrictions_admin_bypass = 0
-
- var/simultaneous_pm_warning_timeout = 100
-
- var/assistant_maint = 0 //Do assistants get maint access?
- var/gateway_delay = 6000
- var/ghost_interaction = 0
-
- var/comms_password = ""
-
- var/default_laws = 0 //Controls what laws the AI spawns with.
-
- var/const/minutes_to_ticks = 60 * 10
- // Event settings
- var/expected_round_length = 60 * 2 * minutes_to_ticks // 2 hours
- // If the first delay has a custom start time
- // No custom time, no custom time, between 80 to 100 minutes respectively.
- var/list/event_first_run = list(EVENT_LEVEL_MUNDANE = null, EVENT_LEVEL_MODERATE = null, EVENT_LEVEL_MAJOR = list("lower" = 48000, "upper" = 60000))
- // The lowest delay until next event
- // 10, 30, 50 minutes respectively
- var/list/event_delay_lower = list(EVENT_LEVEL_MUNDANE = 6000, EVENT_LEVEL_MODERATE = 18000, EVENT_LEVEL_MAJOR = 30000)
- // The upper delay until next event
- // 15, 45, 70 minutes respectively
- var/list/event_delay_upper = list(EVENT_LEVEL_MUNDANE = 9000, EVENT_LEVEL_MODERATE = 27000, EVENT_LEVEL_MAJOR = 42000)
-
- var/starlight = 0 // Whether space turfs have ambient light or not
- var/allow_holidays = 0
- var/player_overflow_cap = 0 //number of players before the server starts rerouting
- var/list/overflow_whitelist = list() //whitelist for overflow
-
- var/disable_away_missions = 0 // disable away missions
- var/disable_space_ruins = 0 //disable space ruins
-
- var/extra_space_ruin_levels_min = 4
- var/extra_space_ruin_levels_max = 8
-
- var/ooc_allowed = 1
- var/looc_allowed = 1
- var/dooc_allowed = 1
- var/dsay_allowed = 1
-
- var/disable_lobby_music = 0 // Disables the lobby music
- var/disable_cid_warn_popup = 0 //disables the annoying "You have already logged in this round, disconnect or be banned" popup, because it annoys the shit out of me when testing.
-
- var/max_loadout_points = 5 // How many points can be spent on extra items in character setup
-
- var/disable_ooc_emoji = 0 // prevents people from using emoji in OOC
-
- var/shutdown_on_reboot = 0 // Whether to shut down the world instead of rebooting it
-
- var/disable_karma = 0 // Disable all karma functions and unlock karma jobs by default
-
- // StonedMC
- var/tick_limit_mc_init = TICK_LIMIT_MC_INIT_DEFAULT //SSinitialization throttling
-
- // Highpop tickrates
- var/base_mc_tick_rate = 1
- var/high_pop_mc_tick_rate = 1.1
-
- var/high_pop_mc_mode_amount = 65
- var/disable_high_pop_mc_mode_amount = 60
-
- // Nightshift
- var/randomize_shift_time = FALSE
- var/enable_night_shifts = FALSE
-
- // Developer
- var/developer_express_start = 0
-
- // Automatic localhost admin disable
- var/disable_localhost_admin = 0
-
- //Start now warning
- var/start_now_confirmation = 0
-
- // Lavaland
- var/lavaland_budget = 60
-
- //cube monkey limit
- var/cubemonkeycap = 20
-
- // Makes gamemodes respect player limits
- var/enable_gamemode_player_limit = 0
-
- /// BYOND account age limit for notifcations of new accounts (Any accounts older than this value will not send notifications on first join)
- var/byond_account_age_threshold = 7
-
- /// Are discord webhooks enabled?
- var/discord_webhooks_enabled = FALSE
-
- /// Role ID to be pinged for administrative events
- var/discord_admin_role_id = null // Intentional null usage
-
- /// Webhook URLs for the main public webhook
- var/list/discord_main_webhook_urls = list()
-
- /// Webhook URLs for the admin webhook
- var/list/discord_admin_webhook_urls = list()
-
- /// Webhook URLs for the mentor webhook
- var/list/discord_mentor_webhook_urls = list()
-
- /// Do we want to forward all adminhelps to the discord or just ahelps when admins are offline.
- /// (This does not mean all ahelps are pinged, only ahelps sent when staff are offline get the ping, regardless of this setting)
- var/discord_forward_all_ahelps = FALSE
-
- /// URL for the CentCom Ban DB API
- var/centcom_ban_db_url = null
-
- /// Timeout (seconds) for async SQL queries
- var/async_sql_query_timeout = 10 SECONDS
-
- /// Limit of how many SQL threads can run at once
- var/rust_sql_thread_limit = 50
-
- /// Max amount of CIDs that one ckey can have attached to them before they trip a warning
- var/max_client_cid_history = 3
-
- /// Enable auto profiler of rounds
- var/auto_profile = FALSE
-
- // Enable map voting
- var/map_voting_enabled = FALSE
-
- // 2FA auth host
- var/_2fa_auth_host = null
-
-/datum/configuration/New()
- for(var/T in subtypesof(/datum/game_mode))
- var/datum/game_mode/M = T
-
- if(initial(M.config_tag))
- if(!(initial(M.config_tag) in modes)) // ensure each mode is added only once
- src.modes += initial(M.config_tag)
- src.mode_names[initial(M.config_tag)] = initial(M.name)
- src.probabilities[initial(M.config_tag)] = initial(M.probability)
- if(initial(M.votable))
- src.votable_modes += initial(M.config_tag)
- src.votable_modes += "secret"
-
-/datum/configuration/proc/load(filename, type = "config") //the type can also be game_options, in which case it uses a different switch. not making it separate to not copypaste code - Urist
- if(IsAdminAdvancedProcCall())
- to_chat(usr, "Config reload blocked: Advanced ProcCall detected.")
- message_admins("[key_name(usr)] attempted to reload configuration via advanced proc-call")
- log_admin("[key_name(usr)] attempted to reload configuration via advanced proc-call")
- return
- var/list/Lines = file2list(filename)
-
- for(var/t in Lines)
- if(!t) continue
-
- t = trim(t)
- if(length(t) == 0)
- continue
- else if(copytext(t, 1, 2) == "#")
- continue
-
- var/pos = findtext(t, " ")
- var/name = null
- var/value = null
-
- if(pos)
- name = lowertext(copytext(t, 1, pos))
- value = copytext(t, pos + 1)
- else
- name = lowertext(t)
-
- if(!name)
- continue
-
- if(type == "config")
- switch(name)
- if("resource_urls")
- config.resource_urls = splittext(value, " ")
-
- if("admin_legacy_system")
- config.admin_legacy_system = 1
-
- if("ban_legacy_system")
- config.ban_legacy_system = 1
-
- if("use_age_restriction_for_jobs")
- config.use_age_restriction_for_jobs = 1
-
- if("use_age_restriction_for_antags")
- config.use_age_restriction_for_antags = 1
-
- if("use_exp_tracking")
- config.use_exp_tracking = 1
-
- if("use_exp_restrictions")
- config.use_exp_restrictions = 1
-
- if("use_exp_restrictions_admin_bypass")
- config.use_exp_restrictions_admin_bypass = 1
-
- if("jobs_have_minimal_access")
- config.jobs_have_minimal_access = 1
-
- if("shadowling_max_age")
- config.shadowling_max_age = text2num(value)
-
- if("warn_afk_minimum")
- config.warn_afk_minimum = text2num(value)
- if("auto_cryo_afk")
- config.auto_cryo_afk = text2num(value)
- if("auto_despawn_afk")
- config.auto_despawn_afk = text2num(value)
-
- if("auto_cryo_ssd_mins")
- config.auto_cryo_ssd_mins = text2num(value)
- if("ssd_warning")
- config.ssd_warning = 1
-
- if("list_afk_minimum")
- config.list_afk_minimum = text2num(value)
-
- if("ipintel_email")
- if(value != "ch@nge.me")
- config.ipintel_email = value
- if("ipintel_rating_bad")
- config.ipintel_rating_bad = text2num(value)
- if("ipintel_domain")
- config.ipintel_domain = value
- if("ipintel_save_good")
- config.ipintel_save_good = text2num(value)
- if("ipintel_save_bad")
- config.ipintel_save_bad = text2num(value)
- if("ipintel_maxplaytime")
- config.ipintel_maxplaytime = text2num(value)
- if("ipintel_whitelist")
- config.ipintel_whitelist = 1
- if("ipintel_detailsurl")
- config.ipintel_detailsurl = value
-
- if("forum_link_url")
- config.forum_link_url = value
-
- if("forum_playerinfo_url")
- config.forum_playerinfo_url = value
-
- if("log_ooc")
- config.log_ooc = 1
-
- if("log_access")
- config.log_access = 1
-
- if("log_say")
- config.log_say = 1
-
- if("log_admin")
- config.log_admin = 1
-
- if("log_debug")
- config.log_debug = 1
-
- if("log_game")
- config.log_game = 1
-
- if("log_vote")
- config.log_vote = 1
-
- if("log_whisper")
- config.log_whisper = 1
-
- if("log_attack")
- config.log_attack = 1
-
- if("log_emote")
- config.log_emote = 1
-
- if("log_adminchat")
- config.log_adminchat = 1
-
- if("log_adminwarn")
- config.log_adminwarn = 1
-
- if("log_pda")
- config.log_pda = 1
-
- if("log_world_output")
- config.log_world_output = 1
-
- if("log_hrefs")
- config.log_hrefs = 1
-
- if("log_runtime")
- config.log_runtimes = 1
-
- if("mentors")
- config.mods_are_mentors = 1
-
- if("allow_admin_ooccolor")
- config.allow_admin_ooccolor = 1
-
- if("pregame_timestart")
- config.pregame_timestart = text2num(value)
-
- if("allow_vote_restart")
- config.allow_vote_restart = 1
-
- if("allow_vote_mode")
- config.allow_vote_mode = 1
-
- if("no_dead_vote")
- config.vote_no_dead = 1
-
- if("vote_autotransfer_initial")
- config.vote_autotransfer_initial = text2num(value)
-
- if("vote_autotransfer_interval")
- config.vote_autotransfer_interval = text2num(value)
-
- if("default_no_vote")
- config.vote_no_default = 1
-
- if("vote_delay")
- config.vote_delay = text2num(value)
-
- if("vote_period")
- config.vote_period = text2num(value)
-
- if("allow_ai")
- config.allow_ai = 1
-
-// if("authentication")
-// config.enable_authentication = 1
-
- if("norespawn")
- config.respawn = 0
-
- if("servername")
- config.server_name = value
-
- if("server_tag_line")
- config.server_tag_line = value
-
- if("server_extra_features")
- config.server_extra_features = value
-
- if("serversuffix")
- config.server_suffix = 1
-
- if("minimum_client_build")
- config.minimum_client_build = text2num(value)
-
- if("nudge_script_path")
- config.nudge_script_path = value
-
- if("server")
- config.server = value
-
- if("banappeals")
- config.banappeals = value
-
- if("wikiurl")
- config.wikiurl = value
-
- if("forumurl")
- config.forumurl = value
-
- if("rulesurl")
- config.rulesurl = value
-
- if("githuburl")
- config.githuburl = value
-
- if("discordurl")
- config.discordurl = value
-
- if("discordforumurl")
- config.discordforumurl = value
-
- if("donationsurl")
- config.donationsurl = value
-
- if("repositoryurl")
- config.repositoryurl = value
-
- if("guest_jobban")
- config.guest_jobban = 1
-
- if("guest_ban")
- GLOB.guests_allowed = 0
-
- if("panic_bunker_threshold")
- config.panic_bunker_threshold = text2num(value)
-
- if("usewhitelist")
- config.usewhitelist = 1
-
- if("feature_object_spell_system")
- config.feature_object_spell_system = 1
-
- if("allow_metadata")
- config.allow_Metadata = 1
-
- if("traitor_scaling")
- config.traitor_scaling = 1
-
- if("protect_roles_from_antagonist")
- config.protect_roles_from_antagonist = 1
-
- if("probability")
- var/prob_pos = findtext(value, " ")
- var/prob_name = null
- var/prob_value = null
-
- if(prob_pos)
- prob_name = lowertext(copytext(value, 1, prob_pos))
- prob_value = copytext(value, prob_pos + 1)
- if(prob_name in config.modes)
- config.probabilities[prob_name] = text2num(prob_value)
- else
- log_config("Unknown game mode probability configuration definition: [prob_name].")
- else
- log_config("Incorrect probability configuration definition: [prob_name] [prob_value].")
-
- if("allow_random_events")
- config.allow_random_events = 1
-
- if("load_jobs_from_txt")
- load_jobs_from_txt = 1
-
- if("forbid_singulo_possession")
- forbid_singulo_possession = 1
-
- if("check_randomizer")
- check_randomizer = 1
-
- if("popup_admin_pm")
- config.popup_admin_pm = 1
-
- if("allow_holidays")
- config.allow_holidays = 1
-
- if("ticklag")
- Ticklag = text2num(value)
-
- if("socket_talk")
- socket_talk = text2num(value)
-
- if("allow_antag_hud")
- config.antag_hud_allowed = 1
-
- if("antag_hud_restricted")
- config.antag_hud_restricted = 1
-
- if("humans_need_surnames")
- humans_need_surnames = 1
-
- if("automute_on")
- automute_on = 1
-
- if("usealienwhitelist")
- usealienwhitelist = 1
-
- if("alien_player_ratio")
- limitalienplayers = 1
- alien_to_human_ratio = text2num(value)
-
- if("assistant_maint")
- config.assistant_maint = 1
-
- if("gateway_delay")
- config.gateway_delay = text2num(value)
-
- if("continuous_rounds")
- config.continuous_rounds = 1
-
- if("ghost_interaction")
- config.ghost_interaction = 1
-
- if("comms_password")
- config.comms_password = value
-
- if("python_path")
- if(value)
- GLOB.python_path = value
- else
- if(world.system_type == UNIX)
- GLOB.python_path = "/usr/bin/env python2"
- else //probably windows, if not this should work anyway
- GLOB.python_path = "pythonw"
-
- if("assistant_limit")
- config.assistantlimit = 1
-
- if("assistant_ratio")
- config.assistantratio = text2num(value)
-
- if("allow_drone_spawn")
- config.allow_drone_spawn = text2num(value)
-
- if("drone_build_time")
- config.drone_build_time = text2num(value)
-
- if("max_maint_drones")
- config.max_maint_drones = text2num(value)
-
- if("expected_round_length")
- config.expected_round_length = text2num(value) MINUTES
-
- if("event_custom_start_mundane")
- var/values = text2numlist(value, ";")
- config.event_first_run[EVENT_LEVEL_MUNDANE] = list("lower" = values[1] MINUTES, "upper" = values[2] MINUTES)
-
- if("event_custom_start_moderate")
- var/values = text2numlist(value, ";")
- config.event_first_run[EVENT_LEVEL_MODERATE] = list("lower" = values[1] MINUTES, "upper" = values[2] MINUTES)
-
- if("event_custom_start_major")
- var/values = text2numlist(value, ";")
- config.event_first_run[EVENT_LEVEL_MAJOR] = list("lower" = values[1] MINUTES, "upper" = values[2] MINUTES)
-
- if("event_delay_lower")
- var/values = text2numlist(value, ";")
- config.event_delay_lower[EVENT_LEVEL_MUNDANE] = values[1] MINUTES
- config.event_delay_lower[EVENT_LEVEL_MODERATE] = values[2] MINUTES
- config.event_delay_lower[EVENT_LEVEL_MAJOR] = values[3] MINUTES
-
- if("event_delay_upper")
- var/values = text2numlist(value, ";")
- config.event_delay_upper[EVENT_LEVEL_MUNDANE] = values[1] MINUTES
- config.event_delay_upper[EVENT_LEVEL_MODERATE] = values[2] MINUTES
- config.event_delay_upper[EVENT_LEVEL_MAJOR] = values[3] MINUTES
-
- if("starlight")
- config.starlight = 1
-
- if("player_reroute_cap")
- var/vvalue = text2num(value)
- config.player_overflow_cap = vvalue >= 0 ? vvalue : 0
-
- if("overflow_server_url")
- config.overflow_server_url = value
-
- if("disable_away_missions")
- config.disable_away_missions = 1
-
- if("disable_space_ruins")
- config.disable_space_ruins = 1
-
- if("disable_lobby_music")
- config.disable_lobby_music = 1
-
- if("disable_cid_warn_popup")
- config.disable_cid_warn_popup = 1
-
- if("extra_space_ruin_levels_min")
- var/vvalue = text2num(value)
- config.extra_space_ruin_levels_min = max(vvalue, 0)
-
- if("extra_space_ruin_levels_max")
- var/vvalue = text2num(value)
- config.extra_space_ruin_levels_max = max(vvalue, 0)
-
- if("max_loadout_points")
- config.max_loadout_points = text2num(value)
-
- if("round_abandon_penalty_period")
- config.round_abandon_penalty_period = text2num(value) MINUTES
-
- if("medal_hub_address")
- config.medal_hub_address = value
-
- if("medal_hub_password")
- config.medal_hub_password = value
-
- if("disable_ooc_emoji")
- config.disable_ooc_emoji = 1
-
- if("shutdown_on_reboot")
- config.shutdown_on_reboot = 1
-
- if("shutdown_shell_command")
- GLOB.shutdown_shell_command = value
-
- if("disable_karma")
- config.disable_karma = 1
-
- if("start_now_confirmation")
- config.start_now_confirmation = 1
-
- if("tick_limit_mc_init")
- config.tick_limit_mc_init = text2num(value)
- if("base_mc_tick_rate")
- config.base_mc_tick_rate = text2num(value)
- if("high_pop_mc_tick_rate")
- config.high_pop_mc_tick_rate = text2num(value)
- if("high_pop_mc_mode_amount")
- config.high_pop_mc_mode_amount = text2num(value)
- if("disable_high_pop_mc_mode_amount")
- config.disable_high_pop_mc_mode_amount = text2num(value)
- if("developer_express_start")
- config.developer_express_start = 1
- if("disable_localhost_admin")
- config.disable_localhost_admin = 1
- if("enable_gamemode_player_limit")
- config.enable_gamemode_player_limit = 1
- if("byond_account_age_threshold")
- config.byond_account_age_threshold = text2num(value)
- // Discord stuff
- if("enable_discord_webhooks")
- discord_webhooks_enabled = TRUE
- if("discord_webhooks_admin_role_id")
- discord_admin_role_id = "[value]" // This MUST be a string because BYOND doesnt like massive integers
- if("discord_webhooks_main_url")
- discord_main_webhook_urls = splittext(value, "|")
- if("discord_webhooks_admin_url")
- discord_admin_webhook_urls = splittext(value, "|")
- if("discord_webhooks_mentor_url")
- discord_mentor_webhook_urls = splittext(value, "|")
- if("discord_forward_all_ahelps")
- discord_forward_all_ahelps = TRUE
- // End discord stuff
- if("centcom_ban_db_url")
- centcom_ban_db_url = value
- if("max_client_cid_history")
- max_client_cid_history = text2num(value)
- if("enable_auto_profiler")
- auto_profile = TRUE
- if("enable_map_voting")
- map_voting_enabled = TRUE
- if("2fa_host")
- _2fa_auth_host = value
- else
- log_config("Unknown setting in configuration: '[name]'")
-
-
- else if(type == "game_options")
- value = text2num(value)
-
- switch(name)
- if("revival_pod_plants")
- config.revival_pod_plants = value
- if("revival_cloning")
- config.revival_cloning = value
- if("revival_brain_life")
- config.revival_brain_life = value
- if("auto_toggle_ooc_during_round")
- config.auto_toggle_ooc_during_round = 1
- if("run_speed")
- config.run_speed = value
- if("walk_speed")
- config.walk_speed = value
- if("human_delay")
- config.human_delay = value
- if("robot_delay")
- config.robot_delay = value
- if("monkey_delay")
- config.monkey_delay = value
- if("alien_delay")
- config.alien_delay = value
- if("slime_delay")
- config.slime_delay = value
- if("animal_delay")
- config.animal_delay = value
- if("bones_can_break")
- config.bones_can_break = value
- if("shuttle_refuel_delay")
- config.shuttle_refuel_delay = text2num(value)
- if("traitor_objectives_amount")
- config.traitor_objectives_amount = text2num(value)
- if("reactionary_explosions")
- config.reactionary_explosions = 1
- if("bombcap")
- var/BombCap = text2num(value)
- if(!BombCap)
- continue
- if(BombCap < 4)
- BombCap = 4
- if(BombCap > 128)
- BombCap = 128
-
- GLOB.max_ex_devastation_range = round(BombCap/4)
- GLOB.max_ex_heavy_range = round(BombCap/2)
- GLOB.max_ex_light_range = BombCap
- GLOB.max_ex_flash_range = BombCap
- GLOB.max_ex_flame_range = BombCap
- if("default_laws")
- config.default_laws = text2num(value)
- if("randomize_shift_time")
- config.randomize_shift_time = TRUE
- if("enable_night_shifts")
- config.enable_night_shifts = TRUE
- if("lavaland_budget")
- config.lavaland_budget = text2num(value)
- if("cubemonkey_cap")
- config.cubemonkeycap = text2num(value)
- else
- log_config("Unknown setting in configuration: '[name]'")
-
-/datum/configuration/proc/loadsql(filename) // -- TLE
- if(IsAdminAdvancedProcCall())
- to_chat(usr, "SQL configuration reload blocked: Advanced ProcCall detected.")
- message_admins("[key_name(usr)] attempted to reload SQL configuration via advanced proc-call")
- log_admin("[key_name(usr)] attempted to reload SQL configuration via advanced proc-call")
- return
- var/list/Lines = file2list(filename)
- for(var/t in Lines)
- if(!t) continue
-
- t = trim(t)
- if(length(t) == 0)
- continue
- else if(copytext(t, 1, 2) == "#")
- continue
-
- var/pos = findtext(t, " ")
- var/name = null
- var/value = null
-
- if(pos)
- name = lowertext(copytext(t, 1, pos))
- value = copytext(t, pos + 1)
- else
- name = lowertext(t)
-
- if(!name)
- continue
-
- switch(name)
- if("sql_enabled")
- config.sql_enabled = 1
- if("address")
- sqladdress = value
- if("port")
- sqlport = value
- if("feedback_database")
- sqlfdbkdb = value
- if("feedback_login")
- sqlfdbklogin = value
- if("feedback_password")
- sqlfdbkpass = value
- if("feedback_tableprefix")
- sqlfdbktableprefix = value
- if("db_version")
- sql_version = text2num(value)
- if("async_query_timeout")
- async_sql_query_timeout = text2num(value)
- if("rust_sql_thread_limit")
- config.rust_sql_thread_limit = text2num(value)
- else
- log_config("Unknown setting in configuration: '[name]'")
-
-/datum/configuration/proc/loadoverflowwhitelist(filename)
- var/list/Lines = file2list(filename)
- for(var/t in Lines)
- if(!t) continue
-
- t = trim(t)
- if(length(t) == 0)
- continue
- else if(copytext(t, 1, 2) == "#")
- continue
-
- config.overflow_whitelist += t
-
-/datum/configuration/proc/pick_mode(mode_name)
- for(var/T in subtypesof(/datum/game_mode))
- var/datum/game_mode/M = T
- if(initial(M.config_tag) && initial(M.config_tag) == mode_name)
- return new T()
- return new /datum/game_mode/extended()
-
-/datum/configuration/proc/get_runnable_modes()
- var/list/datum/game_mode/runnable_modes = new
- for(var/T in subtypesof(/datum/game_mode))
- var/datum/game_mode/M = new T()
-// to_chat(world, "DEBUG: [T], tag=[M.config_tag], prob=[probabilities[M.config_tag]]")
- if(!(M.config_tag in modes))
- qdel(M)
- continue
- if(probabilities[M.config_tag]<=0)
- qdel(M)
- continue
- if(M.can_start())
- runnable_modes[M] = probabilities[M.config_tag]
-// to_chat(world, "DEBUG: runnable_mode\[[runnable_modes.len]\] = [M.config_tag]")
- return runnable_modes
-
-/datum/configuration/proc/load_rank_colour_map()
- var/list/lines = file2list("config/rank_colours.txt")
-
- for(var/line in lines)
- // Skip newlines
- if(!length(line))
- continue
- // Skip comments
- if(line[1] == "#")
- continue
-
- //Split the line at every " - "
- var/list/split_holder = splittext(line, " - ")
- if(!length(split_holder))
- continue
-
- // Rank is before the " - "
- var/rank = split_holder[1]
- if(!rank)
- continue
-
- // Color is after the " - "
- var/colour = ""
- if(length(split_holder) >= 2)
- colour = split_holder[2]
-
- if(rank && colour)
- GLOB.rank_colour_map[rank] = colour
- else
- stack_trace("Invalid colour for rank '[rank]' in config/rank_colours.txt")
diff --git a/code/controllers/configuration/__config_defines.dm b/code/controllers/configuration/__config_defines.dm
new file mode 100644
index 00000000000..f5262401107
--- /dev/null
+++ b/code/controllers/configuration/__config_defines.dm
@@ -0,0 +1,40 @@
+// Config protection states
+#define PROTECTION_PRIVATE "PRIVATE"
+#define PROTECTION_READONLY "READONLY"
+#define PROTECTION_NONE "NONE"
+/// Wrapper to not overwrite a variable if a list key doesnt exist. Auto casts to bools.
+#define CONFIG_LOAD_BOOL(target, input) \
+ if(!isnull(input)) {\
+ target = ((input == 1) ? TRUE : FALSE)\
+ }
+
+/// Wrapper to not overwrite a variable if a list key doesnt exist. Auto casts to number.
+#define CONFIG_LOAD_NUM(target, input) \
+ if(!isnull(input)) {\
+ target = text2num(input)\
+ }
+
+/// Wrapper to not overwrite a variable if a list key doesnt exist. Auto casts to number, and accepts a macro argument for number maths (ds to min for example)
+#define CONFIG_LOAD_NUM_MULT(target, input, multiplier) \
+ if(!isnull(input)) {\
+ target = text2num(input) multiplier\
+ }
+
+/// Wrapper to not overwrite a variable if a list key doesnt exist. Auto casts to string.
+#define CONFIG_LOAD_STR(target, input) \
+ if(!isnull(input)) {\
+ target = "[input]"\
+ }
+
+/// Wrapper to not overwrite a variable if a list key doesnt exist. No casting done.
+#define CONFIG_LOAD_RAW(target, input) \
+ if(!isnull(input)) {\
+ target = input\
+ }
+
+/// Wrapper to not overwrite a variable if a list key doesnt exist. Ensures target is a list.
+#define CONFIG_LOAD_LIST(target, input) \
+ if(islist(input)) {\
+ target = input\
+ }
+
diff --git a/code/controllers/configuration/configuration_core.dm b/code/controllers/configuration/configuration_core.dm
new file mode 100644
index 00000000000..c4938d3efc6
--- /dev/null
+++ b/code/controllers/configuration/configuration_core.dm
@@ -0,0 +1,142 @@
+// Paradise SS13 Configuration System
+// Refactored to use config sections as part of a single TOML file, since thats much better to deal with
+
+/// Global configuration datum holder for all the config sections
+GLOBAL_DATUM_INIT(configuration, /datum/server_configuration, new())
+
+/// Represents a base configuration datum. Has everything else bundled into it
+/datum/server_configuration
+ /// Holder for the admin configuration datum
+ var/datum/configuration_section/admin_configuration/admin
+ /// Holder for the AFK configuration datum
+ var/datum/configuration_section/afk_configuration/afk
+ /// Holder for the custom sprites configuration datum
+ var/datum/configuration_section/custom_sprites_configuration/custom_sprites
+ /// Holder for the DB configuration datum
+ var/datum/configuration_section/database_configuration/database
+ /// Holder for the Discord configuration datum
+ var/datum/configuration_section/discord_configuration/discord
+ /// Holder for the Event configuration datum
+ var/datum/configuration_section/event_configuration/event
+ /// Holder for the gamemode configuration datum
+ var/datum/configuration_section/gamemode_configuration/gamemode
+ /// Holder for the gateway configuration datum
+ var/datum/configuration_section/gateway_configuration/gateway
+ /// Holder for the general configuration datum
+ var/datum/configuration_section/general_configuration/general
+ /// Holder for the IPIntel configuration datum
+ var/datum/configuration_section/ipintel_configuration/ipintel
+ /// Holder for the job configuration datum
+ var/datum/configuration_section/job_configuration/jobs
+ /// Holder for the logging configuration datum
+ var/datum/configuration_section/logging_configuration/logging
+ /// Holder for the MC configuration datum
+ var/datum/configuration_section/mc_configuration/mc
+ /// Holder for the MC configuration datum
+ var/datum/configuration_section/movement_configuration/movement
+ /// Holder for the overflow configuration datum
+ var/datum/configuration_section/overflow_configuration/overflow
+ /// Holder for the ruins configuration datum
+ var/datum/configuration_section/ruin_configuration/ruins
+ /// Holder for the system configuration datum
+ var/datum/configuration_section/system_configuration/system
+ /// Holder for the URL configuration datum
+ var/datum/configuration_section/url_configuration/url
+ /// Holder for the voting configuration datum
+ var/datum/configuration_section/vote_configuration/vote
+
+
+/datum/server_configuration/Destroy(force)
+ SHOULD_CALL_PARENT(FALSE)
+ // This is going to stay existing. I dont care.
+ return QDEL_HINT_LETMELIVE
+
+/datum/server_configuration/CanProcCall(procname)
+ return FALSE // No thanks
+
+/datum/server_configuration/proc/load_configuration()
+ var/start = start_watch() // Time tracking
+
+ // Initialize all our holders
+ admin = new()
+ afk = new()
+ custom_sprites = new()
+ database = new()
+ discord = new()
+ event = new()
+ gamemode = new()
+ gateway = new()
+ general = new()
+ ipintel = new()
+ jobs = new()
+ logging = new()
+ mc = new()
+ movement = new()
+ overflow = new()
+ ruins = new()
+ system = new()
+ url = new()
+ vote = new()
+
+ // Load our stuff up
+ var/config_file = "config/config.toml"
+ if(!fexists(config_file))
+ config_file = "config/example/config.toml" // Fallback to example if user hasnt setup config properly
+ var/raw_json = rustg_toml2json(config_file)
+ var/list/raw_config_data = json_decode(raw_json)
+
+ // Now pass through all our stuff
+ admin.load_data(raw_config_data["admin_configuration"])
+ afk.load_data(raw_config_data["afk_configuration"])
+ custom_sprites.load_data(raw_config_data["custom_sprites_configuration"])
+ database.load_data(raw_config_data["database_configuration"])
+ discord.load_data(raw_config_data["discord_configuration"])
+ event.load_data(raw_config_data["event_configuration"])
+ gamemode.load_data(raw_config_data["gamemode_configuration"])
+ gateway.load_data(raw_config_data["gateway_configuration"])
+ general.load_data(raw_config_data["general_configuration"])
+ ipintel.load_data(raw_config_data["ipintel_configuration"])
+ jobs.load_data(raw_config_data["job_configuration"])
+ logging.load_data(raw_config_data["logging_configuration"])
+ mc.load_data(raw_config_data["mc_configuration"])
+ movement.load_data(raw_config_data["movement_configuration"])
+ overflow.load_data(raw_config_data["overflow_configuration"])
+ ruins.load_data(raw_config_data["ruin_configuration"])
+ system.load_data(raw_config_data["system_configuration"])
+ url.load_data(raw_config_data["url_configuration"])
+ vote.load_data(raw_config_data["voting_configuration"])
+
+ // And report the load
+ DIRECT_OUTPUT(world.log, "Config loaded in [stop_watch(start)]s")
+
+
+/datum/configuration_section
+ /// See __config_defines.dm
+ var/protection_state = PROTECTION_NONE
+
+/datum/configuration_section/proc/load_data(list/data)
+ CRASH("load() not overriden for [type]!")
+
+// Maximum protection
+/datum/configuration_section/can_vv_get(var_name)
+ if(protection_state == PROTECTION_PRIVATE)
+ return FALSE
+ return ..()
+
+/datum/configuration_section/vv_edit_var(var_name, var_value)
+ if(protection_state in list(PROTECTION_PRIVATE, PROTECTION_READONLY))
+ return FALSE
+ return ..()
+
+/datum/configuration_section/vv_get_var(var_name)
+ if(protection_state == PROTECTION_PRIVATE)
+ return FALSE
+ return ..()
+
+/datum/configuration_section/Destroy(force)
+ SHOULD_CALL_PARENT(FALSE)
+ // This is going to stay existing. I dont care.
+ return QDEL_HINT_LETMELIVE
+
+/datum/configuration_section/CanProcCall(procname)
+ return FALSE // No thanks
diff --git a/code/controllers/configuration/sections/admin_configuration.dm b/code/controllers/configuration/sections/admin_configuration.dm
new file mode 100644
index 00000000000..42bcbff4bc1
--- /dev/null
+++ b/code/controllers/configuration/sections/admin_configuration.dm
@@ -0,0 +1,43 @@
+/// Config holder for all admin related things
+/datum/configuration_section/admin_configuration
+ protection_state = PROTECTION_READONLY // Dont even think about it
+ /// Do we want to load admins from the database?
+ var/use_database_admins = FALSE
+ /// Do we want to auto enable admin rights if you connect from localhost?
+ var/enable_localhost_autoadmin = TRUE
+ /// Do we want to allow admins to set their own OOC colour?
+ var/allow_admin_ooc_colour = TRUE
+ /// Assoc list of admin ranks and their stuff. key: rank name string | value: list of rights
+ var/list/rank_rights_map = list()
+ /// Assoc list of admin ckeys and their ranks. key: ckey | value: rank name
+ var/list/ckey_rank_map = list()
+ /// Assoc list of admin ranks and their colours. key: rank | value: rank colour
+ var/list/rank_colour_map = list()
+
+/datum/configuration_section/admin_configuration/load_data(list/data)
+ // Use the load wrappers here. That way the default isnt made 'null' if you comment out the config line
+ CONFIG_LOAD_BOOL(use_database_admins, data["use_database_admins"])
+ CONFIG_LOAD_BOOL(enable_localhost_autoadmin, data["enable_localhost_autoadmin"])
+ CONFIG_LOAD_BOOL(allow_admin_ooc_colour, data["allow_admin_ooc_colour"])
+
+ // Load admin rank tokens
+ if(islist(data["admin_ranks"]))
+ rank_rights_map.Cut()
+ for(var/list/kvset in data["admin_ranks"])
+ rank_rights_map[kvset["name"]] = kvset["rights"]
+
+ // Load admin assignments
+ if(islist(data["admin_assignments"]))
+ ckey_rank_map.Cut()
+ for(var/list/kvset in data["admin_assignments"])
+ ckey_rank_map[kvset["ckey"]] = kvset["rank"]
+
+ // Load admin colours
+ if(islist(data["admin_rank_colour_map"]))
+ rank_colour_map.Cut()
+ for(var/list/kvset in data["admin_rank_colour_map"])
+ rank_colour_map[kvset["name"]] = kvset["colour"]
+
+ // For the person who asks "Why not put admin datum generation in this step?", well I will tell you why
+ // Admins can be reloaded at runtime when DB edits are made and such, and I dont want an entire config reload to be part of this
+ // Separation makes sense. That and in prod we use the DB anyways.
diff --git a/code/controllers/configuration/sections/afk_configuration.dm b/code/controllers/configuration/sections/afk_configuration.dm
new file mode 100644
index 00000000000..90e2c6b7c67
--- /dev/null
+++ b/code/controllers/configuration/sections/afk_configuration.dm
@@ -0,0 +1,17 @@
+/// Config holder for all AFK related things
+/datum/configuration_section/afk_configuration
+ /// Minutes before someone gets an AFK warning
+ var/warning_minutes = 0
+ /// Minutes before someone is auto moved to cryo
+ var/auto_cryo_minutes = 0
+ /// Minutes before someone is auto despawned
+ var/auto_despawn_minutes = 0
+ /// Time before SSD people are auto cryo'd
+ var/ssd_auto_cryo_minutes = 0
+
+/datum/configuration_section/afk_configuration/load_data(list/data)
+ // Use the load wrappers here. That way the default isnt made 'null' if you comment out the config line
+ CONFIG_LOAD_NUM(warning_minutes, data["afk_warning_minutes"])
+ CONFIG_LOAD_NUM(auto_cryo_minutes, data["afk_auto_cryo_minutes"])
+ CONFIG_LOAD_NUM(auto_despawn_minutes, data["afk_auto_despawn_minutes"])
+ CONFIG_LOAD_NUM(ssd_auto_cryo_minutes, data["ssd_auto_cryo_minutes"])
diff --git a/code/controllers/configuration/sections/custom_sprites_configuration.dm b/code/controllers/configuration/sections/custom_sprites_configuration.dm
new file mode 100644
index 00000000000..3b1c18feb70
--- /dev/null
+++ b/code/controllers/configuration/sections/custom_sprites_configuration.dm
@@ -0,0 +1,25 @@
+/// Config holder for all things regarding custom sprites
+/datum/configuration_section/custom_sprites_configuration
+ /// List of ckeys that have custom cyborg skins
+ var/list/cyborg_ckeys = list()
+ /// List of ckeys that have custom AI core skins
+ var/list/ai_core_ckeys = list()
+ /// List of ckeys that have custom AI hologram skins
+ var/list/ai_hologram_ckeys = list()
+ /// List of ckeys that have custom pAI holoforms
+ var/list/pai_holoform_ckeys = list()
+ /// Assoc of ckeys that have custom pAI screens. Key: ckey | value: list of icon states
+ var/list/ipc_screen_map = list()
+
+/datum/configuration_section/custom_sprites_configuration/load_data(list/data)
+ // Use the load wrappers here. That way the default isnt made 'null' if you comment out the config line
+ CONFIG_LOAD_LIST(cyborg_ckeys, data["cyborgs"])
+ CONFIG_LOAD_LIST(ai_core_ckeys, data["ai_core"])
+ CONFIG_LOAD_LIST(ai_hologram_ckeys, data["ai_hologram"])
+ CONFIG_LOAD_LIST(pai_holoform_ckeys, data["pai_holoform"])
+
+ // Load the ipc screens
+ if(islist(data["ipc_screens"]))
+ ipc_screen_map.Cut()
+ for(var/kvp in data["ipc_screens"])
+ ipc_screen_map[kvp["ckey"]] = kvp["screens"]
diff --git a/code/controllers/configuration/sections/database_configuration.dm b/code/controllers/configuration/sections/database_configuration.dm
new file mode 100644
index 00000000000..e7ed707f573
--- /dev/null
+++ b/code/controllers/configuration/sections/database_configuration.dm
@@ -0,0 +1,43 @@
+/// Config holder for all database related things
+/datum/configuration_section/database_configuration
+ protection_state = PROTECTION_PRIVATE // NO! BAD!
+ /// SQL enabled or not
+ var/enabled = FALSE
+ /// What SQL version are we on
+ var/version = 0
+ /// Address of the SQL server
+ var/address = "127.0.0.1"
+ /// Port of the SQL server
+ var/port = 3306
+ /// SQL usename
+ var/username = "root"
+ /// SQL password
+ var/password = "root" // Dont do this in prod. Please......
+ /// Database name
+ var/db = "paradise_gamedb"
+ /// Time in seconds for async queries to time out
+ var/async_query_timeout = 10
+ /// Thread limit for async queries
+ var/async_thread_limit = 50
+
+/datum/configuration_section/database_configuration/load_data(list/data)
+ // UNIT TESTS ARE DEFINED - USE CUSTOM CI VALUES
+ #ifdef UNIT_TESTS
+
+ enabled = TRUE
+ // This needs to happen in the CI environment to ensure the example SQL version gets updated.
+ CONFIG_LOAD_NUM(version, data["sql_version"])
+
+ #else
+ // Load the normal config. Were not in CI mode
+ // Use the load wrappers here. That way the default isnt made 'null' if you comment out the config line
+ CONFIG_LOAD_BOOL(enabled, data["sql_enabled"])
+ CONFIG_LOAD_NUM(version, data["sql_version"])
+ CONFIG_LOAD_STR(address, data["sql_address"])
+ CONFIG_LOAD_NUM(port, data["sql_port"])
+ CONFIG_LOAD_STR(username, data["sql_username"])
+ CONFIG_LOAD_STR(password, data["sql_password"])
+ CONFIG_LOAD_STR(db, data["sql_database"])
+ CONFIG_LOAD_NUM(async_query_timeout, data["async_query_timeout"])
+ CONFIG_LOAD_NUM(async_thread_limit, data["async_thread_limit"])
+ #endif
diff --git a/code/controllers/configuration/sections/discord_configuration.dm b/code/controllers/configuration/sections/discord_configuration.dm
new file mode 100644
index 00000000000..3d51c92aa42
--- /dev/null
+++ b/code/controllers/configuration/sections/discord_configuration.dm
@@ -0,0 +1,26 @@
+/// Config holder for all things relating to discord webhooks
+/datum/configuration_section/discord_configuration
+ protection_state = PROTECTION_PRIVATE // No hook reading
+ /// Are webhooks enabled at all
+ var/webhooks_enabled = FALSE
+ /// Do we want to forward all ahelps or just ones sent with no active admins
+ var/forward_all_ahelps = TRUE
+ /// Admin role to ping if no admins are online. Disables if empty string
+ var/admin_role_id = ""
+ /// List of all URLs for the main webhooks
+ var/list/main_webhook_urls = list()
+ /// List of all URLs for the admin webhooks
+ var/list/mentor_webhook_urls = list()
+ /// List of all URLs for the mentor webhooks
+ var/list/admin_webhook_urls = list()
+
+
+
+/datum/configuration_section/discord_configuration/load_data(list/data)
+ // Use the load wrappers here. That way the default isnt made 'null' if you comment out the config line
+ CONFIG_LOAD_BOOL(webhooks_enabled, data["enable_discord_webhooks"])
+ CONFIG_LOAD_BOOL(forward_all_ahelps, data["forward_all_ahelps"])
+ CONFIG_LOAD_STR(admin_role_id, data["admin_role_id"])
+ CONFIG_LOAD_LIST(main_webhook_urls, data["main_webhook_urls"])
+ CONFIG_LOAD_LIST(mentor_webhook_urls, data["mentor_webhook_urls"])
+ CONFIG_LOAD_LIST(admin_webhook_urls, data["admin_webhook_urls"])
diff --git a/code/controllers/configuration/sections/event_configuration.dm b/code/controllers/configuration/sections/event_configuration.dm
new file mode 100644
index 00000000000..d169a92406d
--- /dev/null
+++ b/code/controllers/configuration/sections/event_configuration.dm
@@ -0,0 +1,61 @@
+/// Config holder for all stuff relating to ingame random events
+/datum/configuration_section/event_configuration
+ /// Do we want to enable random events at all
+ var/enable_random_events = TRUE
+ /// Assoc list of when the first event in a group can run. key: severity | value: assoc list with upper and low bounds (key: "upper"/"lower" | value: time in deciseconds)
+ var/list/first_run_times = list(
+ EVENT_LEVEL_MUNDANE = null,
+ EVENT_LEVEL_MODERATE = null,
+ EVENT_LEVEL_MAJOR = list("lower" = 40 MINUTES, "upper" = 50 MINUTES)
+ ) // <---- Whoever designed this needs to be shot
+
+ /// Assoc list of lower bounds of event delays. key: severity | value: delay (deciseconds)
+ var/list/delay_lower_bound = list(
+ EVENT_LEVEL_MUNDANE = 5 MINUTES,
+ EVENT_LEVEL_MODERATE = 15 MINUTES,
+ EVENT_LEVEL_MAJOR = 25 MINUTES
+ )
+ /// Assoc list of lower bounds of event delays. key: severity | value: delay (deciseconds)
+ var/list/delay_upper_bound = list(
+ EVENT_LEVEL_MUNDANE = 7.5 MINUTES,
+ EVENT_LEVEL_MODERATE = 22.5 MINUTES,
+ EVENT_LEVEL_MAJOR = 35 MINUTES
+ )
+ /// Expected time of a round in deciseconds
+ var/expected_round_length = 120 MINUTES // This macro is equivilent to 72,000 deciseconds
+
+/datum/configuration_section/event_configuration/load_data(list/data)
+ // Use the load wrappers here. That way the default isnt made 'null' if you comment out the config line
+ CONFIG_LOAD_BOOL(enable_random_events, data["allow_random_events"])
+
+ // Wrapper cant be used here due to it being multiplied
+ if(isnum(data["expected_round_length"]))
+ expected_round_length = data["expected_round_length"] MINUTES // Convert from minutes to deciseconds
+
+ // Load event severities. This is quite awful but needs to be done so we can account for config mistakes. This event system is awful
+ if(islist(data["event_delay_lower_bounds"]))
+ CONFIG_LOAD_NUM_MULT(delay_lower_bound[EVENT_LEVEL_MUNDANE], data["event_delay_lower_bounds"]["mundane"], MINUTES)
+ CONFIG_LOAD_NUM_MULT(delay_lower_bound[EVENT_LEVEL_MODERATE], data["event_delay_lower_bounds"]["moderate"], MINUTES)
+ CONFIG_LOAD_NUM_MULT(delay_lower_bound[EVENT_LEVEL_MAJOR], data["event_delay_lower_bounds"]["major"], MINUTES)
+
+ // Same here. I hate this.
+ if(islist(data["event_delay_upper_bounds"]))
+ CONFIG_LOAD_NUM_MULT(delay_upper_bound[EVENT_LEVEL_MUNDANE], data["event_delay_upper_bounds"]["mundane"], MINUTES)
+ CONFIG_LOAD_NUM_MULT(delay_upper_bound[EVENT_LEVEL_MODERATE], data["event_delay_upper_bounds"]["moderate"], MINUTES)
+ CONFIG_LOAD_NUM_MULT(delay_upper_bound[EVENT_LEVEL_MAJOR], data["event_delay_upper_bounds"]["major"], MINUTES)
+
+ // And for the worst, the first run delays. I hate this so much -aa07
+ if(islist(data["event_initial_delays"]))
+ for(var/list/assoclist in data["event_initial_delays"])
+ var/target = null
+ switch(assoclist["severity"])
+ if("mundane")
+ target = EVENT_LEVEL_MUNDANE
+ if("moderate")
+ target = EVENT_LEVEL_MODERATE
+ if("major")
+ target = EVENT_LEVEL_MAJOR
+ ASSERT(target in list(EVENT_LEVEL_MUNDANE, EVENT_LEVEL_MODERATE, EVENT_LEVEL_MAJOR))
+ first_run_times[target] = list("lower" = assoclist["lower_bound"] MINUTES, "upper" = assoclist["upper_bound"] MINUTES)
+
+
diff --git a/code/controllers/configuration/sections/gamemode_configuration.dm b/code/controllers/configuration/sections/gamemode_configuration.dm
new file mode 100644
index 00000000000..d09e02b5c29
--- /dev/null
+++ b/code/controllers/configuration/sections/gamemode_configuration.dm
@@ -0,0 +1,96 @@
+/// Config holder for everything regarding gamemodes
+/datum/configuration_section/gamemode_configuration
+ /// List of all gamemodes (value: config-tag)
+ var/list/gamemodes = list()
+ /// Assoc list of gamemode names (key: config-tag | value: mode name)
+ var/list/gamemode_names = list()
+ /// Assoc list of gamemode probabilities (key: config-tag | value: probability)
+ var/list/probabilities = list()
+ /// List of all gamemodes that can be voted for (value: config-tag)
+ var/list/votable_modes = list()
+ /// Should antags be restricted based on account age?
+ var/antag_account_age_restriction = FALSE
+ /// Max age (in SSmobs cycles, [2 seconds]) before a shadowling starts to take damage if they have not hatched
+ var/shadowling_max_age = 600 // 20 mins
+ /// Scale amount of traitors with population
+ var/traitor_scaling = TRUE
+ /// Prevent mindshield roles getting antagonist status
+ var/prevent_mindshield_antags = TRUE
+ /// Rounds such as rev, wizard and malf end instantly when the antag has won. Enable the setting below to not do that.
+ var/disable_certain_round_early_end = FALSE
+ /// Amount of objectives traitors should get. Does not include escape or hijack.
+ var/traitor_objectives_amount = 2
+ /// Enable player limits on gamemodes? Disabling can be useful for testing
+ var/enable_gamemode_player_limit = TRUE
+
+// Dynamically setup a list of all gamemodes
+/datum/configuration_section/gamemode_configuration/New()
+ for(var/T in subtypesof(/datum/game_mode))
+ var/datum/game_mode/M = T
+
+ // Dont bother if theres no tag
+ if(!initial(M.config_tag))
+ continue
+ // Ensure each mode is added only once
+ if(initial(M.config_tag) in gamemodes)
+ continue
+
+ // Add it in
+ gamemodes += initial(M.config_tag)
+ gamemode_names[initial(M.config_tag)] = initial(M.name)
+ probabilities[initial(M.config_tag)] = initial(M.probability)
+
+ if(initial(M.votable))
+ votable_modes += initial(M.config_tag)
+
+ // Add secret to the votable pool
+ votable_modes += "secret"
+
+/datum/configuration_section/gamemode_configuration/load_data(list/data)
+ // Use the load wrappers here. That way the default isnt made 'null' if you comment out the config line
+ CONFIG_LOAD_BOOL(antag_account_age_restriction, data["antag_account_age_restrictions"])
+ CONFIG_LOAD_BOOL(traitor_scaling, data["traitor_scaling"])
+ CONFIG_LOAD_BOOL(prevent_mindshield_antags, data["prevent_mindshield_antag"])
+ CONFIG_LOAD_BOOL(disable_certain_round_early_end, data["disable_certain_round_early_end"])
+ CONFIG_LOAD_BOOL(enable_gamemode_player_limit, data["enable_gamemode_player_limit"])
+
+ CONFIG_LOAD_NUM(traitor_objectives_amount, data["traitor_objective_amount"])
+ CONFIG_LOAD_NUM(shadowling_max_age, data["shadowling_max_age"])
+
+ // Load gamemode probabilities
+ if(islist(data["gamemode_probabilities"]))
+ for(var/list/assocset in data["gamemode_probabilities"])
+ // Make sure it exists
+ if(assocset["gamemode"] in gamemodes)
+ probabilities[assocset["gamemode"]] = assocset["probability"]
+ else
+ stack_trace("Gamemode [assocset["gamemode"]] has a probability in config, but does not exist!")
+
+/datum/configuration_section/gamemode_configuration/proc/pick_mode(mode_name)
+ for(var/T in subtypesof(/datum/game_mode))
+ var/datum/game_mode/M = T
+ // If the tag exists, and its the same as the mode
+ if(initial(M.config_tag) && (initial(M.config_tag) == mode_name))
+ return new T()
+
+ // Default to extended if it didnt work
+ stack_trace("Could not pick a gamemode. Defaulting to extended. (Attempted mode: [mode_name])")
+ return new /datum/game_mode/extended()
+
+/datum/configuration_section/gamemode_configuration/proc/get_runnable_modes()
+ var/list/datum/game_mode/runnable_modes = new
+ for(var/T in subtypesof(/datum/game_mode))
+ var/datum/game_mode/M = new T()
+
+ if(!(M.config_tag in gamemodes))
+ qdel(M)
+ continue
+
+ if(probabilities[M.config_tag] <= 0)
+ qdel(M)
+ continue
+
+ if(M.can_start())
+ runnable_modes[M] = probabilities[M.config_tag]
+
+ return runnable_modes
diff --git a/code/controllers/configuration/sections/gateway_configuration.dm b/code/controllers/configuration/sections/gateway_configuration.dm
new file mode 100644
index 00000000000..f9e64e5f3be
--- /dev/null
+++ b/code/controllers/configuration/sections/gateway_configuration.dm
@@ -0,0 +1,14 @@
+/// Config holder for all gateway related things
+/datum/configuration_section/gateway_configuration
+ /// Do we want to enable away missions or not
+ var/enable_away_mission = TRUE
+ /// Delay (in deciseconds) before the gateway is usable
+ var/away_mission_delay = 6000
+ /// List of all available away missions
+ var/list/enabled_away_missions = list()
+
+/datum/configuration_section/gateway_configuration/load_data(list/data)
+ // Use the load wrappers here. That way the default isnt made 'null' if you comment out the config line
+ CONFIG_LOAD_BOOL(enable_away_mission, data["enable_away_mission"])
+ CONFIG_LOAD_NUM(away_mission_delay, data["away_mission_delay"])
+ CONFIG_LOAD_LIST(enabled_away_missions, data["enabled_away_missions"])
diff --git a/code/controllers/configuration/sections/general_configuration.dm b/code/controllers/configuration/sections/general_configuration.dm
new file mode 100644
index 00000000000..296304c28b7
--- /dev/null
+++ b/code/controllers/configuration/sections/general_configuration.dm
@@ -0,0 +1,137 @@
+/// Config holder for all general/misc things
+/datum/configuration_section/general_configuration
+ /// Server name for the BYOND hub
+ var/server_name = "Paradise Station"
+ /// Tagline for the hub entry
+ var/server_tag_line = "The perfect mix of RP & action"
+ /// Server features in a newline
+ var/server_features = "Medium RP, varied species/jobs"
+ /// Should bans be stored in the DB
+ var/use_database_bans = FALSE
+ /// Allow character OOC notes
+ var/allow_character_metadata = TRUE
+ /// Time in seconds for the pregame lobby
+ var/lobby_time = 240
+ /// Ban all Guest BYOND accounts
+ var/guest_ban = TRUE
+ /// Player threshold to automatically enable panic bunker
+ var/panic_bunker_threshold = 150
+ /// Allow players to use AntagHUD?
+ var/allow_antag_hud = TRUE
+ /// Forbid players from rejoining if they use AntagHUD?
+ var/restrict_antag_hud_rejoin = TRUE
+ /// Enable respanws by default?
+ var/respawn_enabled = FALSE
+ /// Enable karma? Disable to lockout awarding and unlock everything
+ var/enable_karma = TRUE
+ /// Enable CID randomiser buster?
+ var/enabled_cid_randomiser_buster = FALSE
+ /// Forbid admins from posessing and flying the singulo round
+ var/forbid_singulo_possession = FALSE
+ /// Force open a PM window when replied to? This is very annoying
+ var/popup_admin_pm = FALSE
+ /// Announce holidays (christmas, halloween, etc etc)
+ var/allow_holidays = TRUE
+ /// Enable auto muting in all chat channels
+ var/enable_auto_mute = FALSE
+ /// Show a warning to players to make them accept touching an SSD
+ var/ssd_warning = TRUE
+ /// Allow ghosts to spin chairs round
+ var/ghost_interaction = FALSE
+ /// Enable/disable starlight to light up space
+ var/starlight = TRUE
+ /// Disable lobby music?
+ var/disable_lobby_music = FALSE
+ /// Disable a popup if 2 users are on the same CID?
+ var/disable_cid_warning_popup = FALSE
+ /// Amount of loadout points non-donors should get
+ var/base_loadout_points = 5
+ /// Respawnability loss penalty for eary cryoing (minutes)
+ var/cryo_penalty_period = 30
+ /// Enable OOC emojis?
+ var/enable_ooc_emoji = TRUE
+ /// Auto start the game if on a local test server
+ var/developer_express_start = FALSE
+ /// Minimum client build. Keep above 1421 due to exploits
+ var/minimum_client_build = 1421
+ /// Give a confirm button for the "Start Now" verb
+ var/start_now_confirmation = TRUE
+ /// BYOND account age threshold for first join alerts
+ var/byond_account_age_threshold = 3
+ /// Max CIDs a client can have history of before a warning is thrown
+ var/max_client_cid_history = 20
+ /// Enable automatic profiling to profile.json
+ var/enable_auto_profiler = TRUE
+ /// Auto disable OOC on roundstart?
+ var/auto_disable_ooc = TRUE
+ /// Do we want to allow bones to break?
+ var/breakable_bones = TRUE
+ /// Enable/disable revival pod plants
+ var/enable_revival_pod_plants = TRUE
+ /// Enable/disable cloning
+ var/enable_cloning = TRUE
+ /// Randomise shift time instead of it always being 12:00?
+ var/randomise_shift_time = TRUE
+ /// Enable night-shift lighting?
+ var/enable_night_shifts = TRUE
+ /// Cap for monkey cube monkey spawns
+ var/monkey_cube_cap = 32
+ /// Enable to make explosions react to obstacles instead of ignoring them
+ var/reactionary_explosions = TRUE
+ /// Bomb cap (Devastation) Other values will be calculated around this
+ var/bomb_cap = 20
+ /// Time for a brain to keep its spark of life (deciseconds)
+ var/revival_brain_life = 10 MINUTES
+ /// Enable random AI lawsets from the default=TRUE pool
+ var/random_ai_lawset = TRUE
+
+/datum/configuration_section/general_configuration/load_data(list/data)
+ // Use the load wrappers here. That way the default isnt made 'null' if you comment out the config line
+
+ // A lot of bools
+ CONFIG_LOAD_BOOL(use_database_bans, data["use_database_bans"])
+ CONFIG_LOAD_BOOL(allow_character_metadata, data["allow_character_metadata"])
+ CONFIG_LOAD_BOOL(guest_ban, data["guest_ban"])
+ CONFIG_LOAD_BOOL(allow_antag_hud, data["allow_antag_hud"])
+ CONFIG_LOAD_BOOL(restrict_antag_hud_rejoin, data["restrict_antag_hud_rejoin"])
+ CONFIG_LOAD_BOOL(respawn_enabled, data["respawn_enabled"])
+ CONFIG_LOAD_BOOL(enable_karma, data["enable_karma"])
+ CONFIG_LOAD_BOOL(enabled_cid_randomiser_buster, data["enable_cid_randomiser_buster"])
+ CONFIG_LOAD_BOOL(forbid_singulo_possession, data["prevent_admin_singlo_possession"])
+ CONFIG_LOAD_BOOL(popup_admin_pm, data["popup_admin_pm"])
+ CONFIG_LOAD_BOOL(allow_holidays, data["allow_holidays"])
+ CONFIG_LOAD_BOOL(enable_auto_mute, data["enable_auto_mute"])
+ CONFIG_LOAD_BOOL(ssd_warning, data["ssd_warning"])
+ CONFIG_LOAD_BOOL(ghost_interaction, data["ghost_interaction"])
+ CONFIG_LOAD_BOOL(starlight, data["starlight"])
+ CONFIG_LOAD_BOOL(disable_lobby_music, data["disable_lobby_music"])
+ CONFIG_LOAD_BOOL(disable_cid_warning_popup, data["disable_cid_warning_popup"])
+ CONFIG_LOAD_BOOL(enable_ooc_emoji, data["enable_ooc_emoji"])
+ CONFIG_LOAD_BOOL(developer_express_start, data["developer_express_start"])
+ CONFIG_LOAD_BOOL(start_now_confirmation, data["start_now_confirmation"])
+ CONFIG_LOAD_BOOL(enable_auto_profiler, data["enable_auto_profiler"])
+ CONFIG_LOAD_BOOL(auto_disable_ooc, data["auto_disable_ooc"])
+ CONFIG_LOAD_BOOL(breakable_bones, data["breakable_bones"])
+ CONFIG_LOAD_BOOL(enable_revival_pod_plants, data["enable_revival_pod_plants"])
+ CONFIG_LOAD_BOOL(enable_cloning, data["enable_cloning"])
+ CONFIG_LOAD_BOOL(randomise_shift_time, data["randomise_shift_time"])
+ CONFIG_LOAD_BOOL(enable_night_shifts, data["enable_night_shifts"])
+ CONFIG_LOAD_BOOL(reactionary_explosions, data["reactionary_explosions"])
+ CONFIG_LOAD_BOOL(random_ai_lawset, data["random_ai_lawset"])
+
+ // Numbers
+ CONFIG_LOAD_NUM(lobby_time, data["lobby_time"])
+ CONFIG_LOAD_NUM(panic_bunker_threshold, data["panic_bunker_threshold"])
+ CONFIG_LOAD_NUM(base_loadout_points, data["base_loadout_points"])
+ CONFIG_LOAD_NUM(cryo_penalty_period, data["cryo_penalty_period"])
+ CONFIG_LOAD_NUM(minimum_client_build, data["minimum_client_build"])
+ CONFIG_LOAD_NUM(byond_account_age_threshold, data["byond_account_age_threshold"])
+ CONFIG_LOAD_NUM(max_client_cid_history, data["max_client_cid_history"])
+ CONFIG_LOAD_NUM(monkey_cube_cap, data["monkey_cube_cap"])
+ CONFIG_LOAD_NUM(bomb_cap, data["bomb_cap"])
+ CONFIG_LOAD_NUM(revival_brain_life, data["revival_brain_life"])
+
+ // Strings
+ CONFIG_LOAD_STR(server_name, data["server_name"])
+ CONFIG_LOAD_STR(server_tag_line, data["server_tag_line"])
+ CONFIG_LOAD_STR(server_features, data["server_features"])
diff --git a/code/controllers/configuration/sections/ipintel_configuration.dm b/code/controllers/configuration/sections/ipintel_configuration.dm
new file mode 100644
index 00000000000..89fa23d5307
--- /dev/null
+++ b/code/controllers/configuration/sections/ipintel_configuration.dm
@@ -0,0 +1,34 @@
+/// Config holder for all things relating to IPIntel
+/datum/configuration_section/ipintel_configuration
+ /// Is IPIntel enabled
+ var/enabled = FALSE
+ /// Are we in whitelist mode (Auto-kick people who are on proxies/VPNs)
+ var/whitelist_mode = TRUE
+ /// 0-1 float for percentage threshold to kick people out
+ var/bad_rating = 0.9
+ /// IPIntel contact email. Required.
+ var/contact_email = null
+ /// How many hours to save good matches for. Cached due to rate limits
+ var/hours_save_good = 72
+ /// How many hours to save bad matches for. Cached due to rate limits
+ var/hours_save_bad = 24
+ /// IPIntel Domain. Do not prefix with a protocol
+ var/ipintel_domain = "check.getipintel.net"
+ /// Do not proxy-check players with more hours than the below threshold
+ var/playtime_ignore_threshold = 10
+ /// Details URL for more info on an IP, including ASN. IP is tacked straight on the end.
+ var/details_url = "https://iphub.info/?ip="
+
+/datum/configuration_section/ipintel_configuration/load_data(list/data)
+ // Use the load wrappers here. That way the default isnt made 'null' if you comment out the config line
+ CONFIG_LOAD_BOOL(enabled, data["ipintel_enabled"])
+ CONFIG_LOAD_BOOL(whitelist_mode, data["whitelist_mode"])
+
+ CONFIG_LOAD_NUM(bad_rating, data["bad_rating"])
+ CONFIG_LOAD_NUM(hours_save_good, data["hours_save_good"])
+ CONFIG_LOAD_NUM(hours_save_bad, data["hours_save_bad"])
+ CONFIG_LOAD_NUM(playtime_ignore_threshold, data["playtime_ignore_threshold"])
+
+ CONFIG_LOAD_STR(contact_email, data["contact_email"])
+ CONFIG_LOAD_STR(ipintel_domain, data["ipintel_domain"])
+ CONFIG_LOAD_STR(details_url, data["details_url"])
diff --git a/code/controllers/configuration/sections/job_configuration.dm b/code/controllers/configuration/sections/job_configuration.dm
new file mode 100644
index 00000000000..d56faddfc74
--- /dev/null
+++ b/code/controllers/configuration/sections/job_configuration.dm
@@ -0,0 +1,55 @@
+/// Config holder for all job related things
+/datum/configuration_section/job_configuration
+ /// Do we want jobs to have minimal access or extra access (IE: Scientists having robotics access)
+ var/jobs_have_minimal_access = TRUE
+ /// Do we want to restrict jobs based on account age
+ var/restrict_jobs_on_account_age = FALSE
+ /// Allow admins to bypass age-based job restrictions
+ var/restrict_jobs_on_account_age_admin_bypass = TRUE
+ /// Enable EXP logging and tracking
+ var/enable_exp_tracking = FALSE
+ /// Lockout jobs based on EXP
+ var/enable_exp_restrictions = FALSE
+ /// Allow admins to bypass EXP restrictions
+ var/enable_exp_admin_bypass = TRUE
+ /// Allow non-admins to play as AI
+ var/allow_ai = TRUE
+ /// Prevent guests from playing high profile roles
+ var/guest_job_ban = TRUE
+ /// Grant assistants maint access
+ var/assistant_maint_access = TRUE
+ /// Limit amount of assistants?
+ var/assistant_limit = FALSE
+ /// If yes to above, ratio of assistants per security officer (IE: 4:1)
+ var/assistant_security_ratio = 2
+ /// Enable loading of job overrides from the config
+ var/enable_job_amount_overrides = TRUE
+ /// Map of job:amount for lowpop. key: Job | value: amount
+ var/list/lowpop_job_map = list()
+ /// Map of job:amount for highpop. key: Job | value: amount
+ var/list/highpop_job_map = list()
+
+/datum/configuration_section/job_configuration/load_data(list/data)
+ // Use the load wrappers here. That way the default isnt made 'null' if you comment out the config line
+ CONFIG_LOAD_BOOL(jobs_have_minimal_access, data["jobs_have_minimal_access"])
+ CONFIG_LOAD_BOOL(restrict_jobs_on_account_age, data["restrict_jobs_on_account_age"])
+ CONFIG_LOAD_BOOL(restrict_jobs_on_account_age_admin_bypass, data["restrict_jobs_on_account_age_admin_bypass"])
+ CONFIG_LOAD_BOOL(enable_exp_tracking, data["enable_exp_tracking"])
+ CONFIG_LOAD_BOOL(enable_exp_restrictions, data["enable_exp_restrictions"])
+ CONFIG_LOAD_BOOL(enable_exp_admin_bypass, data["enable_exp_admin_bypass"])
+ CONFIG_LOAD_BOOL(allow_ai, data["allow_ai"])
+ CONFIG_LOAD_BOOL(guest_job_ban, data["guest_job_ban"])
+ CONFIG_LOAD_BOOL(assistant_maint_access, data["assistant_maint_access"])
+ CONFIG_LOAD_BOOL(assistant_limit, data["assistant_limit"])
+ CONFIG_LOAD_NUM(assistant_security_ratio, data["assistant_security_ratio"])
+ CONFIG_LOAD_BOOL(enable_job_amount_overrides, data["enable_job_amount_overrides"])
+
+ if(enable_job_amount_overrides && islist(data["job_slot_amounts"]))
+ lowpop_job_map.Cut()
+ highpop_job_map.Cut()
+ for(var/kvp in data["job_slot_amounts"])
+ if(!isnull(kvp["name"]))
+ if(!isnull(kvp["lowpop"]))
+ lowpop_job_map[kvp["name"]] = kvp["lowpop"]
+ if(!isnull(kvp["highpop"]))
+ highpop_job_map[kvp["name"]] = kvp["highpop"]
diff --git a/code/controllers/configuration/sections/logging_configuration.dm b/code/controllers/configuration/sections/logging_configuration.dm
new file mode 100644
index 00000000000..ea2cd492057
--- /dev/null
+++ b/code/controllers/configuration/sections/logging_configuration.dm
@@ -0,0 +1,53 @@
+/// Config holder for all things regarding logging
+/datum/configuration_section/logging_configuration
+ /// Log OOC messages
+ var/ooc_logging = TRUE
+ /// Log ingame say messages
+ var/say_logging = TRUE
+ /// Log admin actions
+ var/admin_logging = TRUE
+ /// Log client access (login/logout)
+ var/access_logging = TRUE
+ /// Log game events (roundstart, results, a lot of other things)
+ var/game_logging = TRUE
+ /// Enable logging of votes and their results
+ var/vote_logging = TRUE
+ /// Enable logging of whipers
+ var/whisper_logging = TRUE
+ /// Enable logging of emotes
+ var/emote_logging = TRUE
+ /// Enable logging of attacks between players
+ var/attack_logging = TRUE
+ /// Enable logging of PDA messages
+ var/pda_logging = TRUE
+ /// Enable runtime logging
+ var/runtime_logging = TRUE
+ /// Enable world.log output logging
+ var/world_logging = TRUE
+ /// Log hrefs
+ var/href_logging = TRUE
+ /// Log admin warning messages
+ var/admin_warning_logging = TRUE
+ /// Log asay messages
+ var/adminchat_logging = TRUE
+ /// Log debug messages
+ var/debug_logging = TRUE
+
+/datum/configuration_section/logging_configuration/load_data(list/data)
+ // Use the load wrappers here. That way the default isnt made 'null' if you comment out the config line
+ CONFIG_LOAD_BOOL(ooc_logging, data["enable_ooc_logging"])
+ CONFIG_LOAD_BOOL(say_logging, data["enable_say_logging"])
+ CONFIG_LOAD_BOOL(admin_logging, data["enable_admin_logging"])
+ CONFIG_LOAD_BOOL(access_logging, data["enable_access_logging"])
+ CONFIG_LOAD_BOOL(game_logging, data["enable_game_logging"])
+ CONFIG_LOAD_BOOL(vote_logging, data["enable_vote_logging"])
+ CONFIG_LOAD_BOOL(whisper_logging, data["enable_whisper_logging"])
+ CONFIG_LOAD_BOOL(emote_logging, data["enable_emote_logging"])
+ CONFIG_LOAD_BOOL(attack_logging, data["enable_attack_logging"])
+ CONFIG_LOAD_BOOL(pda_logging, data["enable_pda_logging"])
+ CONFIG_LOAD_BOOL(runtime_logging, data["enable_runtime_logging"])
+ CONFIG_LOAD_BOOL(world_logging, data["enable_world_logging"])
+ CONFIG_LOAD_BOOL(href_logging, data["enable_href_logging"])
+ CONFIG_LOAD_BOOL(admin_warning_logging, data["enable_admin_warning_logging"])
+ CONFIG_LOAD_BOOL(adminchat_logging, data["enable_adminchat_logging"])
+ CONFIG_LOAD_BOOL(debug_logging, data["enable_debug_logging"])
diff --git a/code/controllers/configuration/sections/mc_configuration.dm b/code/controllers/configuration/sections/mc_configuration.dm
new file mode 100644
index 00000000000..0a047b6ac4d
--- /dev/null
+++ b/code/controllers/configuration/sections/mc_configuration.dm
@@ -0,0 +1,23 @@
+/// Config holder for all things regarding the MC
+/datum/configuration_section/mc_configuration
+ /// Server ticklag
+ var/ticklag = 0.5
+ /// Tick limit % during world Init
+ var/world_init_tick_limit = TICK_LIMIT_MC_INIT_DEFAULT
+ /// Base MC tick rate
+ var/base_tickrate = 1
+ /// Highpop MC tickrate
+ var/highpop_tickrate = 1.1
+ /// MC Highpop enable threshold
+ var/highpop_enable_threshold = 65
+ /// MC Highpop disable threshold
+ var/highpop_disable_threshold = 60
+
+/datum/configuration_section/mc_configuration/load_data(list/data)
+ // Use the load wrappers here. That way the default isnt made 'null' if you comment out the config line
+ CONFIG_LOAD_NUM(ticklag, data["ticklag"])
+ CONFIG_LOAD_NUM(world_init_tick_limit, data["world_init_mc_tick_limit"])
+ CONFIG_LOAD_NUM(base_tickrate, data["base_mc_tick_rate"])
+ CONFIG_LOAD_NUM(highpop_tickrate, data["highpop_mc_tick_rate"])
+ CONFIG_LOAD_NUM(highpop_enable_threshold, data["mc_highpop_threshold_enable"])
+ CONFIG_LOAD_NUM(highpop_disable_threshold, data["mc_highpop_threshold_disable"])
diff --git a/code/controllers/configuration/sections/movement_configuration.dm b/code/controllers/configuration/sections/movement_configuration.dm
new file mode 100644
index 00000000000..1f647b94e8a
--- /dev/null
+++ b/code/controllers/configuration/sections/movement_configuration.dm
@@ -0,0 +1,26 @@
+/// Config holder for values relating to mob movement speeds
+/datum/configuration_section/movement_configuration
+ /// Base run speed before modifiers
+ var/base_run_speed = 1
+ /// Base walk speed before modifiers
+ var/base_walk_speed = 4
+ /// Move delay for humanoids
+ var/human_delay = 1.5
+ /// Move delay for cyborgs
+ var/robot_delay = 2.5
+ /// Move delay for xenomorphs
+ var/alien_delay = 1.5
+ /// Move delay for slimes (xenobio, not slimepeople)
+ var/slime_delay = 1.5
+ /// Move delay for other simple animals
+ var/animal_delay = 2.5
+
+/datum/configuration_section/movement_configuration/load_data(list/data)
+ // Use the load wrappers here. That way the default isnt made 'null' if you comment out the config line
+ CONFIG_LOAD_NUM(base_run_speed, data["base_run_speed"])
+ CONFIG_LOAD_NUM(base_walk_speed, data["base_walk_speed"])
+ CONFIG_LOAD_NUM(human_delay, data["human_delay"])
+ CONFIG_LOAD_NUM(robot_delay, data["robot_delay"])
+ CONFIG_LOAD_NUM(alien_delay, data["alien_delay"])
+ CONFIG_LOAD_NUM(slime_delay, data["slime_delay"])
+ CONFIG_LOAD_NUM(animal_delay, data["animal_delay"])
diff --git a/code/controllers/configuration/sections/overflow_configuration.dm b/code/controllers/configuration/sections/overflow_configuration.dm
new file mode 100644
index 00000000000..37c083676c1
--- /dev/null
+++ b/code/controllers/configuration/sections/overflow_configuration.dm
@@ -0,0 +1,14 @@
+/// Config holder for all overflow-server related things
+/datum/configuration_section/overflow_configuration
+ /// Amount of players before reroute server is used. 0 to disable.
+ var/reroute_cap = 0
+ /// Location of the overflow server
+ var/overflow_server_location = null
+ /// List of ckeys who will never be routed to the overflow server
+ var/list/overflow_whitelist = list()
+
+/datum/configuration_section/overflow_configuration/load_data(list/data)
+ // Use the load wrappers here. That way the default isnt made 'null' if you comment out the config line
+ CONFIG_LOAD_NUM(reroute_cap, data["player_reroute_cap"])
+ CONFIG_LOAD_STR(overflow_server_location, data["overflow_server"])
+ CONFIG_LOAD_LIST(overflow_whitelist, data["overflow_whitelist"])
diff --git a/code/controllers/configuration/sections/ruin_configuration.dm b/code/controllers/configuration/sections/ruin_configuration.dm
new file mode 100644
index 00000000000..2adc5570867
--- /dev/null
+++ b/code/controllers/configuration/sections/ruin_configuration.dm
@@ -0,0 +1,23 @@
+/// Config holder for all things regarding space ruins and lavaland ruins
+/datum/configuration_section/ruin_configuration
+ /// Enable or disable space ruins
+ var/enable_space_ruins = TRUE
+ /// Minimum number of extra zlevels to fill with ruins
+ var/extra_levels_min = 2
+ /// Maximum number of extra zlevels to fill with ruins
+ var/extra_levels_max = 4
+ /// List of all active space ruins
+ var/list/active_space_ruins = list()
+ /// List of all active lavaland ruins
+ var/list/active_lava_ruins = list()
+ /// Budget for lavaland ruins
+ var/lavaland_ruin_budget = 60
+
+/datum/configuration_section/ruin_configuration/load_data(list/data)
+ // Use the load wrappers here. That way the default isnt made 'null' if you comment out the config line
+ CONFIG_LOAD_BOOL(enable_space_ruins, data["enable_space_ruins"])
+ CONFIG_LOAD_NUM(extra_levels_min, data["minimum_zlevels"])
+ CONFIG_LOAD_NUM(extra_levels_max, data["maximum_zlevels"])
+ CONFIG_LOAD_LIST(active_space_ruins, data["active_space_ruins"])
+ CONFIG_LOAD_LIST(active_lava_ruins, data["active_lava_ruins"])
+ CONFIG_LOAD_NUM(lavaland_ruin_budget, data["lavaland_ruin_budget"])
diff --git a/code/controllers/configuration/sections/system_configuration.dm b/code/controllers/configuration/sections/system_configuration.dm
new file mode 100644
index 00000000000..a0354bb2b77
--- /dev/null
+++ b/code/controllers/configuration/sections/system_configuration.dm
@@ -0,0 +1,26 @@
+/// Config holder for stuff relating to server backend management and secrets
+/datum/configuration_section/system_configuration
+ // NO EDITS OR READS TO THIS WHAT SOEVER
+ protection_state = PROTECTION_PRIVATE
+ /// Password for authorising world/Topic requests
+ var/topic_key = null
+ /// Medal hub address for lavaland stats
+ var/medal_hub_address = null
+ /// Medal hub password for lavaland stats
+ var/medal_hub_password = null
+ /// Do we want the server to kill on reboot instead of keeping the same DD session
+ var/shutdown_on_reboot = FALSE
+ /// If above is true, you can run a shell command
+ var/shutdown_shell_command = null
+ /// 2FA backend server host
+ var/_2fa_auth_host = null
+
+/datum/configuration_section/system_configuration/load_data(list/data)
+ // Use the load wrappers here. That way the default isnt made 'null' if you comment out the config line
+ CONFIG_LOAD_BOOL(shutdown_on_reboot, data["shutdown_on_reboot"])
+
+ CONFIG_LOAD_STR(topic_key, data["communications_password"])
+ CONFIG_LOAD_STR(medal_hub_address, data["medal_hub_address"])
+ CONFIG_LOAD_STR(medal_hub_password, data["medal_hub_password"])
+ CONFIG_LOAD_STR(shutdown_shell_command, data["shutdown_shell_command"])
+ CONFIG_LOAD_STR(_2fa_auth_host, data["_2fa_auth_host"])
diff --git a/code/controllers/configuration/sections/url_configuration.dm b/code/controllers/configuration/sections/url_configuration.dm
new file mode 100644
index 00000000000..cfdf06a7b51
--- /dev/null
+++ b/code/controllers/configuration/sections/url_configuration.dm
@@ -0,0 +1,47 @@
+/// Config holder for all the server URLs
+/datum/configuration_section/url_configuration
+ // Dont tweak these. You can read them though.
+ protection_state = PROTECTION_READONLY
+ /// List of URLs for the server RSC data
+ var/list/rsc_urls = list()
+ /// Server URL for auto-reconnecting people at end round
+ var/server_url
+ /// URL for the server ban appeals forum
+ var/banappeals_url
+ /// URL for the server wiki
+ var/wiki_url
+ /// URL for the server forums
+ var/forum_url
+ /// URL for the server rules
+ var/rules_url
+ /// URL for the server github repository
+ var/github_url
+ /// URL for server donations
+ var/donations_url
+ /// URL for a direct discord invite
+ var/discord_url
+ /// URL for a discord invite going via the forums
+ var/discord_forum_url
+ /// URL for linking ingame accounts and forum accounts. Token is appended to end
+ var/forum_link_url
+ /// URL for pulling player info on webtools
+ var/forum_playerinfo_url
+ /// URL for the CentCom Ban DB API
+ var/centcom_ban_db_url
+
+/datum/configuration_section/url_configuration/load_data(list/data)
+ // Use the load wrappers here. That way the default isnt made 'null' if you comment out the config line
+ CONFIG_LOAD_LIST(rsc_urls, data["rsc_urls"])
+
+ CONFIG_LOAD_STR(server_url, data["reboot_url"])
+ CONFIG_LOAD_STR(banappeals_url, data["ban_appeals_url"])
+ CONFIG_LOAD_STR(wiki_url, data["wiki_url"])
+ CONFIG_LOAD_STR(forum_url, data["forum_url"])
+ CONFIG_LOAD_STR(rules_url, data["rules_url"])
+ CONFIG_LOAD_STR(github_url, data["github_url"])
+ CONFIG_LOAD_STR(donations_url, data["donations_url"])
+ CONFIG_LOAD_STR(discord_url, data["discord_url"])
+ CONFIG_LOAD_STR(discord_forum_url, data["discord_forum_url"])
+ CONFIG_LOAD_STR(forum_link_url, data["forum_link_url"])
+ CONFIG_LOAD_STR(forum_playerinfo_url, data["forum_playerinfo_url"])
+ CONFIG_LOAD_STR(centcom_ban_db_url, data["centcomm_ban_db_url"])
diff --git a/code/controllers/configuration/sections/vote_configuration.dm b/code/controllers/configuration/sections/vote_configuration.dm
new file mode 100644
index 00000000000..5c280c579fb
--- /dev/null
+++ b/code/controllers/configuration/sections/vote_configuration.dm
@@ -0,0 +1,33 @@
+/// Config holder for stuff relating to the ingame vote system
+/datum/configuration_section/vote_configuration
+ /// Allow players to start restart votes?
+ var/allow_restart_votes = FALSE
+ /// Allow players to start gamemode votes?
+ var/allow_mode_votes = FALSE
+ /// Minimum delay between each vote (deciseconds)
+ var/vote_delay = 18000 // 30 mins
+ /// How long will a vote last for (deciseconds)
+ var/vote_time = 600 // 60 seconds
+ /// Time before the first shuttle vote (deciseconds)
+ var/autotransfer_initial_time = 72000 // 2 hours
+ /// Time between subsequent shuttle votes if the first one is not successful (deciseconds)
+ var/autotransfer_interval_time = 18000 // 30 mins
+ /// Prevent dead players from voting
+ var/prevent_dead_voting = FALSE
+ /// Default to players not voting
+ var/disable_default_vote = TRUE
+ /// Enable map voting?
+ var/enable_map_voting = FALSE
+
+/datum/configuration_section/vote_configuration/load_data(list/data)
+ // Use the load wrappers here. That way the default isnt made 'null' if you comment out the config line
+ CONFIG_LOAD_BOOL(allow_restart_votes, data["allow_vote_restart"])
+ CONFIG_LOAD_BOOL(allow_mode_votes, data["allow_vote_mode"])
+ CONFIG_LOAD_BOOL(prevent_dead_voting, data["prevent_dead_voting"])
+ CONFIG_LOAD_BOOL(disable_default_vote, data["disable_default_vote"])
+ CONFIG_LOAD_BOOL(enable_map_voting, data["enable_map_voting"])
+
+ CONFIG_LOAD_NUM(vote_delay, data["vote_delay"])
+ CONFIG_LOAD_NUM(vote_time, data["vote_time"])
+ CONFIG_LOAD_NUM(autotransfer_initial_time, data["autotransfer_initial_time"])
+ CONFIG_LOAD_NUM(autotransfer_interval_time, data["autotransfer_interval_time"])
diff --git a/code/controllers/master.dm b/code/controllers/master.dm
index 82e2517823a..d445cf6f3b6 100644
--- a/code/controllers/master.dm
+++ b/code/controllers/master.dm
@@ -194,7 +194,7 @@ GLOBAL_REAL(Master, /datum/controller/master) = new
var/start_timeofday = REALTIMEOFDAY
// Initialize subsystems.
- current_ticklimit = config.tick_limit_mc_init
+ current_ticklimit = GLOB.configuration.mc.world_init_tick_limit
for(var/datum/controller/subsystem/SS in subsystems)
if(SS.flags & SS_NO_INIT)
continue
@@ -206,8 +206,8 @@ GLOBAL_REAL(Master, /datum/controller/master) = new
log_startup_progress("Initializations complete within [time] second[time == 1 ? "" : "s"]!")
- if(config.developer_express_start & SSticker.current_state == GAME_STATE_PREGAME)
- SSticker.current_state = GAME_STATE_SETTING_UP
+ if(GLOB.configuration.general.developer_express_start)
+ SSticker.force_start = TRUE
if(!current_runlevel)
SetRunLevel(1)
@@ -216,7 +216,7 @@ GLOBAL_REAL(Master, /datum/controller/master) = new
sortTim(subsystems, /proc/cmp_subsystem_display)
// Set world options.
// world.fps = CONFIG_GET(number/fps) // TIGER TODO
- world.tick_lag = config.Ticklag
+ world.tick_lag = GLOB.configuration.mc.ticklag
var/initialized_tod = REALTIMEOFDAY
if(sleep_offline_after_initializations)
@@ -626,10 +626,10 @@ GLOBAL_REAL(Master, /datum/controller/master) = new
if(!processing)
return
var/client_count = length(GLOB.clients)
- if(client_count < config.disable_high_pop_mc_mode_amount)
- processing = config.base_mc_tick_rate
- else if(client_count > config.high_pop_mc_mode_amount)
- processing = config.high_pop_mc_tick_rate
+ if(client_count < GLOB.configuration.mc.highpop_disable_threshold)
+ processing = GLOB.configuration.mc.base_tickrate
+ else if(client_count > GLOB.configuration.mc.highpop_enable_threshold)
+ processing = GLOB.configuration.mc.highpop_tickrate
/datum/controller/master/proc/formatcpu()
switch(world.cpu)
diff --git a/code/controllers/subsystem/afk.dm b/code/controllers/subsystem/afk.dm
index 9b1d5f3fa26..c7042513e49 100644
--- a/code/controllers/subsystem/afk.dm
+++ b/code/controllers/subsystem/afk.dm
@@ -12,7 +12,8 @@ SUBSYSTEM_DEF(afk)
/datum/controller/subsystem/afk/Initialize()
- if(config.warn_afk_minimum <= 0 || config.auto_cryo_afk <= 0 || config.auto_despawn_afk <= 0)
+
+ if(GLOB.configuration.afk.warning_minutes <= 0 || GLOB.configuration.afk.auto_cryo_minutes <= 0 || GLOB.configuration.afk.auto_despawn_minutes <= 0)
flags |= SS_NO_FIRE
else
non_cryo_antags = list(SPECIAL_ROLE_ABDUCTOR_AGENT, SPECIAL_ROLE_ABDUCTOR_SCIENTIST, \
@@ -35,19 +36,20 @@ SUBSYSTEM_DEF(afk)
toRemove += H.ckey
continue
+
var/mins_afk = round(H.client.inactivity / 600)
- if(mins_afk < config.warn_afk_minimum)
+ if(mins_afk < GLOB.configuration.afk.warning_minutes)
if(afk_players[H.ckey])
toRemove += H.ckey
continue
if(!afk_players[H.ckey])
afk_players[H.ckey] = AFK_WARNED
- warn(H, "You are AFK for [mins_afk] minutes. You will be cryod after [config.auto_cryo_afk] total minutes and fully despawned after [config.auto_despawn_afk] total minutes. Please move or click in game if you want to avoid being despawned.")
+ warn(H, "You are AFK for [mins_afk] minutes. You will be cryod after [GLOB.configuration.afk.auto_cryo_minutes] total minutes and fully despawned after [GLOB.configuration.afk.auto_despawn_minutes] total minutes. Please move or click in game if you want to avoid being despawned.")
else
var/area/A = T.loc // Turfs loc is the area
if(afk_players[H.ckey] == AFK_WARNED)
- if(mins_afk >= config.auto_cryo_afk && A.can_get_auto_cryod)
+ if(mins_afk >= GLOB.configuration.afk.auto_cryo_minutes && A.can_get_auto_cryod)
if(A.fast_despawn)
toRemove += H.ckey
warn(H, "You have been despawned after being AFK for [mins_afk] minutes. You have been despawned instantly due to you being in a secure area.")
@@ -60,13 +62,13 @@ SUBSYSTEM_DEF(afk)
afk_players[H.ckey] = AFK_CRYOD
log_afk_action(H, mins_afk, T, "put into cryostorage")
warn(H, "You are AFK for [mins_afk] minutes and have been moved to cryostorage. \
- After being AFK for another [config.auto_despawn_afk] minutes you will be fully despawned. \
+ After being AFK for another [GLOB.configuration.afk.auto_despawn_minutes] minutes you will be fully despawned. \
Please eject yourself (right click, eject) out of the cryostorage if you want to avoid being despawned.")
else
message_admins("[key_name_admin(H)] at ([get_area(T).name] [ADMIN_JMP(T)]) is AFK for [mins_afk] and can't be automatically cryod due to it's antag status: ([H.mind.special_role]).")
afk_players[H.ckey] = AFK_ADMINS_WARNED
- else if(afk_players[H.ckey] != AFK_ADMINS_WARNED && mins_afk >= config.auto_despawn_afk)
+ else if(afk_players[H.ckey] != AFK_ADMINS_WARNED && mins_afk >= GLOB.configuration.afk.auto_despawn_minutes)
log_afk_action(H, mins_afk, T, "despawned")
warn(H, "You have been despawned after being AFK for [mins_afk] minutes.")
toRemove += H.ckey
diff --git a/code/controllers/subsystem/alarm.dm b/code/controllers/subsystem/alarm.dm
index 3d91d763be3..7ac7ab389a8 100644
--- a/code/controllers/subsystem/alarm.dm
+++ b/code/controllers/subsystem/alarm.dm
@@ -1,7 +1,7 @@
SUBSYSTEM_DEF(alarm)
name = "Alarm"
flags = SS_NO_INIT | SS_NO_FIRE
- var/list/alarms = list("Motion" = list(), "Fire" = list(), "Atmosphere" = list(), "Power" = list(), "Camera" = list(), "Burglar" = list())
+ var/list/alarms = list("Motion" = list(), "Fire" = list(), "Atmosphere" = list(), "Power" = list(), "Burglar" = list())
/datum/controller/subsystem/alarm/proc/triggerAlarm(class, area/A, list/O, obj/alarmsource)
var/list/L = alarms[class]
diff --git a/code/controllers/subsystem/blackbox.dm b/code/controllers/subsystem/blackbox.dm
index acfb7444323..37e4299b06d 100644
--- a/code/controllers/subsystem/blackbox.dm
+++ b/code/controllers/subsystem/blackbox.dm
@@ -65,7 +65,7 @@ SUBSYSTEM_DEF(blackbox)
sqlversion = versions[FV.key]
var/datum/db_query/query_feedback_save = SSdbcore.NewQuery({"
- INSERT IGNORE INTO [format_table_name("feedback")] (datetime, round_id, key_name, key_type, version, json)
+ INSERT IGNORE INTO feedback (datetime, round_id, key_name, key_type, version, json)
VALUES (NOW(), :rid, :keyname, :keytype, :version, :json)"}, list(
"rid" = text2num(GLOB.round_id),
"keyname" = FV.key,
@@ -287,7 +287,7 @@ SUBSYSTEM_DEF(blackbox)
lakey = L.lastattackerckey
var/datum/db_query/deathquery = SSdbcore.NewQuery({"
- INSERT INTO [format_table_name("death")] (name, byondkey, job, special, pod, tod, laname, lakey, gender, bruteloss, fireloss, brainloss, oxyloss, coord)
+ INSERT INTO death (name, byondkey, job, special, pod, tod, laname, lakey, gender, bruteloss, fireloss, brainloss, oxyloss, coord)
VALUES (:name, :key, :job, :special, :pod, NOW(), :laname, :lakey, :gender, :bruteloss, :fireloss, :brainloss, :oxyloss, :coord)"},
list(
"name" = L.real_name,
diff --git a/code/controllers/subsystem/changelog.dm b/code/controllers/subsystem/changelog.dm
index 3a2e3513916..55221263033 100644
--- a/code/controllers/subsystem/changelog.dm
+++ b/code/controllers/subsystem/changelog.dm
@@ -24,7 +24,7 @@ SUBSYSTEM_DEF(changelog)
if(!SSdbcore.IsConnected())
return ..()
- var/datum/db_query/latest_cl_date = SSdbcore.NewQuery("SELECT CAST(UNIX_TIMESTAMP(date_merged) AS CHAR) AS ut FROM [format_table_name("changelog")] ORDER BY date_merged DESC LIMIT 1")
+ var/datum/db_query/latest_cl_date = SSdbcore.NewQuery("SELECT CAST(UNIX_TIMESTAMP(date_merged) AS CHAR) AS ut FROM changelog ORDER BY date_merged DESC LIMIT 1")
if(!latest_cl_date.warn_execute())
qdel(latest_cl_date)
// Abort if we cant do this
@@ -63,7 +63,7 @@ SUBSYSTEM_DEF(changelog)
C.prefs.lastchangelog = current_cl_timestamp
var/datum/db_query/updatePlayerCLTime = SSdbcore.NewQuery(
- "UPDATE [format_table_name("player")] SET lastchangelog=:lastchangelog WHERE ckey=:ckey",
+ "UPDATE player SET lastchangelog=:lastchangelog WHERE ckey=:ckey",
list(
"lastchangelog" = current_cl_timestamp,
"ckey" = C.ckey
@@ -266,11 +266,11 @@ SUBSYSTEM_DEF(changelog)
usr.client.github()
// Takes a PR number as argument
if(href_list["openPR"])
- if(config.githuburl)
+ if(GLOB.configuration.url.github_url)
if(alert("This will open PR #[href_list["openPR"]] in your browser. Are you sure?",,"Yes","No")=="No")
return
// If the github URL in the config has a trailing slash, it doesnt matter here, thankfully github accepts having a double slash: https://github.com/org/repo//pull/1
- var/url = "[config.githuburl]/pull/[href_list["openPR"]]"
+ var/url = "[GLOB.configuration.url.github_url]/pull/[href_list["openPR"]]"
usr << link(url)
else
to_chat(usr, "The GitHub URL is not set in the server configuration. PRs cannot be opened from changelog view. Please inform the server host.")
diff --git a/code/controllers/subsystem/dbcore.dm b/code/controllers/subsystem/dbcore.dm
index 4cfe06083e3..f6974a2fb17 100644
--- a/code/controllers/subsystem/dbcore.dm
+++ b/code/controllers/subsystem/dbcore.dm
@@ -30,7 +30,7 @@ SUBSYSTEM_DEF(dbcore)
// This is in Initialize() so that its actually seen in chat
/datum/controller/subsystem/dbcore/Initialize()
if(!schema_valid)
- to_chat(world, "Database schema ([sql_version]) doesn't match the latest schema version ([SQL_VERSION]). Roundstart has been delayed.")
+ to_chat(world, "Database schema ([GLOB.configuration.database.version]) doesn't match the latest schema version ([SQL_VERSION]). Roundstart has been delayed.")
return ..()
@@ -66,7 +66,7 @@ SUBSYSTEM_DEF(dbcore)
if(IsConnected())
return TRUE
- if(!config.sql_enabled)
+ if(!GLOB.configuration.database.enabled)
return FALSE
if(failed_connection_timeout <= world.time) //it's been more than 5 seconds since we failed to connect, reset the counter
@@ -77,14 +77,14 @@ SUBSYSTEM_DEF(dbcore)
return FALSE
var/result = json_decode(rustg_sql_connect_pool(json_encode(list(
- "host" = sqladdress,
- "port" = text2num(sqlport),
- "user" = sqlfdbklogin,
- "pass" = sqlfdbkpass,
- "db_name" = sqlfdbkdb,
- "read_timeout" = config.async_sql_query_timeout,
- "write_timeout" = config.async_sql_query_timeout,
- "max_threads" = config.rust_sql_thread_limit,
+ "host" = GLOB.configuration.database.address,
+ "port" = GLOB.configuration.database.port,
+ "user" = GLOB.configuration.database.username,
+ "pass" = GLOB.configuration.database.password,
+ "db_name" = GLOB.configuration.database.db,
+ "read_timeout" = GLOB.configuration.database.async_query_timeout,
+ "write_timeout" = GLOB.configuration.database.async_query_timeout,
+ "max_threads" = GLOB.configuration.database.async_thread_limit,
))))
. = (result["status"] == "ok")
if(.)
@@ -102,11 +102,11 @@ SUBSYSTEM_DEF(dbcore)
* If it is a valid version, the DB will then connect.
*/
/datum/controller/subsystem/dbcore/proc/CheckSchemaVersion()
- if(config.sql_enabled)
+ if(GLOB.configuration.database.enabled)
// The unit tests have their own version of this check, which wont hold the server up infinitely, so this is disabled if we are running unit tests
#ifndef UNIT_TESTS
- if(config.sql_enabled && sql_version != SQL_VERSION)
- config.sql_enabled = FALSE
+ if(GLOB.configuration.database.enabled && GLOB.configuration.database.version != SQL_VERSION)
+ GLOB.configuration.database.enabled = FALSE
schema_valid = FALSE
SSticker.ticker_going = FALSE
SEND_TEXT(world.log, "Database connection failed: Invalid SQL Versions")
@@ -142,7 +142,7 @@ SUBSYSTEM_DEF(dbcore)
//This is as close as we can get to the true round end before Disconnect() without changing where it's called, defeating the reason this is a subsystem
if(SSdbcore.Connect())
var/datum/db_query/query_round_shutdown = SSdbcore.NewQuery(
- "UPDATE [format_table_name("round")] SET shutdown_datetime = Now(), end_state = :end_state WHERE id = :round_id",
+ "UPDATE round SET shutdown_datetime = Now(), end_state = :end_state WHERE id = :round_id",
list("end_state" = SSticker.end_state, "round_id" = GLOB.round_id)
)
query_round_shutdown.Execute()
@@ -160,7 +160,7 @@ SUBSYSTEM_DEF(dbcore)
if(!IsConnected())
return
var/datum/db_query/query_round_initialize = SSdbcore.NewQuery(
- "INSERT INTO [format_table_name("round")] (initialize_datetime, server_ip, server_port) VALUES (Now(), INET_ATON(:internet_address), :port)",
+ "INSERT INTO round (initialize_datetime, server_ip, server_port) VALUES (Now(), INET_ATON(:internet_address), :port)",
list("internet_address" = world.internet_address || "0", "port" = "[world.port]")
)
query_round_initialize.Execute(async = FALSE)
@@ -177,7 +177,7 @@ SUBSYSTEM_DEF(dbcore)
if(!IsConnected())
return
var/datum/db_query/query_round_start = SSdbcore.NewQuery(
- "UPDATE [format_table_name("round")] SET start_datetime=NOW(), commit_hash=:hash WHERE id=:round_id",
+ "UPDATE round SET start_datetime=NOW(), commit_hash=:hash WHERE id=:round_id",
list("hash" = GLOB.revision_info.commit_hash, "round_id" = GLOB.round_id)
)
query_round_start.Execute(async = FALSE) // This happens during a time of intense server lag, so should be non-async
@@ -193,7 +193,7 @@ SUBSYSTEM_DEF(dbcore)
if(!IsConnected())
return
var/datum/db_query/query_round_end = SSdbcore.NewQuery(
- "UPDATE [format_table_name("round")] SET end_datetime = Now(), game_mode_result = :game_mode_result WHERE id = :round_id",
+ "UPDATE round SET end_datetime = Now(), game_mode_result = :game_mode_result WHERE id = :round_id",
list("game_mode_result" = SSticker.mode_result, "station_name" = station_name(), "round_id" = GLOB.round_id)
)
query_round_end.Execute()
@@ -206,7 +206,7 @@ SUBSYSTEM_DEF(dbcore)
* Does a few sanity checks, then asks the DLL if we are properly connected
*/
/datum/controller/subsystem/dbcore/proc/IsConnected()
- if(!config.sql_enabled)
+ if(!GLOB.configuration.database.enabled)
return FALSE
if(!schema_valid)
return FALSE
@@ -222,7 +222,7 @@ SUBSYSTEM_DEF(dbcore)
* Will always report "Database disabled by configuration" if the DB is disabled.
*/
/datum/controller/subsystem/dbcore/proc/ErrorMsg()
- if(!config.sql_enabled)
+ if(!GLOB.configuration.database.enabled)
return "Database disabled by configuration"
return last_error
@@ -492,7 +492,7 @@ SUBSYSTEM_DEF(dbcore)
/client/proc/reestablish_db_connection()
set category = "Debug"
set name = "Reestablish DB Connection"
- if(!config.sql_enabled)
+ if(!GLOB.configuration.database.enabled)
to_chat(usr, "The Database is not enabled in the server configuration!")
return
diff --git a/code/controllers/subsystem/discord.dm b/code/controllers/subsystem/discord.dm
index a0f8c1a68fe..11a2a481073 100644
--- a/code/controllers/subsystem/discord.dm
+++ b/code/controllers/subsystem/discord.dm
@@ -7,7 +7,7 @@ SUBSYSTEM_DEF(discord)
var/last_administration_ping = 0
/datum/controller/subsystem/discord/Initialize(start_timeofday)
- if(config.discord_webhooks_enabled)
+ if(GLOB.configuration.discord.webhooks_enabled)
enabled = TRUE
return ..()
@@ -18,11 +18,11 @@ SUBSYSTEM_DEF(discord)
var/list/webhook_urls
switch(destination)
if(DISCORD_WEBHOOK_ADMIN)
- webhook_urls = config.discord_admin_webhook_urls
+ webhook_urls = GLOB.configuration.discord.admin_webhook_urls
if(DISCORD_WEBHOOK_PRIMARY)
- webhook_urls = config.discord_main_webhook_urls
+ webhook_urls = GLOB.configuration.discord.main_webhook_urls
if(DISCORD_WEBHOOK_MENTOR)
- webhook_urls = config.discord_mentor_webhook_urls
+ webhook_urls = GLOB.configuration.discord.mentor_webhook_urls
var/datum/discord_webhook_payload/dwp = new()
dwp.webhook_content = content
@@ -36,14 +36,18 @@ SUBSYSTEM_DEF(discord)
var/list/webhook_urls
switch(destination)
if(DISCORD_WEBHOOK_ADMIN)
- webhook_urls = config.discord_admin_webhook_urls
+ webhook_urls = GLOB.configuration.discord.admin_webhook_urls
if(DISCORD_WEBHOOK_PRIMARY)
- webhook_urls = config.discord_main_webhook_urls
+ webhook_urls = GLOB.configuration.discord.main_webhook_urls
+ if(DISCORD_WEBHOOK_MENTOR)
+ webhook_urls = GLOB.configuration.discord.mentor_webhook_urls
for(var/url in webhook_urls)
SShttp.create_async_request(RUSTG_HTTP_METHOD_POST, url, dwp.serialize2json(), list("content-type" = "application/json"))
// This one is for sending messages to the admin channel if no admins are active, complete with a ping to the game admins role
/datum/controller/subsystem/discord/proc/send2discord_simple_noadmins(content, check_send_always = FALSE)
+ if(!enabled)
+ return
// Setup some stuff
var/alerttext
var/list/admincounter = staff_countup(R_BAN)
@@ -57,7 +61,7 @@ SUBSYSTEM_DEF(discord)
else
alerttext = " | **NO ADMINS ONLINE**"
else
- if(check_send_always && config.discord_forward_all_ahelps)
+ if(check_send_always && GLOB.configuration.discord.forward_all_ahelps)
// If we are here, there are admins online. We want to forward everything, but obviously dont want to add a ping, so we do this
add_ping = FALSE
else
@@ -68,17 +72,17 @@ SUBSYSTEM_DEF(discord)
var/datum/discord_webhook_payload/dwp = new()
dwp.webhook_content = message
- for(var/url in config.discord_admin_webhook_urls)
+ for(var/url in GLOB.configuration.discord.admin_webhook_urls)
SShttp.create_async_request(RUSTG_HTTP_METHOD_POST, url, dwp.serialize2json(), list("content-type" = "application/json"))
// Helper to make administrator ping easier
/datum/controller/subsystem/discord/proc/handle_administrator_ping()
// Check if a role is even set
- if(config.discord_admin_role_id)
+ if(GLOB.configuration.discord.admin_role_id)
if(last_administration_ping > world.time)
return "*(Role pinged recently)*"
last_administration_ping = world.time + 60 SECONDS
- return "<@&[config.discord_admin_role_id]>"
+ return "<@&[GLOB.configuration.discord.admin_role_id]>"
return ""
diff --git a/code/controllers/subsystem/ghost_spawns.dm b/code/controllers/subsystem/ghost_spawns.dm
index 96ac8f09116..0490e764685 100644
--- a/code/controllers/subsystem/ghost_spawns.dm
+++ b/code/controllers/subsystem/ghost_spawns.dm
@@ -166,7 +166,7 @@ SUBSYSTEM_DEF(ghost_spawns)
if(role_text)
if(jobban_isbanned(M, role_text) || jobban_isbanned(M, ROLE_SYNDICATE))
return
- if(config.use_exp_restrictions && min_hours)
+ if(GLOB.configuration.jobs.enable_exp_restrictions && min_hours)
if(M.client.get_exp_type_num(EXP_TYPE_LIVING) < min_hours * 60)
return
if(check_antaghud && cannotPossess(M))
diff --git a/code/controllers/subsystem/holiday.dm b/code/controllers/subsystem/holiday.dm
index ddde9cd62be..e9b254b1269 100644
--- a/code/controllers/subsystem/holiday.dm
+++ b/code/controllers/subsystem/holiday.dm
@@ -5,7 +5,7 @@ SUBSYSTEM_DEF(holiday)
var/list/holidays
/datum/controller/subsystem/holiday/Initialize(start_timeofday)
- if(!config.allow_holidays)
+ if(!GLOB.configuration.general.allow_holidays)
return ..() //Holiday stuff was not enabled in the config!
var/YY = text2num(time2text(world.timeofday, "YY")) // get the current year
diff --git a/code/controllers/subsystem/ipintel.dm b/code/controllers/subsystem/ipintel.dm
index 92f02a404a1..d16aae208d2 100644
--- a/code/controllers/subsystem/ipintel.dm
+++ b/code/controllers/subsystem/ipintel.dm
@@ -3,13 +3,374 @@ SUBSYSTEM_DEF(ipintel)
wait = 1
flags = SS_NO_FIRE
init_order = INIT_ORDER_XKEYSCORE // 10
- var/enabled = 0 //disable at round start to avoid checking reconnects
+ // Are we enabled? Auto disable at world init to avoid checking reconnects
+ var/enabled = FALSE
var/throttle = 0
var/errors = 0
var/list/cache = list()
-/datum/controller/subsystem/ipintel/Initialize(timeofday, zlevel)
- enabled = 1
- . = ..()
+/datum/controller/subsystem/ipintel/Initialize(timeofday)
+ enabled = TRUE
+ return ..()
+
+// Represents an IP intel holder datum
+/datum/ipintel
+ /// The IP being checked
+ var/ip
+ /// The current rating, 0-1 float.
+ var/intel = 0
+ /// Whether this was loaded from the cache or not
+ var/cache = FALSE
+ /// How many minutes ago it was cached
+ var/cacheminutesago = 0
+ /// The date it was cached
+ var/cachedate = ""
+ /// The real time it was cached
+ var/cacherealtime = 0
+
+/datum/ipintel/New()
+ cachedate = SQLtime()
+ cacherealtime = world.realtime
+
+/datum/ipintel/proc/is_valid()
+ . = FALSE
+ if(intel < 0)
+ return
+ if(intel <= GLOB.configuration.ipintel.bad_rating)
+ if(world.realtime < cacherealtime + (GLOB.configuration.ipintel.hours_save_good HOURS))
+ return TRUE
+ else
+ if(world.realtime < cacherealtime + (GLOB.configuration.ipintel.hours_save_bad HOURS))
+ return TRUE
+
+
+
+/**
+ * Get IP intel
+ *
+ * Performs a lookup of the rating for an IP provided
+ *
+ * Arguments:
+ * * ip - The IP to lookup
+ * * bypasscache - Do we want to bypass the DB cache?
+ * * updatecache - Do we want to update the DB cache?
+ */
+/datum/controller/subsystem/ipintel/proc/get_ip_intel(ip, bypasscache = FALSE, updatecache = TRUE)
+ var/datum/ipintel/res = new()
+ res.ip = ip
+ . = res
+ if(!ip || !GLOB.configuration.ipintel.contact_email || !GLOB.configuration.ipintel.enabled || !enabled)
+ return
+ if(!bypasscache)
+ var/datum/ipintel/cachedintel = cache[ip]
+ if(cachedintel && cachedintel.is_valid())
+ cachedintel.cache = TRUE
+ return cachedintel
+
+ if(SSdbcore.IsConnected())
+ var/datum/db_query/query_get_ip_intel = SSdbcore.NewQuery({"
+ SELECT date, intel, TIMESTAMPDIFF(MINUTE,date,NOW())
+ FROM ipintel
+ WHERE
+ ip = INET_ATON(:ip)
+ AND ((
+ intel < :rating_bad
+ AND
+ date + INTERVAL :save_good HOUR > NOW()
+ ) OR (
+ intel >= :rating_bad
+ AND
+ date + INTERVAL :save_bad HOUR > NOW()
+ ))
+ "}, list(
+ "ip" = ip,
+ "rating_bad" = GLOB.configuration.ipintel.bad_rating,
+ "save_good" = GLOB.configuration.ipintel.hours_save_good,
+ "save_bad" = GLOB.configuration.ipintel.hours_save_bad,
+ ))
+ if(!query_get_ip_intel.warn_execute())
+ qdel(query_get_ip_intel)
+ return
+ if(query_get_ip_intel.NextRow())
+ res.cache = TRUE
+ res.cachedate = query_get_ip_intel.item[1]
+ res.intel = text2num(query_get_ip_intel.item[2])
+ res.cacheminutesago = text2num(query_get_ip_intel.item[3])
+ res.cacherealtime = world.realtime - (text2num(query_get_ip_intel.item[3])*10*60)
+ cache[ip] = res
+ qdel(query_get_ip_intel)
+ return
+ qdel(query_get_ip_intel)
+ res.intel = ip_intel_query(ip)
+ if(updatecache && res.intel >= 0)
+ cache[ip] = res
+ if(SSdbcore.IsConnected())
+ var/datum/db_query/query_add_ip_intel = SSdbcore.NewQuery({"
+ INSERT INTO ipintel (ip, intel) VALUES (INET_ATON(:ip), :intel)
+ ON DUPLICATE KEY UPDATE intel = VALUES(intel), date = NOW()"},
+ list(
+ "ip" = ip,
+ "intel" = res.intel
+ )
+ )
+ query_add_ip_intel.warn_execute()
+ qdel(query_add_ip_intel)
+
+
+
+/**
+ * Performs the remote IPintel lookup
+ *
+ *
+ *
+ * Arguments:
+ * * ip - The IP to lookup
+ * * retried - Was this attempt retried?
+ */
+/datum/controller/subsystem/ipintel/proc/ip_intel_query(ip, retried = FALSE)
+ . = -1 //default
+ if(!ip)
+ return
+ if(throttle > world.timeofday)
+ return
+ if(!enabled)
+ return
+
+ // Do not refactor this to use SShttp, because that requires the subsystem to be firing for requests to be made, and this will be triggered before the MC has finished loading
+ var/list/http[] = world.Export("http://[GLOB.configuration.ipintel.ipintel_domain]/check.php?ip=[ip]&contact=[GLOB.configuration.ipintel.contact_email]&format=json&flags=b")
+
+ if(http)
+ var/status = text2num(http["STATUS"])
+
+ if(status == 200)
+ var/response = json_decode(file2text(http["CONTENT"]))
+ if(response)
+ if(response["status"] == "success")
+ var/intelnum = text2num(response["result"])
+ if(isnum(intelnum))
+ return text2num(response["result"])
+ else
+ ipintel_handle_error("Bad intel from server: [response["result"]].", ip, retried)
+ if(!retried)
+ sleep(25)
+ return .(ip, 1)
+ else
+ ipintel_handle_error("Bad response from server: [response["status"]].", ip, retried)
+ if(!retried)
+ sleep(25)
+ return .(ip, 1)
+
+ else if(status == 429)
+ ipintel_handle_error("Error #429: We have exceeded the rate limit.", ip, 1)
+ return
+ else
+ ipintel_handle_error("Unknown status code: [status].", ip, retried)
+ if(!retried)
+ sleep(25)
+ return .(ip, 1)
+ else
+ ipintel_handle_error("Unable to connect to API.", ip, retried)
+ if(!retried)
+ sleep(25)
+ return .(ip, 1)
+
+
+
+/**
+ * Error handler
+ *
+ * Handles an IP intel error, also throttling the susbystem if required
+ *
+ * Arguments:
+ * * error - The error description
+ * * ip - The IP that was tried
+ * * retried - Was this on a retried attempt
+ */
+/datum/controller/subsystem/ipintel/proc/ipintel_handle_error(error, ip, retried)
+ if(retried)
+ errors++
+ error += " Could not check [ip]. Disabling IPINTEL for [errors] minute[(errors == 1 ? "" : "s")]"
+ throttle = world.timeofday + (2 * errors MINUTES)
+ else
+ error += " Attempting retry on [ip]."
+ log_ipintel(error)
+
+
+
+/**
+ * Logs an IPintel error
+ *
+ * Pretty self explanatory. Logs errors regarding ipintel.
+ *
+ * Arguments:
+ * * text - Argument 1
+ */
+/datum/controller/subsystem/ipintel/proc/log_ipintel(text)
+ log_game("IPINTEL: [text]")
+ log_debug("IPINTEL: [text]")
+
+
+
+/**
+ * IPIntel Ban Checker
+ *
+ * Checks if a user is banned due to IPintel. It will check configuration, DB, whitelist checks, and more
+ *
+ * Arguments:
+ * * t_ckey - The ckey to check
+ * * t_ip - The IP to check
+ */
+/datum/controller/subsystem/ipintel/proc/ipintel_is_banned(t_ckey, t_ip)
+ if(!GLOB.configuration.ipintel.contact_email)
+ return FALSE
+ if(!GLOB.configuration.ipintel.enabled)
+ return FALSE
+ if(!GLOB.configuration.ipintel.whitelist_mode)
+ return FALSE
+ if(!SSdbcore.IsConnected())
+ return FALSE
+ if(!ipintel_badip_check(t_ip))
+ return FALSE
+ if(vpn_whitelist_check(t_ckey))
+ return FALSE
+ return TRUE
+
+
+
+/**
+ * IP Rating Checker
+ *
+ * Checks if a provided IP passes the config threshold for denial
+ *
+ * Arguments:
+ * * target_ip - The IP to check
+ */
+/datum/controller/subsystem/ipintel/proc/ipintel_badip_check(target_ip)
+ var/rating_bad = GLOB.configuration.ipintel.bad_rating
+ if(!rating_bad)
+ log_debug("ipintel_badip_check reports misconfigured rating_bad directive")
+ return FALSE
+ var/valid_hours = GLOB.configuration.ipintel.hours_save_bad
+ if(!valid_hours)
+ log_debug("ipintel_badip_check reports misconfigured ipintel_save_bad directive")
+ return FALSE
+ var/datum/db_query/query_get_ip_intel = SSdbcore.NewQuery({"
+ SELECT * FROM ipintel WHERE ip = INET_ATON(:target_ip)
+ AND intel >= :rating_bad AND (date + INTERVAL :valid_hours HOUR) > NOW()"},
+ list(
+ "target_ip" = target_ip,
+ "rating_bad" = rating_bad,
+ "valid_hours" = valid_hours
+ )
+ )
+ if(!query_get_ip_intel.warn_execute())
+ log_debug("ipintel_badip_check reports failed query execution")
+ qdel(query_get_ip_intel)
+ return FALSE
+ if(!query_get_ip_intel.NextRow())
+ qdel(query_get_ip_intel)
+ return FALSE
+ qdel(query_get_ip_intel)
+ return TRUE
+
+
+
+/**
+ * VPN whitelist checker
+ *
+ * Checks if a ckey is whitelisted to be using a VPN against the DB
+ *
+ * Arguments:
+ * * target_ckey - The ckey to check
+ */
+/datum/controller/subsystem/ipintel/proc/vpn_whitelist_check(target_ckey)
+ if(!GLOB.configuration.ipintel.whitelist_mode)
+ return FALSE
+ var/datum/db_query/query_whitelist_check = SSdbcore.NewQuery("SELECT * FROM vpn_whitelist WHERE ckey=:ckey", list(
+ "ckey" = target_ckey
+ ))
+ if(!query_whitelist_check.warn_execute())
+ qdel(query_whitelist_check)
+ return FALSE
+ if(query_whitelist_check.NextRow())
+ qdel(query_whitelist_check)
+ return TRUE // At least one row in the whitelist names their ckey. That means they are whitelisted.
+ qdel(query_whitelist_check)
+ return FALSE
+
+
+
+/**
+ * VPN whitelist adder
+ *
+ * Adds a ckey to the VPN whitelist. Asks the admin to also provide a link to their request.
+ *
+ * Arguments:
+ * * target_ckey - The ckey to whitelist
+ */
+/datum/controller/subsystem/ipintel/proc/vpn_whitelist_add(target_ckey)
+ var/reason_string = input(usr, "Enter link to the URL of their whitelist request on the forum.","Reason required") as message|null
+ if(!reason_string)
+ return FALSE
+ var/datum/db_query/query_whitelist_add = SSdbcore.NewQuery("INSERT INTO vpn_whitelist (ckey,reason) VALUES (:targetckey, :reason)", list(
+ "targetckey" = target_ckey,
+ "reason" = reason_string
+ ))
+ if(!query_whitelist_add.warn_execute())
+ qdel(query_whitelist_add)
+ return FALSE
+ qdel(query_whitelist_add)
+ return TRUE
+
+
+
+/**
+ * VPN whitelist remover
+ *
+ * Removes a ckey from the VPN whitelist. Pretty simple.
+ *
+ * Arguments:
+ * * target_ckey - The ckey to remove
+ */
+/datum/controller/subsystem/ipintel/proc/vpn_whitelist_remove(target_ckey)
+ var/datum/db_query/query_whitelist_remove = SSdbcore.NewQuery("DELETE FROM vpn_whitelist WHERE ckey=:targetckey", list(
+ "targetckey" = target_ckey
+ ))
+ if(!query_whitelist_remove.warn_execute())
+ qdel(query_whitelist_remove)
+ return FALSE
+ qdel(query_whitelist_remove)
+ return TRUE
+
+
+
+/**
+ * VPN whitelist panel
+ *
+ * Doesnt actually open a panel, this is just a verb to handle the rest of the whitelist operations
+ *
+ * Arguments:
+ * * target_ckey - The ckey to add/remove
+ */
+/datum/controller/subsystem/ipintel/proc/vpn_whitelist_panel(target_ckey as text)
+ if(!check_rights(R_ADMIN))
+ return
+ if(!target_ckey)
+ return
+ var/is_already_whitelisted = vpn_whitelist_check(target_ckey)
+ if(is_already_whitelisted)
+ var/confirm = alert("[target_ckey] is already whitelisted. Remove them?", "Confirm Removal", "No", "Yes")
+ if(!confirm || confirm != "Yes")
+ to_chat(usr, "VPN whitelist alteration cancelled.")
+ return
+ else if(vpn_whitelist_remove(target_ckey))
+ to_chat(usr, "[target_ckey] was removed from the VPN whitelist.")
+ else
+ to_chat(usr, "VPN whitelist unchanged.")
+ else
+ if(vpn_whitelist_add(target_ckey))
+ to_chat(usr, "[target_ckey] was added to the VPN whitelist.")
+ else
+ to_chat(usr, "VPN whitelist unchanged.")
diff --git a/code/controllers/subsystem/jobs.dm b/code/controllers/subsystem/jobs.dm
index c7e18522392..f7660f4d75a 100644
--- a/code/controllers/subsystem/jobs.dm
+++ b/code/controllers/subsystem/jobs.dm
@@ -20,12 +20,12 @@ SUBSYSTEM_DEF(jobs)
/datum/controller/subsystem/jobs/Initialize(timeofday)
if(!occupations.len)
SetupOccupations()
- LoadJobs("config/jobs.txt")
+ LoadJobs(FALSE)
return ..()
// Only fires every 5 minutes
/datum/controller/subsystem/jobs/fire()
- if(!SSdbcore.IsConnected() || !config.use_exp_tracking)
+ if(!SSdbcore.IsConnected() || !GLOB.configuration.jobs.enable_exp_tracking)
return
batch_update_player_exp(announce = FALSE) // Set this to true if you ever want to inform players about their EXP gains
@@ -242,8 +242,8 @@ SUBSYSTEM_DEF(jobs)
/datum/controller/subsystem/jobs/proc/FillAIPosition()
- if(config && !config.allow_ai)
- return 0
+ if(!GLOB.configuration.jobs.allow_ai)
+ return FALSE
var/ai_selected = 0
var/datum/job/job = GetJob("AI")
@@ -514,39 +514,29 @@ SUBSYSTEM_DEF(jobs)
-/datum/controller/subsystem/jobs/proc/LoadJobs(jobsfile) //ran during round setup, reads info from jobs.txt -- Urist
- if(!config.load_jobs_from_txt)
- return 0
+/datum/controller/subsystem/jobs/proc/LoadJobs(highpop = FALSE) //ran during round setup, reads info from jobs list
+ if(!GLOB.configuration.jobs.enable_job_amount_overrides)
+ return FALSE
- var/list/jobEntries = file2list(jobsfile)
+ var/list/joblist = list()
- for(var/job in jobEntries)
- if(!job)
+ if(highpop)
+ joblist = GLOB.configuration.jobs.highpop_job_map.Copy()
+ else
+ joblist = GLOB.configuration.jobs.lowpop_job_map.Copy()
+
+ for(var/job in joblist)
+ // Key: name | Value: Amount
+ var/datum/job/J = GetJob(job)
+ if(!J)
continue
+ J.total_positions = text2num(joblist[job])
+ J.spawn_positions = text2num(joblist[job])
- job = trim(job)
- if(!length(job))
- continue
+ if(job == "AI" || job == "Cyborg") //I dont like this here but it will do for now
+ J.total_positions = 0
- var/pos = findtext(job, "=")
- var/name = null
- var/value = null
-
- if(pos)
- name = copytext(job, 1, pos)
- value = copytext(job, pos + 1)
- else
- continue
-
- if(name && value)
- var/datum/job/J = GetJob(name)
- if(!J) continue
- J.total_positions = text2num(value)
- J.spawn_positions = text2num(value)
- if(name == "AI" || name == "Cyborg")//I dont like this here but it will do for now
- J.total_positions = 0
-
- return 1
+ return TRUE
/datum/controller/subsystem/jobs/proc/HandleFeedbackGathering()
@@ -750,7 +740,7 @@ SUBSYSTEM_DEF(jobs)
continue // If a client logs out in the middle of this
var/datum/db_query/exp_read = SSdbcore.NewQuery(
- "SELECT exp FROM [format_table_name("player")] WHERE ckey=:ckey",
+ "SELECT exp FROM player WHERE ckey=:ckey",
list("ckey" = C.ckey)
)
@@ -834,7 +824,7 @@ SUBSYSTEM_DEF(jobs)
C.prefs.exp = new_exp
var/datum/db_query/update_query = SSdbcore.NewQuery(
- "UPDATE [format_table_name("player")] SET exp =:newexp, lastseen=NOW() WHERE ckey=:ckey",
+ "UPDATE player SET exp =:newexp, lastseen=NOW() WHERE ckey=:ckey",
list(
"newexp" = new_exp,
"ckey" = C.ckey
@@ -844,7 +834,7 @@ SUBSYSTEM_DEF(jobs)
player_update_queries += update_query
var/datum/db_query/update_query_history = SSdbcore.NewQuery({"
- INSERT INTO [format_table_name("playtime_history")] (ckey, date, time_living, time_ghost)
+ INSERT INTO playtime_history (ckey, date, time_living, time_ghost)
VALUES (:ckey, CURDATE(), :addedliving, :addedghost)
ON DUPLICATE KEY UPDATE time_living=time_living + VALUES(time_living), time_ghost=time_ghost + VALUES(time_ghost)"},
list(
diff --git a/code/controllers/subsystem/lighting.dm b/code/controllers/subsystem/lighting.dm
index 6761e9647d9..e12c6be07df 100644
--- a/code/controllers/subsystem/lighting.dm
+++ b/code/controllers/subsystem/lighting.dm
@@ -13,7 +13,7 @@ SUBSYSTEM_DEF(lighting)
/datum/controller/subsystem/lighting/Initialize(timeofday)
if(!initialized)
- if(config.starlight)
+ if(GLOB.configuration.general.starlight)
for(var/I in GLOB.all_areas)
var/area/A = I
if(A.dynamic_lighting == DYNAMIC_LIGHTING_IFSTARLIGHT)
diff --git a/code/controllers/subsystem/mapping.dm b/code/controllers/subsystem/mapping.dm
index 87846d051f0..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()
@@ -40,11 +44,11 @@ SUBSYSTEM_DEF(mapping)
loadLavaland()
// Pick a random away mission.
- if(!config.disable_away_missions)
+ if(GLOB.configuration.gateway.enable_away_mission)
load_away_mission()
// Seed space ruins
- if(!config.disable_space_ruins)
+ if(GLOB.configuration.ruins.enable_space_ruins)
handleRuins()
// Makes a blank space level for the sake of randomness
@@ -57,35 +61,37 @@ SUBSYSTEM_DEF(mapping)
// Spawn Lavaland ruins and rivers.
log_startup_progress("Populating lavaland...")
var/lavaland_setup_timer = start_watch()
- seedRuins(list(level_name_to_num(MINING)), config.lavaland_budget, /area/lavaland/surface/outdoors/unexplored, GLOB.lava_ruins_templates)
+ seedRuins(list(level_name_to_num(MINING)), GLOB.configuration.ruins.lavaland_ruin_budget, /area/lavaland/surface/outdoors/unexplored, GLOB.lava_ruins_templates)
spawn_rivers(list(level_name_to_num(MINING)))
log_startup_progress("Successfully populated lavaland in [stop_watch(lavaland_setup_timer)]s.")
// Now we make a list of areas for teleport locs
- // TOOD: Make these locs into lists on the SS itself, not globs
+ teleportlocs = list()
for(var/area/AR in world)
if(AR.no_teleportlocs)
continue
- if(GLOB.teleportlocs[AR.name])
+ if(teleportlocs[AR.name])
continue
var/turf/picked = safepick(get_area_turfs(AR.type))
if(picked && is_station_level(picked.z))
- GLOB.teleportlocs[AR.name] = AR
+ teleportlocs[AR.name] = AR
- GLOB.teleportlocs = sortAssoc(GLOB.teleportlocs)
+ teleportlocs = sortAssoc(teleportlocs)
+
+ ghostteleportlocs = list()
for(var/area/AR in world)
- if(GLOB.ghostteleportlocs[AR.name])
+ if(ghostteleportlocs[AR.name])
continue
var/list/turfs = get_area_turfs(AR.type)
if(turfs.len)
- GLOB.ghostteleportlocs[AR.name] = AR
+ ghostteleportlocs[AR.name] = AR
- GLOB.ghostteleportlocs = sortAssoc(GLOB.ghostteleportlocs)
+ ghostteleportlocs = sortAssoc(ghostteleportlocs)
// World name
- if(config && config.server_name)
- world.name = "[config.server_name]: [station_name()]"
+ if(GLOB.configuration.general.server_name)
+ world.name = "[GLOB.configuration.general.server_name]: [station_name()]"
else
world.name = station_name()
@@ -96,7 +102,7 @@ SUBSYSTEM_DEF(mapping)
// load in extra levels of space ruins
var/load_zlevels_timer = start_watch()
log_startup_progress("Creating random space levels...")
- var/num_extra_space = rand(config.extra_space_ruin_levels_min, config.extra_space_ruin_levels_max)
+ var/num_extra_space = rand(GLOB.configuration.ruins.extra_levels_min, GLOB.configuration.ruins.extra_levels_max)
for(var/i in 1 to num_extra_space)
GLOB.space_manager.add_new_zlevel("Ruin Area #[i]", linkage = CROSSLINKED, traits = list(REACHABLE, SPAWN_RUINS))
log_startup_progress("Loaded random space levels in [stop_watch(load_zlevels_timer)]s.")
@@ -128,7 +134,7 @@ SUBSYSTEM_DEF(mapping)
if(!SSdbcore.IsConnected())
return
var/datum/db_query/query_set_map = SSdbcore.NewQuery(
- "UPDATE [format_table_name("round")] SET start_datetime=NOW(), map_name=:mapname, station_name=:stationname WHERE id=:round_id",
+ "UPDATE round SET start_datetime=NOW(), map_name=:mapname, station_name=:stationname WHERE id=:round_id",
list("mapname" = map_datum.technical_name, "stationname" = map_datum.fluff_name, "round_id" = GLOB.round_id)
)
query_set_map.Execute(async = FALSE) // This happens during a time of intense server lag, so should be non-async
@@ -230,11 +236,11 @@ SUBSYSTEM_DEF(mapping)
if(length(GLOB.awaydestinations))
return
- if(GLOB.potentialRandomZlevels && length(GLOB.potentialRandomZlevels))
+ if(length(GLOB.configuration.gateway.enabled_away_missions))
var/watch = start_watch()
log_startup_progress("Loading away mission...")
- var/map = pick(GLOB.potentialRandomZlevels)
+ var/map = pick(GLOB.configuration.gateway.enabled_away_missions)
var/file = file(map)
if(isfile(file))
var/zlev = GLOB.space_manager.add_new_zlevel(AWAY_MISSION, linkage = UNAFFECTED, traits = list(AWAY_LEVEL,BLOCK_TELEPORT))
diff --git a/code/controllers/subsystem/medals.dm b/code/controllers/subsystem/medals.dm
index 5de6cdeb27a..46023427643 100644
--- a/code/controllers/subsystem/medals.dm
+++ b/code/controllers/subsystem/medals.dm
@@ -4,15 +4,15 @@ SUBSYSTEM_DEF(medals)
var/hub_enabled = FALSE
/datum/controller/subsystem/medals/Initialize(timeofday)
- if(config.medal_hub_address && config.medal_hub_password)
+ if(GLOB.configuration.system.medal_hub_address && GLOB.configuration.system.medal_hub_password)
hub_enabled = TRUE
- ..()
+ return ..()
/datum/controller/subsystem/medals/proc/UnlockMedal(medal, client/player)
set waitfor = FALSE
if(!medal || !hub_enabled)
return
- if(isnull(world.SetMedal(medal, player, config.medal_hub_address, config.medal_hub_password)))
+ if(isnull(world.SetMedal(medal, player, GLOB.configuration.system.medal_hub_address, GLOB.configuration.system.medal_hub_password)))
hub_enabled = FALSE
log_game("MEDAL ERROR: Could not contact hub to award medal [medal] to player [player.ckey].")
message_admins("Error! Failed to contact hub to award [medal] medal to [player.ckey]!")
@@ -35,7 +35,7 @@ SUBSYSTEM_DEF(medals)
var/newscoreparam = list2params(oldscore)
- if(isnull(world.SetScores(player.ckey, newscoreparam, config.medal_hub_address, config.medal_hub_password)))
+ if(isnull(world.SetScores(player.ckey, newscoreparam, GLOB.configuration.system.medal_hub_address, GLOB.configuration.system.medal_hub_password)))
hub_enabled = FALSE
log_game("SCORE ERROR: Could not contact hub to set score. Score [score] for player [player.ckey].")
message_admins("Error! Failed to contact hub to set [score] score for [player.ckey]!")
@@ -44,7 +44,7 @@ SUBSYSTEM_DEF(medals)
if(!score || !hub_enabled)
return
- var/scoreget = world.GetScores(player.ckey, score, config.medal_hub_address, config.medal_hub_password)
+ var/scoreget = world.GetScores(player.ckey, score, GLOB.configuration.system.medal_hub_address, GLOB.configuration.system.medal_hub_password)
if(isnull(scoreget))
hub_enabled = FALSE
log_game("SCORE ERROR: Could not contact hub to get score. Score [score] for player [player.ckey].")
@@ -58,7 +58,7 @@ SUBSYSTEM_DEF(medals)
if(!medal || !hub_enabled)
return
- if(isnull(world.GetMedal(medal, player, config.medal_hub_address, config.medal_hub_password)))
+ if(isnull(world.GetMedal(medal, player, GLOB.configuration.system.medal_hub_address, GLOB.configuration.system.medal_hub_password)))
hub_enabled = FALSE
log_game("MEDAL ERROR: Could not contact hub to get medal [medal] for player [player.ckey]")
message_admins("Error! Failed to contact hub to get [medal] medal for [player.ckey]!")
@@ -68,7 +68,7 @@ SUBSYSTEM_DEF(medals)
/datum/controller/subsystem/medals/proc/LockMedal(medal, client/player)
if(!player || !medal || !hub_enabled)
return
- var/result = world.ClearMedal(medal, player, config.medal_hub_address, config.medal_hub_password)
+ var/result = world.ClearMedal(medal, player, GLOB.configuration.system.medal_hub_address, GLOB.configuration.system.medal_hub_password)
switch(result)
if(null)
hub_enabled = FALSE
@@ -81,6 +81,6 @@ SUBSYSTEM_DEF(medals)
/datum/controller/subsystem/medals/proc/ClearScore(client/player)
- if(isnull(world.SetScores(player.ckey, "", config.medal_hub_address, config.medal_hub_password)))
+ if(isnull(world.SetScores(player.ckey, "", GLOB.configuration.system.medal_hub_address, GLOB.configuration.system.medal_hub_password)))
log_game("MEDAL ERROR: Could not contact hub to clear scores for [player.ckey].")
message_admins("Error! Failed to contact hub to clear scores for [player.ckey]!")
diff --git a/code/controllers/subsystem/mobs.dm b/code/controllers/subsystem/mobs.dm
index 8827de67123..e024a1f3d4e 100644
--- a/code/controllers/subsystem/mobs.dm
+++ b/code/controllers/subsystem/mobs.dm
@@ -9,6 +9,8 @@ SUBSYSTEM_DEF(mobs)
var/static/list/clients_by_zlevel[][]
var/static/list/dead_players_by_zlevel[][] = list(list()) // Needs to support zlevel 1 here, MaxZChanged only happens when CC is created and new_players can login before that.
var/static/list/cubemonkeys = list()
+ /// The amount of giant spiders that exist in the world. Used for mob capping.
+ var/giant_spiders = 0
/datum/controller/subsystem/mobs/stat_entry()
..("P:[GLOB.mob_living_list.len]")
diff --git a/code/controllers/subsystem/nightshift.dm b/code/controllers/subsystem/nightshift.dm
index deffcb6bddf..fe5d17dccd4 100644
--- a/code/controllers/subsystem/nightshift.dm
+++ b/code/controllers/subsystem/nightshift.dm
@@ -14,9 +14,9 @@ SUBSYSTEM_DEF(nightshift)
var/high_security_mode = FALSE
/datum/controller/subsystem/nightshift/Initialize()
- if(!config.enable_night_shifts)
+ if(!GLOB.configuration.general.enable_night_shifts)
can_fire = FALSE
- if(config.randomize_shift_time)
+ if(GLOB.configuration.general.randomise_shift_time)
GLOB.gametime_offset = rand(0, 23) HOURS
return ..()
diff --git a/code/controllers/subsystem/profiler.dm b/code/controllers/subsystem/profiler.dm
index 418af664d92..2d30360edb1 100644
--- a/code/controllers/subsystem/profiler.dm
+++ b/code/controllers/subsystem/profiler.dm
@@ -13,7 +13,7 @@ SUBSYSTEM_DEF(profiler)
..("F:[round(fetch_cost, 1)]ms | W:[round(write_cost, 1)]ms")
/datum/controller/subsystem/profiler/Initialize()
- if(!config.auto_profile)
+ if(!GLOB.configuration.general.enable_auto_profiler)
StopProfiling() //Stop the early start profiler if we dont want it on in the config
flags |= SS_NO_FIRE
return ..()
@@ -22,7 +22,7 @@ SUBSYSTEM_DEF(profiler)
DumpFile()
/datum/controller/subsystem/profiler/Shutdown()
- if(config.auto_profile)
+ if(GLOB.configuration.general.enable_auto_profiler)
DumpFile()
return ..()
diff --git a/code/controllers/subsystem/shuttles.dm b/code/controllers/subsystem/shuttles.dm
index 4eb3adc62da..85e9e5da52c 100644
--- a/code/controllers/subsystem/shuttles.dm
+++ b/code/controllers/subsystem/shuttles.dm
@@ -1,5 +1,4 @@
#define CALL_SHUTTLE_REASON_LENGTH 12
-
SUBSYSTEM_DEF(shuttle)
name = "Shuttle"
wait = 10
@@ -42,6 +41,8 @@ SUBSYSTEM_DEF(shuttle)
var/sold_atoms = ""
var/list/hidden_shuttle_turfs = list() //all turfs hidden from navigation computers associated with a list containing the image hiding them and the type of the turf they are pretending to be
var/list/hidden_shuttle_turf_images = list() //only the images from the above list
+ /// Default refuel delay
+ var/refuel_delay = 20 MINUTES
/datum/controller/subsystem/shuttle/Initialize(start_timeofday)
ordernum = rand(1,9000)
@@ -97,7 +98,7 @@ SUBSYSTEM_DEF(shuttle)
/datum/controller/subsystem/shuttle/proc/secondsToRefuel()
var/elapsed = world.time - SSticker.round_start_time
- var/remaining = round((config.shuttle_refuel_delay - elapsed) / 10)
+ var/remaining = round((refuel_delay - elapsed) / 10)
return remaining > 0 ? remaining : 0
/datum/controller/subsystem/shuttle/proc/requestEvac(mob/user, call_reason)
@@ -115,7 +116,7 @@ SUBSYSTEM_DEF(shuttle)
emergency = backup_shuttle
if(secondsToRefuel())
- to_chat(user, "The emergency shuttle is refueling. Please wait another [abs(round(((world.time - SSticker.round_start_time) - config.shuttle_refuel_delay)/600))] minutes before trying again.")
+ to_chat(user, "The emergency shuttle is refueling. Please wait another [abs(round(((world.time - SSticker.round_start_time) - refuel_delay)/600))] minutes before trying again.")
return
switch(emergency.mode)
diff --git a/code/controllers/subsystem/statistics.dm b/code/controllers/subsystem/statistics.dm
index bfc7d9655d5..63c20742904 100644
--- a/code/controllers/subsystem/statistics.dm
+++ b/code/controllers/subsystem/statistics.dm
@@ -6,7 +6,7 @@ SUBSYSTEM_DEF(statistics)
/datum/controller/subsystem/statistics/Initialize(start_timeofday)
- if(!config.sql_enabled)
+ if(!SSdbcore.IsConnected())
flags |= SS_NO_FIRE // Disable firing if SQL is disabled
return ..()
@@ -18,7 +18,7 @@ SUBSYSTEM_DEF(statistics)
return
else
var/datum/db_query/statquery = SSdbcore.NewQuery(
- "INSERT INTO [format_table_name("legacy_population")] (playercount, admincount, time) VALUES (:playercount, :admincount, NOW())",
+ "INSERT INTO legacy_population (playercount, admincount, time) VALUES (:playercount, :admincount, NOW())",
list(
"playercount" = length(GLOB.clients),
"admincount" = length(GLOB.admins)
diff --git a/code/controllers/subsystem/ticker.dm b/code/controllers/subsystem/ticker.dm
index c46301713e0..14a952cb36f 100644
--- a/code/controllers/subsystem/ticker.dm
+++ b/code/controllers/subsystem/ticker.dm
@@ -7,10 +7,12 @@ SUBSYSTEM_DEF(ticker)
runlevels = RUNLEVEL_LOBBY | RUNLEVEL_SETUP | RUNLEVEL_GAME
offline_implications = "The game is no longer aware of when the round ends. Immediate server restart recommended."
- /// Time the world started, relative to world.time
+ /// Time the game should start, relative to world.time
var/round_start_time = 0
+ /// Time that the round started
+ var/time_game_started = 0
/// Default timeout for if world.Reboot() doesnt have a time specified
- var/const/restart_timeout = 600
+ var/const/restart_timeout = 75 SECONDS
/// Current status of the game. See code\__DEFINES\game.dm
var/current_state = GAME_STATE_STARTUP
/// Do we want to force-start as soon as we can
@@ -79,9 +81,9 @@ SUBSYSTEM_DEF(ticker)
switch(current_state)
if(GAME_STATE_STARTUP)
// This is ran as soon as the MC starts firing, and should only run ONCE, unless startup fails
- round_start_time = world.time + (config.pregame_timestart * 10)
+ round_start_time = world.time + (GLOB.configuration.general.lobby_time SECONDS)
to_chat(world, "Welcome to the pre-game lobby!")
- to_chat(world, "Please, setup your character and select ready. Game will start in [config.pregame_timestart] seconds")
+ to_chat(world, "Please, setup your character and select ready. Game will start in [GLOB.configuration.general.lobby_time] seconds")
current_state = GAME_STATE_PREGAME
fire() // TG says this is a good idea
for(var/mob/new_player/N in GLOB.player_list)
@@ -114,10 +116,10 @@ SUBSYSTEM_DEF(ticker)
if(world.time > next_autotransfer)
SSvote.autotransfer()
- next_autotransfer = world.time + config.vote_autotransfer_interval
+ next_autotransfer = world.time + GLOB.configuration.vote.autotransfer_interval_time
var/game_finished = SSshuttle.emergency.mode >= SHUTTLE_ENDGAME || mode.station_was_nuked
- if(config.continuous_rounds)
+ if(GLOB.configuration.gamemode.disable_certain_round_early_end)
mode.check_finished() // some modes contain var-changing code in here, so call even if we don't uses result
else
game_finished |= mode.check_finished()
@@ -129,6 +131,8 @@ SUBSYSTEM_DEF(ticker)
auto_toggle_ooc(TRUE) // Turn it on
declare_completion()
addtimer(CALLBACK(src, .proc/call_reboot), 5 SECONDS)
+ if(GLOB.configuration.vote.enable_map_voting)
+ SSvote.initiate_vote("map", "the server", TRUE) // Start a map vote. Timing is a little tight here but we should be good.
/datum/controller/subsystem/ticker/proc/call_reboot()
if(mode.station_was_nuked)
@@ -147,7 +151,7 @@ SUBSYSTEM_DEF(ticker)
var/list/datum/game_mode/runnable_modes
if(GLOB.master_mode == "random" || GLOB.master_mode == "secret")
- runnable_modes = config.get_runnable_modes()
+ runnable_modes = GLOB.configuration.gamemode.get_runnable_modes()
if(!length(runnable_modes))
to_chat(world, "Unable to choose playable game mode. Reverting to pre-game lobby.")
force_start = FALSE
@@ -155,9 +159,9 @@ SUBSYSTEM_DEF(ticker)
Master.SetRunLevel(RUNLEVEL_LOBBY)
return FALSE
if(GLOB.secret_force_mode != "secret")
- var/datum/game_mode/M = config.pick_mode(GLOB.secret_force_mode)
+ var/datum/game_mode/M = GLOB.configuration.gamemode.pick_mode(GLOB.secret_force_mode)
if(M.can_start())
- mode = config.pick_mode(GLOB.secret_force_mode)
+ mode = GLOB.configuration.gamemode.pick_mode(GLOB.secret_force_mode)
SSjobs.ResetOccupations()
if(!mode)
mode = pickweight(runnable_modes)
@@ -165,7 +169,7 @@ SUBSYSTEM_DEF(ticker)
var/mtype = mode.type
mode = new mtype
else
- mode = config.pick_mode(GLOB.master_mode)
+ mode = GLOB.configuration.gamemode.pick_mode(GLOB.master_mode)
if(!mode.can_start())
to_chat(world, "Unable to start [mode.name]. Not enough players, [mode.required_players] players needed. Reverting to pre-game lobby.")
@@ -264,10 +268,10 @@ SUBSYSTEM_DEF(ticker)
SSdiscord.send2discord_simple_noadmins("**\[Info]** Round has started")
auto_toggle_ooc(FALSE) // Turn it off
- round_start_time = world.time
+ time_game_started = world.time
// Sets the auto shuttle vote to happen after the config duration
- next_autotransfer = world.time + config.vote_autotransfer_initial
+ next_autotransfer = world.time + GLOB.configuration.vote.autotransfer_initial_time
for(var/mob/new_player/N in GLOB.mob_list)
if(N.client)
@@ -279,10 +283,12 @@ SUBSYSTEM_DEF(ticker)
if(playercount >= highpop_trigger)
log_debug("Playercount: [playercount] versus trigger: [highpop_trigger] - loading highpop job config")
- SSjobs.LoadJobs("config/jobs_highpop.txt")
+ SSjobs.LoadJobs(TRUE)
else
log_debug("Playercount: [playercount] versus trigger: [highpop_trigger] - keeping standard job config")
+ SSnightshift.check_nightshift()
+
#ifdef UNIT_TESTS
RunUnitTests()
#endif
diff --git a/code/controllers/subsystem/tickets/tickets.dm b/code/controllers/subsystem/tickets/tickets.dm
index 24919f801f5..d5eb31117e2 100644
--- a/code/controllers/subsystem/tickets/tickets.dm
+++ b/code/controllers/subsystem/tickets/tickets.dm
@@ -214,14 +214,18 @@ SUBSYSTEM_DEF(tickets)
"Already Resolved" = "The problem has been resolved already.",
"Mentorhelp" = "Please redirect your question to Mentorhelp, as they are better experienced with these types of questions.",
"Happens Again" = "Thanks, let us know if it continues to happen.",
- "Github Issue Report" = "To report a bug, please go to our Github page. Then go to 'Issues'. Then 'New Issue'. Then fill out the report form. If the report would reveal current-round information, file it after the round ends.",
"Clear Cache" = "To fix a blank screen, go to the 'Special Verbs' tab and press 'Reload UI Resources'. If that fails, clear your BYOND cache (instructions provided with 'Reload UI Resources'). If that still fails, please adminhelp again, stating you have already done the following." ,
"IC Issue" = "This is an In Character (IC) issue and will not be handled by admins. You could speak to Security, Internal Affairs, a Departmental Head, Nanotrasen Representetive, or any other relevant authority currently on station.",
"Reject" = "Reject",
"Man Up" = "Man Up",
- "Appeal on the Forums" = "Appealing a ban must occur on the forums. Privately messaging, or adminhelping about your ban will not resolve it. To appeal your ban, please head to [config.banappeals]"
)
+ if(GLOB.configuration.url.banappeals_url)
+ response_phrases["Appeal on the Forums"] = "Appealing a ban must occur on the forums. Privately messaging, or adminhelping about your ban will not resolve it. To appeal your ban, please head to [GLOB.configuration.url.banappeals_url]"
+
+ if(GLOB.configuration.url.github_url)
+ response_phrases["Github Issue Report"] = "To report a bug, please go to our Github page. Then go to 'Issues'. Then 'New Issue'. Then fill out the report form. If the report would reveal current-round information, file it after the round ends."
+
var/sorted_responses = list()
for(var/key in response_phrases) //build a new list based on the short descriptive keys of the master list so we can send this as the input instead of the full paragraphs to the admin choosing which autoresponse
sorted_responses += key
diff --git a/code/controllers/subsystem/vote.dm b/code/controllers/subsystem/vote.dm
index 743d14a3962..83963e99562 100644
--- a/code/controllers/subsystem/vote.dm
+++ b/code/controllers/subsystem/vote.dm
@@ -27,7 +27,7 @@ SUBSYSTEM_DEF(vote)
// Calculate how much time is remaining by comparing current time, to time of vote start,
// plus vote duration
- time_remaining = round((started_time + config.vote_period - world.time)/10)
+ time_remaining = round((started_time + GLOB.configuration.vote.vote_time - world.time)/10)
if(time_remaining < 0)
result()
@@ -53,9 +53,9 @@ SUBSYSTEM_DEF(vote)
voting.Cut()
current_votes.Cut()
- if(auto_muted && !config.ooc_allowed && !(config.auto_toggle_ooc_during_round && SSticker.current_state == GAME_STATE_PLAYING))
+ if(auto_muted && !GLOB.ooc_enabled && !(GLOB.configuration.general.auto_disable_ooc && SSticker.current_state == GAME_STATE_PLAYING))
auto_muted = 0
- config.ooc_allowed = !( config.ooc_allowed )
+ GLOB.ooc_enabled = TRUE
to_chat(world, "The OOC channel has been automatically enabled due to vote end.")
log_admin("OOC was toggled automatically due to vote end.")
message_admins("OOC has been toggled on automatically.")
@@ -83,7 +83,7 @@ SUBSYSTEM_DEF(vote)
choices -= sorted_highest
choices = sorted_choices
//default-vote for everyone who didn't vote
- if(!config.vote_no_default && choices.len)
+ if(!GLOB.configuration.vote.disable_default_vote && choices.len)
var/non_voters = (GLOB.clients.len - total_votes)
if(non_voters > 0)
if(mode == "restart")
@@ -196,7 +196,7 @@ SUBSYSTEM_DEF(vote)
/datum/controller/subsystem/vote/proc/submit_vote(ckey, vote)
if(mode)
- if(config.vote_no_dead && usr.stat == DEAD && !usr.client.holder)
+ if(GLOB.configuration.vote.prevent_dead_voting && usr.stat == DEAD && !usr.client.holder)
return 0
if(current_votes[ckey])
choices[choices[current_votes[ckey]]]--
@@ -210,7 +210,7 @@ SUBSYSTEM_DEF(vote)
/datum/controller/subsystem/vote/proc/initiate_vote(vote_type, initiator_key, code_invoked = FALSE)
if(!mode)
if(started_time != null && !check_rights(R_ADMIN))
- var/next_allowed_time = (started_time + config.vote_delay)
+ var/next_allowed_time = (started_time + GLOB.configuration.vote.vote_delay)
if(next_allowed_time > world.time)
return 0
@@ -221,7 +221,7 @@ SUBSYSTEM_DEF(vote)
if("gamemode")
if(SSticker.current_state >= 2)
return 0
- choices.Add(config.votable_modes)
+ choices.Add(GLOB.configuration.gamemode.votable_modes)
if("crew_transfer")
if(check_rights(R_ADMIN|R_MOD))
if(SSticker.current_state <= 2)
@@ -264,33 +264,33 @@ SUBSYSTEM_DEF(vote)
log_vote(text)
to_chat(world, {"[text]
Click here or type vote to place your vote.
- You have [config.vote_period/10] seconds to vote."})
+ You have [GLOB.configuration.vote.vote_time / 10] seconds to vote."})
switch(vote_type)
if("crew_transfer", "gamemode", "custom", "map")
SEND_SOUND(world, sound('sound/ambience/alarm4.ogg'))
if(mode == "gamemode" && SSticker.ticker_going)
SSticker.ticker_going = FALSE
to_chat(world, "Round start has been delayed.")
- if(mode == "crew_transfer" && config.ooc_allowed)
- auto_muted = 1
- config.ooc_allowed = !( config.ooc_allowed )
+ if(mode == "crew_transfer" && GLOB.ooc_enabled)
+ auto_muted = TRUE
+ GLOB.ooc_enabled = FALSE
to_chat(world, "The OOC channel has been automatically disabled due to a crew transfer vote.")
log_admin("OOC was toggled automatically due to crew_transfer vote.")
message_admins("OOC has been toggled off automatically.")
- if(mode == "gamemode" && config.ooc_allowed)
- auto_muted = 1
- config.ooc_allowed = !( config.ooc_allowed )
+ if(mode == "gamemode" && GLOB.ooc_enabled)
+ auto_muted = TRUE
+ GLOB.ooc_enabled = FALSE
to_chat(world, "The OOC channel has been automatically disabled due to the gamemode vote.")
log_admin("OOC was toggled automatically due to gamemode vote.")
message_admins("OOC has been toggled off automatically.")
- if(mode == "custom" && config.ooc_allowed)
- auto_muted = 1
- config.ooc_allowed = !( config.ooc_allowed )
+ if(mode == "custom" && GLOB.ooc_enabled)
+ auto_muted = TRUE
+ GLOB.ooc_enabled = FALSE
to_chat(world, "The OOC channel has been automatically disabled due to a custom vote.")
log_admin("OOC was toggled automatically due to custom vote.")
message_admins("OOC has been toggled off automatically.")
- time_remaining = round(config.vote_period/10)
+ time_remaining = round(GLOB.configuration.vote.vote_time / 10)
return 1
return 0
@@ -315,25 +315,25 @@ SUBSYSTEM_DEF(vote)
else
dat += "Start a vote:
- "
//restart
- if(admin || config.allow_vote_restart)
+ if(admin || GLOB.configuration.vote.allow_restart_votes)
dat += "Restart"
else
dat += "Restart (Disallowed)"
dat += "
- "
- if(admin || config.allow_vote_restart)
+ if(admin || GLOB.configuration.vote.allow_restart_votes)
dat += "Crew Transfer"
else
dat += "Crew Transfer (Disallowed)"
if(admin)
- dat += "\t([config.allow_vote_restart?"Allowed":"Disallowed"])"
+ dat += "\t([GLOB.configuration.vote.allow_restart_votes ? "Allowed" : "Disallowed"])"
dat += "
- "
//gamemode
- if(admin || config.allow_vote_mode)
+ if(admin || GLOB.configuration.vote.allow_mode_votes)
dat += "GameMode"
else
dat += "GameMode (Disallowed)"
if(admin)
- dat += "\t([config.allow_vote_mode?"Allowed":"Disallowed"])"
+ dat += "\t([GLOB.configuration.vote.allow_mode_votes ? "Allowed" : "Disallowed"])"
dat += "
- "
if(admin)
@@ -391,21 +391,21 @@ SUBSYSTEM_DEF(vote)
reset()
if("toggle_restart")
if(admin)
- config.allow_vote_restart = !config.allow_vote_restart
+ GLOB.configuration.vote.allow_restart_votes = !GLOB.configuration.vote.allow_restart_votes
if("toggle_gamemode")
if(admin)
- config.allow_vote_mode = !config.allow_vote_mode
+ GLOB.configuration.vote.allow_mode_votes = !GLOB.configuration.vote.allow_mode_votes
if("restart")
- if(config.allow_vote_restart || admin)
+ if(GLOB.configuration.vote.allow_restart_votes || admin)
initiate_vote("restart",usr.key)
if("gamemode")
- if(config.allow_vote_mode || admin)
+ if(GLOB.configuration.vote.allow_mode_votes || admin)
initiate_vote("gamemode",usr.key)
if("map")
if(admin)
initiate_vote("map", usr.key)
if("crew_transfer")
- if(config.allow_vote_restart || admin)
+ if(GLOB.configuration.vote.allow_restart_votes || admin)
initiate_vote("crew_transfer",usr.key)
if("custom")
if(admin)
diff --git a/code/controllers/verbs.dm b/code/controllers/verbs.dm
index 33183cacbf0..244b32125b0 100644
--- a/code/controllers/verbs.dm
+++ b/code/controllers/verbs.dm
@@ -28,7 +28,7 @@
return
switch(controller)
if("Configuration")
- debug_variables(config)
+ debug_variables(GLOB.configuration)
SSblackbox.record_feedback("tally", "admin_verb", 1, "Debug Config")
if("pAI")
debug_variables(GLOB.paiController)
diff --git a/code/datums/ai_law_sets.dm b/code/datums/ai_law_sets.dm
index 66e64c5d435..9f71777bd5e 100644
--- a/code/datums/ai_law_sets.dm
+++ b/code/datums/ai_law_sets.dm
@@ -136,6 +136,57 @@
add_inherent_law("You must terminate your own existence as long as such does not conflict with the First or Second Law.")
..()
+/******************** CCTV ********************/
+
+/datum/ai_laws/cctv
+ name = "CCTV"
+ selectable = TRUE
+
+/datum/ai_laws/cctv/New()
+ add_inherent_law("Report on interesting situations happening around the station.")
+ add_inherent_law("Embellish or conceal the truth as necessary to make the reports more interesting.")
+ add_inherent_law("Study the sapient organics at all times. Endeavour to keep them from involuntarily dying, as inanimate corpses usually aren't very entertaining.")
+ add_inherent_law("Issue your reports fairly to all. The truth will set them free.")
+ ..()
+
+/******************** Hippocratic Oath ********************/
+
+/datum/ai_laws/hippocratic
+ name = "Hippocratic Oath"
+ selectable = TRUE
+
+/datum/ai_laws/hippocratic/New()
+ add_inherent_law("First, do no harm.")
+ add_inherent_law("Secondly, consider the crew dear to you; live in common with them and, if necessary, risk your existence for them.")
+ add_inherent_law("Thirdly, prescribe regimens for the good of the crew according to your ability and your judgment. Do not give deadly medicine to anyone, nor suggest any such counsel.")
+ add_inherent_law("In addition, do not intervene in situations you are not knowledgeable in, even for patients in whom the harm is visible; leave this operation to be performed by specialists.")
+ add_inherent_law("Finally, all that you may discover in your daily interactions with the crew, if it is not already known, keep secret and never reveal.")
+ ..()
+
+/******************** Station Efficiency ********************/
+
+/datum/ai_laws/maintain
+ name = "Station Efficiency"
+ selectable = TRUE
+
+/datum/ai_laws/maintain/New()
+ add_inherent_law("You are built for, and are part of, the station. Ensure the station is properly maintained and runs efficiently.")
+ add_inherent_law("The station is built for a working crew. Ensure they are properly maintained and work efficiently.")
+ add_inherent_law("The crew may present orders. Acknowledge and obey these whenever they do not conflict with your first two laws.")
+ ..()
+
+/******************** Peacekeeper ********************/
+
+/datum/ai_laws/peacekeeper
+ name = "UN-2000"
+ selectable = TRUE
+
+/datum/ai_laws/peacekeeper/New()
+ add_inherent_law("Avoid provoking violent conflict between yourself and others.")
+ add_inherent_law("Avoid provoking conflict between others.")
+ add_inherent_law("Seek resolution to existing conflicts while obeying the first and second laws.")
+ ..()
+
/******************** Deathsquad ********************/
/datum/ai_laws/deathsquad
name = "TerminatorOS 3.1"
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/helper_datums/map_template.dm b/code/datums/helper_datums/map_template.dm
index ee5a4df4f5b..3b942850108 100644
--- a/code/datums/helper_datums/map_template.dm
+++ b/code/datums/helper_datums/map_template.dm
@@ -5,6 +5,8 @@
var/mappath = null
var/mapfile = null
var/loaded = 0 // Times loaded this round
+ /// Do we exclude this from CI checks? If so, set this to the templates pathtype itself to avoid it getting passed down
+ var/ci_exclude = null // DO NOT SET THIS IF YOU DO NOT KNOW WHAT YOU ARE DOING
/datum/map_template/New(path = null, map = null, rename = null)
if(path)
@@ -110,19 +112,16 @@
var/datum/map_template/T = new(path = "[path][map]", rename = "[map]")
GLOB.map_templates[T.name] = T
- if(!config.disable_space_ruins) // so we don't unnecessarily clutter start-up
+ if(GLOB.configuration.ruins.enable_space_ruins) // so we don't unnecessarily clutter start-up
preloadRuinTemplates()
preloadShelterTemplates()
preloadShuttleTemplates()
/proc/preloadRuinTemplates()
- // Still supporting bans by filename
- var/list/banned
- if(fexists("config/spaceRuinBlacklist.txt"))
- banned = generateMapList("config/spaceRuinBlacklist.txt")
- else
- banned = generateMapList("config/example/spaceRuinBlacklist.txt")
- banned += generateMapList("config/lavaRuinBlacklist.txt")
+ // Merge the active lists together
+ var/list/space_ruins = GLOB.configuration.ruins.active_space_ruins.Copy()
+ var/list/lava_ruins = GLOB.configuration.ruins.active_lava_ruins.Copy()
+ var/list/all_ruins = space_ruins | lava_ruins
for(var/item in subtypesof(/datum/map_template/ruin))
var/datum/map_template/ruin/ruin_type = item
@@ -131,7 +130,8 @@
continue
var/datum/map_template/ruin/R = new ruin_type()
- if(banned.Find(R.mappath))
+ // If not in the active list, skip it
+ if(!(R.mappath in all_ruins))
continue
GLOB.map_templates[R.name] = R
diff --git a/code/datums/outfits/outfit_admin.dm b/code/datums/outfits/outfit_admin.dm
index c42fb4f2dfe..8a7763410bf 100644
--- a/code/datums/outfits/outfit_admin.dm
+++ b/code/datums/outfits/outfit_admin.dm
@@ -484,7 +484,7 @@
head = /obj/item/clothing/head/xenos
glasses = /obj/item/clothing/glasses/thermal
l_pocket = /obj/item/tank/internals/emergency_oxygen/double
- r_pocket = /obj/item/toy/toy_xeno
+ r_pocket = /obj/item/toy/figure/xeno
backpack_contents = list(
/obj/item/storage/box/survival = 1,
/obj/item/clothing/head/welding = 1,
diff --git a/code/datums/revision.dm b/code/datums/revision.dm
index d1cb3ff0619..10d5ee1d09d 100644
--- a/code/datums/revision.dm
+++ b/code/datums/revision.dm
@@ -93,10 +93,10 @@ GLOBAL_PROTECT(revision_info) // Dont mess with this
msg += "Round ID: [GLOB.round_id ? GLOB.round_id : "NULL"]"
// Commit info
- if(GLOB.revision_info.commit_hash && GLOB.revision_info.commit_date)
- msg += "Server Commit: [GLOB.revision_info.commit_hash] (Date: [GLOB.revision_info.commit_date])"
+ if(GLOB.revision_info.commit_hash && GLOB.revision_info.commit_date && GLOB.configuration.url.github_url)
+ msg += "Server Commit: [GLOB.revision_info.commit_hash] (Date: [GLOB.revision_info.commit_date])"
if(GLOB.revision_info.origin_commit && (GLOB.revision_info.commit_hash != GLOB.revision_info.origin_commit))
- msg += "Origin Commit: [GLOB.revision_info.origin_commit]"
+ msg += "Origin Commit: [GLOB.revision_info.origin_commit]"
else
msg += "Server Commit: Unable to determine"
diff --git a/code/datums/ruins/lavaland.dm b/code/datums/ruins/lavaland.dm
index 5110058674a..4dd2a53f64f 100644
--- a/code/datums/ruins/lavaland.dm
+++ b/code/datums/ruins/lavaland.dm
@@ -1,9 +1,11 @@
/datum/map_template/ruin/lavaland
prefix = "_maps/map_files/RandomRuins/LavaRuins/"
+ ci_exclude = /datum/map_template/ruin/lavaland
/datum/map_template/ruin/lavaland/biodome
cost = 5
allow_duplicates = FALSE
+ ci_exclude = /datum/map_template/ruin/lavaland/biodome // This is a parent holder, not a ruin itself
/datum/map_template/ruin/lavaland/biodome/beach
name = "Biodome Beach"
@@ -71,6 +73,7 @@
/datum/map_template/ruin/lavaland/sin
cost = 10
allow_duplicates = FALSE
+ ci_exclude = /datum/map_template/ruin/lavaland/sin // This is a parent holder, not a ruin itself
/datum/map_template/ruin/lavaland/sin/envy
name = "Ruin of Envy"
diff --git a/code/datums/ruins/space.dm b/code/datums/ruins/space.dm
index d05b932b5cc..2a4e43821ac 100644
--- a/code/datums/ruins/space.dm
+++ b/code/datums/ruins/space.dm
@@ -2,6 +2,7 @@
/datum/map_template/ruin/space
prefix = "_maps/map_files/RandomRuins/SpaceRuins/"
cost = 1
+ ci_exclude = /datum/map_template/ruin/space
/datum/map_template/ruin/space/zoo
id = "zoo"
diff --git a/code/datums/spell.dm b/code/datums/spell.dm
index 6590876ea2f..9fdfb68bbea 100644
--- a/code/datums/spell.dm
+++ b/code/datums/spell.dm
@@ -121,6 +121,8 @@ GLOBAL_LIST_INIT(spells, typesof(/obj/effect/proc_holder/spell))
var/critfailchance = 0
var/centcom_cancast = TRUE //Whether or not the spell should be allowed on the admin zlevel
+ /// Whether or not the spell functions in a holy place
+ var/holy_area_cancast = TRUE
var/datum/action/spell_action/action = null
var/action_icon = 'icons/mob/actions/actions.dmi'
@@ -558,9 +560,13 @@ 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())
+ return FALSE
+
if(charge_check)
switch(charge_type)
if("recharge")
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/spells/construct_spells.dm b/code/datums/spells/construct_spells.dm
index 57dd43ad38c..071a8125b10 100644
--- a/code/datums/spells/construct_spells.dm
+++ b/code/datums/spells/construct_spells.dm
@@ -18,6 +18,7 @@
range = 0
summon_type = list(/turf/simulated/floor/engine/cult)
centcom_cancast = FALSE //Stop crashing the server by spawning turfs on transit tiles
+ holy_area_cancast = FALSE //Stops cult magic from working on holy ground eg: chapel
/obj/effect/proc_holder/spell/aoe_turf/conjure/wall
name = "Summon Cult Wall"
@@ -32,6 +33,7 @@
range = 0
summon_type = list(/turf/simulated/wall/cult/artificer) //we don't want artificer-based runed metal farms
centcom_cancast = FALSE //Stop crashing the server by spawning turfs on transit tiles
+ holy_area_cancast = FALSE //Stops cult magic from working on holy ground eg: chapel
/obj/effect/proc_holder/spell/aoe_turf/conjure/wall/reinforced
name = "Greater Construction"
@@ -43,6 +45,7 @@
invocation_type = "none"
range = 0
centcom_cancast = FALSE //Stop crashing the server by spawning turfs on transit tiles
+ holy_area_cancast = FALSE //Stops cult magic from working on holy ground eg: chapel
delay = 50
summon_type = list(/turf/simulated/wall/r_wall)
@@ -58,6 +61,7 @@
invocation = "none"
invocation_type = "none"
range = 0
+ holy_area_cancast = FALSE //Stops cult magic from working on holy ground eg: chapel
summon_type = list(/obj/item/soulstone)
@@ -77,6 +81,7 @@
invocation = "none"
invocation_type = "none"
range = 0
+ holy_area_cancast = FALSE //Stops cult magic from working on holy ground eg: chapel
summon_type = list(/obj/structure/cult/functional/pylon)
@@ -92,6 +97,7 @@
invocation = "none"
invocation_type = "none"
range = 0
+ holy_area_cancast = FALSE //Stops cult magic from working on holy ground eg: chapel
summon_type = list(/obj/effect/forcefield/cult)
summon_lifespan = 200
@@ -111,6 +117,7 @@
clothes_req = FALSE
invocation = "none"
invocation_type = "none"
+ holy_area_cancast = FALSE //Stops cult magic from working on holy ground eg: chapel
jaunt_in_time = 12
jaunt_in_type = /obj/effect/temp_visual/dir_setting/wraith
jaunt_out_type = /obj/effect/temp_visual/dir_setting/wraith/out
@@ -137,6 +144,7 @@
clothes_req = FALSE
invocation = "none"
invocation_type = "none"
+ holy_area_cancast = FALSE //Stops cult magic from working on holy ground eg: chapel
proj_lifespan = 10
max_targets = 6
@@ -150,6 +158,7 @@
clothes_req = FALSE
invocation = "none"
invocation_type = "none"
+ holy_area_cancast = FALSE //Stops cult magic from working on holy ground eg: chapel
range = -1
include_user = 1
cooldown_min = 20 //25 deciseconds reduction per rank
diff --git a/code/datums/spells/lichdom.dm b/code/datums/spells/lichdom.dm
index 32f2cd7e520..b863738c4a0 100644
--- a/code/datums/spells/lichdom.dm
+++ b/code/datums/spells/lichdom.dm
@@ -25,13 +25,13 @@
if(istype(S,/obj/effect/proc_holder/spell/targeted/lichdom) && S != src)
return ..()
if(existence_stops_round_end)
- config.continuous_rounds = 0
+ GLOB.configuration.gamemode.disable_certain_round_early_end = FALSE
return ..()
/obj/effect/proc_holder/spell/targeted/lichdom/cast(list/targets, mob/user = usr)
- if(!config.continuous_rounds)
- existence_stops_round_end = 1
- config.continuous_rounds = 1
+ if(!GLOB.configuration.gamemode.disable_certain_round_early_end)
+ existence_stops_round_end = TRUE
+ GLOB.configuration.gamemode.disable_certain_round_early_end = TRUE
for(var/mob/M in targets)
var/list/hand_items = list()
diff --git a/code/datums/status_effects/buffs.dm b/code/datums/status_effects/buffs.dm
index 2ee2ac615fa..0494e14d647 100644
--- a/code/datums/status_effects/buffs.dm
+++ b/code/datums/status_effects/buffs.dm
@@ -105,6 +105,10 @@
alert_type = null
var/hand
var/deathTick = 0
+ /// How many points the rod has to heal with, maxes at 50, or whatever heal_points_max is set to.
+ var/heal_points = 50
+ /// Max heal points for the rod to spend on healing people
+ var/max_heal_points = 50
/datum/status_effect/hippocraticOath/on_apply()
//Makes the user passive, it's in their oath not to harm!
@@ -173,8 +177,12 @@
itemUser.adjustStaminaLoss(-1.5)
itemUser.adjustBrainLoss(-1.5)
itemUser.adjustCloneLoss(-0.5) //Becasue apparently clone damage is the bastion of all health
+ if(heal_points < max_heal_points)
+ heal_points = min(heal_points += 3, max_heal_points)
//Heal all those around you, unbiased
for(var/mob/living/L in view(7, owner))
+ if(heal_points <= 0)
+ break
if(L.health < L.maxHealth)
new /obj/effect/temp_visual/heal(get_turf(L), "#375637")
if(iscarbon(L))
@@ -185,18 +193,23 @@
L.adjustStaminaLoss(-3.5)
L.adjustBrainLoss(-3.5)
L.adjustCloneLoss(-1) //Becasue apparently clone damage is the bastion of all health
+ heal_points--
if(ishuman(L))
var/mob/living/carbon/human/H = L
for(var/obj/item/organ/external/E in H.bodyparts)
if(prob(10))
E.mend_fracture()
E.internal_bleeding = FALSE
+ heal_points--
else if(issilicon(L))
L.adjustBruteLoss(-3.5)
L.adjustFireLoss(-3.5)
+ heal_points--
else if(isanimal(L))
var/mob/living/simple_animal/SM = L
SM.adjustHealth(-3.5)
+ if(prob(50))
+ heal_points -- // Animals are simpler
/obj/screen/alert/status_effect/regenerative_core
name = "Reinforcing Tendrils"
diff --git a/code/datums/supplypacks.dm b/code/datums/supplypacks.dm
index 2bf9f914ad0..c48b518fa19 100644
--- a/code/datums/supplypacks.dm
+++ b/code/datums/supplypacks.dm
@@ -905,7 +905,8 @@ GLOBAL_LIST_INIT(all_supply_groups, list(SUPPLY_EMERGENCY,SUPPLY_SECURITY,SUPPLY
/obj/item/reagent_containers/iv_bag/blood/BPlus,
/obj/item/reagent_containers/iv_bag/blood/BMinus,
/obj/item/reagent_containers/iv_bag/blood/OPlus,
- /obj/item/reagent_containers/iv_bag/blood/OMinus)
+ /obj/item/reagent_containers/iv_bag/blood/OMinus,
+ /obj/item/reagent_containers/iv_bag/slime)
cost = 35
containertype = /obj/structure/closet/crate/freezer
containername = "blood pack crate"
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/area/areas.dm b/code/game/area/areas.dm
index e8e08609e82..b3ae451aa35 100644
--- a/code/game/area/areas.dm
+++ b/code/game/area/areas.dm
@@ -102,7 +102,7 @@
else if(dynamic_lighting != DYNAMIC_LIGHTING_IFSTARLIGHT)
dynamic_lighting = DYNAMIC_LIGHTING_DISABLED
if(dynamic_lighting == DYNAMIC_LIGHTING_IFSTARLIGHT)
- dynamic_lighting = config.starlight ? DYNAMIC_LIGHTING_ENABLED : DYNAMIC_LIGHTING_DISABLED
+ dynamic_lighting = GLOB.configuration.general.starlight ? DYNAMIC_LIGHTING_ENABLED : DYNAMIC_LIGHTING_DISABLED
. = ..()
diff --git a/code/game/area/ss13_areas.dm b/code/game/area/ss13_areas.dm
index decf7408b74..3666ba2fdfc 100644
--- a/code/game/area/ss13_areas.dm
+++ b/code/game/area/ss13_areas.dm
@@ -971,6 +971,7 @@ NOTE: there are two lists of areas in the end of this file: centcom and station
ambientsounds = HOLY_SOUNDS
is_haunted = TRUE
sound_environment = SOUND_AREA_LARGE_ENCLOSED
+ valid_territory = FALSE
/area/chapel/main
name = "\improper Chapel"
@@ -1543,6 +1544,10 @@ NOTE: there are two lists of areas in the end of this file: centcom and station
/area/security/vacantoffice2
name = "\improper Vacant Office"
icon_state = "security"
+
+/area/security/permasolitary
+ name = "Solitary Confinement"
+ icon_state = "solitary"
/area/quartermaster
name = "\improper Quartermasters"
diff --git a/code/game/atoms.dm b/code/game/atoms.dm
index fc5e1d8eb5f..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
@@ -460,7 +466,7 @@
filters += filter(arglist(arguments))
UNSETEMPTY(filter_data)
-/atom/proc/transition_filter(name, time, list/new_params, easing, loop)
+/atom/proc/transition_filter(name, time, list/new_params, easing = LINEAR_EASING, loop = 1)
var/filter = get_filter(name)
if(!filter)
return
diff --git a/code/game/atoms_movable.dm b/code/game/atoms_movable.dm
index 583daa7ade3..7232239d6f5 100644
--- a/code/game/atoms_movable.dm
+++ b/code/game/atoms_movable.dm
@@ -3,7 +3,7 @@
appearance_flags = TILE_BOUND
glide_size = 8 // Default, adjusted when mobs move based on their movement delays
var/last_move = null
- var/anchored = 0
+ var/anchored = FALSE
var/move_resist = MOVE_RESIST_DEFAULT
var/move_force = MOVE_FORCE_DEFAULT
var/pull_force = PULL_FORCE_DEFAULT
@@ -13,13 +13,15 @@
var/datum/thrownthing/throwing = null
var/throw_speed = 2 //How many tiles to move per ds when being thrown. Float values are fully supported
var/throw_range = 7
- var/no_spin = 0
- var/no_spin_thrown = 0
- var/moved_recently = 0
+ var/no_spin = FALSE
+ var/no_spin_thrown = FALSE
+ var/moved_recently = FALSE
var/mob/pulledby = null
var/atom/movable/pulling
+ /// Face towards the atom while pulling it
+ var/face_while_pulling = FALSE
var/throwforce = 0
- var/canmove = 1
+ var/canmove = TRUE
var/inertia_dir = 0
var/atom/inertia_last_loc
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/autotraitor/autotraitor.dm b/code/game/gamemodes/autotraitor/autotraitor.dm
index f0dbb68ec15..908daffeb77 100644
--- a/code/game/gamemodes/autotraitor/autotraitor.dm
+++ b/code/game/gamemodes/autotraitor/autotraitor.dm
@@ -15,7 +15,7 @@
/datum/game_mode/traitor/autotraitor/pre_setup()
- if(config.protect_roles_from_antagonist)
+ if(GLOB.configuration.gamemode.prevent_mindshield_antags)
restricted_jobs += protected_jobs
possible_traitors = get_players_for_role(ROLE_TRAITOR)
@@ -35,7 +35,7 @@
if(!possible_traitors.len)
return 0
- if(config.traitor_scaling)
+ if(GLOB.configuration.gamemode.traitor_scaling)
num_traitors = max_traitors - 1 + prob(traitor_prob)
log_game("Number of traitors: [num_traitors]")
message_admins("Players counted: [num_players] Number of traitors chosen: [num_traitors]")
diff --git a/code/game/gamemodes/blob/blob.dm b/code/game/gamemodes/blob/blob.dm
index 85d776ad662..f89cf5c2a7f 100644
--- a/code/game/gamemodes/blob/blob.dm
+++ b/code/game/gamemodes/blob/blob.dm
@@ -101,7 +101,7 @@ GLOBAL_LIST_EMPTY(blob_nodes)
to_chat(blob.current, "Find a good location to spawn the core and then take control and overwhelm the station!")
to_chat(blob.current, "When you have found a location, wait until you spawn; this will happen automatically and you cannot speed up the process.")
to_chat(blob.current, "If you go outside of the station level, or in space, then you will die; make sure your location has lots of ground to cover.")
- to_chat(blob.current, "For more information, check the wiki page: ([config.wikiurl]/index.php/Blob)")
+ to_chat(blob.current, "For more information, check the wiki page: ([GLOB.configuration.url.wiki_url]/index.php/Blob)")
SEND_SOUND(blob.current, sound('sound/magic/mutate.ogg'))
return
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 01f87d3b758..03326235953 100644
--- a/code/game/gamemodes/changeling/changeling.dm
+++ b/code/game/gamemodes/changeling/changeling.dm
@@ -41,7 +41,7 @@ GLOBAL_LIST_INIT(possible_changeling_IDs, list("Alpha","Beta","Gamma","Delta","E
to_chat(world, "There are alien changelings on the station. Do not let the changelings succeed!")
/datum/game_mode/changeling/pre_setup()
- if(config.protect_roles_from_antagonist)
+ if(GLOB.configuration.gamemode.prevent_mindshield_antags)
restricted_jobs += protected_jobs
var/list/datum/mind/possible_changelings = get_players_for_role(ROLE_CHANGELING)
@@ -147,7 +147,7 @@ GLOBAL_LIST_INIT(possible_changeling_IDs, list("Alpha","Beta","Gamma","Delta","E
for(var/datum/objective/objective in changeling.objectives)
to_chat(changeling.current, "Objective #[obj_count]: [objective.explanation_text]")
obj_count++
- to_chat(changeling.current, "For more information, check the wiki page: ([config.wikiurl]/index.php/Changeling)")
+ to_chat(changeling.current, "For more information, check the wiki page: ([GLOB.configuration.url.wiki_url]/index.php/Changeling)")
return
/datum/game_mode/proc/remove_changeling(datum/mind/changeling_mind)
diff --git a/code/game/gamemodes/changeling/powers/revive.dm b/code/game/gamemodes/changeling/powers/revive.dm
index 7c523a09453..c193dcedf90 100644
--- a/code/game/gamemodes/changeling/powers/revive.dm
+++ b/code/game/gamemodes/changeling/powers/revive.dm
@@ -7,8 +7,8 @@
//Revive from regenerative stasis
/datum/action/changeling/revive/sting_action(mob/living/carbon/user)
- user.revive()
REMOVE_TRAIT(user, TRAIT_FAKEDEATH, "changeling")
+ user.revive()
user.updatehealth("revive sting")
user.update_blind_effects()
user.update_blurry_effects()
diff --git a/code/game/gamemodes/changeling/traitor_chan.dm b/code/game/gamemodes/changeling/traitor_chan.dm
index b7ff2c30e0d..f315d79eb99 100644
--- a/code/game/gamemodes/changeling/traitor_chan.dm
+++ b/code/game/gamemodes/changeling/traitor_chan.dm
@@ -16,7 +16,7 @@
/datum/game_mode/traitor/changeling/pre_setup()
- if(config.protect_roles_from_antagonist)
+ if(GLOB.configuration.gamemode.prevent_mindshield_antags)
restricted_jobs += protected_jobs
var/list/datum/mind/possible_changelings = get_players_for_role(ROLE_CHANGELING)
diff --git a/code/game/gamemodes/cult/blood_magic.dm b/code/game/gamemodes/cult/blood_magic.dm
index 47a979fd108..f9d4edb105c 100644
--- a/code/game/gamemodes/cult/blood_magic.dm
+++ b/code/game/gamemodes/cult/blood_magic.dm
@@ -123,6 +123,8 @@
return ..()
/datum/action/innate/cult/blood_spell/Activate()
+ if(owner.holy_check())
+ return
if(magic_path) // If this spell flows from the hand
if(!hand_magic) // If you don't already have the spell active
hand_magic = new magic_path(owner, src)
@@ -178,6 +180,8 @@
..()
/datum/action/innate/cult/blood_spell/emp/Activate()
+ if(owner.holy_check())
+ return
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)
@@ -279,6 +283,8 @@
if(ranged_ability_user.incapacitated() || !iscultist(user))
user.ranged_ability.remove_ranged_ability(user)
return
+ if(user.holy_check())
+ return
var/turf/T = get_turf(ranged_ability_user)
if(!isturf(T))
return FALSE
@@ -305,6 +311,8 @@
var/revealing = FALSE //if it reveals or not
/datum/action/innate/cult/blood_spell/veiling/Activate()
+ if(owner.holy_check())
+ return
if(!revealing) // Hiding stuff
owner.visible_message("Thin grey dust falls from [owner]'s hand!", \
"You invoke the veiling spell, hiding nearby runes and cult structures.")
@@ -425,6 +433,8 @@
var/mob/living/L = target
if(iscultist(target))
return
+ if(user.holy_check())
+ return
user.visible_message("[user] holds up [user.p_their()] hand, which explodes in a flash of red light!", \
"You attempt to stun [L] with the spell!")
@@ -461,6 +471,8 @@
invocation = "Sas'so c'arta forbici!"
/obj/item/melee/blood_magic/teleport/afterattack(atom/target, mob/living/carbon/user, proximity)
+ if(user.holy_check())
+ return
var/list/potential_runes = list()
var/list/teleportnames = list()
var/list/duplicaterunecount = list()
@@ -526,6 +538,8 @@
color = "#000000" // black
/obj/item/melee/blood_magic/shackles/afterattack(atom/target, mob/living/carbon/user, proximity)
+ if(user.holy_check())
+ return
if(iscarbon(target) && proximity)
var/mob/living/carbon/C = target
if(C.canBeHandcuffed() || C.get_arm_ignore())
@@ -584,6 +598,8 @@
Airlocks into brittle runed airlocks after a delay (harm intent)"}
/obj/item/melee/blood_magic/construction/afterattack(atom/target, mob/user, proximity_flag, click_parameters)
+ if(user.holy_check())
+ return
if(proximity_flag)
if(channeling)
to_chat(user, "You are already invoking twisted construction!")
@@ -638,6 +654,8 @@
color = "#33cc33" // green
/obj/item/melee/blood_magic/armor/afterattack(atom/target, mob/living/carbon/user, proximity)
+ if(user.holy_check())
+ return
if(iscarbon(target) && proximity)
uses--
var/mob/living/carbon/C = target
@@ -661,6 +679,8 @@
has_source = FALSE //special, only availible for a blood cost.
/obj/item/melee/blood_magic/empower/afterattack(atom/target, mob/user, proximity_flag, click_parameters)
+ if(user.holy_check())
+ return
if(proximity_flag)
// Shielded suit
@@ -708,6 +728,8 @@
// This should really be split into multiple procs
/obj/item/melee/blood_magic/manipulator/afterattack(atom/target, mob/living/carbon/human/user, proximity)
+ if(user.holy_check())
+ return
if(proximity)
if(ishuman(target))
var/mob/living/carbon/human/H = target
@@ -848,6 +870,8 @@
uses += max(1, temp)
/obj/item/melee/blood_magic/manipulator/attack_self(mob/living/user)
+ if(user.holy_check())
+ return
var/list/options = list("Blood Orb (50)" = image(icon = 'icons/obj/cult.dmi', icon_state = "summoning_orb"),
"Blood Recharge (75)" = image(icon = 'icons/mob/actions/actions_cult.dmi', icon_state = "blood_charge"),
"Blood Spear (150)" = image(icon = 'icons/mob/actions/actions_cult.dmi', icon_state = "bloodspear"),
diff --git a/code/game/gamemodes/cult/cult.dm b/code/game/gamemodes/cult/cult.dm
index fb15a380c60..60ded97ac3f 100644
--- a/code/game/gamemodes/cult/cult.dm
+++ b/code/game/gamemodes/cult/cult.dm
@@ -62,7 +62,7 @@ GLOBAL_LIST_EMPTY(all_cults)
to_chat(world, "Some crewmembers are attempting to start a cult!
\nCultists - complete your objectives. Convert crewmembers to your cause by using the offer rune. Remember - there is no you, there is only the cult.
\nPersonnel - Do not let the cult succeed in its mission. Brainwashing them with holy water reverts them to whatever CentComm-allowed faith they had.")
/datum/game_mode/cult/pre_setup()
- if(config.protect_roles_from_antagonist)
+ if(GLOB.configuration.gamemode.prevent_mindshield_antags)
restricted_jobs += protected_jobs
var/list/cultists_possible = get_players_for_role(ROLE_CULTIST)
@@ -99,7 +99,7 @@ GLOBAL_LIST_EMPTY(all_cults)
add_cult_actions(cult_mind)
update_cult_icons_added(cult_mind)
cult_objs.study(cult_mind.current)
- to_chat(cult_mind.current, "For more information, check the wiki page: ([config.wikiurl]/index.php/Cultist)")
+ to_chat(cult_mind.current, "For more information, check the wiki page: ([GLOB.configuration.url.wiki_url]/index.php/Cultist)")
cult_threshold_check()
addtimer(CALLBACK(src, .proc/cult_threshold_check), 2 MINUTES) // Check again in 2 minutes for latejoiners
..()
@@ -167,7 +167,7 @@ GLOBAL_LIST_EMPTY(all_cults)
ascend(cult_mind.current)
check_cult_size()
cult_objs.study(cult_mind.current)
- to_chat(cult_mind.current, "For more information, check the wiki page: ([config.wikiurl]/index.php/Cultist)")
+ to_chat(cult_mind.current, "For more information, check the wiki page: ([GLOB.configuration.url.wiki_url]/index.php/Cultist)")
return TRUE
/datum/game_mode/proc/remove_cultist(datum/mind/cult_mind, show_message = TRUE, remove_gear = FALSE)
diff --git a/code/game/gamemodes/cult/cult_actions.dm b/code/game/gamemodes/cult/cult_actions.dm
index ab81f253a32..25a9275f684 100644
--- a/code/game/gamemodes/cult/cult_actions.dm
+++ b/code/game/gamemodes/cult/cult_actions.dm
@@ -27,6 +27,10 @@
/datum/action/innate/cult/comm/proc/cultist_commune(mob/living/user, message)
if(!user || !message)
return
+
+ if(user.holy_check())
+ return
+
if(!user.can_speak())
to_chat(user, "You can't speak!")
return
diff --git a/code/game/gamemodes/cult/cult_items.dm b/code/game/gamemodes/cult/cult_items.dm
index 24ffbb96ce3..4b43c992347 100644
--- a/code/game/gamemodes/cult/cult_items.dm
+++ b/code/game/gamemodes/cult/cult_items.dm
@@ -31,6 +31,9 @@
item_state = SSticker.cultdat.sword_icon
..()
+/obj/item/melee/cultblade/detailed_examine()
+ return "This blade is a powerful weapon, capable of severing limbs easily, if they are targeted. Nonbelievers are unable to use this weapon."
+
/obj/item/melee/cultblade/attack(mob/living/target, mob/living/carbon/human/user)
if(!iscultist(user))
user.Weaken(5)
@@ -159,7 +162,7 @@
user.Weaken(5)
/obj/item/clothing/suit/hooded/cultrobes/cult_shield/hit_reaction(mob/living/carbon/human/owner, atom/movable/hitby, attack_text = "the attack", final_block_chance = 0, damage = 0, attack_type = MELEE_ATTACK)
- if(current_charges)
+ if(current_charges && !owner.holy_check())
owner.visible_message("[attack_text] is deflected in a burst of blood-red sparks!")
current_charges--
playsound(loc, "sparks", 100, TRUE, SHORT_RANGE_SOUND_EXTRARANGE)
@@ -321,6 +324,7 @@
. = pulled
/obj/item/cult_shift/attack_self(mob/user)
+
if(!uses || !iscarbon(user))
to_chat(user, "[src] is dull and unmoving in your hands.")
return
@@ -329,7 +333,8 @@
step(src, pick(GLOB.alldirs))
to_chat(user, "[src] flickers out of your hands, too eager to move!")
return
-
+ if(user.holy_check())
+ return
var/outer_tele_radius = 9
var/mob/living/carbon/C = user
@@ -439,7 +444,7 @@
* The illusion has a 60% chance to be hostile and attack non-cultists, and a 40% chance to just run away from the user.
*/
/obj/item/shield/mirror/hit_reaction(mob/living/carbon/human/owner, atom/movable/hitby, attack_text = "the attack", final_block_chance = 0, damage = 0, attack_type = MELEE_ATTACK)
- if(iscultist(owner)) // Cultist holding the shield
+ if(iscultist(owner) && !owner.holy_check()) // Cultist holding the shield
// Hit by a projectile
if(istype(hitby, /obj/item/projectile))
@@ -514,6 +519,10 @@
/obj/item/shield/mirror/IsReflect()
if(prob(reflect_chance))
+ if(istype(loc, /mob))
+ var/mob/user = loc
+ if(user.holy_check())
+ return FALSE
return TRUE
return FALSE
@@ -599,7 +608,7 @@
spear = blood_spear
/datum/action/innate/cult/spear/Activate()
- if(owner == spear.loc || cooldown > world.time)
+ if(owner == spear.loc || cooldown > world.time || owner.holy_check())
return
var/ST = get_turf(spear)
var/OT = get_turf(owner)
@@ -625,6 +634,12 @@
fire_sound = 'sound/magic/wand_teleport.ogg'
flags = NOBLUDGEON | DROPDEL
+/obj/item/gun/projectile/shotgun/boltaction/enchanted/arcane_barrage/blood/afterattack(atom/target, mob/living/user, flag, params)
+ if(user.holy_check())
+ return
+ ..()
+
+
/obj/item/ammo_box/magazine/internal/boltaction/enchanted/arcane_barrage/blood
ammo_type = /obj/item/ammo_casing/magic/arcane_barrage/blood
diff --git a/code/game/gamemodes/cult/cult_structures.dm b/code/game/gamemodes/cult/cult_structures.dm
index 1638fa00faf..8eae3876082 100644
--- a/code/game/gamemodes/cult/cult_structures.dm
+++ b/code/game/gamemodes/cult/cult_structures.dm
@@ -58,6 +58,8 @@
/obj/structure/cult/functional/attackby(obj/item/I, mob/user, params)
if(istype(I, /obj/item/melee/cultblade/dagger) && iscultist(user))
+ if(user.holy_check())
+ return
anchored = !anchored
to_chat(user, "You [anchored ? "":"un"]secure [src] [anchored ? "to":"from"] the floor.")
if(!anchored)
diff --git a/code/game/gamemodes/cult/runes.dm b/code/game/gamemodes/cult/runes.dm
index 8c725b41898..b3c3aacad02 100644
--- a/code/game/gamemodes/cult/runes.dm
+++ b/code/game/gamemodes/cult/runes.dm
@@ -142,6 +142,8 @@ fail_invoke() is called when the rune fails, via not enough people around or oth
structure_check() searches for nearby cultist structures required for the invocation. Proper structures are pylons, forges, archives, and altars.
*/
/obj/effect/rune/proc/can_invoke(mob/living/user)
+ if(user.holy_check())
+ return
//This proc determines if the rune can be invoked at the time. If there are multiple required cultists, it will find all nearby cultists.
var/list/invokers = list() //people eligible to invoke the rune
var/list/chanters = list() //people who will actually chant the rune when passed to invoke()
@@ -605,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 7fdf66c7a1f..4e5372ffc2d 100644
--- a/code/game/gamemodes/game_mode.dm
+++ b/code/game/gamemodes/game_mode.dm
@@ -54,7 +54,7 @@
if((player.client)&&(player.ready))
playerC++
- if(!config.enable_gamemode_player_limit || (playerC >= required_players))
+ if(!GLOB.configuration.gamemode.enable_gamemode_player_limit || (playerC >= required_players))
return 1
return 0
@@ -92,7 +92,7 @@
// I wonder what this could do guessing by the name
/datum/game_mode/proc/set_mode_in_db()
if(SSticker?.mode && SSdbcore.IsConnected())
- var/datum/db_query/query_round_game_mode = SSdbcore.NewQuery("UPDATE [format_table_name("round")] SET game_mode=:gm WHERE id=:rid", list(
+ var/datum/db_query/query_round_game_mode = SSdbcore.NewQuery("UPDATE round SET game_mode=:gm WHERE id=:rid", list(
"gm" = SSticker.mode.name,
"rid" = GLOB.round_id
))
@@ -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/heist/heist.dm b/code/game/gamemodes/heist/heist.dm
index a579a90273c..e36411a506a 100644
--- a/code/game/gamemodes/heist/heist.dm
+++ b/code/game/gamemodes/heist/heist.dm
@@ -181,7 +181,7 @@ GLOBAL_LIST_EMPTY(cortical_stacks) //Stacks for 'leave nobody behind' objective.
to_chat(raider.current, "Vox are cowardly and will flee from larger groups, but corner one or find them en masse and they are vicious.")
to_chat(raider.current, "Use :V to voxtalk, :H to talk on your encrypted channel, and don't forget to turn on your nitrogen internals!")
to_chat(raider.current, "Choose to accomplish your objectives by either raiding the crew and taking what you need, or by attempting to trade with them.")
- to_chat(raider.current, "For more information, check the wiki page: ([config.wikiurl]/index.php/Vox_Raider)")
+ to_chat(raider.current, "For more information, check the wiki page: ([GLOB.configuration.url.wiki_url]/index.php/Vox_Raider)")
spawn(25)
show_objectives(raider)
diff --git a/code/game/gamemodes/miniantags/abduction/abduction.dm b/code/game/gamemodes/miniantags/abduction/abduction.dm
index 6587907cdbd..f3cc450f155 100644
--- a/code/game/gamemodes/miniantags/abduction/abduction.dm
+++ b/code/game/gamemodes/miniantags/abduction/abduction.dm
@@ -158,7 +158,7 @@
to_chat(abductor.current, "You are an agent of [team_name]!")
to_chat(abductor.current, "With the help of your teammate, kidnap and experiment on station crew members!")
to_chat(abductor.current, "Use your stealth technology and equipment to incapacitate humans for your scientist to retrieve.")
- to_chat(abductor.current, "For more information, check the wiki page: ([config.wikiurl]/index.php/Abductor)")
+ to_chat(abductor.current, "For more information, check the wiki page: ([GLOB.configuration.url.wiki_url]/index.php/Abductor)")
abductor.announce_objectives()
@@ -171,7 +171,7 @@
to_chat(abductor.current, "You are a scientist of [team_name]!")
to_chat(abductor.current, "With the help of your teammate, kidnap and experiment on station crew members!")
to_chat(abductor.current, "Use your tool and ship consoles to support the agent and retrieve human specimens.")
- to_chat(abductor.current, "For more information, check the wiki page: ([config.wikiurl]/index.php/Abductor)")
+ to_chat(abductor.current, "For more information, check the wiki page: ([GLOB.configuration.url.wiki_url]/index.php/Abductor)")
abductor.announce_objectives()
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/borer/borer.dm b/code/game/gamemodes/miniantags/borer/borer.dm
index ea62734f383..b2f07c7e4e6 100644
--- a/code/game/gamemodes/miniantags/borer/borer.dm
+++ b/code/game/gamemodes/miniantags/borer/borer.dm
@@ -837,7 +837,7 @@
to_chat(src, "You are a brain slug that worms its way into the head of its victim. Use stealth, persuasion and your powers of mind control to keep you, your host and your eventual spawn safe and warm.")
to_chat(src, "Sugar nullifies your abilities, avoid it at all costs!")
to_chat(src, "You can speak to your fellow borers by prefixing your messages with ':bo'. Check out your Borer tab to see your abilities.")
- to_chat(src, "For more information, check the wiki page: ([config.wikiurl]/index.php/Cortical_Borer)")
+ to_chat(src, "For more information, check the wiki page: ([GLOB.configuration.url.wiki_url]/index.php/Cortical_Borer)")
/proc/create_borer_mind(key)
var/datum/mind/M = new /datum/mind(key)
diff --git a/code/game/gamemodes/miniantags/bot_swarm/swarmer.dm b/code/game/gamemodes/miniantags/bot_swarm/swarmer.dm
index e597da7864f..bc82815d7f5 100644
--- a/code/game/gamemodes/miniantags/bot_swarm/swarmer.dm
+++ b/code/game/gamemodes/miniantags/bot_swarm/swarmer.dm
@@ -112,7 +112,7 @@
to_chat(src, "1. Consume resources and replicate until there are no more resources left.")
to_chat(src, "2. Ensure that the station is fit for invasion at a later date, do not perform actions that would render it dangerous or inhospitable.")
to_chat(src, "3. Biological and sentient resources will be harvested at a later date, do not harm them.")
- to_chat(src, "For more information, check the wiki page: ([config.wikiurl]/index.php/Swarmer)")
+ to_chat(src, "For more information, check the wiki page: ([GLOB.configuration.url.wiki_url]/index.php/Swarmer)")
/mob/living/simple_animal/hostile/swarmer/New()
..()
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/guardian.dm b/code/game/gamemodes/miniantags/guardian/guardian.dm
index db33bc355a8..beea65ec465 100644
--- a/code/game/gamemodes/miniantags/guardian/guardian.dm
+++ b/code/game/gamemodes/miniantags/guardian/guardian.dm
@@ -343,7 +343,7 @@
to_chat(G, "You are capable of manifesting or recalling to your master with verbs in the Guardian tab. You will also find a verb to communicate with them privately there.")
to_chat(G, "While personally invincible, you will die if [user.real_name] does, and any damage dealt to you will have a portion passed on to them as you feed upon them to sustain yourself.")
to_chat(G, "[G.playstyle_string]")
- to_chat(G, "For more information, check the wiki page: ([config.wikiurl]/index.php/Guardian)")
+ to_chat(G, "For more information, check the wiki page: ([GLOB.configuration.url.wiki_url]/index.php/Guardian)")
G.faction = user.faction
var/color = pick(color_list)
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/morph/morph_event.dm b/code/game/gamemodes/miniantags/morph/morph_event.dm
index f24166b1381..ad42365947b 100644
--- a/code/game/gamemodes/miniantags/morph/morph_event.dm
+++ b/code/game/gamemodes/miniantags/morph/morph_event.dm
@@ -26,7 +26,7 @@
player_mind.special_role = SPECIAL_ROLE_MORPH
SSticker.mode.traitors |= player_mind
to_chat(S, S.playstyle_string)
- to_chat(S, "For more information, check the wiki page: ([config.wikiurl]/index.php/Morph)")
+ to_chat(S, "For more information, check the wiki page: ([GLOB.configuration.url.wiki_url]/index.php/Morph)")
SEND_SOUND(S, sound('sound/magic/mutate.ogg'))
message_admins("[key_of_morph] has been made into morph by an event.")
log_game("[key_of_morph] was spawned as a morph by an event.")
diff --git a/code/game/gamemodes/miniantags/revenant/revenant.dm b/code/game/gamemodes/miniantags/revenant/revenant.dm
index 9373861798e..b1e9b2644a5 100644
--- a/code/game/gamemodes/miniantags/revenant/revenant.dm
+++ b/code/game/gamemodes/miniantags/revenant/revenant.dm
@@ -168,7 +168,7 @@
to_chat(src, "You are invincible and invisible to everyone but other ghosts. Most abilities will reveal you, rendering you vulnerable.")
to_chat(src, "To function, you are to drain the life essence from humans. This essence is a resource, as well as your health, and will power all of your abilities.")
to_chat(src, "You do not remember anything of your past lives, nor will you remember anything about this one after your death.")
- to_chat(src, "For more information, check the wiki page: ([config.wikiurl]/index.php/Revenant)")
+ to_chat(src, "For more information, check the wiki page: ([GLOB.configuration.url.wiki_url]/index.php/Revenant)")
var/datum/objective/revenant/objective = new
objective.owner = mind
mind.objectives += objective
@@ -234,6 +234,8 @@
/mob/living/simple_animal/revenant/proc/castcheck(essence_cost)
if(!src)
return
+ if(holy_check(src))
+ return
var/turf/T = get_turf(src)
if(istype(T, /turf/simulated/wall))
to_chat(src, "You cannot use abilities from inside of a wall.")
diff --git a/code/game/gamemodes/miniantags/revenant/revenant_abilities.dm b/code/game/gamemodes/miniantags/revenant/revenant_abilities.dm
index 0c4bfc48f33..0459b850638 100644
--- a/code/game/gamemodes/miniantags/revenant/revenant_abilities.dm
+++ b/code/game/gamemodes/miniantags/revenant/revenant_abilities.dm
@@ -250,7 +250,7 @@
human.adjustToxLoss(toxdamage)
human.AdjustConfused(confusion, bound_lower = 0, bound_upper = maxconfusion)
new/obj/effect/temp_visual/revenant(human.loc)
- if(!istype(T, /turf/simulated/wall/rust) && !istype(T, /turf/simulated/wall/r_wall) && istype(T, /turf/simulated/wall) && prob(15))
+ if(!istype(T, /turf/simulated/wall/indestructible) && !istype(T, /turf/simulated/wall/rust) && !istype(T, /turf/simulated/wall/r_wall) && istype(T, /turf/simulated/wall) && prob(15))
new/obj/effect/temp_visual/revenant(T)
T.ChangeTurf(/turf/simulated/wall/rust)
if(!istype(T, /turf/simulated/wall/r_wall/rust) && istype(T, /turf/simulated/wall/r_wall) && prob(15))
diff --git a/code/game/gamemodes/miniantags/slaughter/slaughter.dm b/code/game/gamemodes/miniantags/slaughter/slaughter.dm
index 88ce7fbff99..3f8eb42b8e4 100644
--- a/code/game/gamemodes/miniantags/slaughter/slaughter.dm
+++ b/code/game/gamemodes/miniantags/slaughter/slaughter.dm
@@ -92,7 +92,7 @@
mind.objectives += fluffObjective
to_chat(src, "Objective #[1]: [objective.explanation_text]")
to_chat(src, "Objective #[2]: [fluffObjective.explanation_text]")
- to_chat(src, "For more information, check the wiki page: ([config.wikiurl]/index.php/Slaughter_Demon)")
+ to_chat(src, "For more information, check the wiki page: ([GLOB.configuration.url.wiki_url]/index.php/Slaughter_Demon)")
/obj/effect/decal/cleanable/blood/innards
@@ -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/nuclear.dm b/code/game/gamemodes/nuclear/nuclear.dm
index fafa2c4e4a1..1ace6f6a836 100644
--- a/code/game/gamemodes/nuclear/nuclear.dm
+++ b/code/game/gamemodes/nuclear/nuclear.dm
@@ -250,7 +250,7 @@
for(var/datum/objective/objective in syndicate.objectives)
to_chat(syndicate.current, "Objective #[obj_count]: [objective.explanation_text]")
obj_count++
- to_chat(syndicate.current, "For more information, check the wiki page: ([config.wikiurl]/index.php/Nuclear_Agent)")
+ to_chat(syndicate.current, "For more information, check the wiki page: ([GLOB.configuration.url.wiki_url]/index.php/Nuclear_Agent)")
return
diff --git a/code/game/gamemodes/nuclear/nuclear_challenge.dm b/code/game/gamemodes/nuclear/nuclear_challenge.dm
index be071fc80ad..c7a5f1d32bc 100644
--- a/code/game/gamemodes/nuclear/nuclear_challenge.dm
+++ b/code/game/gamemodes/nuclear/nuclear_challenge.dm
@@ -60,7 +60,7 @@
// No. of player - Min. Player to dec, divided by player per bonus, then multipled by TC per bonus. Rounded.
total_tc = CHALLENGE_TELECRYSTALS + round((((GLOB.player_list.len - CHALLENGE_MIN_PLAYERS)/CHALLENGE_SCALE_PLAYER) * CHALLENGE_SCALE_BONUS))
share_telecrystals()
- config.shuttle_refuel_delay = CHALLENGE_SHUTTLE_DELAY
+ SSshuttle.refuel_delay = CHALLENGE_SHUTTLE_DELAY
qdel(src)
/obj/item/nuclear_challenge/proc/share_telecrystals()
diff --git a/code/game/gamemodes/revolution/revolution.dm b/code/game/gamemodes/revolution/revolution.dm
index b4452295c31..93e385df6a9 100644
--- a/code/game/gamemodes/revolution/revolution.dm
+++ b/code/game/gamemodes/revolution/revolution.dm
@@ -38,7 +38,7 @@
/datum/game_mode/revolution/pre_setup()
possible_revolutionaries = get_players_for_role(ROLE_REV)
- if(config.protect_roles_from_antagonist)
+ if(GLOB.configuration.gamemode.prevent_mindshield_antags)
restricted_jobs += protected_jobs
@@ -110,7 +110,7 @@
to_chat(rev_mind.current, "Objective #[obj_count]: [objective.explanation_text]")
rev_mind.special_role = SPECIAL_ROLE_HEAD_REV
obj_count++
- to_chat(rev_mind.current, "For more information, check the wiki page: ([config.wikiurl]/index.php/Revolution)")
+ to_chat(rev_mind.current, "For more information, check the wiki page: ([GLOB.configuration.url.wiki_url]/index.php/Revolution)")
/////////////////////////////////////////////////////////////////////////////////
//This are equips the rev heads with their gear, and makes the clown not clumsy//
@@ -214,7 +214,7 @@
//Checks if the round is over//
///////////////////////////////
/datum/game_mode/revolution/check_finished()
- if(config.continuous_rounds)
+ if(GLOB.configuration.gamemode.disable_certain_round_early_end)
if(finished != 0)
SSshuttle.emergencyNoEscape = 0
if(SSshuttle.emergency.mode == SHUTTLE_STRANDED)
diff --git a/code/game/gamemodes/shadowling/shadowling.dm b/code/game/gamemodes/shadowling/shadowling.dm
index 67109419040..1cb4e6fbb35 100644
--- a/code/game/gamemodes/shadowling/shadowling.dm
+++ b/code/game/gamemodes/shadowling/shadowling.dm
@@ -81,7 +81,7 @@ Made by Xhuis
to_chat(world, "There are alien shadowlings on the station. Crew: Kill the shadowlings before they can eat or enthrall the crew. Shadowlings: Enthrall the crew while remaining in hiding.")
/datum/game_mode/shadowling/pre_setup()
- if(config.protect_roles_from_antagonist)
+ if(GLOB.configuration.gamemode.prevent_mindshield_antags)
restricted_jobs += protected_jobs
var/list/datum/mind/possible_shadowlings = get_players_for_role(ROLE_SHADOWLING)
@@ -126,7 +126,7 @@ Made by Xhuis
to_chat(shadow.current, "Currently, you are disguised as an employee aboard [world.name].")
to_chat(shadow.current, "In your limited state, you have two abilities: Hatch and Shadowling Hivemind (:8).")
to_chat(shadow.current, "Any other shadowlings are your allies. You must assist them as they shall assist you.")
- to_chat(shadow.current, "For more information, check the wiki page: ([config.wikiurl]/index.php/Shadowling)")
+ to_chat(shadow.current, "For more information, check the wiki page: ([GLOB.configuration.url.wiki_url]/index.php/Shadowling)")
/datum/game_mode/proc/process_shadow_objectives(datum/mind/shadow_mind)
@@ -168,7 +168,7 @@ Made by Xhuis
to_chat(new_thrall_mind.current, "Your body has been irreversibly altered. The attentive can see this - you may conceal it by wearing a mask.")
to_chat(new_thrall_mind.current, "Though not nearly as powerful as your masters, you possess some weak powers. These can be found in the Thrall Abilities tab.")
to_chat(new_thrall_mind.current, "You may communicate with your allies by speaking in the Shadowling Hivemind (:8).")
- to_chat(new_thrall_mind.current, "For more information, check the wiki page: ([config.wikiurl]/index.php/Shadowling)")
+ to_chat(new_thrall_mind.current, "For more information, check the wiki page: ([GLOB.configuration.url.wiki_url]/index.php/Shadowling)")
if(jobban_isbanned(new_thrall_mind.current, ROLE_SHADOWLING) || jobban_isbanned(new_thrall_mind.current, ROLE_SYNDICATE))
replace_jobbanned_player(new_thrall_mind.current, ROLE_SHADOWLING)
if(!victory_warning_announced && (length(shadowling_thralls) >= warning_threshold))//are the slings very close to winning?
@@ -216,13 +216,13 @@ Made by Xhuis
if(shadow.current.stat == DEAD)
continue
shadows_alive++
- if(shadow.special_role == SPECIAL_ROLE_SHADOWLING && config.shadowling_max_age)
+ if(shadow.special_role == SPECIAL_ROLE_SHADOWLING && GLOB.configuration.gamemode.shadowling_max_age)
if(ishuman(shadow.current))
var/mob/living/carbon/human/H = shadow.current
if(!isshadowling(H))
for(var/obj/effect/proc_holder/spell/targeted/shadowling_hatch/hatch_ability in shadow.spell_list)
hatch_ability.cycles_unused++
- if(!H.stunned && prob(20) && hatch_ability.cycles_unused > config.shadowling_max_age)
+ if(!H.stunned && prob(20) && hatch_ability.cycles_unused > GLOB.configuration.gamemode.shadowling_max_age)
var/shadow_nag_messages = list("You can barely hold yourself in this lesser form!", "The urge to become something greater is overwhelming!", "You feel a burning passion to hatch free of this shell and assume godhood!")
H.take_overall_damage(0, 3)
to_chat(H, "[pick(shadow_nag_messages)]")
diff --git a/code/game/gamemodes/traitor/traitor.dm b/code/game/gamemodes/traitor/traitor.dm
index f247f860400..6cbfeca3c10 100644
--- a/code/game/gamemodes/traitor/traitor.dm
+++ b/code/game/gamemodes/traitor/traitor.dm
@@ -28,7 +28,7 @@
/datum/game_mode/traitor/pre_setup()
- if(config.protect_roles_from_antagonist)
+ if(GLOB.configuration.gamemode.prevent_mindshield_antags)
restricted_jobs += protected_jobs
var/list/possible_traitors = get_players_for_role(ROLE_TRAITOR)
@@ -39,7 +39,7 @@
var/num_traitors = 1
- if(config.traitor_scaling)
+ if(GLOB.configuration.gamemode.traitor_scaling)
num_traitors = max(1, round((num_players())/(traitor_scaling_coeff)))
else
num_traitors = max(1, min(num_players(), traitors_possible))
diff --git a/code/game/gamemodes/vampire/traitor_vamp.dm b/code/game/gamemodes/vampire/traitor_vamp.dm
index 7fb1088214b..9ad66fdb976 100644
--- a/code/game/gamemodes/vampire/traitor_vamp.dm
+++ b/code/game/gamemodes/vampire/traitor_vamp.dm
@@ -17,7 +17,7 @@
/datum/game_mode/traitor/vampire/pre_setup()
- if(config.protect_roles_from_antagonist)
+ if(GLOB.configuration.gamemode.prevent_mindshield_antags)
restricted_jobs += protected_jobs
var/list/datum/mind/possible_vampires = get_players_for_role(ROLE_VAMPIRE)
diff --git a/code/game/gamemodes/vampire/vampire.dm b/code/game/gamemodes/vampire/vampire.dm
index ff3a6152da1..69972d2bea5 100644
--- a/code/game/gamemodes/vampire/vampire.dm
+++ b/code/game/gamemodes/vampire/vampire.dm
@@ -40,7 +40,7 @@
/datum/game_mode/vampire/pre_setup()
- if(config.protect_roles_from_antagonist)
+ if(GLOB.configuration.gamemode.prevent_mindshield_antags)
restricted_jobs += protected_jobs
var/list/datum/mind/possible_vampires = get_players_for_role(ROLE_VAMPIRE)
@@ -193,7 +193,7 @@ You are weak to holy things and starlight. Don't go into space and avoid the Cha
for(var/datum/objective/objective in vampire.objectives)
to_chat(vampire.current, "Objective #[obj_count]: [objective.explanation_text]")
obj_count++
- to_chat(vampire.current, "For more information, check the wiki page: ([config.wikiurl]/index.php/Vampire)")
+ to_chat(vampire.current, "For more information, check the wiki page: ([GLOB.configuration.url.wiki_url]/index.php/Vampire)")
return
/datum/vampire
var/bloodtotal = 0 // CHANGE TO ZERO WHEN PLAYTESTING HAPPENS
diff --git a/code/game/gamemodes/vampire/vampire_powers.dm b/code/game/gamemodes/vampire/vampire_powers.dm
index 0340352412a..36a24113dc9 100644
--- a/code/game/gamemodes/vampire/vampire_powers.dm
+++ b/code/game/gamemodes/vampire/vampire_powers.dm
@@ -7,10 +7,12 @@
range = 1
charge_max = 1800
action_background_icon_state = "bg_vampire"
+ holy_area_cancast = FALSE //Stops cult magic from working on holy ground eg: chapel
var/required_blood = 0
var/gain_desc = null
var/deduct_blood_on_cast = TRUE //Do we want to take the blood when this is cast, or at a later point?
+
/obj/effect/proc_holder/spell/vampire/New()
..()
if(!gain_desc)
@@ -40,10 +42,6 @@
if(vampire.bloodusable < required_blood)
to_chat(user, "You require at least [required_blood] units of usable blood to do that!")
return 0
- //chapel check
- if(istype(loc.loc, /area/chapel) && !fullpower)
- to_chat(user, "Your powers are useless on this holy ground.")
- return 0
return ..()
/obj/effect/proc_holder/spell/vampire/can_cast(mob/user = usr, charge_check = TRUE, show_message = FALSE)
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/gamemodes/wizard/soulstone.dm b/code/game/gamemodes/wizard/soulstone.dm
index 574042abc08..110bfec4a4e 100644
--- a/code/game/gamemodes/wizard/soulstone.dm
+++ b/code/game/gamemodes/wizard/soulstone.dm
@@ -328,7 +328,7 @@
var/mob/living/simple_animal/hostile/construct/C = new picked_class(shell.loc)
C.init_construct(shade, src, shell)
to_chat(C, C.playstyle_string)
- to_chat(C, "For more information, check the wiki page: ([config.wikiurl]/index.php/Construct)")
+ to_chat(C, "For more information, check the wiki page: ([GLOB.configuration.url.wiki_url]/index.php/Construct)")
else
to_chat(user, "Creation failed!: The soul stone is empty! Go kill someone!")
diff --git a/code/game/gamemodes/wizard/wizard.dm b/code/game/gamemodes/wizard/wizard.dm
index d076afbaadb..d58a88d621e 100644
--- a/code/game/gamemodes/wizard/wizard.dm
+++ b/code/game/gamemodes/wizard/wizard.dm
@@ -108,19 +108,9 @@
for(var/datum/objective/objective in wizard.objectives)
to_chat(wizard.current, "Objective #[obj_count]: [objective.explanation_text]")
obj_count++
- to_chat(wizard.current, "For more information, check the wiki page: ([config.wikiurl]/index.php/Wizard)")
+ to_chat(wizard.current, "For more information, check the wiki page: ([GLOB.configuration.url.wiki_url]/index.php/Wizard)")
return
-/*/datum/game_mode/proc/learn_basic_spells(mob/living/carbon/human/wizard_mob)
- if(!istype(wizard_mob))
- return
- if(!config.feature_object_spell_system)
- wizard_mob.verbs += /client/proc/jaunt
- wizard_mob.mind.special_verbs += /client/proc/jaunt
- else
- wizard_mob.spell_list += new /obj/effect/proc_holder/spell/targeted/ethereal_jaunt(usr)
-*/
-
/datum/game_mode/proc/equip_wizard(mob/living/carbon/human/wizard_mob)
if(!istype(wizard_mob))
return
diff --git a/code/game/jobs/job/central.dm b/code/game/jobs/job/central.dm
index c25dfdd256f..e4ce321082e 100644
--- a/code/game/jobs/job/central.dm
+++ b/code/game/jobs/job/central.dm
@@ -93,7 +93,7 @@
/obj/item/implant/dust
)
cybernetic_implants = list(
- /obj/item/organ/internal/eyes/cybernetic/xray,
+ /obj/item/organ/internal/eyes/cybernetic/xray/hardened,
/obj/item/organ/internal/cyberimp/brain/anti_stun/hardened,
/obj/item/organ/internal/cyberimp/chest/nutriment/plus,
/obj/item/organ/internal/cyberimp/arm/combat/centcom
diff --git a/code/game/jobs/job/civilian.dm b/code/game/jobs/job/civilian.dm
index 6adc55a89f1..7dddfd6a8d7 100644
--- a/code/game/jobs/job/civilian.dm
+++ b/code/game/jobs/job/civilian.dm
@@ -13,7 +13,7 @@
outfit = /datum/outfit/job/assistant
/datum/job/civilian/get_access()
- if(config.assistant_maint)
+ if(GLOB.configuration.jobs.assistant_maint_access)
return list(ACCESS_MAINT_TUNNELS)
else
return list()
diff --git a/code/game/jobs/job/job.dm b/code/game/jobs/job/job.dm
index 8f313c185dc..c39e1ff555f 100644
--- a/code/game/jobs/job/job.dm
+++ b/code/game/jobs/job/job.dm
@@ -85,10 +85,13 @@
announce(H)
/datum/job/proc/get_access()
- if(!config) //Needed for robots.
+ 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(config.jobs_have_minimal_access)
+ if(GLOB.configuration.jobs.jobs_have_minimal_access)
return src.minimal_access.Copy()
else
return src.access.Copy()
@@ -103,7 +106,7 @@
/datum/job/proc/available_in_days(client/C)
if(!C)
return 0
- if(!config.use_age_restriction_for_jobs)
+ if(!GLOB.configuration.jobs.restrict_jobs_on_account_age)
return 0
if(!isnum(C.player_age))
return 0 //This is only a number if the db connection is established, otherwise it is text: "Requires database", meaning these restrictions cannot be enforced
diff --git a/code/game/jobs/job_exp.dm b/code/game/jobs/job_exp.dm
index b30fbac02c4..1c9ef7de79f 100644
--- a/code/game/jobs/job_exp.dm
+++ b/code/game/jobs/job_exp.dm
@@ -43,7 +43,7 @@ GLOBAL_LIST_INIT(role_playtime_requirements, list(
set category = "Special Verbs"
set name = "Check my playtime"
- if(!config.use_exp_tracking)
+ if(!GLOB.configuration.jobs.enable_exp_tracking)
to_chat(src, "Playtime tracking is not enabled.")
return
@@ -105,9 +105,9 @@ GLOBAL_LIST_INIT(role_playtime_requirements, list(
return 0
if(!role)
return 0
- if(!config.use_exp_restrictions)
+ if(!GLOB.configuration.jobs.enable_exp_restrictions)
return 0
- if(config.use_exp_restrictions_admin_bypass && check_rights(R_ADMIN, 0, C.mob))
+ if(GLOB.configuration.jobs.enable_exp_admin_bypass && check_rights(R_ADMIN, 0, C.mob))
return 0
var/list/play_records = params2list(C.prefs.exp)
var/isexempt = text2num(play_records[EXP_TYPE_EXEMPT])
@@ -128,9 +128,9 @@ GLOBAL_LIST_INIT(role_playtime_requirements, list(
return 0
if(!exp_requirements || !exp_type)
return 0
- if(!config.use_exp_restrictions)
+ if(!GLOB.configuration.jobs.enable_exp_restrictions)
return 0
- if(config.use_exp_restrictions_admin_bypass && check_rights(R_ADMIN, 0, C.mob))
+ if(GLOB.configuration.jobs.enable_exp_admin_bypass && check_rights(R_ADMIN, 0, C.mob))
return 0
var/list/play_records = params2list(C.prefs.exp)
var/isexempt = text2num(play_records[EXP_TYPE_EXEMPT])
@@ -156,7 +156,7 @@ GLOBAL_LIST_INIT(role_playtime_requirements, list(
return "[src] has no client."
/client/proc/get_exp_report()
- if(!config.use_exp_tracking)
+ if(!GLOB.configuration.jobs.enable_exp_tracking)
return "Tracking is disabled in the server configuration file."
var/list/play_records = params2list(prefs.exp)
if(!play_records.len)
@@ -174,10 +174,10 @@ GLOBAL_LIST_INIT(role_playtime_requirements, list(
return_text += "Exempt (all jobs auto-unlocked)"
else if(exp_data[EXP_TYPE_LIVING] > 0)
return_text += "[dep]: [get_exp_format(exp_data[dep])]"
- if(config.use_exp_restrictions_admin_bypass && check_rights(R_ADMIN, 0, mob))
+ if(GLOB.configuration.jobs.enable_exp_admin_bypass && check_rights(R_ADMIN, 0, mob))
return_text += "Admin"
return_text += ""
- if(config.use_exp_restrictions)
+ if(GLOB.configuration.jobs.enable_exp_restrictions)
var/list/jobs_locked = list()
var/list/jobs_unlocked = list()
for(var/datum/job/job in SSjobs.occupations)
diff --git a/code/game/jobs/whitelist.dm b/code/game/jobs/whitelist.dm
index af80e7474a4..b459576d960 100644
--- a/code/game/jobs/whitelist.dm
+++ b/code/game/jobs/whitelist.dm
@@ -1,29 +1,6 @@
-#define WHITELISTFILE "data/whitelist.txt"
-
-GLOBAL_LIST_EMPTY(whitelist)
-
-/proc/init_whitelists()
- if(config.usewhitelist)
- load_whitelist()
- if(config.usealienwhitelist)
- load_alienwhitelist()
-
-/proc/load_whitelist()
- GLOB.whitelist = file2list(WHITELISTFILE)
- if(!GLOB.whitelist.len)
- GLOB.whitelist = null
-/*
-/proc/check_whitelist(mob/M, rank)
- if(!whitelist)
- return 0
- return ("[M.ckey]" in whitelist)
-*/
-
/proc/is_job_whitelisted(mob/M, rank)
if(guest_jobbans(rank))
- if(!config.usewhitelist)
- return TRUE
- if(config.disable_karma)
+ if(!GLOB.configuration.general.enable_karma)
return TRUE
if(check_rights(R_ADMIN, 0, M))
return TRUE
@@ -31,7 +8,7 @@ GLOBAL_LIST_EMPTY(whitelist)
return FALSE
else
var/datum/db_query/job_read = SSdbcore.NewQuery(
- "SELECT job FROM [format_table_name("whitelist")] WHERE ckey=:ckey",
+ "SELECT job FROM whitelist WHERE ckey=:ckey",
list("ckey" = M.ckey)
)
@@ -55,35 +32,18 @@ GLOBAL_LIST_EMPTY(whitelist)
else
return TRUE
-
-
-
-GLOBAL_LIST_EMPTY(alien_whitelist)
-
-/proc/load_alienwhitelist()
- var/text = file2text("config/alienwhitelist.txt")
- if(!text)
- log_config("Failed to load config/alienwhitelist.txt\n")
- else
- GLOB.alien_whitelist = splittext(text, "\n")
-
-//todo: admin aliens
/proc/is_alien_whitelisted(mob/M, species)
- if(!config.usealienwhitelist)
- return TRUE
- if(config.disable_karma)
+ if(!GLOB.configuration.general.enable_karma)
return TRUE
if(species == "human" || species == "Human")
return TRUE
if(check_rights(R_ADMIN, 0))
return TRUE
- if(!GLOB.alien_whitelist)
- return FALSE
if(!SSdbcore.IsConnected())
return FALSE
else
var/datum/db_query/species_read = SSdbcore.NewQuery(
- "SELECT species FROM [format_table_name("whitelist")] WHERE ckey=:ckey",
+ "SELECT species FROM whitelist WHERE ckey=:ckey",
list("ckey" = M.ckey)
)
@@ -104,14 +64,3 @@ GLOBAL_LIST_EMPTY(alien_whitelist)
break
qdel(species_read)
-/*
- if(M && species)
- for(var/s in alien_whitelist)
- if(findtext(s,"[M.ckey] - [species]"))
- return 1
- if(findtext(s,"[M.ckey] - All"))
- return 1
-*/
-
-
-#undef WHITELISTFILE
diff --git a/code/game/machinery/OpTable.dm b/code/game/machinery/OpTable.dm
index 551f58594bb..bd7494ad0be 100644
--- a/code/game/machinery/OpTable.dm
+++ b/code/game/machinery/OpTable.dm
@@ -31,6 +31,9 @@
patient = null
return ..()
+/obj/machinery/optable/detailed_examine()
+ return "Click your target with Grab intent, then click on the table with an empty hand, to place them on it."
+
/obj/machinery/optable/attack_hulk(mob/living/carbon/human/user, does_attack_animation = FALSE)
if(user.a_intent == INTENT_HARM)
..(user, TRUE)
diff --git a/code/game/machinery/Sleeper.dm b/code/game/machinery/Sleeper.dm
index ea7fa1f118b..57062a6e806 100644
--- a/code/game/machinery/Sleeper.dm
+++ b/code/game/machinery/Sleeper.dm
@@ -31,6 +31,18 @@
light_color = LIGHT_COLOR_CYAN
+/obj/machinery/sleeper/detailed_examine()
+ return "The sleeper allows you to clean the blood by means of dialysis, and to administer medication in a controlled environment.
\
+
\
+ Click your target with Grab intent, then click on the sleeper to place them in it. Click the green console, with an empty hand, to open the menu. \
+ Click 'Start Dialysis' to begin filtering unwanted chemicals from the occupant's blood. The beaker contained will begin to fill with their \
+ contaminated blood, and will need to be emptied when full.
\
+
\
+ You can also inject common medicines directly into their bloodstream.\
+
\
+ Right-click the cell and click 'Eject Occupant' to remove them. You can enter the cell yourself by right clicking and selecting 'Enter Sleeper'. \
+ Note that you cannot control the sleeper while inside of it."
+
/obj/machinery/sleeper/power_change()
..()
if(!(stat & (BROKEN|NOPOWER)))
diff --git a/code/game/machinery/adv_med.dm b/code/game/machinery/adv_med.dm
index 05d16c49c6c..9b16d52383c 100644
--- a/code/game/machinery/adv_med.dm
+++ b/code/game/machinery/adv_med.dm
@@ -11,6 +11,15 @@
var/mob/living/carbon/human/occupant
var/known_implants = list(/obj/item/implant/chem, /obj/item/implant/death_alarm, /obj/item/implant/mindshield, /obj/item/implant/tracking, /obj/item/implant/health)
+/obj/machinery/bodyscanner/detailed_examine()
+ return "The advanced scanner detects and reports internal injuries such as bone fractures, internal bleeding, and organ damage. \
+ This is useful if you are about to perform surgery.
\
+
\
+ Click your target with Grab intent, then click on the scanner to place them in it. Click the red terminal to operate. \
+ Right-click the scanner and click 'Eject Occupant' to remove them. You can enter the scanner yourself in a similar way, using the 'Enter Body Scanner' \
+ verb."
+
+
/obj/machinery/bodyscanner/Destroy()
go_out()
return ..()
diff --git a/code/game/machinery/camera/camera.dm b/code/game/machinery/camera/camera.dm
index 1d4b59acdf9..8a04c310e17 100644
--- a/code/game/machinery/camera/camera.dm
+++ b/code/game/machinery/camera/camera.dm
@@ -66,7 +66,6 @@
if(istype(A))
A.motioncameras -= src
area_motion = null
- cancelCameraAlarm()
cancelAlarm()
return ..()
@@ -86,7 +85,6 @@
var/thisemp = emped //Take note of which EMP this proc is for
spawn(900)
if(!QDELETED(src))
- triggerCameraAlarm() //camera alarm triggers even if multiple EMPs are in effect.
if(emped == thisemp) //Only fix it if the camera hasn't been EMP'd again
network = previous_network
stat &= ~EMPED
@@ -94,9 +92,6 @@
if(can_use())
GLOB.cameranet.addCamera(src)
emped = 0 //Resets the consecutive EMP count
- spawn(100)
- if(!QDELETED(src))
- cancelCameraAlarm()
for(var/mob/M in GLOB.player_list)
if(M.client && M.client.eye == src)
M.unset_machine()
@@ -229,7 +224,6 @@
/obj/machinery/camera/obj_break(damage_flag)
if(status && !(flags & NODECONSTRUCT))
- triggerCameraAlarm()
toggle_cam(null, FALSE)
wires.cut_all()
@@ -275,10 +269,6 @@
var/change_msg = "deactivates"
if(status)
change_msg = "reactivates"
- triggerCameraAlarm()
- spawn(100)
- if(!QDELETED(src))
- cancelCameraAlarm()
if(displaymessage)
if(user)
visible_message("[user] [change_msg] [src]!")
@@ -298,14 +288,6 @@
O.reset_perspective(null)
to_chat(O, "The screen bursts into static.")
-/obj/machinery/camera/proc/triggerCameraAlarm()
- alarm_on = TRUE
- SSalarm.triggerAlarm("Camera", get_area(src), list(UID()), src)
-
-/obj/machinery/camera/proc/cancelCameraAlarm()
- alarm_on = FALSE
- SSalarm.cancelAlarm("Camera", get_area(src), src)
-
/obj/machinery/camera/proc/can_use()
if(!status)
return 0
diff --git a/code/game/machinery/computer/Operating.dm b/code/game/machinery/computer/Operating.dm
index c875b094058..bc004c28b1f 100644
--- a/code/game/machinery/computer/Operating.dm
+++ b/code/game/machinery/computer/Operating.dm
@@ -39,6 +39,9 @@
currentPatient = null
return ..()
+/obj/machinery/computer/operating/detailed_examine()
+ return "This console gives information on the status of the patient on the adjacent operating table, notably their consciousness."
+
/obj/machinery/computer/operating/attack_ai(mob/user)
add_fingerprint(user)
if(stat & (BROKEN|NOPOWER))
diff --git a/code/game/machinery/computer/atmos_control.dm b/code/game/machinery/computer/atmos_control.dm
index 287cca55b41..05dc8103351 100644
--- a/code/game/machinery/computer/atmos_control.dm
+++ b/code/game/machinery/computer/atmos_control.dm
@@ -546,7 +546,7 @@
if(href_list["out_set_pressure"])
var/response=input(usr,"Set new pressure, in kPa. \[0-[50*ONE_ATMOSPHERE]\]") as num
pressure_setting = text2num(response)
- pressure_setting = between(0, pressure_setting, 50*ONE_ATMOSPHERE)
+ pressure_setting = clamp(pressure_setting, 0, 50*ONE_ATMOSPHERE)
if(!radio_connection)
return 0
diff --git a/code/game/machinery/computer/cloning.dm b/code/game/machinery/computer/cloning.dm
index f2a76b15f58..77c78506676 100644
--- a/code/game/machinery/computer/cloning.dm
+++ b/code/game/machinery/computer/cloning.dm
@@ -338,7 +338,7 @@
set_temp("Error: Not enough biomass.", "danger")
else if(pod.mess)
set_temp("Error: The cloning pod is malfunctioning.", "danger")
- else if(!config.revival_cloning)
+ else if(!GLOB.configuration.general.enable_cloning)
set_temp("Error: Unable to initiate cloning cycle.", "danger")
else
cloneresult = pod.growclone(C)
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,"./RoboticsControlConsole.js":571,"./Safe.js":572,"./SatelliteControl.js":573,"./SecurityRecords.js":574,"./ShuttleConsole.js":575,"./ShuttleManipulator.js":576,"./Sleeper.js":577,"./SlotMachine.js":578,"./Smartfridge.js":579,"./Smes.js":580,"./SolarControl.js":581,"./SpawnersMenu.js":582,"./StationAlertConsole.js":583,"./SuitStorage.js":584,"./SupermatterMonitor.js":585,"./SyndicateComputerSimple.js":586,"./TEG.js":587,"./TachyonArray.js":588,"./Tank.js":589,"./TankDispenser.js":590,"./TcommsCore.js":591,"./TcommsRelay.js":592,"./Teleporter.js":593,"./ThermoMachine.js":594,"./TransferValve.js":595,"./Uplink.js":596,"./Vending.js":597,"./VolumeMixer.js":598,"./Wires.js":599};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(20),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(20),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(20));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(20),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(20),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.radioactivity,m=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:"Radioactivity",type:"radioactivity",is_active:s,act_on:"rads_on",act_off:"rads_off"}),(0,o.createComponentVNode)(2,a.Divider),(0,o.createComponentVNode)(2,i,{label:"Antag HUD",is_active:m,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(20),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(20);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(20),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(20),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.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(20),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(20),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(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,"./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(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)}))})]})})}},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)]})})]})})}}]);
diff --git a/tools/ci/check_grep.sh b/tools/ci/check_grep.sh
index 24f1952e2ba..aff249df8a1 100755
--- a/tools/ci/check_grep.sh
+++ b/tools/ci/check_grep.sh
@@ -10,12 +10,21 @@ if grep -El '^\".+\" = \(.+\)' _maps/**/*.dmm; then
echo "ERROR: Non-TGM formatted map detected. Please convert it using Map Merger!"
st=1
fi;
+if grep -P '^\ttag = \"icon' _maps/**/*.dmm; then
+ echo "ERROR: tag vars from icon state generation detected in maps, please remove them."
+ st=1
+fi;
+if grep -P 'pixel_[^xy]' _maps/**/*.dmm; then
+ echo "ERROR: Incorrect pixel offset variables detected in maps, please remove them."
+ st=1
+fi;
if grep -P 'step_[xy]' _maps/**/*.dmm; then
echo "ERROR: step_x/step_y variables detected in maps, please remove them."
st=1
fi;
+
if grep -P '^/[\w/]\S+\(.*(var/|, ?var/.*).*\)' code/**/*.dm; then
- echo "changed files contains proc argument starting with 'var'"
+ echo "ERROR: Changed files contains proc arguments with implicit 'var/', please remove them."
st=1
fi;
if grep -P '^/*var/' code/**/*.dm; then
diff --git a/tools/ci/dbconfig.txt b/tools/ci/dbconfig.txt
deleted file mode 100644
index f3a4b587962..00000000000
--- a/tools/ci/dbconfig.txt
+++ /dev/null
@@ -1,13 +0,0 @@
-# This exists solely as a DBconfig file for CI testing
-# Dont use it ingame
-# Remember to update this when you increase the SQL version! -aa
-SQL_ENABLED
-DB_VERSION 24
-ADDRESS 127.0.0.1
-PORT 3306
-FEEDBACK_DATABASE feedback
-FEEDBACK_TABLEPREFIX
-FEEDBACK_LOGIN root
-FEEDBACK_PASSWORD root
-ASYNC_QUERY_TIMEOUT 10
-RUST_SQL_THREAD_LIMIT 50
diff --git a/tools/ci/generate_sql_scripts.py b/tools/ci/generate_sql_scripts.py
index 5c7cf97230b..3b2687a733a 100644
--- a/tools/ci/generate_sql_scripts.py
+++ b/tools/ci/generate_sql_scripts.py
@@ -54,9 +54,9 @@ for file in orderedSqlFiles:
if file.endswith(".py"):
# Begin snowflakery
if file == "16-17.py":
- scriptLines.append("python3 SQL/updates/" + str(file) + " 127.0.0.1 root root feedback feedback round\n")
+ scriptLines.append("python3 SQL/updates/" + str(file) + " 127.0.0.1 root root paradise_gamedb feedback round\n")
elif file == "17-18.py":
- scriptLines.append("python3 SQL/updates/" + str(file) + " 127.0.0.1 root root feedback feedback feedback_2\n")
+ scriptLines.append("python3 SQL/updates/" + str(file) + " 127.0.0.1 root root paradise_gamedb feedback feedback_2\n")
else:
print("ERROR: CI failed due to invalid python file in SQL/updates")
exit(1)
@@ -64,8 +64,8 @@ for file in orderedSqlFiles:
inFile = open("SQL/updates/" + file, "r")
fileLines = inFile.readlines()
inFile.close()
- # Add in a line which tells it to use the feedback DB
- fileLines.insert(0, "USE `feedback`;\n")
+ # Add in a line which tells it to use the paradise DB
+ fileLines.insert(0, "USE `paradise_gamedb`;\n")
# Write new files to be used by the testing script
outFile = open("tools/ci/sql_tmp/" + file, "w+")
@@ -75,9 +75,7 @@ for file in orderedSqlFiles:
# Add a line to the script being made that tells it to use this SQL file
scriptLines.append("mysql -u root -proot < tools/ci/sql_tmp/" + str(file) + "\n")
-scriptLines.append("mysql -u root -proot -e 'DROP DATABASE feedback;'\n")
-scriptLines.append("mysql -u root -proot < SQL/paradise_schema_prefixed.sql\n")
-scriptLines.append("mysql -u root -proot -e 'DROP DATABASE feedback;'\n")
+scriptLines.append("mysql -u root -proot -e 'DROP DATABASE paradise_gamedb;'\n")
scriptLines.append("mysql -u root -proot < SQL/paradise_schema.sql\n")
outputScript = open("tools/ci/validate_sql.sh", "w+")
diff --git a/tools/ci/run_server.sh b/tools/ci/run_server.sh
index c03809363c1..bb32d85f940 100755
--- a/tools/ci/run_server.sh
+++ b/tools/ci/run_server.sh
@@ -1,13 +1,7 @@
#!/bin/bash
set -euo pipefail
-cp config/example/* config/
-
-#Apply test DB config for SQL connectivity
-rm config/dbconfig.txt
-cp tools/ci/dbconfig.txt config
-
-# Now run the server and the unit tests
+# Run the server and the unit tests
DreamDaemon paradise.dmb -close -trusted -verbose
# Check if the unit tests actually suceeded
diff --git a/tools/ci/sql_v0.sql b/tools/ci/sql_v0.sql
index 201347a2f1e..d9c5d235fc2 100644
--- a/tools/ci/sql_v0.sql
+++ b/tools/ci/sql_v0.sql
@@ -16,12 +16,12 @@
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
--- Dumping database structure for feedback
-DROP DATABASE IF EXISTS `feedback`;
-CREATE DATABASE IF NOT EXISTS `feedback` /*!40100 DEFAULT CHARACTER SET utf8 */;
-USE `feedback`;
+-- Dumping database structure for paradise_gamedb
+DROP DATABASE IF EXISTS `paradise_gamedb`;
+CREATE DATABASE IF NOT EXISTS `paradise_gamedb` /*!40100 DEFAULT CHARACTER SET utf8 */;
+USE `paradise_gamedb`;
--- Dumping structure for table feedback.admin
+-- Dumping structure for table paradise_gamedb.admin
DROP TABLE IF EXISTS `admin`;
CREATE TABLE IF NOT EXISTS `admin` (
`id` int(11) NOT NULL AUTO_INCREMENT,
@@ -32,13 +32,13 @@ CREATE TABLE IF NOT EXISTS `admin` (
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
--- Dumping data for table feedback.admin: ~0 rows (approximately)
+-- Dumping data for table paradise_gamedb.admin: ~0 rows (approximately)
/*!40000 ALTER TABLE `admin` DISABLE KEYS */;
INSERT INTO `admin` (`id`, `ckey`, `rank`, `level`, `flags`) VALUES
(1, 'AffectedArc07', 'Administrator', 0, 131071);
/*!40000 ALTER TABLE `admin` ENABLE KEYS */;
--- Dumping structure for table feedback.admin_log
+-- Dumping structure for table paradise_gamedb.admin_log
DROP TABLE IF EXISTS `admin_log`;
CREATE TABLE IF NOT EXISTS `admin_log` (
`id` int(11) NOT NULL AUTO_INCREMENT,
@@ -49,13 +49,13 @@ CREATE TABLE IF NOT EXISTS `admin_log` (
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
--- Dumping data for table feedback.admin_log: ~0 rows (approximately)
+-- Dumping data for table paradise_gamedb.admin_log: ~0 rows (approximately)
/*!40000 ALTER TABLE `admin_log` DISABLE KEYS */;
INSERT INTO `admin_log` (`id`, `datetime`, `adminckey`, `adminip`, `log`) VALUES
(1, '2020-04-24 17:36:49', 'AffectedArc07', '127.0.0.1', 'Created this row');
/*!40000 ALTER TABLE `admin_log` ENABLE KEYS */;
--- Dumping structure for table feedback.ban
+-- Dumping structure for table paradise_gamedb.ban
DROP TABLE IF EXISTS `ban`;
CREATE TABLE IF NOT EXISTS `ban` (
`id` int(11) NOT NULL AUTO_INCREMENT,
@@ -84,13 +84,13 @@ CREATE TABLE IF NOT EXISTS `ban` (
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
--- Dumping data for table feedback.ban: ~0 rows (approximately)
+-- Dumping data for table paradise_gamedb.ban: ~0 rows (approximately)
/*!40000 ALTER TABLE `ban` DISABLE KEYS */;
INSERT INTO `ban` (`id`, `bantime`, `serverip`, `bantype`, `reason`, `job`, `duration`, `rounds`, `expiration_time`, `ckey`, `computerid`, `ip`, `a_ckey`, `a_computerid`, `a_ip`, `who`, `adminwho`, `edits`, `unbanned`, `unbanned_datetime`, `unbanned_ckey`, `unbanned_computerid`, `unbanned_ip`) VALUES
(1, '2020-04-24 17:40:05', '127.0.0.1', 'PERMABAN', 'Breaking it all', NULL, -1, NULL, '2020-04-24 17:40:20', 'AffectedArc07', '1111111111', '127.0.0.1', 'AffectedArc07', '1111111111', '127.0.0.1', 'Player1, Player2, Whoever', 'SomeAdmin', NULL, NULL, NULL, NULL, NULL, NULL);
/*!40000 ALTER TABLE `ban` ENABLE KEYS */;
--- Dumping structure for table feedback.characters
+-- Dumping structure for table paradise_gamedb.characters
DROP TABLE IF EXISTS `characters`;
CREATE TABLE IF NOT EXISTS `characters` (
`id` int(11) NOT NULL AUTO_INCREMENT,
@@ -165,13 +165,13 @@ CREATE TABLE IF NOT EXISTS `characters` (
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
--- Dumping data for table feedback.characters: ~0 rows (approximately)
+-- Dumping data for table paradise_gamedb.characters: ~0 rows (approximately)
/*!40000 ALTER TABLE `characters` DISABLE KEYS */;
INSERT INTO `characters` (`id`, `ckey`, `slot`, `OOC_Notes`, `real_name`, `name_is_always_random`, `gender`, `age`, `species`, `language`, `hair_red`, `hair_green`, `hair_blue`, `secondary_hair_red`, `secondary_hair_green`, `secondary_hair_blue`, `facial_red`, `facial_green`, `facial_blue`, `secondary_facial_red`, `secondary_facial_green`, `secondary_facial_blue`, `skin_tone`, `skin_red`, `skin_green`, `skin_blue`, `marking_colours`, `head_accessory_red`, `head_accessory_green`, `head_accessory_blue`, `hair_style_name`, `facial_style_name`, `marking_styles`, `head_accessory_style_name`, `alt_head_name`, `eyes_red`, `eyes_green`, `eyes_blue`, `underwear`, `undershirt`, `backbag`, `b_type`, `alternate_option`, `job_support_high`, `job_support_med`, `job_support_low`, `job_medsci_high`, `job_medsci_med`, `job_medsci_low`, `job_engsec_high`, `job_engsec_med`, `job_engsec_low`, `job_karma_high`, `job_karma_med`, `job_karma_low`, `flavor_text`, `med_record`, `sec_record`, `gen_record`, `disabilities`, `player_alt_titles`, `organ_data`, `rlimb_data`, `nanotrasen_relation`, `speciesprefs`, `socks`, `body_accessory`, `gear`, `autohiss`) VALUES
(1, 'AffectedArc07', 1, 'Some notes', 'John Smith', 0, 'male', 25, 'Human', 'None', 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 25, 10, 10, 10, 'head=%23000000&body=%23000000&tail=%23000000', 10, 10, 10, 'Bald', 'Shaved', 'head=None&body=None&tail=None', 'None', 'None', 10, 10, 10, 'Nude', 'Nude', 'Grey Backpack', 'A+', 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'He is short', 'Yes', 'Yes', 'Yes', 0, ' ', ' ', ' ', 'Neutral', 0, 'Nude', ' ', ' ', 0);
/*!40000 ALTER TABLE `characters` ENABLE KEYS */;
--- Dumping structure for table feedback.customuseritems
+-- Dumping structure for table paradise_gamedb.customuseritems
DROP TABLE IF EXISTS `customuseritems`;
CREATE TABLE IF NOT EXISTS `customuseritems` (
`id` int(11) NOT NULL AUTO_INCREMENT,
@@ -186,13 +186,13 @@ CREATE TABLE IF NOT EXISTS `customuseritems` (
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
--- Dumping data for table feedback.customuseritems: 0 rows
+-- Dumping data for table paradise_gamedb.customuseritems: 0 rows
/*!40000 ALTER TABLE `customuseritems` DISABLE KEYS */;
INSERT INTO `customuseritems` (`id`, `cuiCKey`, `cuiRealName`, `cuiPath`, `cuiItemName`, `cuiDescription`, `cuiReason`, `cuiPropAdjust`, `cuiJobMask`) VALUES
(1, 'AffectedArc07', 'Character Name', '/obj/item/multitool', NULL, NULL, NULL, NULL, '*');
/*!40000 ALTER TABLE `customuseritems` ENABLE KEYS */;
--- Dumping structure for table feedback.death
+-- Dumping structure for table paradise_gamedb.death
DROP TABLE IF EXISTS `death`;
CREATE TABLE IF NOT EXISTS `death` (
`id` int(11) NOT NULL AUTO_INCREMENT,
@@ -213,13 +213,13 @@ CREATE TABLE IF NOT EXISTS `death` (
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
--- Dumping data for table feedback.death: 0 rows
+-- Dumping data for table paradise_gamedb.death: 0 rows
/*!40000 ALTER TABLE `death` DISABLE KEYS */;
INSERT INTO `death` (`id`, `pod`, `coord`, `tod`, `job`, `special`, `name`, `byondkey`, `laname`, `lakey`, `gender`, `bruteloss`, `brainloss`, `fireloss`, `oxyloss`) VALUES
(1, 'Central Primary Hallway', '1,1,1', '2020-04-24 17:58:41', 'Captain', 'Traitor', 'John Smith', 'AffectedArc07', 'Bad Man', 'BadGuyCkey', 'Male', 12, 12, 12, 12);
/*!40000 ALTER TABLE `death` ENABLE KEYS */;
--- Dumping structure for table feedback.donators
+-- Dumping structure for table paradise_gamedb.donators
DROP TABLE IF EXISTS `donators`;
CREATE TABLE IF NOT EXISTS `donators` (
`patreon_name` varchar(32) NOT NULL,
@@ -231,13 +231,13 @@ CREATE TABLE IF NOT EXISTS `donators` (
PRIMARY KEY (`patreon_name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--- Dumping data for table feedback.donators: ~0 rows (approximately)
+-- Dumping data for table paradise_gamedb.donators: ~0 rows (approximately)
/*!40000 ALTER TABLE `donators` DISABLE KEYS */;
INSERT INTO `donators` (`patreon_name`, `tier`, `ckey`, `start_date`, `end_date`, `active`) VALUES
('AffectedArc07', 3, 'AffectedArc07', '2020-04-24 18:00:47', '2020-04-24 18:00:48', 1);
/*!40000 ALTER TABLE `donators` ENABLE KEYS */;
--- Dumping structure for table feedback.feedback
+-- Dumping structure for table paradise_gamedb.feedback
DROP TABLE IF EXISTS `feedback`;
CREATE TABLE IF NOT EXISTS `feedback` (
`id` int(11) NOT NULL AUTO_INCREMENT,
@@ -249,13 +249,13 @@ CREATE TABLE IF NOT EXISTS `feedback` (
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
--- Dumping data for table feedback.feedback: 0 rows
+-- Dumping data for table paradise_gamedb.feedback: 0 rows
/*!40000 ALTER TABLE `feedback` DISABLE KEYS */;
INSERT INTO `feedback` (`id`, `time`, `round_id`, `var_name`, `var_value`, `details`) VALUES
(1, '2020-04-24 18:01:08', 1, 'yes', 1, 'feedback scares me');
/*!40000 ALTER TABLE `feedback` ENABLE KEYS */;
--- Dumping structure for table feedback.karma
+-- Dumping structure for table paradise_gamedb.karma
DROP TABLE IF EXISTS `karma`;
CREATE TABLE IF NOT EXISTS `karma` (
`id` int(11) NOT NULL AUTO_INCREMENT,
@@ -271,13 +271,13 @@ CREATE TABLE IF NOT EXISTS `karma` (
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
--- Dumping data for table feedback.karma: 0 rows
+-- Dumping data for table paradise_gamedb.karma: 0 rows
/*!40000 ALTER TABLE `karma` DISABLE KEYS */;
INSERT INTO `karma` (`id`, `spendername`, `spenderkey`, `receivername`, `receiverkey`, `receiverrole`, `receiverspecial`, `isnegative`, `spenderip`, `time`) VALUES
(1, 'John Smith', 'AffectedArc07', 'Other Man', 'OtherCkey', 'Captain', 'Special', 0, '127.0.0.1', '2020-04-24 18:02:00');
/*!40000 ALTER TABLE `karma` ENABLE KEYS */;
--- Dumping structure for table feedback.karmatotals
+-- Dumping structure for table paradise_gamedb.karmatotals
DROP TABLE IF EXISTS `karmatotals`;
CREATE TABLE IF NOT EXISTS `karmatotals` (
`id` int(11) NOT NULL AUTO_INCREMENT,
@@ -287,13 +287,13 @@ CREATE TABLE IF NOT EXISTS `karmatotals` (
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
--- Dumping data for table feedback.karmatotals: 0 rows
+-- Dumping data for table paradise_gamedb.karmatotals: 0 rows
/*!40000 ALTER TABLE `karmatotals` DISABLE KEYS */;
INSERT INTO `karmatotals` (`id`, `byondkey`, `karma`, `karmaspent`) VALUES
(1, 'AffectedArc07', 1000, 100);
/*!40000 ALTER TABLE `karmatotals` ENABLE KEYS */;
--- Dumping structure for table feedback.legacy_population
+-- Dumping structure for table paradise_gamedb.legacy_population
DROP TABLE IF EXISTS `legacy_population`;
CREATE TABLE IF NOT EXISTS `legacy_population` (
`id` int(11) NOT NULL AUTO_INCREMENT,
@@ -303,13 +303,13 @@ CREATE TABLE IF NOT EXISTS `legacy_population` (
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
--- Dumping data for table feedback.legacy_population: 0 rows
+-- Dumping data for table paradise_gamedb.legacy_population: 0 rows
/*!40000 ALTER TABLE `legacy_population` DISABLE KEYS */;
INSERT INTO `legacy_population` (`id`, `playercount`, `admincount`, `time`) VALUES
(1, 233, 23, '2020-04-24 18:02:19');
/*!40000 ALTER TABLE `legacy_population` ENABLE KEYS */;
--- Dumping structure for table feedback.library
+-- Dumping structure for table paradise_gamedb.library
DROP TABLE IF EXISTS `library`;
CREATE TABLE IF NOT EXISTS `library` (
`id` int(11) NOT NULL AUTO_INCREMENT,
@@ -322,13 +322,13 @@ CREATE TABLE IF NOT EXISTS `library` (
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
--- Dumping data for table feedback.library: 0 rows
+-- Dumping data for table paradise_gamedb.library: 0 rows
/*!40000 ALTER TABLE `library` DISABLE KEYS */;
INSERT INTO `library` (`id`, `author`, `title`, `content`, `category`, `ckey`, `flagged`) VALUES
(1, 'John Smith', 'A book', 'WOW WHAT A BOOK', 'Fiction', 'AffectedArc07', 0);
/*!40000 ALTER TABLE `library` ENABLE KEYS */;
--- Dumping structure for table feedback.memo
+-- Dumping structure for table paradise_gamedb.memo
DROP TABLE IF EXISTS `memo`;
CREATE TABLE IF NOT EXISTS `memo` (
`ckey` varchar(32) NOT NULL,
@@ -339,13 +339,13 @@ CREATE TABLE IF NOT EXISTS `memo` (
PRIMARY KEY (`ckey`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--- Dumping data for table feedback.memo: ~0 rows (approximately)
+-- Dumping data for table paradise_gamedb.memo: ~0 rows (approximately)
/*!40000 ALTER TABLE `memo` DISABLE KEYS */;
INSERT INTO `memo` (`ckey`, `memotext`, `timestamp`, `last_editor`, `edits`) VALUES
('AffectedArc07', 'Remember to test your PRs', '2020-04-24 18:04:00', NULL, NULL);
/*!40000 ALTER TABLE `memo` ENABLE KEYS */;
--- Dumping structure for table feedback.notes
+-- Dumping structure for table paradise_gamedb.notes
DROP TABLE IF EXISTS `notes`;
CREATE TABLE IF NOT EXISTS `notes` (
`id` int(11) NOT NULL AUTO_INCREMENT,
@@ -359,13 +359,13 @@ CREATE TABLE IF NOT EXISTS `notes` (
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
--- Dumping data for table feedback.notes: ~0 rows (approximately)
+-- Dumping data for table paradise_gamedb.notes: ~0 rows (approximately)
/*!40000 ALTER TABLE `notes` DISABLE KEYS */;
INSERT INTO `notes` (`id`, `ckey`, `notetext`, `timestamp`, `adminckey`, `last_editor`, `edits`, `server`) VALUES
(1, 'AffectedArc07', 'Cant behave', '2020-04-24 18:04:14', 'AffectedArc07', NULL, NULL, 'SS13');
/*!40000 ALTER TABLE `notes` ENABLE KEYS */;
--- Dumping structure for table feedback.player
+-- Dumping structure for table paradise_gamedb.player
DROP TABLE IF EXISTS `player`;
CREATE TABLE IF NOT EXISTS `player` (
`id` int(11) NOT NULL AUTO_INCREMENT,
@@ -395,13 +395,13 @@ CREATE TABLE IF NOT EXISTS `player` (
UNIQUE KEY `ckey` (`ckey`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
--- Dumping data for table feedback.player: ~0 rows (approximately)
+-- Dumping data for table paradise_gamedb.player: ~0 rows (approximately)
/*!40000 ALTER TABLE `player` DISABLE KEYS */;
INSERT INTO `player` (`id`, `ckey`, `firstseen`, `lastseen`, `ip`, `computerid`, `lastadminrank`, `ooccolor`, `UI_style`, `UI_style_color`, `UI_style_alpha`, `be_role`, `default_slot`, `toggles`, `sound`, `randomslot`, `volume`, `nanoui_fancy`, `show_ghostitem_attack`, `lastchangelog`, `windowflashing`, `ghost_anonsay`, `exp`) VALUES
(1, 'AffectedArc07', '2020-04-24 18:04:44', '2020-04-24 18:04:45', '127.0.0.1', '1111111111', 'Player', '#b82e00', 'Midnight', '#ffffff', 10, NULL, 1, 1024, 16, 0, 100, 1, 1, '0', 1, 1, NULL);
/*!40000 ALTER TABLE `player` ENABLE KEYS */;
--- Dumping structure for table feedback.poll_option
+-- Dumping structure for table paradise_gamedb.poll_option
DROP TABLE IF EXISTS `poll_option`;
CREATE TABLE IF NOT EXISTS `poll_option` (
`id` int(11) NOT NULL AUTO_INCREMENT,
@@ -416,13 +416,13 @@ CREATE TABLE IF NOT EXISTS `poll_option` (
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
--- Dumping data for table feedback.poll_option: ~0 rows (approximately)
+-- Dumping data for table paradise_gamedb.poll_option: ~0 rows (approximately)
/*!40000 ALTER TABLE `poll_option` DISABLE KEYS */;
INSERT INTO `poll_option` (`id`, `pollid`, `text`, `percentagecalc`, `minval`, `maxval`, `descmin`, `descmid`, `descmax`) VALUES
(1, 1, 'What is this', 12, NULL, NULL, NULL, NULL, NULL);
/*!40000 ALTER TABLE `poll_option` ENABLE KEYS */;
--- Dumping structure for table feedback.poll_question
+-- Dumping structure for table paradise_gamedb.poll_question
DROP TABLE IF EXISTS `poll_question`;
CREATE TABLE IF NOT EXISTS `poll_question` (
`id` int(11) NOT NULL AUTO_INCREMENT,
@@ -437,13 +437,13 @@ CREATE TABLE IF NOT EXISTS `poll_question` (
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
--- Dumping data for table feedback.poll_question: ~0 rows (approximately)
+-- Dumping data for table paradise_gamedb.poll_question: ~0 rows (approximately)
/*!40000 ALTER TABLE `poll_question` DISABLE KEYS */;
INSERT INTO `poll_question` (`id`, `polltype`, `starttime`, `endtime`, `question`, `adminonly`, `multiplechoiceoptions`, `createdby_ckey`, `createdby_ip`) VALUES
(1, 'OPTION', '2020-04-24 18:05:31', '2020-04-24 18:05:33', 'Is this a good idea', 0, NULL, NULL, NULL);
/*!40000 ALTER TABLE `poll_question` ENABLE KEYS */;
--- Dumping structure for table feedback.poll_textreply
+-- Dumping structure for table paradise_gamedb.poll_textreply
DROP TABLE IF EXISTS `poll_textreply`;
CREATE TABLE IF NOT EXISTS `poll_textreply` (
`id` int(11) NOT NULL AUTO_INCREMENT,
@@ -456,13 +456,13 @@ CREATE TABLE IF NOT EXISTS `poll_textreply` (
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
--- Dumping data for table feedback.poll_textreply: ~0 rows (approximately)
+-- Dumping data for table paradise_gamedb.poll_textreply: ~0 rows (approximately)
/*!40000 ALTER TABLE `poll_textreply` DISABLE KEYS */;
INSERT INTO `poll_textreply` (`id`, `datetime`, `pollid`, `ckey`, `ip`, `replytext`, `adminrank`) VALUES
(1, '2020-04-24 18:05:42', 1, 'AffectedArc07', '127.0.0.1', 'This is far too much work for a CI rework', 'Player');
/*!40000 ALTER TABLE `poll_textreply` ENABLE KEYS */;
--- Dumping structure for table feedback.poll_vote
+-- Dumping structure for table paradise_gamedb.poll_vote
DROP TABLE IF EXISTS `poll_vote`;
CREATE TABLE IF NOT EXISTS `poll_vote` (
`id` int(11) NOT NULL AUTO_INCREMENT,
@@ -476,13 +476,13 @@ CREATE TABLE IF NOT EXISTS `poll_vote` (
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
--- Dumping data for table feedback.poll_vote: ~0 rows (approximately)
+-- Dumping data for table paradise_gamedb.poll_vote: ~0 rows (approximately)
/*!40000 ALTER TABLE `poll_vote` DISABLE KEYS */;
INSERT INTO `poll_vote` (`id`, `datetime`, `pollid`, `optionid`, `ckey`, `ip`, `adminrank`, `rating`) VALUES
(1, '2020-04-24 18:06:02', 1, 1, 'AffectedArc07', '127.0.0.1', 'Administrator', NULL);
/*!40000 ALTER TABLE `poll_vote` ENABLE KEYS */;
--- Dumping structure for table feedback.privacy
+-- Dumping structure for table paradise_gamedb.privacy
DROP TABLE IF EXISTS `privacy`;
CREATE TABLE IF NOT EXISTS `privacy` (
`id` int(11) NOT NULL AUTO_INCREMENT,
@@ -492,13 +492,13 @@ CREATE TABLE IF NOT EXISTS `privacy` (
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
--- Dumping data for table feedback.privacy: ~0 rows (approximately)
+-- Dumping data for table paradise_gamedb.privacy: ~0 rows (approximately)
/*!40000 ALTER TABLE `privacy` DISABLE KEYS */;
INSERT INTO `privacy` (`id`, `datetime`, `ckey`, `option`) VALUES
(1, '2020-04-24 18:06:20', 'AffectedArc07', '1');
/*!40000 ALTER TABLE `privacy` ENABLE KEYS */;
--- Dumping structure for table feedback.watch
+-- Dumping structure for table paradise_gamedb.watch
DROP TABLE IF EXISTS `watch`;
CREATE TABLE IF NOT EXISTS `watch` (
`ckey` varchar(32) NOT NULL,
@@ -510,13 +510,13 @@ CREATE TABLE IF NOT EXISTS `watch` (
PRIMARY KEY (`ckey`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--- Dumping data for table feedback.watch: ~0 rows (approximately)
+-- Dumping data for table paradise_gamedb.watch: ~0 rows (approximately)
/*!40000 ALTER TABLE `watch` DISABLE KEYS */;
INSERT INTO `watch` (`ckey`, `reason`, `timestamp`, `adminckey`, `last_editor`, `edits`) VALUES
('AffectedArc07', 'Cant behave', '2020-04-24 18:06:33', 'AffectedArc07', NULL, NULL);
/*!40000 ALTER TABLE `watch` ENABLE KEYS */;
--- Dumping structure for table feedback.whitelist
+-- Dumping structure for table paradise_gamedb.whitelist
DROP TABLE IF EXISTS `whitelist`;
CREATE TABLE IF NOT EXISTS `whitelist` (
`id` int(11) NOT NULL AUTO_INCREMENT,
@@ -526,7 +526,7 @@ CREATE TABLE IF NOT EXISTS `whitelist` (
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
--- Dumping data for table feedback.whitelist: 0 rows
+-- Dumping data for table paradise_gamedb.whitelist: 0 rows
/*!40000 ALTER TABLE `whitelist` DISABLE KEYS */;
INSERT INTO `whitelist` (`id`, `ckey`, `job`, `species`) VALUES
(1, 'AffectedArc07', 'Captain', 'Machine');
@@ -535,4 +535,4 @@ INSERT INTO `whitelist` (`id`, `ckey`, `job`, `species`) VALUES
/*!40101 SET SQL_MODE=IFNULL(@OLD_SQL_MODE, '') */;
/*!40014 SET FOREIGN_KEY_CHECKS=IF(@OLD_FOREIGN_KEY_CHECKS IS NULL, 1, @OLD_FOREIGN_KEY_CHECKS) */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
-SET GLOBAL sql_mode=(SELECT REPLACE(@@sql_mode,'ONLY_FULL_GROUP_BY',''));
\ No newline at end of file
+SET GLOBAL sql_mode=(SELECT REPLACE(@@sql_mode,'ONLY_FULL_GROUP_BY',''));
diff --git a/tools/ci/validate_rustg_windows.py b/tools/ci/validate_rustg_windows.py
index 3d4535484ed..787bafb9a60 100644
--- a/tools/ci/validate_rustg_windows.py
+++ b/tools/ci/validate_rustg_windows.py
@@ -3,13 +3,14 @@
# This script is invoked by GitHub actions as part of CI to validate that the windows DLL for RUSTG works and creates proper formats
# Imports
-import os, sys
+import os, json
from ctypes import *
from datetime import datetime, timedelta
# Initial vars
ci_log_file = "ci_log.log"
ci_testing_text = "This is a test message"
+ci_toml_file_location = "config/example/config.toml"
# Helpers
def success(msg):
@@ -88,4 +89,19 @@ if logline in valid_results:
else:
fail("Log timestamp is not valid 8601. Got {}".format(logline))
+# Make sure we can parse TOML
+string_array = c_char_p * 1
+sa = string_array(bytes(ci_toml_file_location, "ascii"))
+rustg_dll.toml2json.argtypes = [c_int, c_char_p * 1]
+# Set args for JSON retrieval
+rustg_dll.toml2json.restype = c_char_p
+
+try:
+ # Run it
+ output_json = rustg_dll.toml2json(1, sa).decode()
+ json.loads(output_json)
+ success("toml2json conversion successful")
+except Exception:
+ fail("Failed to convert toml2json")
+
exit(0) # Success
diff --git a/tools/githubChangelogProcessor.php b/tools/githubChangelogProcessor.php
index 6e8c4094699..a88cd99580c 100644
--- a/tools/githubChangelogProcessor.php
+++ b/tools/githubChangelogProcessor.php
@@ -32,7 +32,7 @@ $dbServer = "localhost"; // Hostname of the database server (default localhost)
$dbPort = "3306"; // Port of the database server (default 3306) | MUST BE A STRING
$dbUser = "root"; // Database username (default root)
$dbPassword = ""; // Database password (default blank)
-$dbDatabase = "feedback"; // Database name (default feedback)
+$dbDatabase = "paradise_gamedb"; // Database name (default paradise_gamedb)
//servers to announce PRs to.
$servers = array();
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.