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: + + ![image](https://user-images.githubusercontent.com/12197162/120011088-d22c7400-bfd5-11eb-867f-7b137ac5b1b2.png) ![image](https://user-images.githubusercontent.com/12197162/120011126-dfe1f980-bfd5-11eb-96b2-c83238a9cdcf.png) + * Pipe layouts should be logical and predictable, easy to understand at a glance. Always avoid complex layouts like in this example: + + ![image](https://user-images.githubusercontent.com/12197162/120619480-ecda6f00-c453-11eb-9d9f-abf0d1a99c34.png) + + * 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:
  1. Equip yourself with a multi-tool
  2. Use the multitool on each machine, that is the broadcaster, receiver and the relay.
  3. 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.