diff --git a/.github/DOWNLOADING.md b/.github/DOWNLOADING.md index 83fa6a42a9c..eaad0dee7f9 100644 --- a/.github/DOWNLOADING.md +++ b/.github/DOWNLOADING.md @@ -1,7 +1,9 @@ # Info + This document contains all the relevant information for downloading and running your own ParaCode server. -### GETTING THE CODE +## GETTING THE CODE + The simplest way to obtain the code is using the github .zip feature. Click [here](https://github.com/ParadiseSS13/Paradise/archive/master.zip) to get the latest code as a .zip file, then unzip it to wherever you want. @@ -11,13 +13,15 @@ You'll need to download git or some client from [here](http://git-scm.com/). When that's installed, right click in any folder and click on "Git Bash". When that opens, type in: +```sh git clone https://github.com/ParadiseSS13/Paradise.git +``` (hint: hold down ctrl and press insert to paste into git bash) -This will take a while to download, but it provides an easier method for updating. +This will take a while to download (it is the entire repo + history, not just a snapshot), but it provides an easier method for updating. -### INSTALLATION +## INSTALLATION First-time installation should be fairly straightforward. First, you'll need BYOND installed. We're going to assume you already did this @@ -27,18 +31,19 @@ Open paradise.dme by double-clicking it, open the Build menu, and click compile. This'll take a little while, and if everything's done right, you'll get a message like this: +```sh saving paradise.dmb (DEBUG mode) - paradise.dmb - 0 errors, 0 warnings +``` If you see any errors or warnings, something has gone wrong - possibly a corrupt download or the files extracted wrong, -or a code issue on the main repo. Ask on Dscord. +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, +You'll want to edit `config.txt` to set 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, @@ -49,7 +54,9 @@ If you are connecting from localhost to your own test server, you should automat "Host" is the highest level of access, and the other recommended admin levels for now are "Game Admin" and "Moderator". The format is: +```cfg byondkey - Rank +``` 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, @@ -61,38 +68,34 @@ Make sure to set the port to the one you specified in the config.txt, and set the Security box to 'Trusted'. Then press GO and the server should start up and be ready to join. -### Installation (Linux) +## Installation (Linux) -The code is fully able to run on linux, however windows is the recommended platform. The code requires 2 libraries, with dependencies below +The code is fully able to run on linux, however windows is still the recommended platform. The library we use for external functions (RUSTG) requires some extra dependencies. -For MySQL, run the following: `apt-get install libmysqlclient-dev:i386` +For debian, please download the latest RUSTG release from [https://github.com/ParadiseSS13/rust-g](https://github.com/ParadiseSS13/rust-g), run the following: `apt-get install libssl-dev:i386 pkg-config:i386 zlib1g-dev:i386`. -For RustG please download the latest relase from [https://github.com/ParadiseSS13/rust-g](https://github.com/ParadiseSS13/rust-g), run the following: `apt-get install libssl-dev:i386 pkg-config:i386 zlib1g-dev:i386`. +After installing these packages, RUSTG should function as intended. We assume that if you are hosting on linux, you know what you are doing. -After installing these packages, these libraries should function as intended. We assume that if you are hosting on linux, you know what you are doing. - ---- - -### UPDATING +## UPDATING If you used the zip method, you'll need to download the zip file again and unzip it somewhere else, -and then copy the /config and /data folders over. +and then copy the `config` and `data` folders over. If you used the git method, you simply need to type this in to git bash: +```sh git pull +``` -When you have done this, you'll need to recompile the code, but then it should work fine. +When you have done this, you'll need to recompile the code, but then it should work fine and be up to date with the live server. ---- - -### SQL Setup +## SQL Setup 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 juts a local test server -Your server details go in /config/dbconfig.txt, -and the SQL schema is in /SQL/paradise_schema.sql or /SQL/paradise_schema_prefix.sql, +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`, +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: https://www.paradisestation.org/wiki/index.php/Setting_up_the_Database diff --git a/SQL/paradise_schema.sql b/SQL/paradise_schema.sql index 7da1473b4c3..dab229a8051 100644 --- a/SQL/paradise_schema.sql +++ b/SQL/paradise_schema.sql @@ -195,6 +195,7 @@ DROP TABLE IF EXISTS `ban`; CREATE TABLE `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, @@ -213,6 +214,7 @@ CREATE TABLE `ban` ( `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, @@ -433,11 +435,13 @@ CREATE TABLE `notes` ( `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; @@ -527,6 +531,7 @@ CREATE TABLE `connection_log` ( `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`), diff --git a/SQL/paradise_schema_prefixed.sql b/SQL/paradise_schema_prefixed.sql index 4f6898eeee7..a58d6250f65 100644 --- a/SQL/paradise_schema_prefixed.sql +++ b/SQL/paradise_schema_prefixed.sql @@ -194,6 +194,7 @@ DROP TABLE IF EXISTS `SS13_ban`; 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, @@ -212,6 +213,7 @@ CREATE TABLE `SS13_ban` ( `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, @@ -432,11 +434,13 @@ CREATE TABLE `SS13_notes` ( `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; @@ -524,6 +528,7 @@ CREATE TABLE `SS13_connection_log` ( `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`), diff --git a/SQL/updates/19-20.sql b/SQL/updates/19-20.sql new file mode 100644 index 00000000000..16eac5e7b68 --- /dev/null +++ b/SQL/updates/19-20.sql @@ -0,0 +1,14 @@ +# Updating DB from 19-20, -AffectedArc07 +# Tracks round IDs in notes and bans, as well as other admin tweaks + +# Add new columns to ban +ALTER TABLE `ban` ADD COLUMN `ban_round_id` INT NULL DEFAULT NULL AFTER `bantime`; +ALTER TABLE `ban` ADD COLUMN `unbanned_round_id` INT NULL DEFAULT NULL AFTER `unbanned_datetime`; + + +# Add new columns to notes +ALTER TABLE `notes` ADD COLUMN `round_id` INT NULL DEFAULT NULL AFTER `timestamp`; +ALTER TABLE `notes` ADD COLUMN `automated` TINYINT UNSIGNED NULL DEFAULT '0' AFTER `crew_playtime`; + +# Add new column to connection_log +ALTER TABLE `connection_log` ADD COLUMN `result` ENUM('ESTABLISHED','DROPPED - IPINTEL', 'DROPPED - BANNED', 'DROPPED - INVALID') NOT NULL DEFAULT 'ESTABLISHED' AFTER `computerid`; diff --git a/_maps/map_files/MetaStation/MetaStation.v41A.II.dmm b/_maps/map_files/MetaStation/MetaStation.v41A.II.dmm index 38a22222a39..d5b8ea22469 100644 --- a/_maps/map_files/MetaStation/MetaStation.v41A.II.dmm +++ b/_maps/map_files/MetaStation/MetaStation.v41A.II.dmm @@ -38,10 +38,10 @@ }, /obj/structure/grille, /obj/structure/shuttle/window{ - tag = "icon-window5_end"; + dir = 2; icon = 'icons/turf/shuttle.dmi'; icon_state = "window5_end"; - dir = 2 + tag = "icon-window5_end" }, /turf/simulated/shuttle/plating, /area/shuttle/syndicate) @@ -56,10 +56,10 @@ }, /obj/structure/grille, /obj/structure/shuttle/window{ - tag = "icon-window5_mid"; + dir = 2; icon = 'icons/turf/shuttle.dmi'; icon_state = "window5_mid"; - dir = 2 + tag = "icon-window5_mid" }, /turf/simulated/shuttle/plating, /area/shuttle/syndicate) @@ -74,10 +74,10 @@ }, /obj/structure/grille, /obj/structure/shuttle/window{ - tag = "icon-window5_end (NORTH)"; + dir = 1; icon = 'icons/turf/shuttle.dmi'; icon_state = "window5_end"; - dir = 1 + tag = "icon-window5_end (NORTH)" }, /turf/simulated/shuttle/plating, /area/shuttle/syndicate) @@ -157,9 +157,9 @@ /area/shuttle/syndicate) "aar" = ( /obj/machinery/light/spot{ - tag = "icon-tube1 (EAST)"; + dir = 4; icon_state = "tube1"; - dir = 4 + tag = "icon-tube1 (EAST)" }, /turf/simulated/shuttle/floor{ icon_state = "floor4" @@ -362,9 +362,9 @@ "aaN" = ( /obj/structure/closet/syndicate/suits, /obj/machinery/light/spot{ - tag = "icon-tube1 (WEST)"; + dir = 8; icon_state = "tube1"; - dir = 8 + tag = "icon-tube1 (WEST)" }, /turf/simulated/shuttle/floor{ icon_state = "floor4" @@ -382,9 +382,9 @@ /area/shuttle/syndicate) "aaP" = ( /obj/machinery/light/spot{ - tag = "icon-tube1 (WEST)"; + dir = 8; icon_state = "tube1"; - dir = 8 + tag = "icon-tube1 (WEST)" }, /turf/simulated/shuttle/floor{ icon_state = "floor4" @@ -662,9 +662,9 @@ req_access_txt = "150" }, /obj/machinery/light/spot{ - tag = "icon-tube1 (NORTH)"; + dir = 1; icon_state = "tube1"; - dir = 1 + tag = "icon-tube1 (NORTH)" }, /turf/simulated/shuttle/floor{ icon_state = "floor4" @@ -676,9 +676,9 @@ req_access_txt = "150" }, /obj/machinery/light/spot{ - tag = "icon-tube1 (NORTH)"; + dir = 1; icon_state = "tube1"; - dir = 1 + tag = "icon-tube1 (NORTH)" }, /turf/simulated/shuttle/floor{ icon_state = "floor4" @@ -694,17 +694,17 @@ /area/shuttle/syndicate) "abu" = ( /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + d2 = 2; + icon_state = "0-2" }, /obj/machinery/power/tracker, /turf/simulated/floor/plating/airless, /area/solar/auxport) "abv" = ( /obj/machinery/light/spot{ - tag = "icon-tube1 (WEST)"; + dir = 8; icon_state = "tube1"; - dir = 8 + tag = "icon-tube1 (WEST)" }, /obj/machinery/sleeper/syndie{ dir = 4 @@ -838,8 +838,8 @@ /area/shuttle/syndicate) "abI" = ( /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + d2 = 2; + icon_state = "0-2" }, /obj/machinery/power/solar{ id = "foreport"; @@ -862,9 +862,9 @@ /obj/structure/shuttle/engine/propulsion/burst, /turf/simulated/floor/plating, /turf/simulated/shuttle/wall{ - tag = "icon-swall_f5"; + dir = 2; icon_state = "swall_f5"; - dir = 2 + tag = "icon-swall_f5" }, /area/shuttle/pod_2) "abL" = ( @@ -976,8 +976,8 @@ /area/solar/auxport) "abX" = ( /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + d2 = 4; + icon_state = "0-4" }, /obj/structure/lattice/catwalk, /turf/space, @@ -1028,8 +1028,8 @@ /area/security/permabrig) "acb" = ( /obj/structure/shuttle/engine/propulsion{ - tag = "icon-propulsion_l"; - icon_state = "propulsion_l" + icon_state = "propulsion_l"; + tag = "icon-propulsion_l" }, /turf/simulated/shuttle/plating, /area/shuttle/syndicate) @@ -1039,8 +1039,8 @@ /area/shuttle/syndicate) "acd" = ( /obj/structure/shuttle/engine/propulsion{ - tag = "icon-propulsion_r"; - icon_state = "propulsion_r" + icon_state = "propulsion_r"; + tag = "icon-propulsion_r" }, /turf/simulated/shuttle/plating, /area/shuttle/syndicate) @@ -1230,8 +1230,8 @@ "acu" = ( /turf/space, /turf/simulated/shuttle/wall{ - icon_state = "swall_f6"; - dir = 2 + dir = 2; + icon_state = "swall_f6" }, /area/shuttle/pod_2) "acv" = ( @@ -1242,14 +1242,14 @@ "acw" = ( /turf/space, /turf/simulated/shuttle/wall{ - icon_state = "swall_f10"; - dir = 2 + dir = 2; + icon_state = "swall_f10" }, /area/shuttle/pod_2) "acx" = ( /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + d2 = 2; + icon_state = "0-2" }, /obj/machinery/power/tracker, /turf/simulated/floor/plating/airless, @@ -1328,9 +1328,9 @@ /area/space/nearstation) "acH" = ( /turf/simulated/shuttle/wall{ - tag = "icon-swall3"; + dir = 2; icon_state = "swall3"; - dir = 2 + tag = "icon-swall3" }, /area/shuttle/pod_2) "acI" = ( @@ -1425,8 +1425,8 @@ icon_state = "4-8" }, /obj/item/twohanded/required/kirbyplants{ - tag = "icon-plant-13"; - icon_state = "plant-13" + icon_state = "plant-13"; + tag = "icon-plant-13" }, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" @@ -1523,9 +1523,9 @@ /obj/structure/shuttle/engine/propulsion/burst, /turf/simulated/floor/plating, /turf/simulated/shuttle/wall{ - tag = "icon-swall_f9"; + dir = 2; icon_state = "swall_f9"; - dir = 2 + tag = "icon-swall_f9" }, /area/shuttle/pod_2) "acZ" = ( @@ -1568,9 +1568,9 @@ on = 1 }, /turf/simulated/floor/plasteel{ - tag = "icon-warndark (NORTHWEST)"; + dir = 9; icon_state = "warndark"; - dir = 9 + tag = "icon-warndark (NORTHWEST)" }, /area/security/permabrig) "add" = ( @@ -1581,9 +1581,9 @@ scrub_Toxins = 0 }, /turf/simulated/floor/plasteel{ - tag = "icon-warndark (NORTHEAST)"; + dir = 5; icon_state = "warndark"; - dir = 5 + tag = "icon-warndark (NORTHEAST)" }, /area/security/permabrig) "ade" = ( @@ -1591,9 +1591,9 @@ dir = 6 }, /turf/simulated/floor/plasteel{ - tag = "icon-warndark (NORTH)"; + dir = 1; icon_state = "warndark"; - dir = 1 + tag = "icon-warndark (NORTH)" }, /area/security/permabrig) "adf" = ( @@ -1633,8 +1633,8 @@ /area/shuttle/pod_2) "adi" = ( /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + d2 = 2; + icon_state = "0-2" }, /obj/structure/lattice/catwalk, /turf/space, @@ -1779,9 +1779,9 @@ pixel_x = -25 }, /turf/simulated/floor/plasteel{ - tag = "icon-warndark (WEST)"; + dir = 8; icon_state = "warndark"; - dir = 8 + tag = "icon-warndark (WEST)" }, /area/security/permabrig) "ady" = ( @@ -1791,9 +1791,9 @@ pixel_x = 28 }, /turf/simulated/floor/plasteel{ - tag = "icon-warndark (EAST)"; + dir = 4; icon_state = "warndark"; - dir = 4 + tag = "icon-warndark (EAST)" }, /area/security/permabrig) "adz" = ( @@ -1848,14 +1848,14 @@ /turf/simulated/floor/plating, /area/security/permabrig) "adE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, /obj/item/radio/intercom/locked/prison{ dir = 2; name = "Prison Intercom (General)"; pixel_y = -28 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" }, @@ -1872,8 +1872,8 @@ /area/security/podbay) "adG" = ( /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + d2 = 2; + icon_state = "0-2" }, /obj/machinery/power/solar{ id = "forestarboard"; @@ -2084,9 +2084,9 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ - tag = "icon-warndark (SOUTHWEST)"; + dir = 10; icon_state = "warndark"; - dir = 10 + tag = "icon-warndark (SOUTHWEST)" }, /area/security/permabrig) "aeb" = ( @@ -2095,9 +2095,9 @@ name = "justice injector" }, /turf/simulated/floor/plasteel{ - tag = "icon-warndark (SOUTHEAST)"; + dir = 6; icon_state = "warndark"; - dir = 6 + tag = "icon-warndark (SOUTHEAST)" }, /area/security/permabrig) "aec" = ( @@ -2106,9 +2106,9 @@ initialize_directions = 11 }, /turf/simulated/floor/plasteel{ - tag = "icon-warndark"; + dir = 2; icon_state = "warndark"; - dir = 2 + tag = "icon-warndark" }, /area/security/permabrig) "aed" = ( @@ -2165,9 +2165,9 @@ req_access_txt = "152" }, /obj/machinery/light/spot{ - tag = "icon-tube1 (EAST)"; + dir = 4; icon_state = "tube1"; - dir = 4 + tag = "icon-tube1 (EAST)" }, /turf/simulated/shuttle/plating/vox, /area/shuttle/vox) @@ -2182,10 +2182,10 @@ }, /obj/structure/grille, /obj/structure/shuttle/window{ - tag = "icon-window5_end"; + dir = 2; icon = 'icons/turf/shuttle.dmi'; icon_state = "window5_end"; - dir = 2 + tag = "icon-window5_end" }, /turf/simulated/shuttle/plating/vox, /area/shuttle/vox) @@ -2200,10 +2200,10 @@ }, /obj/structure/grille, /obj/structure/shuttle/window{ - tag = "icon-window5_mid"; + dir = 2; icon = 'icons/turf/shuttle.dmi'; icon_state = "window5_mid"; - dir = 2 + tag = "icon-window5_mid" }, /turf/simulated/shuttle/plating/vox, /area/shuttle/vox) @@ -2218,10 +2218,10 @@ }, /obj/structure/grille, /obj/structure/shuttle/window{ - tag = "icon-window5_end (NORTH)"; + dir = 1; icon = 'icons/turf/shuttle.dmi'; icon_state = "window5_end"; - dir = 1 + tag = "icon-window5_end (NORTH)" }, /turf/simulated/shuttle/plating/vox, /area/shuttle/vox) @@ -2233,9 +2233,9 @@ req_access_txt = "152" }, /obj/machinery/light/spot{ - tag = "icon-tube1 (WEST)"; + dir = 8; icon_state = "tube1"; - dir = 8 + tag = "icon-tube1 (WEST)" }, /turf/simulated/shuttle/plating/vox, /area/shuttle/vox) @@ -2260,9 +2260,6 @@ d2 = 8; icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, /turf/simulated/floor/plasteel, /area/security/permabrig) "aer" = ( @@ -2292,9 +2289,7 @@ d2 = 8; icon_state = "2-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" }, @@ -2540,9 +2535,8 @@ name = "\improper Recreation Area" }) "aeO" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1; - initialize_directions = 11 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 }, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" @@ -2563,6 +2557,10 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4; + initialize_directions = 11 + }, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" }, @@ -2720,9 +2718,6 @@ }, /area/security/permabrig) "aeZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /obj/machinery/power/apc{ cell_type = 2500; dir = 1; @@ -2737,6 +2732,9 @@ name = "educational injections"; pixel_x = 2 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -2765,12 +2763,6 @@ /area/crew_quarters/fitness{ name = "\improper Recreation Area" }) -"afc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/wall/r_wall, -/area/security/permabrig) "afd" = ( /obj/machinery/door/poddoor{ density = 0; @@ -2829,10 +2821,10 @@ }, /obj/structure/grille, /obj/structure/shuttle/window{ - tag = "icon-window5_end (WEST)"; + dir = 8; icon = 'icons/turf/shuttle.dmi'; icon_state = "window5_end"; - dir = 8 + tag = "icon-window5_end (WEST)" }, /turf/simulated/shuttle/plating/vox, /area/shuttle/vox) @@ -2859,10 +2851,10 @@ }, /obj/structure/grille, /obj/structure/shuttle/window{ - tag = "icon-window5_end (WEST)"; + dir = 8; icon = 'icons/turf/shuttle.dmi'; icon_state = "window5_end"; - dir = 8 + tag = "icon-window5_end (WEST)" }, /turf/simulated/shuttle/plating/vox, /area/shuttle/vox) @@ -2923,26 +2915,16 @@ /area/security/permabrig) "afq" = ( /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + d2 = 4; + icon_state = "0-4" }, /obj/structure/lattice/catwalk, /turf/space, /area/solar/auxstarboard) "afr" = ( /obj/effect/spawner/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plating, /area/security/podbay) -"afs" = ( -/obj/effect/spawner/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/security/podbay) -"aft" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/wall, -/area/security/permabrig) "afu" = ( /obj/machinery/door/poddoor{ density = 0; @@ -2961,6 +2943,7 @@ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" }, @@ -3000,6 +2983,12 @@ req_access_txt = "0"; specialfunctions = 4 }, +/obj/machinery/atmospherics/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" }, @@ -3103,6 +3092,7 @@ /obj/machinery/light{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -3137,15 +3127,15 @@ /area/solar/auxstarboard) "afH" = ( /turf/simulated/shuttle/wall{ - icon_state = "swall12"; - dir = 2 + dir = 2; + icon_state = "swall12" }, /area/shuttle/pod_3) "afI" = ( /turf/space, /turf/simulated/shuttle/wall{ - icon_state = "swall_f10"; - dir = 2 + dir = 2; + icon_state = "swall_f10" }, /area/shuttle/pod_3) "afJ" = ( @@ -3163,10 +3153,10 @@ }, /obj/structure/grille, /obj/structure/shuttle/window{ - tag = "icon-window5_end (EAST)"; + dir = 4; icon = 'icons/turf/shuttle.dmi'; icon_state = "window5_end"; - dir = 4 + tag = "icon-window5_end (EAST)" }, /turf/simulated/shuttle/plating/vox, /area/shuttle/vox) @@ -3192,10 +3182,10 @@ }, /obj/structure/grille, /obj/structure/shuttle/window{ - tag = "icon-window5_end (EAST)"; + dir = 4; icon = 'icons/turf/shuttle.dmi'; icon_state = "window5_end"; - dir = 4 + tag = "icon-window5_end (EAST)" }, /turf/simulated/shuttle/plating/vox, /area/shuttle/vox) @@ -3218,10 +3208,6 @@ icon_state = "floorgrime" }, /area/security/permabrig) -"afQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/wall/r_wall, -/area/security/permabrig) "afR" = ( /obj/effect/decal/warning_stripes/north, /obj/machinery/door_control{ @@ -3271,6 +3257,10 @@ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8; + initialize_directions = 11 + }, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" }, @@ -3295,6 +3285,7 @@ d2 = 2; icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -3455,9 +3446,9 @@ /area/security/permabrig) "agn" = ( /obj/structure/cable{ + d2 = 2; icon_state = "0-2"; - pixel_y = 1; - d2 = 2 + pixel_y = 1 }, /obj/structure/lattice/catwalk, /turf/space, @@ -3473,13 +3464,15 @@ }, /area/solar/auxstarboard) "agp" = ( -/obj/machinery/atmospherics/unary/vent_pump{ - on = 1 - }, /obj/machinery/flasher{ id = "PCell 3"; pixel_x = -28 }, +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 4; + layer = 2.4; + on = 1 + }, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" }, @@ -3492,7 +3485,7 @@ pixel_y = 5 }, /obj/machinery/atmospherics/unary/vent_scrubber{ - dir = 4; + dir = 8; on = 1; scrub_N2O = 0; scrub_Toxins = 0 @@ -3533,13 +3526,6 @@ icon_state = "floorgrime" }, /area/security/permabrig) -"agt" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4; - initialize_directions = 11 - }, -/turf/simulated/wall, -/area/security/permabrig) "agu" = ( /obj/structure/table, /obj/item/paper, @@ -3547,11 +3533,6 @@ pixel_x = -3; pixel_y = 5 }, -/obj/machinery/atmospherics/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" }, @@ -3565,18 +3546,21 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" }, /area/security/permabrig) "agw" = ( -/obj/machinery/atmospherics/unary/vent_pump{ - on = 1 - }, /obj/machinery/flasher{ id = "PCell 1"; pixel_x = -28 }, +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 4; + layer = 2.4; + on = 1 + }, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" }, @@ -3587,8 +3571,10 @@ pixel_x = -3; pixel_y = 5 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/table/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "whitered" @@ -3598,8 +3584,10 @@ /obj/structure/bed/roller, /obj/structure/bed/roller, /obj/machinery/iv_drip, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/iv_drip, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "whitered" @@ -3611,6 +3599,12 @@ d2 = 2; icon_state = "1-2" }, +/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 = "whitered" @@ -3678,8 +3672,8 @@ "agI" = ( /turf/space, /turf/simulated/shuttle/wall{ - icon_state = "swall_f9"; - dir = 2 + dir = 2; + icon_state = "swall_f9" }, /area/shuttle/pod_3) "agJ" = ( @@ -3779,20 +3773,19 @@ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plasteel{ - icon_state = "red"; - dir = 1 - }, -/area/security/permabrig) -"agR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/wall, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "red" + }, /area/security/permabrig) "agS" = ( /obj/machinery/door/airlock/security/glass{ name = "Long-Term Cell 3"; req_access_txt = "2" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" }, @@ -3808,6 +3801,7 @@ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" }, @@ -3817,6 +3811,8 @@ name = "Long-Term Cell 1"; req_access_txt = "2" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" }, @@ -3832,9 +3828,11 @@ d2 = 2; icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ - icon_state = "red"; - dir = 1 + dir = 1; + icon_state = "red" }, /area/security/permabrig) "agW" = ( @@ -3883,8 +3881,13 @@ }, /area/security/armoury) "agZ" = ( -/obj/machinery/atmospherics/unary/vent_pump, /obj/machinery/space_heater, +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 4; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -3913,7 +3916,6 @@ }, /area/security/hos) "ahd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -3948,9 +3950,9 @@ req_access_txt = "3" }, /turf/simulated/floor/plasteel{ - tag = "icon-vault (WEST)"; + dir = 8; icon_state = "vault"; - dir = 8 + tag = "icon-vault (WEST)" }, /area/security/armoury) "ahf" = ( @@ -3965,9 +3967,9 @@ on = 1 }, /turf/simulated/floor/plasteel{ - tag = "icon-vault (WEST)"; + dir = 8; icon_state = "vault"; - dir = 8 + tag = "icon-vault (WEST)" }, /area/security/armoury) "ahg" = ( @@ -3975,14 +3977,6 @@ name = "Escape Pod Three" }, /turf/simulated/floor/plating, -/area/crew_quarters/fitness{ - name = "\improper Recreation Area" - }) -"ahh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/wall, /area/crew_quarters/fitness{ name = "\improper Recreation Area" }) @@ -3992,27 +3986,15 @@ }, /obj/machinery/portable_atmospherics/canister/sleeping_agent, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/security/permabrig) -"ahj" = ( -/obj/effect/spawner/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/fitness{ - name = "\improper Recreation Area" - }) "ahk" = ( /obj/effect/spawner/window/reinforced, /obj/effect/landmark{ name = "Syndicate Breach Area" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /turf/simulated/floor/plating, /area/crew_quarters/fitness{ name = "\improper Recreation Area" @@ -4167,23 +4149,14 @@ icon_state = "redcorner" }, /area/security/permabrig) -"ahy" = ( -/obj/effect/spawner/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/fitness{ - name = "\improper Recreation Area" - }) "ahz" = ( /obj/machinery/atmospherics/pipe/simple/visible{ dir = 9 }, /obj/machinery/space_heater, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/security/permabrig) "ahA" = ( @@ -4208,8 +4181,8 @@ /obj/machinery/atmospherics/pipe/manifold/visible, /obj/item/wrench, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/security/permabrig) "ahB" = ( @@ -4219,18 +4192,10 @@ d2 = 4; icon_state = "1-4" }, -/turf/simulated/floor/plasteel{ - dir = 2; - icon_state = "redcorner" +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5; + level = 1 }, -/area/security/permabrig) -"ahC" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "redcorner" @@ -4242,14 +4207,14 @@ d2 = 8; icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, /obj/structure/sign/securearea{ desc = "A warning sign which reads 'WARNING: Do Not Enter When Red Light Shows', detailing the penalties that any NanoTrasen employee or silicon will suffer if violating this rule."; name = "WARNING: Do Not Enter When Red Light Shows"; pixel_y = 32 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "redcorner" @@ -4263,9 +4228,6 @@ pixel_y = 25; req_access_txt = "2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /obj/machinery/flasher_button{ id = "PCell 3"; pixel_x = 6; @@ -4276,20 +4238,22 @@ d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "redcorner" }, /area/security/permabrig) "ahF" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "redcorner" @@ -4315,8 +4279,8 @@ }, /turf/simulated/floor/plating, /turf/simulated/shuttle/wall{ - icon_state = "swall_f6"; - dir = 2 + dir = 2; + icon_state = "swall_f6" }, /area/shuttle/pod_3) "ahI" = ( @@ -4327,7 +4291,6 @@ pixel_y = 25; req_access_txt = "2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -4357,6 +4320,7 @@ d2 = 4; icon_state = "1-4" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/plasteel{ dir = 2; @@ -4364,7 +4328,6 @@ }, /area/security/permabrig) "ahK" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; @@ -4373,25 +4336,25 @@ /obj/machinery/light{ dir = 1 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "redcorner" }, /area/security/permabrig) "ahL" = ( -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 1; - on = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/machinery/newscaster/security_unit{ pixel_y = -30 }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 2; + initialize_directions = 11 + }, /turf/simulated/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 + dir = 1; + icon_state = "redcorner" }, /area/security/permabrig) "ahM" = ( @@ -4402,7 +4365,6 @@ pixel_y = 25; req_access_txt = "2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -4422,14 +4384,13 @@ }, /area/security/permabrig) "ahN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "redcorner" @@ -4470,7 +4431,6 @@ d2 = 8; icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -4483,6 +4443,10 @@ d2 = 8; icon_state = "2-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6; + level = 1 + }, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "redcorner" @@ -4521,9 +4485,8 @@ name = "WARNING: Criminally Insane Inmates"; pixel_y = 32 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4; - initialize_directions = 11 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 }, /turf/simulated/floor/plasteel, /area/security/permabrig) @@ -4538,9 +4501,10 @@ d2 = 8; icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "redcorner" @@ -4607,20 +4571,12 @@ pixel_x = -32; pixel_y = 32 }, -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 4; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, +/obj/machinery/atmospherics/unary/vent_pump, /turf/simulated/floor/plasteel{ icon_state = "dark" }, /area/security/hos) "ahY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -4632,9 +4588,6 @@ }, /area/security/hos) "aia" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, /obj/structure/cable/yellow{ d1 = 1; d2 = 4; @@ -4651,12 +4604,7 @@ pixel_x = 32; pixel_y = 32 }, -/obj/machinery/atmospherics/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, +/obj/machinery/atmospherics/unary/vent_scrubber, /obj/structure/cable/yellow{ d1 = 2; d2 = 8; @@ -4667,15 +4615,16 @@ }, /area/security/hos) "aic" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/structure/extinguisher_cabinet{ pixel_y = -30 }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 2; + initialize_directions = 11 + }, /turf/simulated/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 + dir = 1; + icon_state = "redcorner" }, /area/security/permabrig) "aid" = ( @@ -4694,9 +4643,9 @@ /area/security/podbay) "aig" = ( /obj/machinery/shower{ - tag = "icon-shower (EAST)"; + dir = 4; icon_state = "shower"; - dir = 4 + tag = "icon-shower (EAST)" }, /obj/machinery/door/window/eastright{ base_state = "left"; @@ -4713,8 +4662,8 @@ "aih" = ( /obj/structure/reagent_dispensers/water_cooler, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/crew_quarters/fitness{ name = "\improper Recreation Area" @@ -4739,8 +4688,8 @@ pixel_y = 3 }, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/crew_quarters/fitness{ name = "\improper Recreation Area" @@ -4759,8 +4708,8 @@ "ail" = ( /obj/structure/closet/athletic_mixed, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/crew_quarters/fitness{ name = "\improper Recreation Area" @@ -4768,8 +4717,8 @@ "aim" = ( /obj/structure/closet/boxinggloves, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/crew_quarters/fitness{ name = "\improper Recreation Area" @@ -4780,16 +4729,16 @@ pixel_y = 30 }, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/crew_quarters/fitness{ name = "\improper Recreation Area" }) "aio" = ( /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/crew_quarters/fitness{ name = "\improper Recreation Area" @@ -4803,9 +4752,9 @@ /obj/item/grenade/barrier, /obj/item/grenade/barrier, /turf/simulated/floor/plasteel{ - tag = "icon-vault (WEST)"; + dir = 8; icon_state = "vault"; - dir = 8 + tag = "icon-vault (WEST)" }, /area/security/armoury) "aiq" = ( @@ -4849,13 +4798,6 @@ icon_state = "dark" }, /area/security/armoury) -"aiv" = ( -/obj/effect/spawner/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating, -/area/crew_quarters/fitness{ - name = "\improper Recreation Area" - }) "aiw" = ( /obj/machinery/atmospherics/unary/vent_scrubber{ dir = 8; @@ -4891,18 +4833,8 @@ dir = 4 }, /turf/simulated/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/security/permabrig) -"aiz" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 2; - initialize_directions = 11 - }, -/turf/simulated/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 + dir = 1; + icon_state = "redcorner" }, /area/security/permabrig) "aiA" = ( @@ -4927,25 +4859,24 @@ }, /area/security/hos) "aiB" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 2; - initialize_directions = 11 - }, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 + dir = 1; + icon_state = "redcorner" }, /area/security/permabrig) "aiC" = ( /obj/effect/decal/warning_stripes/yellow/hollow, /obj/machinery/light_switch{ - name = "light switch "; dir = 2; + name = "light switch "; pixel_y = -22 }, /obj/structure/reagent_dispensers/fueltank, @@ -4963,8 +4894,8 @@ icon_state = "1-2" }, /turf/simulated/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 + dir = 1; + icon_state = "redcorner" }, /area/security/permabrig) "aiE" = ( @@ -4978,34 +4909,34 @@ }, /obj/machinery/light, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/security/permabrig) "aiF" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 2; - initialize_directions = 11 - }, /obj/effect/landmark{ name = "lightsout" }, -/turf/simulated/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/security/permabrig) -"aiG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "redcorner" + }, +/area/security/permabrig) +"aiG" = ( /obj/machinery/alarm{ dir = 1; pixel_y = -22 }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 2; + initialize_directions = 11 + }, /turf/simulated/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 + dir = 1; + icon_state = "redcorner" }, /area/security/permabrig) "aiH" = ( @@ -5017,15 +4948,15 @@ }, /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, /turf/simulated/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 + dir = 1; + icon_state = "redcorner" }, /area/security/permabrig) "aiI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 + dir = 1; + icon_state = "redcorner" }, /area/security/permabrig) "aiJ" = ( @@ -5036,8 +4967,8 @@ scrub_Toxins = 0 }, /turf/simulated/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 + dir = 1; + icon_state = "redcorner" }, /area/security/permabrig) "aiK" = ( @@ -5070,9 +5001,9 @@ pixel_y = -3 }, /turf/simulated/floor/plasteel{ - tag = "icon-vault (NORTH)"; + dir = 1; icon_state = "vault"; - dir = 1 + tag = "icon-vault (NORTH)" }, /area/security/armoury) "aiN" = ( @@ -5094,9 +5025,9 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ - tag = "icon-vault (EAST)"; + dir = 4; icon_state = "vault"; - dir = 4 + tag = "icon-vault (EAST)" }, /area/security/armoury) "aiP" = ( @@ -5132,8 +5063,8 @@ pixel_y = -24 }, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/security/permabrig) "aiT" = ( @@ -5148,8 +5079,8 @@ }, /obj/item/storage/box/prisoner, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/security/permabrig) "aiU" = ( @@ -5162,8 +5093,8 @@ icon_state = "1-2" }, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/security/permabrig) "aiV" = ( @@ -5188,6 +5119,7 @@ d2 = 8; icon_state = "2-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -5195,7 +5127,6 @@ "aiX" = ( /obj/structure/table/wood, /obj/item/flashlight/lamp, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/carpet, /area/security/hos) "aiY" = ( @@ -5214,7 +5145,6 @@ pixel_y = -1 }, /obj/structure/table/wood, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/carpet, /area/security/hos) "aja" = ( @@ -5228,6 +5158,7 @@ d2 = 2; icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -5235,8 +5166,8 @@ "ajb" = ( /obj/structure/closet/firecloset, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/crew_quarters/fitness{ name = "\improper Recreation Area" @@ -5263,8 +5194,8 @@ pixel_y = -30 }, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/security/permabrig) "aje" = ( @@ -5277,8 +5208,8 @@ icon_state = "1-2" }, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/security/permabrig) "ajf" = ( @@ -5306,9 +5237,9 @@ /obj/structure/rack, /obj/item/storage/fancy, /turf/simulated/floor/plasteel{ - tag = "icon-vault (NORTH)"; + dir = 1; icon_state = "vault"; - dir = 1 + tag = "icon-vault (NORTH)" }, /area/security/armoury) "aji" = ( @@ -5354,6 +5285,9 @@ d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "neutralcorner" @@ -5407,8 +5341,8 @@ }, /turf/simulated/floor/plating, /turf/simulated/shuttle/wall{ - icon_state = "swall_f5"; - dir = 2 + dir = 2; + icon_state = "swall_f5" }, /area/shuttle/pod_3) "ajt" = ( @@ -5431,7 +5365,7 @@ /area/shuttle/vox) "ajv" = ( /obj/machinery/atmospherics/unary/vent_scrubber{ - dir = 2; + dir = 8; on = 1; scrub_N2O = 0; scrub_Toxins = 0 @@ -5449,8 +5383,8 @@ /obj/item/clothing/suit/space/hardsuit/security, /obj/item/clothing/mask/gas/sechailer, /turf/simulated/floor/plasteel{ - icon_state = "vault"; - dir = 4 + dir = 4; + icon_state = "vault" }, /area/security/permabrig) "ajx" = ( @@ -5474,8 +5408,8 @@ pixel_y = -30 }, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/security/hos) "ajy" = ( @@ -5508,8 +5442,8 @@ pixel_y = -32 }, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/security/hos) "ajA" = ( @@ -5517,12 +5451,12 @@ dir = 8 }, /turf/simulated/floor/plasteel{ - icon_state = "vault"; - dir = 5 + dir = 5; + icon_state = "vault" }, /turf/simulated/shuttle/wall{ - icon_state = "swall_f6"; - dir = 2 + dir = 2; + icon_state = "swall_f6" }, /area/shuttle/pod_4) "ajB" = ( @@ -5535,8 +5469,8 @@ track = 0 }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + d2 = 4; + icon_state = "0-4" }, /turf/simulated/floor/plating, /area/maintenance/auxsolarport) @@ -5601,8 +5535,8 @@ req_access_txt = "2" }, /turf/simulated/floor/plasteel{ - icon_state = "red"; - dir = 1 + dir = 1; + icon_state = "red" }, /area/security/permabrig) "ajK" = ( @@ -5620,9 +5554,9 @@ pixel_y = -1 }, /turf/simulated/floor/plasteel{ - tag = "icon-vault (NORTH)"; + dir = 1; icon_state = "vault"; - dir = 1 + tag = "icon-vault (NORTH)" }, /area/security/armoury) "ajL" = ( @@ -5638,17 +5572,17 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ - tag = "icon-vault (EAST)"; + dir = 4; icon_state = "vault"; - dir = 4 + tag = "icon-vault (EAST)" }, /area/security/armoury) "ajM" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/plasteel{ - tag = "icon-vault (WEST)"; + dir = 8; icon_state = "vault"; - dir = 8 + tag = "icon-vault (WEST)" }, /area/security/armoury) "ajN" = ( @@ -5660,7 +5594,6 @@ /turf/simulated/floor/plating, /area/maintenance/auxsolarport) "ajO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/bed/dogbed, /turf/simulated/floor/carpet, /area/security/hos) @@ -5670,8 +5603,8 @@ /obj/item/clothing/suit/space/hardsuit/security, /obj/item/clothing/mask/gas/sechailer, /turf/simulated/floor/plasteel{ - icon_state = "vault"; - dir = 1 + dir = 1; + icon_state = "vault" }, /area/security/permabrig) "ajQ" = ( @@ -5689,9 +5622,9 @@ "ajR" = ( /obj/structure/dispenser/oxygen, /turf/simulated/floor/plasteel{ - tag = "icon-vault (WEST)"; + dir = 8; icon_state = "vault"; - dir = 8 + tag = "icon-vault (WEST)" }, /area/security/permabrig) "ajS" = ( @@ -5739,9 +5672,9 @@ /obj/structure/rack, /obj/item/storage/box/teargas, /turf/simulated/floor/plasteel{ - tag = "icon-vault (NORTH)"; + dir = 1; icon_state = "vault"; - dir = 1 + tag = "icon-vault (NORTH)" }, /area/security/armoury) "ajX" = ( @@ -5757,14 +5690,18 @@ d2 = 2; icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ icon_state = "dark" }, /area/security/hos) "ajZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/security/armoury) "aka" = ( @@ -5778,27 +5715,31 @@ /turf/simulated/floor/carpet, /area/security/hos) "akb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/carpet, /area/security/hos) "akc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plasteel{ - tag = "icon-vault (SOUTHEAST)"; - icon_state = "vault"; +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "vault"; + tag = "icon-vault (SOUTHEAST)" + }, /area/security/armoury) "akd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/yellow{ d1 = 2; d2 = 8; icon_state = "2-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/security/armoury) "ake" = ( @@ -5836,9 +5777,12 @@ d2 = 4; icon_state = "0-4" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/security/armoury) "akh" = ( @@ -5870,6 +5814,9 @@ }) "akl" = ( /obj/structure/chair, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "neutralcorner" @@ -5887,7 +5834,7 @@ }) "akn" = ( /obj/machinery/atmospherics/unary/vent_pump{ - dir = 2; + dir = 8; on = 1 }, /turf/simulated/floor/plasteel, @@ -5902,14 +5849,6 @@ dir = 4; icon_state = "neutralcorner" }, -/area/crew_quarters/fitness{ - name = "\improper Recreation Area" - }) -"akp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - req_access_txt = "0" - }, -/turf/simulated/wall, /area/crew_quarters/fitness{ name = "\improper Recreation Area" }) @@ -5928,6 +5867,7 @@ req_access_txt = "3" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/security/armoury) "aks" = ( @@ -5951,9 +5891,9 @@ /obj/item/clothing/head/helmet/riot, /obj/item/clothing/head/helmet/riot, /turf/simulated/floor/plasteel{ - tag = "icon-vault (WEST)"; + dir = 8; icon_state = "vault"; - dir = 8 + tag = "icon-vault (WEST)" }, /area/security/armoury) "akv" = ( @@ -6021,13 +5961,12 @@ /area/security/hos) "akA" = ( /turf/simulated/floor/plasteel{ - tag = "icon-vault (SOUTHWEST)"; + dir = 10; icon_state = "vault"; - dir = 10 + tag = "icon-vault (SOUTHWEST)" }, /area/security/armoury) "akB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -6036,21 +5975,23 @@ d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /mob/living/simple_animal/hostile/retaliate/araneus, /turf/simulated/floor/carpet, /area/security/hos) "akC" = ( /obj/structure/table/reinforced, /obj/machinery/light{ - icon_state = "tube1"; - dir = 8 + dir = 8; + icon_state = "tube1" }, /obj/item/clothing/head/beret/sec, /obj/item/clothing/suit/jacket/pilot, /obj/machinery/alarm{ pixel_y = 24 }, -/obj/machinery/atmospherics/unary/vent_scrubber, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -6065,9 +6006,9 @@ icon_state = "4-8" }, /turf/simulated/floor/plasteel{ - tag = "icon-vault (WEST)"; + dir = 8; icon_state = "vault"; - dir = 8 + tag = "icon-vault (WEST)" }, /area/security/permabrig) "akF" = ( @@ -6083,9 +6024,9 @@ network = list("SS13") }, /turf/simulated/floor/plasteel{ - tag = "icon-vault (WEST)"; + dir = 8; icon_state = "vault"; - dir = 8 + tag = "icon-vault (WEST)" }, /area/security/permabrig) "akG" = ( @@ -6101,8 +6042,8 @@ icon_state = "2-8" }, /turf/simulated/floor/plasteel{ - icon_state = "red"; - dir = 1 + dir = 1; + icon_state = "red" }, /area/security/permabrig) "akH" = ( @@ -6131,14 +6072,14 @@ pixel_y = 30 }, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/security/main) "akK" = ( /turf/simulated/floor/plasteel{ - icon_state = "red"; - dir = 1 + dir = 1; + icon_state = "red" }, /area/security/permabrig) "akL" = ( @@ -6164,25 +6105,18 @@ dir = 2; id_tag = "armoryshutter" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plasteel{ - tag = "icon-vault (WEST)"; + dir = 8; icon_state = "vault"; - dir = 8 + tag = "icon-vault (WEST)" }, /area/security/armoury) "akO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8; - initialize_directions = 11; - level = 1 - }, /obj/machinery/firealarm{ dir = 8; pixel_x = -26; @@ -6193,6 +6127,12 @@ d2 = 4; icon_state = "2-4" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -6216,9 +6156,12 @@ d2 = 4; icon_state = "1-4" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/security/hos) "akR" = ( @@ -6252,6 +6195,12 @@ d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, /turf/simulated/floor/carpet, /area/security/hos) "akT" = ( @@ -6276,9 +6225,12 @@ d2 = 8; icon_state = "1-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/security/hos) "akV" = ( @@ -6317,7 +6269,6 @@ d2 = 8; icon_state = "0-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/door/poddoor{ density = 0; icon_state = "open"; @@ -6336,17 +6287,14 @@ name = "Station Intercom (General)"; pixel_y = 26 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plasteel{ - icon_state = "red"; - dir = 1 + dir = 1; + icon_state = "red" }, /area/security/main) "ala" = ( @@ -6400,41 +6348,7 @@ /area/crew_quarters/fitness{ name = "\improper Recreation Area" }) -"alf" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/plasteel, -/area/crew_quarters/fitness{ - name = "\improper Recreation Area" - }) -"alg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "neutralcorner" - }, -/area/crew_quarters/fitness{ - name = "\improper Recreation Area" - }) "alh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Holodeck Door" - }, -/turf/simulated/floor/plasteel, -/area/crew_quarters/fitness{ - name = "\improper Recreation Area" - }) -"ali" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ name = "Holodeck Door" @@ -6444,9 +6358,6 @@ name = "\improper Recreation Area" }) "alj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /obj/machinery/light/small{ dir = 1 }, @@ -6461,18 +6372,15 @@ /obj/machinery/alarm{ pixel_y = 24 }, -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 8; - on = 1 - }, +/obj/machinery/atmospherics/unary/vent_pump, /turf/simulated/floor/plasteel, /area/crew_quarters/fitness{ name = "\improper Recreation Area" }) "all" = ( /obj/structure/shuttle/engine/propulsion{ - tag = "icon-propulsion_l"; - icon_state = "propulsion_l" + icon_state = "propulsion_l"; + tag = "icon-propulsion_l" }, /turf/simulated/shuttle/plating, /area/shuttle/vox) @@ -6509,6 +6417,9 @@ d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, /turf/simulated/floor/plasteel, /area/security/armoury) "alo" = ( @@ -6570,7 +6481,6 @@ d2 = 4; icon_state = "0-4" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/door/poddoor{ density = 0; icon_state = "open"; @@ -6662,16 +6572,17 @@ name = "Port Maintenance" }) "alA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/carpet, /area/security/hos) "alB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; @@ -6699,8 +6610,8 @@ /area/security/main) "alE" = ( /obj/machinery/light_switch{ - name = "light switch "; dir = 2; + name = "light switch "; pixel_y = -22 }, /obj/structure/table/reinforced, @@ -6711,8 +6622,8 @@ /area/security/podbay) "alF" = ( /turf/simulated/floor/plasteel{ - icon_state = "red"; - dir = 1 + dir = 1; + icon_state = "red" }, /area/security/brig) "alG" = ( @@ -6783,15 +6694,15 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ - icon_state = "red"; - dir = 9 + dir = 9; + icon_state = "red" }, /area/security/brig) "alO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ - icon_state = "red"; - dir = 5 + dir = 5; + icon_state = "red" }, /area/security/brig) "alP" = ( @@ -6836,6 +6747,8 @@ d2 = 8; icon_state = "2-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/carpet, /area/security/hos) "alS" = ( @@ -6869,29 +6782,11 @@ /obj/structure/cable/yellow, /turf/simulated/floor/plating, /area/security/armoury) -"alV" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/security/main) "alW" = ( /turf/simulated/floor/plating, /area/maintenance/fore) "alX" = ( -/obj/machinery/atmospherics/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, +/obj/machinery/atmospherics/unary/vent_scrubber, /turf/simulated/floor/plasteel{ icon_state = "showroomfloor" }, @@ -6934,20 +6829,20 @@ }) "amc" = ( /turf/simulated/floor/plasteel{ - icon_state = "vault"; - dir = 5 + dir = 5; + icon_state = "vault" }, /area/crew_quarters/fitness{ name = "\improper Recreation Area" }) "amd" = ( /obj/machinery/atmospherics/unary/vent_pump{ - dir = 2; + dir = 1; on = 1 }, /turf/simulated/floor/plasteel{ - icon_state = "vault"; - dir = 5 + dir = 5; + icon_state = "vault" }, /area/crew_quarters/fitness{ name = "\improper Recreation Area" @@ -6970,12 +6865,6 @@ dir = 8; icon_state = "neutralcorner" }, -/area/crew_quarters/fitness{ - name = "\improper Recreation Area" - }) -"amg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plasteel, /area/crew_quarters/fitness{ name = "\improper Recreation Area" }) @@ -7089,8 +6978,8 @@ /area/maintenance/auxsolarport) "ams" = ( /obj/structure/sink{ - icon_state = "sink"; dir = 8; + icon_state = "sink"; pixel_x = -12; pixel_y = 2 }, @@ -7167,12 +7056,9 @@ d2 = 8; icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, /turf/simulated/floor/plasteel{ - icon_state = "red"; - dir = 1 + dir = 1; + icon_state = "red" }, /area/security/main) "amz" = ( @@ -7190,8 +7076,8 @@ icon_state = "1-4" }, /turf/simulated/floor/plasteel{ - icon_state = "red"; - dir = 9 + dir = 9; + icon_state = "red" }, /area/security/main) "amB" = ( @@ -7209,42 +7095,15 @@ dir = 1; icon_state = "pipe-c" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 }, /turf/simulated/floor/plasteel{ - icon_state = "red"; - dir = 1 - }, -/area/security/main) -"amC" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/plasteel{ - icon_state = "red"; - dir = 1 - }, -/area/security/main) -"amD" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/plasteel{ - icon_state = "red"; - dir = 1 + dir = 1; + icon_state = "red" }, /area/security/main) "amE" = ( @@ -7252,9 +7111,6 @@ /turf/simulated/floor/plating, /area/security/brig) "amF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; @@ -7263,12 +7119,15 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/plasteel{ - icon_state = "red"; - dir = 1 + dir = 1; + icon_state = "red" }, /area/security/main) "amG" = ( @@ -7277,16 +7136,15 @@ d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - level = 1 - }, /turf/simulated/floor/plasteel{ - icon_state = "red"; - dir = 1 + dir = 1; + icon_state = "red" }, /area/security/main) "amH" = ( @@ -7305,16 +7163,15 @@ dir = 2; icon_state = "pipe-c" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1; - initialize_directions = 11 - }, /turf/simulated/floor/plasteel{ - icon_state = "red"; - dir = 1 + dir = 1; + icon_state = "red" }, /area/security/main) "amI" = ( @@ -7337,8 +7194,7 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - level = 1 + dir = 4 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -7355,16 +7211,15 @@ d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - level = 1 - }, /turf/simulated/floor/plasteel{ - icon_state = "red"; - dir = 5 + dir = 5; + icon_state = "red" }, /area/security/main) "amK" = ( @@ -7400,8 +7255,8 @@ icon_state = "1-2" }, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/security/main) "amN" = ( @@ -7415,13 +7270,11 @@ d2 = 8; icon_state = "1-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, /obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/plasteel, /area/crew_quarters/fitness{ name = "\improper Recreation Area" @@ -7438,16 +7291,15 @@ }, /obj/structure/closet/secure_closet/security, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/security/main) "amQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/closet/secure_closet/security, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/security/main) "amR" = ( @@ -7457,17 +7309,11 @@ icon_state = "1-2" }, /obj/structure/disposalpipe/segment, -/turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" - }, -/area/security/main) -"amS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/closet/secure_closet/security, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/security/main) "amT" = ( @@ -7479,8 +7325,8 @@ }, /obj/structure/closet/secure_closet/security, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/security/main) "amU" = ( @@ -7490,8 +7336,8 @@ pixel_y = 6 }, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/security/main) "amV" = ( @@ -7540,16 +7386,21 @@ d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, /turf/simulated/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 + dir = 1; + icon_state = "redcorner" }, /area/security/brig) "amZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, /turf/simulated/floor/plasteel, /area/security/armoury) "ana" = ( @@ -7561,6 +7412,9 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, /turf/simulated/floor/plasteel, /area/security/armoury) "anb" = ( @@ -7572,66 +7426,27 @@ d2 = 4; icon_state = "1-4" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, /turf/simulated/floor/plasteel, /area/security/armoury) "anc" = ( /obj/structure/chair/stool{ pixel_y = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /turf/simulated/floor/plasteel, /area/crew_quarters/fitness{ name = "\improper Recreation Area" }) "and" = ( /obj/structure/table, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /obj/item/storage/firstaid/brute, /turf/simulated/floor/plasteel, -/area/crew_quarters/fitness{ - name = "\improper Recreation Area" - }) -"ane" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - icon_state = "dark" - }, -/area/crew_quarters/fitness{ - name = "\improper Recreation Area" - }) -"anf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/crew_quarters/fitness{ - name = "\improper Recreation Area" - }) -"ang" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, /area/crew_quarters/fitness{ name = "\improper Recreation Area" }) "anh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/hologram/holopad, /turf/simulated/floor/plasteel, /area/crew_quarters/fitness{ @@ -7656,6 +7471,7 @@ /obj/structure/chair{ dir = 8 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel, /area/crew_quarters/fitness{ name = "\improper Recreation Area" @@ -7667,8 +7483,8 @@ /area/engine/gravitygenerator) "anl" = ( /turf/simulated/floor/plasteel{ - icon_state = "vault"; - dir = 1 + dir = 1; + icon_state = "vault" }, /area/engine/gravitygenerator) "anm" = ( @@ -7687,8 +7503,8 @@ /area/maintenance/auxsolarport) "ann" = ( /turf/simulated/floor/plasteel{ - icon_state = "vault"; - dir = 4 + dir = 4; + icon_state = "vault" }, /area/engine/gravitygenerator) "ano" = ( @@ -7717,20 +7533,20 @@ "ant" = ( /obj/structure/grille, /obj/structure/shuttle/window{ - tag = "icon-window5_end"; + dir = 2; icon = 'icons/turf/shuttle.dmi'; icon_state = "window5_end"; - dir = 2 + tag = "icon-window5_end" }, /turf/simulated/shuttle/plating/vox, /area/shuttle/vox) "anu" = ( /obj/structure/grille, /obj/structure/shuttle/window{ - tag = "icon-window5_end (NORTH)"; + dir = 1; icon = 'icons/turf/shuttle.dmi'; icon_state = "window5_end"; - dir = 1 + tag = "icon-window5_end (NORTH)" }, /turf/simulated/shuttle/plating/vox, /area/shuttle/vox) @@ -7758,15 +7574,6 @@ /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/maintenance/disposal) -"anx" = ( -/obj/effect/spawner/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/plating, -/area/security/brig) "any" = ( /obj/effect/decal/warning_stripes/south, /turf/simulated/floor/plating, @@ -7937,10 +7744,10 @@ icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/security/armoury) "anM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, @@ -7954,6 +7761,11 @@ d2 = 8; icon_state = "2-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10; + initialize_directions = 10; + level = 1 + }, /turf/simulated/floor/plasteel{ icon_state = "showroomfloor" }, @@ -7967,6 +7779,7 @@ d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/plasteel{ icon_state = "showroomfloor" }, @@ -8024,8 +7837,8 @@ pixel_y = 1 }, /turf/simulated/floor/plasteel{ - icon_state = "red"; - dir = 8 + dir = 8; + icon_state = "red" }, /area/security/main) "anU" = ( @@ -8039,16 +7852,15 @@ /area/security/main) "anV" = ( /turf/simulated/floor/plasteel{ - icon_state = "red"; - dir = 5 + dir = 5; + icon_state = "red" }, /area/security/main) "anW" = ( /obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ - icon_state = "red"; - dir = 1 + dir = 1; + icon_state = "red" }, /area/security/main) "anX" = ( @@ -8113,20 +7925,19 @@ pixel_x = 27 }, /turf/simulated/floor/plasteel{ - icon_state = "red"; - dir = 4 + dir = 4; + icon_state = "red" }, /area/security/main) "aoe" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plasteel{ - icon_state = "red"; - dir = 1 + dir = 1; + icon_state = "red" }, /area/security/main) "aof" = ( @@ -8140,8 +7951,8 @@ network = list("SS13") }, /turf/simulated/floor/plasteel{ - icon_state = "red"; - dir = 8 + dir = 8; + icon_state = "red" }, /area/security/main) "aoh" = ( @@ -8152,8 +7963,8 @@ name = "Security Officer" }, /turf/simulated/floor/plasteel{ - icon_state = "red"; - dir = 4 + dir = 4; + icon_state = "red" }, /area/security/main) "aoi" = ( @@ -8164,7 +7975,6 @@ }, /obj/item/pen, /obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/security/main) "aoj" = ( @@ -8173,9 +7983,9 @@ }, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plasteel{ - tag = "icon-vault (WEST)"; + dir = 8; icon_state = "vault"; - dir = 8 + tag = "icon-vault (WEST)" }, /area/security/evidence) "aok" = ( @@ -8204,10 +8014,11 @@ name = "Evidence Storage"; req_access_txt = "3" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ - tag = "icon-vault (WEST)"; + dir = 8; icon_state = "vault"; - dir = 8 + tag = "icon-vault (WEST)" }, /area/security/armoury) "aoo" = ( @@ -8230,9 +8041,9 @@ }, /obj/machinery/disposal, /turf/simulated/floor/plasteel{ - tag = "icon-cafeteria (NORTHEAST)"; + dir = 5; icon_state = "cafeteria"; - dir = 5 + tag = "icon-cafeteria (NORTHEAST)" }, /area/security/brig) "aoq" = ( @@ -8247,12 +8058,6 @@ dir = 1; network = list("SS13") }, -/obj/machinery/atmospherics/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -8271,9 +8076,20 @@ }, /area/security/brig) "aos" = ( +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 8; + external_pressure_bound = 0; + frequency = 1441; + id_tag = "tox_out"; + initialize_directions = 1; + internal_pressure_bound = 4000; + on = 1; + pressure_checks = 2; + pump_direction = 0 + }, /turf/simulated/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 + dir = 4; + icon_state = "redcorner" }, /area/security/brig) "aot" = ( @@ -8282,9 +8098,9 @@ }, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plasteel{ - tag = "icon-vault (WEST)"; + dir = 8; icon_state = "vault"; - dir = 8 + tag = "icon-vault (WEST)" }, /area/security/evidence) "aou" = ( @@ -8306,9 +8122,9 @@ name = "Evidence Closet" }, /turf/simulated/floor/plasteel{ - tag = "icon-vault (WEST)"; + dir = 8; icon_state = "vault"; - dir = 8 + tag = "icon-vault (WEST)" }, /area/security/evidence) "aow" = ( @@ -8321,15 +8137,15 @@ pixel_x = 24 }, /turf/simulated/floor/plasteel{ - tag = "icon-vault (WEST)"; + dir = 8; icon_state = "vault"; - dir = 8 + tag = "icon-vault (WEST)" }, /area/security/evidence) "aox" = ( /turf/simulated/floor/plasteel{ - icon_state = "red"; - dir = 8 + dir = 8; + icon_state = "red" }, /area/security/main) "aoy" = ( @@ -8340,17 +8156,8 @@ scrub_Toxins = 0 }, /turf/simulated/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/crew_quarters/fitness{ - name = "\improper Recreation Area" - }) -"aoz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plasteel{ - icon_state = "vault"; - dir = 5 + dir = 5; + icon_state = "vault" }, /area/crew_quarters/fitness{ name = "\improper Recreation Area" @@ -8363,41 +8170,6 @@ dir = 1; icon_state = "neutralcorner" }, -/area/crew_quarters/fitness{ - name = "\improper Recreation Area" - }) -"aoB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/plasteel{ - dir = 2; - icon_state = "neutralcorner" - }, -/area/crew_quarters/fitness{ - name = "\improper Recreation Area" - }) -"aoC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Holodeck Door" - }, -/turf/simulated/floor/plasteel, -/area/crew_quarters/fitness{ - name = "\improper Recreation Area" - }) -"aoD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Holodeck Door" - }, -/turf/simulated/floor/plasteel, /area/crew_quarters/fitness{ name = "\improper Recreation Area" }) @@ -8420,11 +8192,8 @@ }, /area/crew_quarters/sleep) "aoF" = ( -/obj/machinery/atmospherics/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_Toxins = 0 - }, +/obj/machinery/atmospherics/unary/vent_scrubber, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel, /area/crew_quarters/fitness{ name = "\improper Recreation Area" @@ -8434,14 +8203,20 @@ /area/maintenance/starboard) "aoH" = ( /obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, /turf/simulated/floor/plasteel{ icon_state = "redfull" }, /area/security/main) "aoI" = ( /obj/machinery/light{ - icon_state = "tube1"; - dir = 8 + dir = 8; + icon_state = "tube1" }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -8449,8 +8224,8 @@ /area/engine/gravitygenerator) "aoJ" = ( /turf/simulated/floor/plasteel{ - icon_state = "vault"; - dir = 8 + dir = 8; + icon_state = "vault" }, /area/engine/gravitygenerator) "aoK" = ( @@ -8470,7 +8245,6 @@ }, /obj/item/stack/packageWrap, /obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/security/main) "aoM" = ( @@ -8671,13 +8445,16 @@ pixel_x = 30 }, /turf/simulated/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 + dir = 4; + icon_state = "redcorner" }, /area/security/brig) "apj" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -8714,15 +8491,18 @@ /area/security/brig) "apm" = ( /obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/security/brig) "apn" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 8 }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 + dir = 4; + icon_state = "redcorner" }, /area/security/brig) "apo" = ( @@ -8730,9 +8510,9 @@ name = "Evidence Closet" }, /turf/simulated/floor/plasteel{ - tag = "icon-vault (NORTH)"; + dir = 1; icon_state = "vault"; - dir = 1 + tag = "icon-vault (NORTH)" }, /area/security/warden) "app" = ( @@ -8742,10 +8522,11 @@ scrub_N2O = 0; scrub_Toxins = 0 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ - tag = "icon-vault (WEST)"; + dir = 8; icon_state = "vault"; - dir = 8 + tag = "icon-vault (WEST)" }, /area/security/warden) "apq" = ( @@ -8755,9 +8536,9 @@ pixel_y = 6 }, /turf/simulated/floor/plasteel{ - tag = "icon-cafeteria (NORTHEAST)"; + dir = 5; icon_state = "cafeteria"; - dir = 5 + tag = "icon-cafeteria (NORTHEAST)" }, /area/security/brig) "apr" = ( @@ -8775,24 +8556,18 @@ /obj/item/storage/fancy/donut_box, /obj/structure/table, /turf/simulated/floor/plasteel{ - tag = "icon-cafeteria (NORTHEAST)"; + dir = 5; icon_state = "cafeteria"; - dir = 5 + tag = "icon-cafeteria (NORTHEAST)" }, /area/security/brig) "apt" = ( /obj/structure/reagent_dispensers/peppertank{ pixel_x = -32 }, -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 4; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, /turf/simulated/floor/plasteel{ - icon_state = "red"; - dir = 8 + dir = 8; + icon_state = "red" }, /area/security/main) "apu" = ( @@ -8803,9 +8578,9 @@ scrub_Toxins = 0 }, /turf/simulated/floor/plasteel{ - tag = "icon-vault (WEST)"; + dir = 8; icon_state = "vault"; - dir = 8 + tag = "icon-vault (WEST)" }, /area/security/evidence) "apv" = ( @@ -8816,33 +8591,11 @@ dir = 6 }, /turf/simulated/floor/plasteel{ - tag = "icon-vault (WEST)"; + dir = 8; icon_state = "vault"; - dir = 8 + tag = "icon-vault (WEST)" }, /area/security/evidence) -"apw" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/landmark/start{ - name = "Security Officer" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4; - initialize_directions = 11; - level = 1 - }, -/turf/simulated/floor/plasteel{ - icon_state = "red"; - dir = 8 - }, -/area/security/main) "apx" = ( /obj/effect/decal/cleanable/blood/oil, /obj/machinery/light_switch{ @@ -8867,25 +8620,23 @@ }, /obj/item/storage/box/donkpockets, /obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/security/main) "apA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plasteel{ - icon_state = "red"; - dir = 9 + dir = 9; + icon_state = "red" }, /area/security/main) "apB" = ( /turf/simulated/floor/plasteel{ - icon_state = "red"; - dir = 1 + dir = 1; + icon_state = "red" }, /area/security/main) "apC" = ( @@ -8903,6 +8654,8 @@ /obj/effect/landmark/start{ name = "Head of Security" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/security/main) "apF" = ( @@ -8915,12 +8668,9 @@ dir = 8; network = list("SS13") }, -/obj/machinery/atmospherics/unary/vent_scrubber{ - on = 1 - }, /turf/simulated/floor/plasteel{ - icon_state = "red"; - dir = 4 + dir = 4; + icon_state = "red" }, /area/security/main) "apH" = ( @@ -8943,8 +8693,8 @@ pixel_y = 32 }, /turf/simulated/floor/plasteel{ - icon_state = "vault"; - dir = 8 + dir = 8; + icon_state = "vault" }, /area/engine/gravitygenerator) "apK" = ( @@ -9024,18 +8774,18 @@ req_access_txt = "63" }, /obj/effect/mapping_helpers/airlock/unres{ - icon_state = "airlock_unres_helper"; - dir = 1 + dir = 1; + icon_state = "airlock_unres_helper" }, /turf/simulated/floor/plasteel{ - icon_state = "red"; - dir = 1 + dir = 1; + icon_state = "red" }, /area/security/brig) "apQ" = ( /obj/machinery/sleeper{ - icon_state = "sleeper-open"; - dir = 4 + dir = 4; + icon_state = "sleeper-open" }, /turf/simulated/floor/plasteel{ dir = 8; @@ -9089,7 +8839,6 @@ }) "apW" = ( /obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -9119,7 +8868,6 @@ /obj/structure/chair{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "neutralcorner" @@ -9132,27 +8880,22 @@ icon_state = "white" }, /area/security/brig) -"aqb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/wall, -/area/crew_quarters/fitness{ - name = "\improper Recreation Area" - }) "aqc" = ( /obj/machinery/door/airlock/maintenance{ name = "maintenance access"; req_access_txt = "12" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plating, /area/maintenance/starboard) "aqd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/sign/pods{ pixel_x = 32 }, /turf/simulated/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 + dir = 4; + icon_state = "redcorner" }, /area/security/brig) "aqe" = ( @@ -9160,37 +8903,11 @@ /obj/machinery/suit_storage_unit/engine/secure, /turf/simulated/floor/plasteel, /area/engine/engineering) -"aqf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/plasteel{ - icon_state = "dark" - }, -/area/engine/gravitygenerator) -"aqg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/plasteel{ - icon_state = "vault"; - dir = 4 - }, -/area/engine/gravitygenerator) "aqh" = ( /obj/machinery/gravity_generator/main/station, /turf/simulated/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/engine/gravitygenerator) -"aqi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/plasteel{ - icon_state = "vault"; - dir = 1 + dir = 8; + icon_state = "vault" }, /area/engine/gravitygenerator) "aqj" = ( @@ -9209,8 +8926,7 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - level = 1 + dir = 4 }, /turf/simulated/floor/plasteel{ icon_state = "red" @@ -9293,6 +9009,8 @@ /area/maintenance/disposal) "aqt" = ( /obj/effect/decal/warning_stripes/north, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plating, /area/maintenance/starboard) "aqu" = ( @@ -9342,9 +9060,9 @@ dir = 8 }, /turf/simulated/floor/plasteel{ - tag = "icon-vault (WEST)"; + dir = 8; icon_state = "vault"; - dir = 8 + tag = "icon-vault (WEST)" }, /area/security/warden) "aqy" = ( @@ -9403,13 +9121,6 @@ /area/maintenance/fpmaint2{ name = "Port Maintenance" }) -"aqD" = ( -/obj/effect/spawner/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/crew_quarters/fitness{ - name = "\improper Recreation Area" - }) "aqE" = ( /obj/machinery/door/airlock/security/glass{ name = "N2O Storage"; @@ -9427,9 +9138,6 @@ }, /turf/simulated/floor/plating, /area/security/brig) -"aqG" = ( -/turf/simulated/floor/plasteel, -/area/security/armoury) "aqH" = ( /obj/machinery/atmospherics/unary/vent_pump{ dir = 4; @@ -9447,32 +9155,32 @@ }, /obj/machinery/recharger, /turf/simulated/floor/plasteel{ - tag = "icon-vault (WEST)"; + dir = 8; icon_state = "vault"; - dir = 8 + tag = "icon-vault (WEST)" }, /area/security/warden) "aqJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 + dir = 1; + icon_state = "redcorner" }, /area/security/brig) "aqK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ - tag = "icon-vault (WEST)"; + dir = 8; icon_state = "vault"; - dir = 8 + tag = "icon-vault (WEST)" }, /area/security/warden) "aqL" = ( /obj/structure/table, /turf/simulated/floor/plasteel{ - tag = "icon-cafeteria (NORTHEAST)"; + dir = 5; icon_state = "cafeteria"; - dir = 5 + tag = "icon-cafeteria (NORTHEAST)" }, /area/security/brig) "aqM" = ( @@ -9502,9 +9210,9 @@ /area/security/brig) "aqN" = ( /turf/simulated/floor/plasteel{ - tag = "icon-cafeteria (NORTHEAST)"; + dir = 5; icon_state = "cafeteria"; - dir = 5 + tag = "icon-cafeteria (NORTHEAST)" }, /area/security/brig) "aqO" = ( @@ -9546,8 +9254,8 @@ level = 1 }, /turf/simulated/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 + dir = 4; + icon_state = "redcorner" }, /area/security/brig) "aqQ" = ( @@ -9556,9 +9264,9 @@ on = 1 }, /turf/simulated/floor/plasteel{ - tag = "icon-vault (WEST)"; + dir = 8; icon_state = "vault"; - dir = 8 + tag = "icon-vault (WEST)" }, /area/security/evidence) "aqR" = ( @@ -9575,15 +9283,12 @@ level = 1 }, /turf/simulated/floor/plasteel{ - tag = "icon-vault (WEST)"; + dir = 8; icon_state = "vault"; - dir = 8 + tag = "icon-vault (WEST)" }, /area/security/evidence) "aqS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/machinery/camera{ c_tag = "Holodeck"; dir = 1 @@ -9608,21 +9313,20 @@ network = list("SS13") }, /turf/simulated/floor/plasteel{ - tag = "icon-vault (WEST)"; + dir = 8; icon_state = "vault"; - dir = 8 + tag = "icon-vault (WEST)" }, /area/security/evidence) "aqU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plasteel{ - icon_state = "red"; - dir = 10 + dir = 10; + icon_state = "red" }, /area/security/main) "aqV" = ( @@ -9638,8 +9342,8 @@ /area/security/main) "aqW" = ( /turf/simulated/floor/plasteel{ - icon_state = "red"; - dir = 6 + dir = 6; + icon_state = "red" }, /area/security/main) "aqX" = ( @@ -9650,7 +9354,6 @@ name = "Security Officer" }, /obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ icon_state = "red" }, @@ -9682,6 +9385,8 @@ "arb" = ( /obj/structure/table/reinforced, /obj/item/paper, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/security/main) "arc" = ( @@ -9703,13 +9408,6 @@ icon_state = "dark" }, /area/security/main) -"are" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/security/main) "arf" = ( /obj/machinery/door/airlock/public/glass{ name = "Cryodorms" @@ -9750,26 +9448,23 @@ level = 1 }, /turf/simulated/floor/plasteel{ - tag = "icon-vault (WEST)"; + dir = 8; icon_state = "vault"; - dir = 8 + tag = "icon-vault (WEST)" }, /area/security/evidence) "arh" = ( /obj/machinery/light{ - icon_state = "tube1"; - dir = 8 + dir = 8; + icon_state = "tube1" }, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8; - initialize_directions = 11 - }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel, /area/crew_quarters/fitness{ name = "\improper Recreation Area" @@ -9796,18 +9491,6 @@ icon_state = "white" }, /area/security/brig) -"ark" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/security/brig) "arl" = ( /obj/machinery/atmospherics/unary/vent_scrubber{ dir = 2; @@ -9841,32 +9524,10 @@ /obj/structure/chair{ dir = 1 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "neutralcorner" }, -/area/crew_quarters/fitness{ - name = "\improper Recreation Area" - }) -"arp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "neutralcorner" - }, -/area/crew_quarters/fitness{ - name = "\improper Recreation Area" - }) -"arq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/plasteel, /area/crew_quarters/fitness{ name = "\improper Recreation Area" }) @@ -9886,7 +9547,7 @@ /area/maintenance/disposal) "art" = ( /obj/machinery/atmospherics/unary/vent_pump{ - dir = 1; + dir = 4; on = 1 }, /turf/simulated/floor/plasteel{ @@ -9894,20 +9555,24 @@ }, /area/engine/gravitygenerator) "aru" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, /area/engine/gravitygenerator) "arv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, /area/engine/gravitygenerator) "arw" = ( /obj/machinery/atmospherics/unary/vent_scrubber{ - dir = 1; + dir = 8; on = 1; scrub_N2O = 0; scrub_Toxins = 0 @@ -10098,14 +9763,10 @@ /obj/structure/table, /obj/item/storage/box/evidence, /obj/item/hand_labeler, -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 7; - on = 1 - }, /turf/simulated/floor/plasteel{ - tag = "icon-vault (SOUTHEAST)"; + dir = 6; icon_state = "vault"; - dir = 6 + tag = "icon-vault (SOUTHEAST)" }, /area/security/warden) "arR" = ( @@ -10120,9 +9781,9 @@ pixel_x = 4 }, /turf/simulated/floor/plasteel{ - tag = "icon-vault (SOUTHWEST)"; + dir = 10; icon_state = "vault"; - dir = 10 + tag = "icon-vault (SOUTHWEST)" }, /area/security/warden) "arT" = ( @@ -10153,9 +9814,10 @@ }) "arV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/security/warden) "arW" = ( @@ -10180,9 +9842,9 @@ /obj/structure/table, /obj/item/storage/fancy/donut_box, /turf/simulated/floor/plasteel{ - tag = "icon-cafeteria (NORTHEAST)"; + dir = 5; icon_state = "cafeteria"; - dir = 5 + tag = "icon-cafeteria (NORTHEAST)" }, /area/security/brig) "arY" = ( @@ -10199,14 +9861,13 @@ /turf/simulated/floor/plasteel, /area/security/brig) "arZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/firealarm{ dir = 4; pixel_x = 28 }, /turf/simulated/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 + dir = 4; + icon_state = "redcorner" }, /area/security/brig) "asa" = ( @@ -10237,9 +9898,9 @@ scrub_Toxins = 0 }, /turf/simulated/floor/plasteel{ - tag = "icon-cafeteria (NORTHEAST)"; + dir = 5; icon_state = "cafeteria"; - dir = 5 + tag = "icon-cafeteria (NORTHEAST)" }, /area/security/brig) "asd" = ( @@ -10255,9 +9916,9 @@ /obj/structure/table, /obj/item/hand_labeler, /turf/simulated/floor/plasteel{ - tag = "icon-vault (WEST)"; + dir = 8; icon_state = "vault"; - dir = 8 + tag = "icon-vault (WEST)" }, /area/security/evidence) "asf" = ( @@ -10271,17 +9932,16 @@ }, /obj/structure/cable/yellow, /turf/simulated/floor/plasteel{ - tag = "icon-vault (WEST)"; + dir = 8; icon_state = "vault"; - dir = 8 + tag = "icon-vault (WEST)" }, /area/security/evidence) "asg" = ( /obj/effect/spawner/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + d2 = 2; + icon_state = "0-2" }, /obj/structure/cable{ d2 = 8; @@ -10293,18 +9953,16 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8; - initialize_directions = 11 - }, /obj/structure/cable/yellow{ d1 = 1; d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6; - level = 1 + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 }, /turf/simulated/floor/plasteel{ icon_state = "red" @@ -10319,8 +9977,8 @@ "asj" = ( /obj/effect/spawner/window/reinforced, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + d2 = 4; + icon_state = "0-4" }, /turf/simulated/floor/plating, /area/engine/gravitygenerator) @@ -10334,8 +9992,8 @@ }, /obj/machinery/disposal, /turf/simulated/floor/plasteel{ - icon_state = "red"; - dir = 10 + dir = 10; + icon_state = "red" }, /area/security/main) "asm" = ( @@ -10355,8 +10013,7 @@ icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - level = 1 + dir = 4 }, /turf/simulated/floor/plasteel{ icon_state = "red" @@ -10397,21 +10054,16 @@ d2 = 8; icon_state = "2-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - level = 1 - }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/plasteel{ icon_state = "red" }, /area/security/main) "asp" = ( /turf/simulated/floor/plasteel{ - icon_state = "red"; - dir = 4 + dir = 4; + icon_state = "red" }, /area/security/main) "asq" = ( @@ -10438,9 +10090,6 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /turf/simulated/floor/plasteel{ icon_state = "red" }, @@ -10465,9 +10114,8 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1; - initialize_directions = 11 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 }, /turf/simulated/floor/plasteel{ icon_state = "red" @@ -10488,9 +10136,6 @@ dir = 2; icon_state = "pipe-c" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /turf/simulated/floor/plasteel{ icon_state = "red" }, @@ -10531,10 +10176,6 @@ icon_state = "pipe-j2s"; sortType = 8 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 2; - initialize_directions = 11 - }, /turf/simulated/floor/plasteel{ icon_state = "red" }, @@ -10549,12 +10190,9 @@ d2 = 8; icon_state = "0-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, /turf/simulated/floor/plasteel{ - icon_state = "red"; - dir = 6 + dir = 6; + icon_state = "red" }, /area/security/main) "asy" = ( @@ -10607,6 +10245,9 @@ dir = 2; initialize_directions = 11 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/plasteel, /area/crew_quarters/fitness{ name = "\improper Recreation Area" @@ -10620,6 +10261,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" @@ -10633,9 +10277,9 @@ d2 = 8; icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 2; - initialize_directions = 11 +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 }, /turf/simulated/floor/plasteel{ dir = 8; @@ -10657,30 +10301,7 @@ }) "asF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plasteel{ - dir = 2; - icon_state = "neutralcorner" - }, -/area/crew_quarters/fitness{ - name = "\improper Recreation Area" - }) -"asG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - dir = 2; - icon_state = "neutralcorner" - }, -/area/crew_quarters/fitness{ - name = "\improper Recreation Area" - }) -"asH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 + dir = 10 }, /turf/simulated/floor/plasteel{ dir = 2; @@ -10702,9 +10323,6 @@ dir = 8; network = list("SS13") }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -10720,21 +10338,25 @@ d2 = 2; icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/storage/primary) "asM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4; + level = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, /turf/simulated/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 + dir = 1; + icon_state = "redcorner" }, /area/security/brig) "asN" = ( @@ -10747,40 +10369,18 @@ /obj/effect/spawner/lootdrop/maintenance, /turf/simulated/floor/plating, /area/maintenance/starboard) -"asO" = ( -/obj/effect/spawner/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/simulated/floor/plating, -/area/engine/gravitygenerator) -"asP" = ( -/obj/effect/spawner/window/reinforced, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/plating, -/area/engine/gravitygenerator) "asQ" = ( /obj/machinery/door/airlock/command/glass{ name = "Gravity Generator Area"; req_access_txt = "19; 61" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ icon_state = "dark" }, /area/engine/gravitygenerator) "asR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /obj/machinery/door/window/westleft{ base_state = "right"; dir = 4; @@ -10788,6 +10388,13 @@ name = "Infirmary"; req_access_txt = "0" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4; + level = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "whitered"; @@ -10817,23 +10424,22 @@ track = 0 }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + d2 = 4; + icon_state = "0-4" }, /turf/simulated/floor/plating, /area/maintenance/auxsolarstarboard) "asV" = ( /obj/machinery/light{ - icon_state = "tube1"; - dir = 4 + dir = 4; + icon_state = "tube1" }, /obj/structure/extinguisher_cabinet{ pixel_x = 27 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 + dir = 4; + icon_state = "redcorner" }, /area/security/brig) "asW" = ( @@ -10870,8 +10476,8 @@ }, /obj/machinery/cell_charger, /turf/simulated/floor/plasteel{ - icon_state = "vault"; - dir = 5 + dir = 5; + icon_state = "vault" }, /area/engine/mechanic_workshop) "asY" = ( @@ -10883,9 +10489,9 @@ /obj/item/harpoon, /obj/item/tank/nitrogen, /obj/machinery/light/spot{ - tag = "icon-tube1 (EAST)"; + dir = 4; icon_state = "tube1"; - dir = 4 + tag = "icon-tube1 (EAST)" }, /obj/effect/decal/warning_stripes/yellow/hollow, /turf/simulated/shuttle/floor4/vox, @@ -10904,8 +10510,8 @@ }, /obj/structure/table, /turf/simulated/floor/plasteel{ - icon_state = "red"; - dir = 5 + dir = 5; + icon_state = "red" }, /area/security/processing) "atc" = ( @@ -11076,37 +10682,34 @@ icon_state = "1-2" }, /obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/security/brig) "atr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 + dir = 4; + icon_state = "redcorner" }, /area/security/brig) "ats" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4; + initialize_directions = 11 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4; + initialize_directions = 11 }, /turf/simulated/floor/plasteel, /area/security/brig) -"att" = ( -/obj/effect/spawner/window/reinforced, -/obj/structure/cable/yellow{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating, -/area/security/warden) "atu" = ( /obj/structure/table, /obj/item/storage/box/cups, /turf/simulated/floor/plasteel{ - tag = "icon-cafeteria (NORTHEAST)"; + dir = 5; icon_state = "cafeteria"; - dir = 5 + tag = "icon-cafeteria (NORTHEAST)" }, /area/security/brig) "atv" = ( @@ -11117,10 +10720,7 @@ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 1; - on = 1 - }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel, /area/security/brig) "atw" = ( @@ -11133,8 +10733,8 @@ dir = 4 }, /turf/simulated/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 + dir = 4; + icon_state = "redcorner" }, /area/security/brig) "atx" = ( @@ -11236,12 +10836,12 @@ dir = 8 }, /turf/simulated/floor/plasteel{ - icon_state = "vault"; - dir = 5 + dir = 5; + icon_state = "vault" }, /turf/simulated/shuttle/wall{ - icon_state = "swall_f5"; - dir = 2 + dir = 2; + icon_state = "swall_f5" }, /area/shuttle/pod_4) "atJ" = ( @@ -11252,7 +10852,6 @@ /obj/item/stack/packageWrap, /obj/item/stack/packageWrap, /obj/item/stack/packageWrap, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/storage/primary) "atK" = ( @@ -11278,7 +10877,10 @@ }, /area/security/brig) "atM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4; + initialize_directions = 11 + }, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -11286,8 +10888,8 @@ "atN" = ( /obj/structure/closet/lasertag/red, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/crew_quarters/fitness{ name = "\improper Recreation Area" @@ -11299,8 +10901,8 @@ /obj/item/clothing/accessory/red, /obj/item/clothing/head/soft/red, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/crew_quarters/fitness{ name = "\improper Recreation Area" @@ -11312,8 +10914,8 @@ /obj/item/clothing/accessory/blue, /obj/item/clothing/head/soft/blue, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/crew_quarters/fitness{ name = "\improper Recreation Area" @@ -11321,8 +10923,8 @@ "atQ" = ( /obj/structure/closet/lasertag/blue, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/crew_quarters/fitness{ name = "\improper Recreation Area" @@ -11332,6 +10934,7 @@ dir = 4; icon_state = "pipe-c" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "neutralcorner" @@ -11346,10 +10949,10 @@ name = "\improper Arcade" }) "atT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "neutralcorner" @@ -11385,8 +10988,8 @@ /obj/machinery/light, /obj/machinery/vending/cola, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/crew_quarters/fitness{ name = "\improper Recreation Area" @@ -11406,30 +11009,6 @@ /obj/machinery/portable_atmospherics/canister/air, /turf/simulated/floor/plating, /area/maintenance/auxsolarstarboard) -"atY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/wall, -/area/crew_quarters/fitness{ - name = "\improper Recreation Area" - }) -"atZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/wall, -/area/crew_quarters/fitness{ - name = "\improper Recreation Area" - }) -"aua" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/wall, -/area/crew_quarters/fitness{ - name = "\improper Recreation Area" - }) "aub" = ( /obj/item/cigbutt, /turf/simulated/floor/plating, @@ -11463,8 +11042,8 @@ dir = 6 }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + d2 = 4; + icon_state = "0-4" }, /obj/machinery/power/apc{ dir = 8; @@ -11473,6 +11052,9 @@ pixel_y = 1 }, /obj/effect/decal/warning_stripes/northwest, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, /turf/simulated/floor/plasteel, /area/engine/gravitygenerator) "auf" = ( @@ -11499,13 +11081,12 @@ /turf/simulated/wall, /area/maintenance/disposal) "auh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/extinguisher_cabinet{ pixel_x = -27 }, /turf/simulated/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 + dir = 1; + icon_state = "redcorner" }, /area/security/brig) "aui" = ( @@ -11644,8 +11225,8 @@ }) "auv" = ( /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + d2 = 2; + icon_state = "0-2" }, /obj/structure/lattice/catwalk, /turf/space, @@ -11746,8 +11327,8 @@ pixel_y = -28 }, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/crew_quarters/fitness{ name = "\improper Recreation Area" @@ -11768,13 +11349,6 @@ /area/maintenance/fpmaint2{ name = "Port Maintenance" }) -"auK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/spawner/window/reinforced, -/turf/simulated/floor/plating, -/area/quartermaster/miningdock{ - name = "\improper Mining Office" - }) "auL" = ( /obj/effect/decal/cleanable/blood, /obj/structure/chair, @@ -11829,7 +11403,6 @@ d2 = 2; icon_state = "0-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ icon_state = "showroomfloor" }, @@ -11847,38 +11420,33 @@ dir = 1 }, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/crew_quarters/fitness{ name = "\improper Recreation Area" }) -"auQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/wall/r_wall, -/area/security/warden) "auR" = ( /obj/structure/cable/yellow{ d1 = 4; d2 = 8; icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/structure/cable/yellow{ d1 = 1; d2 = 4; icon_state = "1-4" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, /turf/simulated/floor/plasteel{ icon_state = "showroomfloor" }, /area/security/warden) "auS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ icon_state = "showroomfloor" }, @@ -11889,18 +11457,24 @@ d2 = 4; icon_state = "2-4" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8; - initialize_directions = 11 - }, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/unary/vent_pump{ - dir = 8; - on = 1 + dir = 1; + external_pressure_bound = 0; + frequency = 1441; + id_tag = "n2_out"; + initialize_directions = 1; + internal_pressure_bound = 4000; + on = 1; + pressure_checks = 2; + pump_direction = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 }, /turf/simulated/floor/plasteel{ icon_state = "showroomfloor" @@ -11909,9 +11483,9 @@ "auU" = ( /obj/machinery/vending/cigarette, /turf/simulated/floor/plasteel{ - tag = "icon-cafeteria (NORTHEAST)"; + dir = 5; icon_state = "cafeteria"; - dir = 5 + tag = "icon-cafeteria (NORTHEAST)" }, /area/security/brig) "auV" = ( @@ -11928,14 +11502,18 @@ dir = 5; level = 1 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5; + level = 1 + }, /turf/simulated/floor/plasteel, /area/security/brig) "auW" = ( /obj/structure/reagent_dispensers/water_cooler, /turf/simulated/floor/plasteel{ - tag = "icon-cafeteria (NORTHEAST)"; + dir = 5; icon_state = "cafeteria"; - dir = 5 + tag = "icon-cafeteria (NORTHEAST)" }, /area/security/brig) "auX" = ( @@ -11983,9 +11561,12 @@ initialize_directions = 10; level = 1 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, /turf/simulated/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 + dir = 4; + icon_state = "redcorner" }, /area/security/brig) "ava" = ( @@ -12000,6 +11581,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/decal/warning_stripes/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ dir = 5; icon_state = "dark"; @@ -12088,9 +11670,9 @@ /area/security/brig) "avj" = ( /obj/machinery/light/small{ - tag = "icon-bulb1 (EAST)"; + dir = 4; icon_state = "bulb1"; - dir = 4 + tag = "icon-bulb1 (EAST)" }, /turf/simulated/floor/plasteel{ icon_state = "showroomfloor" @@ -12169,8 +11751,8 @@ "avq" = ( /obj/machinery/cryopod/right, /obj/machinery/light{ - icon_state = "tube1"; - dir = 8 + dir = 8; + icon_state = "tube1" }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -12182,14 +11764,14 @@ "avs" = ( /obj/structure/table, /turf/simulated/floor/plasteel{ - icon_state = "red"; - dir = 9 + dir = 9; + icon_state = "red" }, /area/security/processing) "avt" = ( /turf/simulated/floor/plasteel{ - icon_state = "red"; - dir = 1 + dir = 1; + icon_state = "red" }, /area/security/processing) "avu" = ( @@ -12202,8 +11784,8 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ - icon_state = "red"; - dir = 1 + dir = 1; + icon_state = "red" }, /area/security/processing) "avv" = ( @@ -12214,8 +11796,8 @@ /obj/structure/disposalpipe/segment, /obj/structure/table, /turf/simulated/floor/plasteel{ - icon_state = "red"; - dir = 1 + dir = 1; + icon_state = "red" }, /area/security/processing) "avx" = ( @@ -12230,7 +11812,7 @@ /area/maintenance/starboard) "avz" = ( /obj/structure/rack, -/obj/effect/landmark/costume/random, +/obj/effect/landmark/costume, /obj/effect/spawner/lootdrop/maintenance, /turf/simulated/floor/plating, /area/maintenance/starboard) @@ -12245,8 +11827,8 @@ /obj/structure/table/wood, /obj/machinery/photocopier/faxmachine/longrange, /turf/simulated/floor/plasteel{ - icon_state = "neutral"; - dir = 1 + dir = 1; + icon_state = "neutral" }, /area/crew_quarters/courtroom) "avC" = ( @@ -12270,20 +11852,11 @@ /obj/item/storage/box/lights/mixed, /turf/simulated/floor/plating, /area/maintenance/starboard) -"avE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/wall/r_wall, -/area/engine/gravitygenerator) "avF" = ( /obj/machinery/atmospherics/unary/vent_pump{ - dir = 1; + dir = 4; on = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; @@ -12296,20 +11869,18 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ req_access_txt = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/structure/cable/yellow{ d1 = 2; d2 = 4; icon_state = "2-4" }, /obj/effect/decal/warning_stripes/southwest, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/engine/gravitygenerator) "avH" = ( /obj/machinery/atmospherics/unary/vent_scrubber{ - dir = 1; + dir = 8; on = 1; scrub_N2O = 0; scrub_Toxins = 0 @@ -12328,9 +11899,6 @@ icon_state = "alarm0"; pixel_y = -22 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, /obj/machinery/hologram/holopad, /obj/structure/cable/yellow{ d1 = 4; @@ -12338,6 +11906,13 @@ icon_state = "4-8" }, /obj/effect/decal/warning_stripes/south, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5; + level = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, /turf/simulated/floor/plasteel, /area/engine/gravitygenerator) "avJ" = ( @@ -12346,8 +11921,8 @@ pixel_x = 27 }, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/crew_quarters/fitness{ name = "\improper Recreation Area" @@ -12393,8 +11968,8 @@ /area/maintenance/auxsolarstarboard) "avN" = ( /turf/simulated/shuttle/wall{ - icon_state = "swall12"; - dir = 2 + dir = 2; + icon_state = "swall12" }, /area/shuttle/pod_4) "avO" = ( @@ -12404,8 +11979,8 @@ "avP" = ( /obj/machinery/computer/podtracker, /turf/simulated/floor/plasteel{ - icon_state = "vault"; - dir = 5 + dir = 5; + icon_state = "vault" }, /area/engine/mechanic_workshop) "avQ" = ( @@ -12422,10 +11997,6 @@ name = "Port Maintenance" }) "avR" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4; - initialize_directions = 11 - }, /obj/structure/cable{ d1 = 4; d2 = 8; @@ -12437,6 +12008,12 @@ icon_state = "1-4" }, /obj/effect/decal/warning_stripes/north, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/plasteel, /area/engine/gravitygenerator) "avS" = ( @@ -12472,10 +12049,6 @@ d2 = 8; icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4; - initialize_directions = 11 - }, /obj/effect/decal/warning_stripes/north, /turf/simulated/floor/plasteel, /area/engine/gravitygenerator) @@ -12512,8 +12085,8 @@ dir = 4 }, /turf/simulated/floor/plasteel{ - icon_state = "red"; - dir = 1 + dir = 1; + icon_state = "red" }, /area/security/processing) "awa" = ( @@ -12529,8 +12102,8 @@ /area/crew_quarters/sleep) "awb" = ( /obj/machinery/light{ - icon_state = "tube1"; - dir = 8 + dir = 8; + icon_state = "tube1" }, /obj/machinery/conveyor/north{ id = "QMLoad2" @@ -12596,12 +12169,6 @@ /turf/simulated/floor/plating, /area/maintenance/fore) "awi" = ( -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, /obj/machinery/camera{ c_tag = "Labor Shuttle Control Desk"; dir = 4 @@ -12635,10 +12202,14 @@ d2 = 8; icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, /obj/effect/decal/warning_stripes/north, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4; + initialize_directions = 11 + }, /turf/simulated/floor/plasteel, /area/engine/gravitygenerator) "awl" = ( @@ -12712,10 +12283,6 @@ }, /area/security/brig) "aws" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4; - initialize_directions = 11 - }, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -12730,8 +12297,8 @@ icon_state = "1-4" }, /turf/simulated/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 + dir = 1; + icon_state = "redcorner" }, /area/security/brig) "awt" = ( @@ -12744,6 +12311,8 @@ d2 = 8; icon_state = "2-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/security/brig) "awu" = ( @@ -12759,7 +12328,6 @@ d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ icon_state = "showroomfloor" }, @@ -12795,15 +12363,15 @@ pixel_x = -22 }, /turf/simulated/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 + dir = 1; + icon_state = "redcorner" }, /area/security/brig) "awA" = ( /obj/machinery/vending/cola, /turf/simulated/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 + dir = 4; + icon_state = "redcorner" }, /area/security/brig) "awB" = ( @@ -12814,6 +12382,9 @@ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, /turf/simulated/floor/plasteel, /area/security/brig) "awC" = ( @@ -12875,7 +12446,6 @@ network = list("Prison"); pixel_x = -30 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/plasteel{ icon_state = "showroomfloor" }, @@ -12949,8 +12519,8 @@ dir = 1 }, /turf/simulated/floor/plasteel{ - icon_state = "red"; - dir = 8 + dir = 8; + icon_state = "red" }, /area/security/processing) "awR" = ( @@ -12966,14 +12536,22 @@ d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6; + level = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, /turf/simulated/floor/plasteel, /area/crew_quarters/sleep) "awT" = ( /obj/machinery/light/small{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "neutralcorner" @@ -13032,10 +12610,6 @@ /obj/effect/decal/warning_stripes/east, /turf/simulated/floor/plating, /area/maintenance/fore) -"awY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/wall/r_wall, -/area/engine/gravitygenerator) "awZ" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -13080,6 +12654,7 @@ icon_state = "1-2" }, /obj/effect/decal/warning_stripes/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/engine/gravitygenerator) "axd" = ( @@ -13121,8 +12696,8 @@ pressure_checks = 1 }, /turf/simulated/floor/plasteel{ - icon_state = "red"; - dir = 1 + dir = 1; + icon_state = "red" }, /area/security/processing) "axg" = ( @@ -13130,7 +12705,6 @@ /obj/machinery/door/airlock/public/glass{ name = "Primary Tool Storage" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/storage/primary) "axh" = ( @@ -13177,8 +12751,8 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ - icon_state = "red"; - dir = 9 + dir = 9; + icon_state = "red" }, /area/security/processing) "axk" = ( @@ -13456,8 +13030,8 @@ "axD" = ( /turf/space, /turf/simulated/shuttle/wall{ - icon_state = "swall_f6"; - dir = 2 + dir = 2; + icon_state = "swall_f6" }, /area/shuttle/siberia) "axE" = ( @@ -13486,8 +13060,8 @@ }, /obj/structure/chair/stool, /turf/simulated/floor/plasteel{ - icon_state = "red"; - dir = 5 + dir = 5; + icon_state = "red" }, /area/security/processing) "axI" = ( @@ -13501,17 +13075,9 @@ on = 1 }, /obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/security/brig) -"axJ" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/security/brig) "axK" = ( /obj/structure/sign/pods, /turf/simulated/wall/r_wall, @@ -13526,8 +13092,8 @@ charge = 5e+006 }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + d2 = 4; + icon_state = "0-4" }, /obj/effect/decal/warning_stripes/yellow, /turf/simulated/floor/plasteel, @@ -13537,20 +13103,19 @@ dir = 4 }, /turf/simulated/floor/plasteel{ - icon_state = "red"; - dir = 4 + dir = 4; + icon_state = "red" }, /area/security/processing) "axO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; icon_state = "1-2" }, /obj/effect/decal/warning_stripes/north, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/engine/gravitygenerator) "axP" = ( @@ -13632,13 +13197,11 @@ d2 = 4; icon_state = "1-4" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 2; initialize_directions = 11 }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/plasteel, /area/crew_quarters/fitness{ name = "\improper Recreation Area" @@ -13657,9 +13220,6 @@ id = "QMLoad2"; pixel_x = 6 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, /obj/effect/decal/warning_stripes/west, /turf/simulated/floor/plasteel, /area/quartermaster/storage) @@ -13711,21 +13271,21 @@ d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4; - initialize_directions = 11 - }, /obj/effect/landmark{ name = "lightsout" }, -/turf/simulated/floor/plasteel, -/area/crew_quarters/sleep) -"aye" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/turf/simulated/floor/plasteel, +/area/crew_quarters/sleep) +"aye" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 + dir = 4 }, /turf/simulated/floor/plasteel{ dir = 2; @@ -13824,7 +13384,6 @@ /area/crew_quarters/sleep) "ayq" = ( /obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/table/reinforced, /obj/item/paper, /obj/machinery/door/window/brigdoor{ @@ -13886,7 +13445,6 @@ icon_state = "4-8" }, /obj/machinery/computer/prisoner, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ icon_state = "showroomfloor" }, @@ -13899,6 +13457,8 @@ /obj/machinery/light/small{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plating, /area/maintenance/starboard) "ayw" = ( @@ -13914,8 +13474,9 @@ d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/decal/warning_stripes/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/security/brig) "ayx" = ( @@ -14017,21 +13578,13 @@ d2 = 8; icon_state = "4-8" }, +/obj/machinery/light/small, +/obj/effect/decal/warning_stripes/southwest, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/machinery/light/small, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/decal/warning_stripes/southwest, /turf/simulated/floor/plasteel, /area/engine/gravitygenerator) -"ayJ" = ( -/obj/effect/spawner/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/mrchangs) "ayK" = ( /obj/effect/spawner/window/reinforced, /turf/simulated/floor/plating, @@ -14049,8 +13602,8 @@ /area/security/brig) "ayM" = ( /turf/simulated/shuttle/wall{ - icon_state = "swall3"; - dir = 2 + dir = 2; + icon_state = "swall3" }, /area/shuttle/siberia) "ayN" = ( @@ -14062,7 +13615,6 @@ name = "RADIOACTIVE AREA"; pixel_y = 32 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/decal/warning_stripes/northwest, /turf/simulated/floor/plasteel, /area/engine/gravitygenerator) @@ -14096,9 +13648,6 @@ icon_state = "alarm0"; pixel_x = 24 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, /obj/effect/decal/warning_stripes/northeast, /turf/simulated/floor/plasteel, /area/engine/gravitygenerator) @@ -14109,17 +13658,9 @@ icon_state = "1-2" }, /obj/structure/disposalpipe/junction, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/security/brig) -"ayS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/security/brig) "ayT" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -14134,15 +13675,6 @@ icon_state = "showroomfloor" }, /area/security/warden) -"ayU" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/security/brig) "ayV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/yellow{ @@ -14151,6 +13683,7 @@ icon_state = "2-8" }, /obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ icon_state = "showroomfloor" }, @@ -14201,8 +13734,8 @@ /area/security/warden) "ayY" = ( /turf/simulated/floor/plasteel{ - icon_state = "red"; - dir = 8 + dir = 8; + icon_state = "red" }, /area/security/processing) "ayZ" = ( @@ -14228,8 +13761,8 @@ level = 1 }, /turf/simulated/floor/plasteel{ - icon_state = "red"; - dir = 8 + dir = 8; + icon_state = "red" }, /area/security/processing) "azb" = ( @@ -14239,8 +13772,8 @@ level = 1 }, /turf/simulated/floor/plasteel{ - icon_state = "red"; - dir = 4 + dir = 4; + icon_state = "red" }, /area/security/processing) "azc" = ( @@ -14316,10 +13849,8 @@ d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8; - initialize_directions = 11 - }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/crew_quarters/sleep) "azk" = ( @@ -14331,22 +13862,16 @@ icon_state = "floor4" }, /area/shuttle/siberia) -"azl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/wall, -/area/crew_quarters/sleep) "azn" = ( /obj/structure/cable/yellow{ d1 = 4; d2 = 8; icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 2 - }, /obj/effect/decal/warning_stripes/southeast, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/plasteel, /area/engine/gravitygenerator) "azo" = ( @@ -14369,9 +13894,7 @@ dir = 2; icon_state = "pipe-c" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, /obj/structure/cable/yellow{ d1 = 1; d2 = 4; @@ -14383,6 +13906,7 @@ icon_state = "1-8" }, /obj/effect/decal/warning_stripes/south, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/engine/gravitygenerator) "azr" = ( @@ -14409,9 +13933,15 @@ /turf/simulated/floor/plating, /area/maintenance/starboard) "azt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, /turf/simulated/floor/plasteel{ - tag = "icon-stage_stairs"; - icon_state = "stage_stairs" + icon_state = "stage_stairs"; + tag = "icon-stage_stairs" }, /area/security/podbay) "azu" = ( @@ -14445,8 +13975,8 @@ /area/security/brig) "azx" = ( /turf/simulated/floor/plasteel{ - icon_state = "red"; - dir = 4 + dir = 4; + icon_state = "red" }, /area/security/processing) "azy" = ( @@ -14460,17 +13990,11 @@ }, /turf/simulated/floor/plating, /area/maintenance/starboard) -"azz" = ( -/obj/effect/spawner/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/security/brig) "azA" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/sign/securearea{ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; @@ -14516,8 +14040,8 @@ id_tag = "mechpodbay" }, /turf/simulated/floor/plasteel{ - icon_state = "vault"; - dir = 5 + dir = 5; + icon_state = "vault" }, /area/engine/mechanic_workshop) "azE" = ( @@ -14526,9 +14050,6 @@ }, /area/security/podbay) "azF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /obj/structure/cable/yellow{ d2 = 2; icon_state = "0-2" @@ -14538,36 +14059,36 @@ name = "north bump"; pixel_y = 24 }, +/obj/machinery/atmospherics/unary/vent_scrubber{ + dir = 2; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, /turf/simulated/floor/plasteel{ - icon_state = "red"; - dir = 1 + dir = 1; + icon_state = "red" }, /area/security/brig) "azG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /obj/structure/extinguisher_cabinet{ pixel_y = 30 }, /turf/simulated/floor/plasteel{ - icon_state = "red"; - dir = 1 + dir = 1; + icon_state = "red" }, /area/security/brig) "azH" = ( /obj/machinery/atm{ pixel_x = 32 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /obj/machinery/firealarm{ pixel_y = 28 }, /turf/simulated/floor/plasteel{ - icon_state = "red"; - dir = 5 + dir = 5; + icon_state = "red" }, /area/security/brig) "azI" = ( @@ -14725,6 +14246,7 @@ req_access_txt = "48" }, /obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/quartermaster/miningdock{ name = "\improper Mining Office" @@ -14787,8 +14309,10 @@ }, /area/crew_quarters/sleep) "aAa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "redcorner" @@ -14809,6 +14333,7 @@ dir = 1; icon_state = "pipe-c" }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/security/brig) "aAc" = ( @@ -14820,8 +14345,11 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - req_access_txt = "0" +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 }, /turf/simulated/floor/plasteel, /area/security/brig) @@ -14834,16 +14362,19 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4; + level = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, /turf/simulated/floor/plasteel, /area/security/brig) "aAe" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/extinguisher_cabinet{ pixel_x = 27 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "neutralcorner" @@ -14881,45 +14412,26 @@ icon_state = "showroomfloor" }, /area/security/warden) -"aAi" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - req_access_txt = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plasteel, -/area/security/brig) "aAj" = ( /obj/structure/cable/yellow{ d1 = 4; d2 = 8; icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ d1 = 2; d2 = 8; icon_state = "2-8" }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1; + initialize_directions = 11 + }, /turf/simulated/floor/plasteel{ icon_state = "showroomfloor" }, /area/security/warden) -"aAk" = ( -/turf/simulated/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/security/brig) "aAl" = ( /obj/structure/closet/secure_closet/brig{ id = "Cell 4"; @@ -14935,7 +14447,6 @@ d2 = 8; icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -14947,6 +14458,10 @@ /obj/effect/landmark{ name = "lightsout" }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, /turf/simulated/floor/plasteel, /area/security/brig) "aAn" = ( @@ -14976,8 +14491,8 @@ }, /obj/structure/chair, /turf/simulated/floor/plasteel{ - icon_state = "red"; - dir = 8 + dir = 8; + icon_state = "red" }, /area/security/processing) "aAq" = ( @@ -14991,12 +14506,24 @@ d2 = 8; icon_state = "2-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - req_access_txt = 1 +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1; + initialize_directions = 11 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1; + level = 1 }, /turf/simulated/floor/plasteel, /area/security/brig) "aAs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1; + initialize_directions = 11 + }, /turf/simulated/floor/plasteel, /area/security/brig) "aAt" = ( @@ -15014,8 +14541,8 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ - icon_state = "red"; - dir = 10 + dir = 10; + icon_state = "red" }, /area/security/processing) "aAu" = ( @@ -15027,8 +14554,8 @@ }, /obj/structure/chair/stool, /turf/simulated/floor/plasteel{ - icon_state = "red"; - dir = 6 + dir = 6; + icon_state = "red" }, /area/security/processing) "aAv" = ( @@ -15084,19 +14611,13 @@ /area/crew_quarters/mrchangs) "aAC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 4; - on = 1 - }, /turf/simulated/floor/wood, /area/crew_quarters/mrchangs) "aAD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /obj/structure/chair/wood{ dir = 1 }, +/obj/machinery/atmospherics/unary/vent_pump, /turf/simulated/floor/wood, /area/crew_quarters/mrchangs) "aAE" = ( @@ -15111,16 +14632,6 @@ }, /turf/simulated/floor/plating, /area/security/brig) -"aAF" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "neutralcorner" - }, -/area/crew_quarters/sleep) "aAG" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -15128,15 +14639,10 @@ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel, /area/crew_quarters/sleep) "aAH" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, /obj/machinery/camera{ c_tag = "Dormitories - Fore"; dir = 8 @@ -15221,6 +14727,7 @@ req_access_txt = "2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ icon_state = "red" }, @@ -15247,14 +14754,14 @@ "aAQ" = ( /turf/space, /turf/simulated/shuttle/wall{ - icon_state = "swall_f6"; - dir = 2 + dir = 2; + icon_state = "swall_f6" }, /area/shuttle/mining) "aAR" = ( /turf/simulated/shuttle/wall{ - icon_state = "swall12"; - dir = 2 + dir = 2; + icon_state = "swall12" }, /area/shuttle/mining) "aAS" = ( @@ -15351,49 +14858,24 @@ }, /area/shuttle/siberia) "aBf" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8; - initialize_directions = 11 - }, /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 1 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "redcorner" }, /area/security/brig) -"aBg" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - dir = 2; - icon_state = "neutralcorner" - }, -/area/security/brig) "aBh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - req_access_txt = "0" - }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "redcorner" }, /area/security/brig) "aBi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/machinery/light, /obj/machinery/camera{ c_tag = "Brig - Hallway - Port"; @@ -15410,34 +14892,13 @@ }, /area/security/brig) "aBj" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1; - initialize_directions = 11 - }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "redcorner" }, /area/security/brig) -"aBk" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 2; - initialize_directions = 11 - }, -/turf/simulated/floor/plasteel{ - dir = 2; - icon_state = "neutralcorner" - }, -/area/security/brig) "aBl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/machinery/door_timer{ id = "Cell 2"; name = "Cell 2"; @@ -15448,21 +14909,12 @@ }, /area/security/brig) "aBm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - req_access_txt = "0" - }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ icon_state = "red" }, /area/security/brig) "aBn" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 2; - initialize_directions = 11 - }, /obj/machinery/door_timer{ id = "Cell 3"; name = "Cell 3"; @@ -15474,24 +14926,12 @@ }, /area/security/brig) "aBo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ req_access_txt = 1 }, /turf/simulated/floor/plasteel{ - icon_state = "red"; - dir = 9 - }, -/area/security/brig) -"aBp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - icon_state = "red"; - dir = 1 + dir = 9; + icon_state = "red" }, /area/security/brig) "aBq" = ( @@ -15500,13 +14940,10 @@ d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1; - initialize_directions = 11 - }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ - icon_state = "red"; - dir = 5 + dir = 5; + icon_state = "red" }, /area/security/brig) "aBr" = ( @@ -15523,44 +14960,22 @@ icon_state = "dark" }, /area/crew_quarters/sleep) -"aBt" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1; - initialize_directions = 11 - }, -/turf/simulated/floor/plasteel{ - dir = 2; - icon_state = "neutralcorner" - }, -/area/security/brig) "aBu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "neutralcorner" }, /area/security/brig) -"aBv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - dir = 2; - icon_state = "redcorner" - }, -/area/security/brig) "aBw" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 2; - initialize_directions = 11 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 }, /turf/simulated/floor/plasteel{ dir = 2; @@ -15584,6 +14999,7 @@ /obj/machinery/door/airlock/public/glass{ name = "Recreation Area" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "neutralcorner" @@ -15598,19 +15014,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ req_access_txt = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - dir = 2; - icon_state = "redcorner" - }, -/area/security/brig) -"aBA" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1; - initialize_directions = 11 - }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "redcorner" @@ -15633,15 +15037,9 @@ icon_state = "dark" }, /area/security/brig) -"aBC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/wall/r_wall, -/area/security/brig) "aBD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 + dir = 5 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -15716,7 +15114,6 @@ d2 = 4; icon_state = "2-4" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -15734,6 +15131,9 @@ name = "south bump"; pixel_y = -24 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, /turf/simulated/floor/wood, /area/crew_quarters/mrchangs) "aBM" = ( @@ -15746,6 +15146,9 @@ d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "neutralcorner" @@ -15763,6 +15166,9 @@ d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/wood, /area/crew_quarters/mrchangs) "aBO" = ( @@ -15771,15 +15177,13 @@ d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4; - initialize_directions = 11 - }, /obj/structure/cable/yellow{ d1 = 2; d2 = 8; icon_state = "2-8" }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/crew_quarters/sleep) "aBP" = ( @@ -15840,6 +15244,9 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, /turf/simulated/floor/plating, /area/maintenance/starboard) "aBV" = ( @@ -15888,6 +15295,9 @@ dir = 2 }, /obj/effect/decal/warning_stripes/north, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plating, /area/maintenance/starboard) "aBY" = ( @@ -15966,16 +15376,15 @@ /obj/structure/sign/securearea{ pixel_y = 32 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/decal/warning_stripes/northwest, /turf/simulated/floor/plasteel, /area/engine/engineering) "aCe" = ( /obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/door/airlock/public/glass{ name = "Recreation Area" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "neutralcorner" @@ -15998,6 +15407,9 @@ pixel_y = 32 }, /obj/effect/decal/warning_stripes/northeast, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, /turf/simulated/floor/plasteel, /area/engine/engineering) "aCg" = ( @@ -16024,9 +15436,6 @@ /turf/simulated/wall/r_wall, /area/maintenance/starboard) "aCk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/machinery/flasher_button{ id = "secentranceflasher"; name = "Brig Entrance Flasher"; @@ -16037,19 +15446,24 @@ /obj/machinery/newscaster/security_unit{ pixel_y = -30 }, +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 1; + on = 1 + }, /turf/simulated/floor/plasteel{ icon_state = "red" }, /area/security/brig) "aCl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/machinery/flasher_button{ id = "holdingflash"; pixel_y = -26; req_access_txt = "1" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5; + level = 1 + }, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "redcorner" @@ -16061,7 +15475,6 @@ d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/spawner/window/reinforced, /turf/simulated/floor/plating, /area/crew_quarters/sleep) @@ -16075,8 +15488,8 @@ /area/space/nearstation) "aCo" = ( /turf/simulated/shuttle/wall{ - icon_state = "swall3"; - dir = 2 + dir = 2; + icon_state = "swall3" }, /area/shuttle/mining) "aCp" = ( @@ -16126,15 +15539,12 @@ name = "\improper Warehouse" }) "aCv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/structure/extinguisher_cabinet{ pixel_x = 27 }, /turf/simulated/floor/plasteel{ - icon_state = "red"; - dir = 6 + dir = 6; + icon_state = "red" }, /area/security/brig) "aCw" = ( @@ -16151,8 +15561,8 @@ /obj/structure/closet/secure_closet/freezer/money, /obj/item/clothing/head/bearpelt, /turf/simulated/floor/plasteel{ - icon_state = "vault"; - dir = 8 + dir = 8; + icon_state = "vault" }, /area/security/nuke_storage) "aCy" = ( @@ -16203,8 +15613,8 @@ pixel_y = 32 }, /turf/simulated/floor/plasteel{ - icon_state = "vault"; - dir = 1 + dir = 1; + icon_state = "vault" }, /area/security/nuke_storage) "aCC" = ( @@ -16346,8 +15756,8 @@ req_access_txt = "63" }, /obj/effect/mapping_helpers/airlock/unres{ - icon_state = "airlock_unres_helper"; - dir = 1 + dir = 1; + icon_state = "airlock_unres_helper" }, /turf/simulated/floor/plasteel{ icon_state = "red" @@ -16372,8 +15782,8 @@ req_access_txt = "63" }, /obj/effect/mapping_helpers/airlock/unres{ - icon_state = "airlock_unres_helper"; - dir = 1 + dir = 1; + icon_state = "airlock_unres_helper" }, /turf/simulated/floor/plasteel{ icon_state = "red" @@ -16429,21 +15839,8 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ req_access_txt = 1 }, -/turf/simulated/floor/plasteel, -/area/security/detectives_office) -"aCR" = ( -/obj/structure/grille, -/obj/structure/cable/yellow{ - d2 = 2; - icon_state = "0-2" - }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/window/reinforced/tinted{ - dir = 5; - max_integrity = 120; - reinf = 0 - }, -/turf/simulated/floor/plating, +/turf/simulated/floor/plasteel, /area/security/detectives_office) "aCS" = ( /turf/simulated/wall, @@ -16469,12 +15866,6 @@ /obj/machinery/light/small{ dir = 1 }, -/obj/machinery/atmospherics/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, /obj/machinery/alarm{ pixel_y = 26 }, @@ -16530,22 +15921,17 @@ dir = 2; icon_state = "pipe-c" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/crew_quarters/sleep) "aCY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/light/small{ dir = 4 }, /obj/structure/sign/pods{ pixel_x = 30 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "neutralcorner" @@ -16559,6 +15945,7 @@ icon_state = "1-2" }, /obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/maintenance/starboard) "aDa" = ( @@ -16573,6 +15960,7 @@ req_access_txt = "10" }, /obj/effect/decal/warning_stripes/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/engine/gravitygenerator) "aDc" = ( @@ -16581,6 +15969,10 @@ dir = 5 }, /obj/effect/decal/warning_stripes/north, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5; + level = 1 + }, /turf/simulated/floor/plasteel, /area/engine/engineering) "aDd" = ( @@ -16697,11 +16089,6 @@ }, /turf/simulated/shuttle/floor, /area/shuttle/mining) -"aDs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/decal/warning_stripes/west, -/turf/simulated/floor/plasteel, -/area/engine/engineering) "aDt" = ( /obj/machinery/power/apc{ dir = 1; @@ -16759,6 +16146,7 @@ icon_state = "4-8" }, /obj/effect/decal/warning_stripes/east, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/engine/engineering) "aDx" = ( @@ -16854,7 +16242,6 @@ /turf/simulated/floor/plating/airless, /area/engine/engineering) "aDD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/yellow{ d1 = 1; d2 = 8; @@ -16876,8 +16263,8 @@ scrub_Toxins = 0 }, /turf/simulated/floor/plasteel{ - icon_state = "vault"; - dir = 1 + dir = 1; + icon_state = "vault" }, /area/security/nuke_storage) "aDF" = ( @@ -16892,8 +16279,8 @@ "aDG" = ( /obj/machinery/nuclearbomb, /turf/simulated/floor/plasteel{ - icon_state = "vault"; - dir = 8 + dir = 8; + icon_state = "vault" }, /area/security/nuke_storage) "aDH" = ( @@ -16916,8 +16303,8 @@ on = 1 }, /turf/simulated/floor/plasteel{ - icon_state = "vault"; - dir = 4 + dir = 4; + icon_state = "vault" }, /area/security/nuke_storage) "aDJ" = ( @@ -17022,15 +16409,15 @@ dir = 8 }, /turf/simulated/floor/plasteel{ - icon_state = "red"; - dir = 9 + dir = 9; + icon_state = "red" }, /area/security/brig) "aDS" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/plasteel{ - icon_state = "red"; - dir = 1 + dir = 1; + icon_state = "red" }, /area/security/brig) "aDT" = ( @@ -17044,8 +16431,8 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ - icon_state = "red"; - dir = 5 + dir = 5; + icon_state = "red" }, /area/security/brig) "aDU" = ( @@ -17058,13 +16445,6 @@ icon_state = "floorgrime" }, /area/security/brig) -"aDV" = ( -/obj/structure/chair, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/security/brig) "aDW" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -17072,6 +16452,7 @@ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" }, @@ -17167,6 +16548,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ req_access_txt = 1 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/carpet, /area/security/detectives_office) "aEc" = ( @@ -17178,9 +16560,6 @@ d2 = 8; icon_state = "1-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, /turf/simulated/floor/carpet, /area/security/detectives_office) "aEd" = ( @@ -17190,8 +16569,8 @@ icon_state = "4-8" }, /turf/simulated/floor/plasteel{ - icon_state = "vault"; - dir = 5 + dir = 5; + icon_state = "vault" }, /area/engine/engineering) "aEe" = ( @@ -17308,12 +16687,19 @@ d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8; + initialize_directions = 11 + }, /obj/structure/disposalpipe/junction{ dir = 4; icon_state = "pipe-j2"; tag = "icon-pipe-j1 (WEST)" }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8; + initialize_directions = 11 + }, /turf/simulated/floor/plasteel, /area/crew_quarters/sleep) "aEq" = ( @@ -17325,8 +16711,11 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, /turf/simulated/floor/plasteel{ dir = 2; @@ -17348,6 +16737,9 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plating, /area/maintenance/starboard) "aEs" = ( @@ -17388,6 +16780,9 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plating, /area/maintenance/starboard) "aEv" = ( @@ -17406,6 +16801,9 @@ loot = list(/obj/structure/grille,/obj/structure/grille,/obj/structure/grille,/obj/structure/grille,/obj/structure/grille,/obj/item/cigbutt,/obj/item/trash/cheesie,/obj/item/trash/candy,/obj/item/trash/chips,/obj/item/trash/pistachios,/obj/item/trash/plate,/obj/item/trash/popcorn,/obj/item/trash/raisins,/obj/item/trash/sosjerky,/obj/item/trash/syndi_cakes); name = "maint grille or trash spawner" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plating, /area/maintenance/starboard) "aEw" = ( @@ -17426,6 +16824,9 @@ d2 = 2; icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, /turf/simulated/floor/plating, /area/maintenance/starboard) "aEx" = ( @@ -17507,13 +16908,15 @@ dir = 4 }, /obj/effect/decal/warning_stripes/west, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plating, /area/maintenance/starboard) "aEE" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/decal/warning_stripes/west, /turf/simulated/floor/plasteel, /area/engine/engineering) @@ -17605,7 +17008,7 @@ }) "aEO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 + dir = 8 }, /turf/simulated/floor/plasteel, /area/quartermaster/miningdock{ @@ -17621,6 +17024,11 @@ name = "Shaft Miner" }, /obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10; + initialize_directions = 10; + level = 1 + }, /turf/simulated/floor/plasteel, /area/quartermaster/miningdock{ name = "\improper Mining Office" @@ -17705,6 +17113,7 @@ d2 = 2; icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ icon_state = "showroomfloor" }, @@ -17734,28 +17143,19 @@ pixel_y = -2 }, /obj/item/storage/belt/champion, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, /turf/simulated/floor/plasteel{ - icon_state = "vault"; - dir = 1 + dir = 1; + icon_state = "vault" }, /area/security/nuke_storage) "aEY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /turf/simulated/floor/bluegrid{ icon_state = "gcircuit"; luminosity = 2 }, /area/security/nuke_storage) "aEZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /turf/simulated/floor/bluegrid{ icon_state = "gcircuit"; luminosity = 2 @@ -17798,8 +17198,8 @@ name = "Silver Crate" }, /turf/simulated/floor/plasteel{ - icon_state = "vault"; - dir = 4 + dir = 4; + icon_state = "vault" }, /area/security/nuke_storage) "aFc" = ( @@ -17934,9 +17334,8 @@ }, /area/security/brig) "aFo" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4; - initialize_directions = 11 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" @@ -17951,6 +17350,10 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4; + initialize_directions = 11 + }, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" }, @@ -18010,6 +17413,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ req_access_txt = 1 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/carpet, /area/security/detectives_office) "aFv" = ( @@ -18025,7 +17429,6 @@ /obj/structure/chair/office/dark{ dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/carpet, /area/security/detectives_office) "aFx" = ( @@ -18062,6 +17465,7 @@ d2 = 2; icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ icon_state = "red" @@ -18080,9 +17484,11 @@ /turf/simulated/floor/plating, /area/security/brig) "aFD" = ( -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 2; - on = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 }, /turf/simulated/floor/plasteel{ icon_state = "freezerfloor" @@ -18129,9 +17535,6 @@ d2 = 8; icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "neutralcorner" @@ -18143,9 +17546,6 @@ pixel_x = 3; pixel_y = 2 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, /obj/structure/table/wood, /obj/machinery/computer/security/telescreen{ desc = "Used for watching Prison Wing holding areas."; @@ -18162,9 +17562,6 @@ icon_state = "4-8" }, /obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "neutralcorner" @@ -18176,10 +17573,8 @@ d2 = 8; icon_state = "1-8" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4; - initialize_directions = 11 - }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel, /area/crew_quarters/sleep) "aFK" = ( @@ -18275,12 +17670,12 @@ req_access_txt = "48" }, /obj/effect/decal/warning_stripes/arrow{ - icon_state = "4"; - dir = 4 + dir = 4; + icon_state = "4" }, /obj/effect/decal/warning_stripes/yellow/partial{ - icon_state = "3"; - dir = 4 + dir = 4; + icon_state = "3" }, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" @@ -18299,13 +17694,6 @@ /obj/effect/decal/warning_stripes/south, /turf/simulated/floor/plating, /area/maintenance/fore) -"aFU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/effect/decal/warning_stripes/northwestcorner, -/turf/simulated/floor/plasteel, -/area/engine/engineering) "aFV" = ( /obj/machinery/light/small{ dir = 8 @@ -18321,13 +17709,6 @@ icon_state = "floorgrime" }, /area/security/brig) -"aFW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/decal/warning_stripes/north, -/turf/simulated/floor/plasteel, -/area/engine/engineering) "aFX" = ( /obj/machinery/atmospherics/unary/vent_scrubber{ on = 1 @@ -18349,17 +17730,6 @@ }, /turf/space, /area/space/nearstation) -"aGa" = ( -/obj/effect/spawner/window/reinforced, -/obj/structure/cable/yellow{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating, -/area/construction/Storage{ - name = "Storage Wing" - }) "aGb" = ( /obj/structure/rack{ dir = 8; @@ -18393,15 +17763,13 @@ icon_state = "alarm0"; pixel_x = -22 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, /obj/effect/decal/warning_stripes/northwest, /turf/simulated/floor/plasteel, /area/engine/engineering) "aGd" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/decal/warning_stripes/east, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/engine/engineering) "aGe" = ( @@ -18413,10 +17781,10 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/decal/warning_stripes/east, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/engine/engineering) "aGf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/hologram/holopad, /turf/simulated/floor/plasteel, /area/quartermaster/miningdock{ @@ -18429,6 +17797,7 @@ icon_state = "1-2" }, /obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/quartermaster/miningdock{ name = "\improper Mining Office" @@ -18520,10 +17889,9 @@ name = "\improper Warehouse" }) "aGn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ - icon_state = "vault"; - dir = 1 + dir = 1; + icon_state = "vault" }, /area/security/nuke_storage) "aGo" = ( @@ -18532,8 +17900,8 @@ dir = 5 }, /turf/simulated/floor/plasteel{ - icon_state = "vault"; - dir = 6 + dir = 6; + icon_state = "vault" }, /area/security/nuke_storage) "aGp" = ( @@ -18545,6 +17913,9 @@ d2 = 4; icon_state = "2-4" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, /turf/simulated/floor/plasteel{ icon_state = "vault" }, @@ -18561,9 +17932,13 @@ d2 = 8; icon_state = "1-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9; + pixel_y = 0 + }, /turf/simulated/floor/plasteel{ - icon_state = "vault"; - dir = 10 + dir = 10; + icon_state = "vault" }, /area/security/nuke_storage) "aGr" = ( @@ -18587,7 +17962,6 @@ /area/shuttle/siberia) "aGt" = ( /obj/effect/spawner/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/yellow{ d2 = 4; icon_state = "0-4" @@ -18611,17 +17985,6 @@ /area/construction/Storage{ name = "Storage Wing" }) -"aGv" = ( -/obj/effect/spawner/window/reinforced, -/obj/structure/cable/yellow{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/engine/engineering) "aGw" = ( /obj/effect/spawner/window/reinforced, /turf/simulated/floor/plating, @@ -18637,12 +18000,12 @@ req_access_txt = "63" }, /obj/effect/mapping_helpers/airlock/unres{ - icon_state = "airlock_unres_helper"; - dir = 1 + dir = 1; + icon_state = "airlock_unres_helper" }, /turf/simulated/floor/plasteel{ - icon_state = "red"; - dir = 1 + dir = 1; + icon_state = "red" }, /area/security/brig) "aGy" = ( @@ -18659,10 +18022,6 @@ /area/construction/Storage{ name = "Storage Wing" }) -"aGz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plasteel, -/area/crew_quarters/sleep) "aGA" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/security/glass{ @@ -18680,6 +18039,7 @@ d2 = 8; icon_state = "2-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -18714,9 +18074,6 @@ d2 = 8; icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, /turf/simulated/floor/plasteel{ icon_state = "grimy" }, @@ -18737,12 +18094,16 @@ /obj/item/storage/box/evidence, /obj/structure/table, /turf/simulated/floor/plasteel{ - icon_state = "red"; - dir = 10 + dir = 10; + icon_state = "red" }, /area/security/processing) "aGG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, /turf/simulated/floor/carpet, /area/security/detectives_office) "aGH" = ( @@ -18766,21 +18127,12 @@ }, /area/security/processing) "aGJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/structure/urinal{ pixel_y = 29 }, /turf/simulated/floor/plasteel{ icon_state = "freezerfloor" }, -/area/crew_quarters/locker/locker_toilet{ - name = "\improper Restrooms" - }) -"aGK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/wall, /area/crew_quarters/locker/locker_toilet{ name = "\improper Restrooms" }) @@ -18790,6 +18142,7 @@ req_access_txt = "0" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ icon_state = "freezerfloor" }, @@ -18802,7 +18155,6 @@ d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "neutralcorner" @@ -18844,12 +18196,17 @@ }, /area/crew_quarters/sleep) "aGR" = ( +/obj/effect/landmark/start{ + name = "Mime" + }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8; initialize_directions = 11 }, -/obj/effect/landmark/start{ - name = "Mime" +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8; + initialize_directions = 11; + level = 1 }, /turf/simulated/floor/plasteel, /area/crew_quarters/sleep) @@ -18858,7 +18215,7 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 + dir = 4 }, /turf/simulated/floor/plasteel, /area/crew_quarters/sleep) @@ -18874,11 +18231,11 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/machinery/door/airlock/titanium/glass, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4; level = 1 }, +/obj/machinery/door/airlock/tranquillite, /turf/simulated/floor/mineral/tranquillite, /area/crew_quarters/sleep) "aGV" = ( @@ -18905,8 +18262,8 @@ }, /obj/machinery/suit_storage_unit/ce/secure, /turf/simulated/floor/plasteel{ - icon_state = "vault"; - dir = 5 + dir = 5; + icon_state = "vault" }, /area/engine/chiefs_office) "aGY" = ( @@ -18940,7 +18297,6 @@ icon_state = "0-8" }, /obj/structure/cable/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plating, /area/construction/Storage{ name = "Storage Wing" @@ -18954,30 +18310,6 @@ }, /turf/simulated/floor/plasteel, /area/engine/engineering) -"aHd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/locker/locker_toilet{ - name = "\improper Restrooms" - }) -"aHe" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 2; - initialize_directions = 11 - }, -/obj/structure/urinal{ - pixel_y = 29 - }, -/turf/simulated/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/locker/locker_toilet{ - name = "\improper Restrooms" - }) "aHf" = ( /obj/structure/table, /turf/simulated/floor/plasteel{ @@ -19002,8 +18334,8 @@ dir = 8 }, /turf/simulated/floor/plasteel{ - icon_state = "red"; - dir = 6 + dir = 6; + icon_state = "red" }, /area/security/processing) "aHi" = ( @@ -19103,7 +18435,6 @@ name = "\improper Mining Office" }) "aHs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/landmark/start{ name = "Shaft Miner" }, @@ -19130,6 +18461,10 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ req_access_txt = 1 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6; + level = 1 + }, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" }, @@ -19189,19 +18524,6 @@ /area/quartermaster/sorting{ name = "\improper Warehouse" }) -"aHz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/wall/r_wall, -/area/security/nuke_storage) -"aHA" = ( -/obj/structure/sign/securearea, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/wall/r_wall, -/area/security/nuke_storage) "aHB" = ( /obj/machinery/door/airlock/vault{ icon_state = "door_locked"; @@ -19214,9 +18536,10 @@ d2 = 2; icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ - icon_state = "vault"; - dir = 5 + dir = 5; + icon_state = "vault" }, /area/security/nuke_storage) "aHC" = ( @@ -19226,8 +18549,8 @@ "aHD" = ( /turf/space, /turf/simulated/shuttle/wall{ - icon_state = "swall_f5"; - dir = 2 + dir = 2; + icon_state = "swall_f5" }, /area/shuttle/siberia) "aHE" = ( @@ -19237,8 +18560,8 @@ "aHF" = ( /turf/space, /turf/simulated/shuttle/wall{ - icon_state = "swall_f9"; - dir = 2 + dir = 2; + icon_state = "swall_f9" }, /area/shuttle/siberia) "aHG" = ( @@ -19257,15 +18580,15 @@ /area/engine/engineering) "aHI" = ( /turf/simulated/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 + dir = 1; + icon_state = "redcorner" }, /area/hallway/primary/fore) "aHJ" = ( /obj/structure/chair/stool, /turf/simulated/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 + dir = 1; + icon_state = "redcorner" }, /area/hallway/primary/fore) "aHK" = ( @@ -19274,9 +18597,7 @@ d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/bluegrid{ icon_state = "gcircuit"; luminosity = 2 @@ -19291,8 +18612,8 @@ pixel_x = -26 }, /turf/simulated/floor/plasteel{ - icon_state = "red"; - dir = 10 + dir = 10; + icon_state = "red" }, /area/security/brig) "aHM" = ( @@ -19312,8 +18633,8 @@ pixel_x = 27 }, /turf/simulated/floor/plasteel{ - icon_state = "red"; - dir = 6 + dir = 6; + icon_state = "red" }, /area/security/brig) "aHO" = ( @@ -19321,14 +18642,14 @@ req_access_txt = 1 }, /turf/simulated/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 + dir = 4; + icon_state = "redcorner" }, /area/hallway/primary/fore) "aHP" = ( /turf/simulated/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 + dir = 4; + icon_state = "redcorner" }, /area/hallway/primary/fore) "aHQ" = ( @@ -19339,8 +18660,8 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 + dir = 4; + icon_state = "redcorner" }, /area/hallway/primary/fore) "aHR" = ( @@ -19408,7 +18729,6 @@ /obj/structure/filingcabinet/chestdrawer{ pixel_y = 3 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -19443,6 +18763,7 @@ pixel_x = 29; pixel_y = -2 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -19453,9 +18774,6 @@ d2 = 4; icon_state = "2-4" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, /obj/structure/extinguisher_cabinet{ pixel_x = -27 }, @@ -19466,7 +18784,7 @@ /area/crew_quarters/sleep) "aHW" = ( /obj/machinery/atmospherics/unary/vent_pump{ - dir = 1; + dir = 4; on = 1 }, /turf/simulated/floor/plasteel{ @@ -19511,9 +18829,6 @@ name = "Dormitories APC"; pixel_y = 24 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "neutralcorner" @@ -19574,6 +18889,9 @@ d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ icon_state = "freezerfloor" }, @@ -19590,10 +18908,8 @@ /turf/simulated/floor/plating, /area/maintenance/fore) "aIh" = ( -/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{ icon_state = "freezerfloor" }, @@ -19609,14 +18925,6 @@ }, /turf/simulated/floor/plasteel, /area/engine/engineering) -"aIj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/wall, -/area/crew_quarters/locker/locker_toilet{ - name = "\improper Restrooms" - }) "aIk" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -19624,11 +18932,8 @@ icon_state = "1-2" }, /obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 + dir = 8; + icon_state = "tube1" }, /turf/simulated/floor/plasteel{ dir = 1; @@ -19688,17 +18993,14 @@ /turf/simulated/wall, /area/crew_quarters/sleep) "aIs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 8; + on = 1 }, /obj/item/flag/mime, /turf/simulated/floor/mineral/tranquillite, /area/crew_quarters/sleep) "aIt" = ( -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 8; - on = 1 - }, /obj/structure/table/wood, /obj/item/storage/fancy/crayons, /obj/item/toy/crayon/mime, @@ -19710,6 +19012,7 @@ d2 = 8; icon_state = "2-8" }, +/obj/machinery/atmospherics/unary/vent_scrubber, /turf/simulated/floor/plasteel, /area/engine/engineering) "aIv" = ( @@ -19719,28 +19022,13 @@ icon_state = "2-4" }, /obj/effect/decal/warning_stripes/northeast, +/obj/machinery/atmospherics/unary/vent_pump, /turf/simulated/floor/plasteel, /area/engine/engineering) "aIw" = ( /obj/effect/landmark/start{ name = "Station Engineer" }, -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/simulated/floor/plasteel, -/area/engine/engineering) -"aIx" = ( -/obj/machinery/atmospherics/unary/vent_scrubber{ - dir = 2; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /turf/simulated/floor/plasteel, /area/engine/engineering) "aIy" = ( @@ -19770,12 +19058,12 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/engine/engineering) "aIC" = ( @@ -19801,15 +19089,18 @@ d2 = 4; icon_state = "2-4" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; icon_state = "1-2" }, /obj/effect/decal/warning_stripes/east, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, /turf/simulated/floor/plasteel, /area/engine/engineering) "aIE" = ( @@ -19821,8 +19112,10 @@ d2 = 8; icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/decal/warning_stripes/west, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel, /area/engine/engineering) "aIF" = ( @@ -19830,16 +19123,13 @@ dir = 4 }, /obj/effect/decal/warning_stripes/south, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel, /area/engine/engineering) "aIG" = ( /obj/structure/table/wood, -/obj/machinery/atmospherics/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, /obj/machinery/power/apc{ dir = 8; name = "Detective APC"; @@ -19876,7 +19166,8 @@ /area/bridge) "aII" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 + dir = 4; + initialize_directions = 11 }, /turf/simulated/floor/plasteel{ dir = 2; @@ -19895,8 +19186,8 @@ "aIK" = ( /turf/space, /turf/simulated/shuttle/wall{ - icon_state = "swall_f5"; - dir = 2 + dir = 2; + icon_state = "swall_f5" }, /area/shuttle/mining) "aIL" = ( @@ -19910,8 +19201,8 @@ "aIM" = ( /turf/space, /turf/simulated/shuttle/wall{ - icon_state = "swall_f9"; - dir = 2 + dir = 2; + icon_state = "swall_f9" }, /area/shuttle/mining) "aIN" = ( @@ -19936,7 +19227,6 @@ dir = 4; on = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/quartermaster/miningdock{ name = "\improper Mining Office" @@ -19951,6 +19241,7 @@ dir = 10 }, /obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/quartermaster/miningdock{ name = "\improper Mining Office" @@ -19961,8 +19252,10 @@ d2 = 8; icon_state = "1-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5; + level = 1 }, /turf/simulated/floor/carpet, /area/security/detectives_office) @@ -20016,6 +19309,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/decal/warning_stripes/east, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/engine/engineering) "aIX" = ( @@ -20035,10 +19329,11 @@ d2 = 2; icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ - tag = "icon-vault (NORTHEAST)"; + dir = 5; icon_state = "vault"; - dir = 5 + tag = "icon-vault (NORTHEAST)" }, /area/construction/Storage{ name = "Storage Wing" @@ -20097,18 +19392,10 @@ /turf/simulated/floor/plasteel, /area/hallway/primary/fore) "aJe" = ( -/obj/machinery/atmospherics/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, +/obj/machinery/atmospherics/unary/vent_scrubber, /turf/simulated/floor/plasteel, /area/hallway/primary/fore) "aJf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/structure/cable/yellow{ d1 = 2; d2 = 4; @@ -20133,9 +19420,6 @@ /turf/simulated/floor/plasteel, /area/hallway/primary/fore) "aJh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; @@ -20144,9 +19428,6 @@ /turf/simulated/floor/plasteel, /area/hallway/primary/fore) "aJi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; @@ -20160,15 +19441,14 @@ /turf/simulated/floor/plasteel, /area/hallway/primary/fore) "aJj" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1; - initialize_directions = 11 - }, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, /turf/simulated/floor/plasteel, /area/hallway/primary/fore) "aJk" = ( @@ -20180,6 +19460,9 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, /turf/simulated/floor/plasteel, /area/hallway/primary/fore) "aJl" = ( @@ -20188,10 +19471,13 @@ d2 = 8; icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9; + pixel_y = 0 + }, /turf/simulated/floor/plasteel, /area/hallway/primary/fore) "aJm" = ( @@ -20203,14 +19489,21 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 2; - on = 1 - }, /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=1-BrigCells"; location = "0-SecurityDesk" }, +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 8; + external_pressure_bound = 0; + frequency = 1441; + id_tag = "tox_out"; + initialize_directions = 1; + internal_pressure_bound = 4000; + on = 1; + pressure_checks = 2; + pump_direction = 0 + }, /mob/living/simple_animal/bot/secbot/beepsky, /turf/simulated/floor/plasteel, /area/hallway/primary/fore) @@ -20262,9 +19555,8 @@ icon_state = "4-8" }, /obj/machinery/atmospherics/unary/vent_scrubber{ - dir = 1; + dir = 4; on = 1; - scrub_N2O = 0; scrub_Toxins = 0 }, /turf/simulated/floor/plasteel{ @@ -20285,6 +19577,9 @@ /obj/machinery/light/small{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -20317,7 +19612,6 @@ /turf/simulated/floor/plating, /area/lawoffice) "aJv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/firealarm{ dir = 8; pixel_x = -24 @@ -20327,6 +19621,12 @@ dir = 4; network = list("SS13") }, +/obj/machinery/atmospherics/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 1; + scrub_Toxins = 1 + }, /turf/simulated/floor/plasteel{ icon_state = "freezerfloor" }, @@ -20370,6 +19670,7 @@ d2 = 2; icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/security/warden) "aJz" = ( @@ -20378,11 +19679,14 @@ d2 = 8; icon_state = "4-8" }, -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 4; - on = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5; + level = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 2; + initialize_directions = 11 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ icon_state = "freezerfloor" }, @@ -20398,6 +19702,9 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, /turf/simulated/floor/plasteel{ icon_state = "freezerfloor" }, @@ -20418,6 +19725,9 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, /turf/simulated/floor/plasteel{ icon_state = "freezerfloor" }, @@ -20438,6 +19748,9 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "neutralcorner" @@ -20460,16 +19773,7 @@ /area/crew_quarters/sleep) "aJG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plasteel, -/area/crew_quarters/sleep) -"aJH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6; - level = 1 - }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel, /area/crew_quarters/sleep) "aJI" = ( @@ -20496,13 +19800,13 @@ /turf/simulated/floor/plating/airless, /area/space/nearstation) "aJK" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 2 - }, /obj/machinery/door/airlock/bananium/glass, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/wood, /area/crew_quarters/sleep) "aJL" = ( @@ -20510,10 +19814,11 @@ /turf/simulated/floor/plasteel, /area/engine/engineering) "aJM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, /obj/effect/decal/warning_stripes/south, +/obj/machinery/atmospherics/unary/vent_scrubber{ + dir = 4; + on = 1 + }, /turf/simulated/floor/plasteel, /area/engine/engineering) "aJN" = ( @@ -20529,28 +19834,21 @@ /obj/effect/decal/warning_stripes/south, /turf/simulated/floor/plasteel, /area/engine/engineering) -"aJP" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4; - initialize_directions = 11 - }, -/turf/simulated/floor/plasteel, -/area/engine/engineering) "aJQ" = ( /obj/structure/cable/yellow{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/structure/cable/yellow{ d1 = 1; d2 = 4; icon_state = "1-4" }, /obj/effect/decal/warning_stripes/southeast, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, /turf/simulated/floor/plasteel, /area/engine/engineering) "aJR" = ( @@ -20568,6 +19866,9 @@ dir = 4 }, /obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel, /area/engine/engineering) "aJS" = ( @@ -20581,13 +19882,14 @@ req_access_txt = 1 }, /obj/effect/decal/warning_stripes/yellow/partial{ - icon_state = "3"; - dir = 1 + dir = 1; + icon_state = "3" }, /obj/effect/decal/warning_stripes/arrow{ - icon_state = "4"; - dir = 1 + dir = 1; + icon_state = "4" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" }, @@ -20692,7 +19994,6 @@ /obj/item/shovel{ pixel_x = -5 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "brown" @@ -20710,6 +20011,7 @@ req_access_txt = 1 }, /obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "brown" @@ -20737,20 +20039,15 @@ /obj/machinery/door/airlock/public/glass{ name = "Vault Storage" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ - tag = "icon-vault (NORTHEAST)"; + dir = 5; icon_state = "vault"; - dir = 5 + tag = "icon-vault (NORTHEAST)" }, /area/construction/Storage{ name = "Storage Wing" }) -"aKh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/wall, -/area/quartermaster/sorting{ - name = "\improper Warehouse" - }) "aKi" = ( /obj/machinery/door/airlock/maintenance{ req_access_txt = "0"; @@ -20787,17 +20084,6 @@ }, /turf/simulated/floor/plating, /area/hallway/primary/fore) -"aKn" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/public/glass{ - name = "Primary Tool Storage" - }, -/turf/simulated/floor/plasteel{ - dir = 2; - icon_state = "brown" - }, -/area/storage/primary) "aKo" = ( /obj/effect/spawner/window/reinforced, /obj/structure/cable/yellow{ @@ -20857,20 +20143,24 @@ d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/unary/vent_pump, /turf/simulated/floor/plasteel{ icon_state = "dark" }, /area/hallway/primary/fore) "aKt" = ( -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 4; - on = 1 - }, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4; + level = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -20890,6 +20180,9 @@ req_access = null; req_access_txt = "63" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -20908,6 +20201,9 @@ d2 = 4; icon_state = "2-4" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "redcorner" @@ -20922,6 +20218,9 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "redcorner" @@ -20935,8 +20234,8 @@ pixel_y = 32 }, /turf/simulated/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 + dir = 1; + icon_state = "redcorner" }, /area/hallway/primary/fore) "aKy" = ( @@ -20948,6 +20247,9 @@ d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "redcorner" @@ -20966,6 +20268,7 @@ dir = 1; pixel_y = -24 }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "redcorner" @@ -20989,8 +20292,8 @@ req_access_txt = "2" }, /turf/simulated/floor/plasteel{ - icon_state = "red"; - dir = 1 + dir = 1; + icon_state = "red" }, /area/security/brig) "aKB" = ( @@ -21011,14 +20314,17 @@ req_access_txt = "2" }, /turf/simulated/floor/plasteel{ - icon_state = "red"; - dir = 1 + dir = 1; + icon_state = "red" }, /area/security/brig) "aKC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "redcorner" @@ -21037,8 +20343,8 @@ network = list("SS13") }, /turf/simulated/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 + dir = 1; + icon_state = "redcorner" }, /area/hallway/primary/fore) "aKE" = ( @@ -21050,6 +20356,9 @@ d2 = 2; icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "redcorner" @@ -21059,7 +20368,10 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4; + initialize_directions = 11 + }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "redcorner" @@ -21076,28 +20388,7 @@ }, /turf/simulated/floor/plasteel, /area/hallway/primary/fore) -"aKH" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/plasteel{ - dir = 2; - icon_state = "redcorner" - }, -/area/hallway/primary/fore) "aKI" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 2 - }, -/turf/simulated/floor/plasteel{ - dir = 2; - icon_state = "redcorner" - }, -/area/hallway/primary/fore) -"aKJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "redcorner" @@ -21120,8 +20411,8 @@ pixel_y = 32 }, /turf/simulated/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 + dir = 4; + icon_state = "redcorner" }, /area/hallway/primary/fore) "aKM" = ( @@ -21183,14 +20474,6 @@ icon_state = "grimy" }, /area/security/detectives_office) -"aKT" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 2; - initialize_directions = 11 - }, -/obj/effect/decal/warning_stripes/west, -/turf/simulated/floor/plasteel, -/area/engine/engineering) "aKU" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -21241,14 +20524,6 @@ id_tag = "Toilet2"; name = "Unit 2" }, -/turf/simulated/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/locker/locker_toilet{ - name = "\improper Restrooms" - }) -"aKY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ icon_state = "freezerfloor" }, @@ -21275,20 +20550,7 @@ /area/crew_quarters/locker/locker_toilet{ name = "\improper Restrooms" }) -"aLb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/locker/locker_toilet{ - name = "\improper Restrooms" - }) "aLc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/machinery/alarm{ dir = 8; icon_state = "alarm0"; @@ -21309,13 +20571,16 @@ d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, /obj/machinery/camera{ c_tag = "Dormitories - Aft"; dir = 4 }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "neutralcorner" @@ -21326,9 +20591,15 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel, /area/crew_quarters/sleep) "aLf" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -21339,27 +20610,28 @@ /area/crew_quarters/sleep) "aLg" = ( /obj/machinery/light/small, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /obj/machinery/alarm{ dir = 1; icon_state = "alarm0"; pixel_y = -22 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "neutralcorner" }, /area/crew_quarters/sleep) "aLh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /obj/effect/landmark/start{ name = "Clown" }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "neutralcorner" @@ -21401,17 +20673,6 @@ /obj/structure/closet/secure_closet/clown, /turf/simulated/floor/wood, /area/crew_quarters/sleep) -"aLm" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 2; - initialize_directions = 11 - }, -/obj/structure/closet/wardrobe/pjs, -/turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" - }, -/area/crew_quarters/sleep) "aLn" = ( /obj/structure/cable{ d1 = 4; @@ -21422,6 +20683,9 @@ dir = 9 }, /obj/effect/decal/warning_stripes/southeast, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, /turf/simulated/floor/plasteel, /area/engine/engineering) "aLo" = ( @@ -21440,6 +20704,7 @@ }, /obj/structure/disposalpipe/segment, /obj/effect/decal/warning_stripes/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/quartermaster/sorting{ name = "\improper Warehouse" @@ -21515,10 +20780,12 @@ /turf/simulated/floor/plasteel, /area/engine/engineering) "aLt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/landmark/start{ name = "Station Engineer" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, /turf/simulated/floor/plasteel, /area/engine/engineering) "aLu" = ( @@ -21567,6 +20834,9 @@ dir = 4 }, /obj/effect/decal/warning_stripes/south, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel, /area/engine/engineering) "aLx" = ( @@ -21639,30 +20909,27 @@ "aLH" = ( /turf/space, /turf/simulated/shuttle/wall{ - tag = "icon-swall_f6"; + dir = 2; icon_state = "swall_f6"; - dir = 2 + tag = "icon-swall_f6" }, /area/shuttle/supply) "aLI" = ( /turf/simulated/shuttle/wall{ - icon_state = "swall12"; - dir = 2 + dir = 2; + icon_state = "swall12" }, /area/shuttle/supply) "aLJ" = ( /turf/space, /turf/simulated/shuttle/wall{ - tag = "icon-swall_f10"; + dir = 2; icon_state = "swall_f10"; - dir = 2 + tag = "icon-swall_f10" }, /area/shuttle/supply) "aLK" = ( /obj/effect/spawner/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /turf/simulated/floor/plating, /area/quartermaster/qm) "aLL" = ( @@ -21677,6 +20944,7 @@ opacity = 1 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -21715,6 +20983,7 @@ req_access_txt = 1 }, /obj/effect/decal/warning_stripes/northwest, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/quartermaster/storage) "aLQ" = ( @@ -21731,9 +21000,6 @@ /turf/simulated/floor/plasteel, /area/engine/engineering) "aLS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, /obj/effect/decal/warning_stripes/north, /turf/simulated/floor/plasteel, /area/quartermaster/storage) @@ -21776,6 +21042,9 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, /turf/simulated/floor/plasteel, /area/construction/Storage{ name = "Storage Wing" @@ -21784,6 +21053,9 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "browncorner" @@ -21792,8 +21064,12 @@ name = "Storage Wing" }) "aLX" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 2 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4; + level = 1 }, /turf/simulated/floor/plasteel{ dir = 8; @@ -21803,15 +21079,16 @@ name = "Storage Wing" }) "aLY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 2; + initialize_directions = 11 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "browncorner" @@ -21820,14 +21097,20 @@ name = "Storage Wing" }) "aLZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1; + level = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10; + initialize_directions = 10; + level = 1 + }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "browncorner" @@ -21867,6 +21150,12 @@ /area/maintenance/fore) "aMd" = ( /obj/structure/chair/office/dark, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -21874,6 +21163,13 @@ "aMe" = ( /obj/structure/table, /obj/machinery/recharger, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -21946,19 +21242,13 @@ d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ icon_state = "redfull" }, /area/security/processing) "aMp" = ( -/obj/machinery/atmospherics/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, /obj/machinery/light_switch{ pixel_x = -26 }, @@ -21969,7 +21259,6 @@ name = "\improper Restrooms" }) "aMq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; @@ -22035,24 +21324,12 @@ }, /turf/simulated/floor/plasteel, /area/crew_quarters/sleep) -"aMv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/plasteel{ - dir = 2; - icon_state = "neutralcorner" - }, -/area/crew_quarters/sleep) "aMw" = ( /obj/structure/closet/secure_closet/personal, /obj/item/clothing/under/assistantformal, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/crew_quarters/sleep) "aMx" = ( @@ -22066,13 +21343,10 @@ /turf/simulated/floor/wood, /area/crew_quarters/sleep) "aMy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/structure/closet/wardrobe/pjs, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/crew_quarters/sleep) "aMz" = ( @@ -22147,6 +21421,9 @@ pixel_y = 30 }, /obj/effect/decal/warning_stripes/northeast, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, /turf/simulated/floor/plasteel, /area/construction/Storage{ name = "Storage Wing" @@ -22179,6 +21456,9 @@ }, /obj/structure/disposalpipe/segment, /obj/effect/decal/warning_stripes/northwest, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, /turf/simulated/floor/plasteel, /area/construction/Storage{ name = "Storage Wing" @@ -22210,6 +21490,9 @@ d2 = 4; icon_state = "0-4" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ icon_state = "freezerfloor" }, @@ -22229,8 +21512,8 @@ /area/construction) "aMN" = ( /turf/simulated/shuttle/wall{ - icon_state = "swall3"; - dir = 2 + dir = 2; + icon_state = "swall3" }, /area/shuttle/supply) "aMO" = ( @@ -22279,6 +21562,9 @@ icon_state = "1-4" }, /obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, /turf/simulated/floor/plasteel, /area/quartermaster/storage) "aMT" = ( @@ -22295,6 +21581,9 @@ d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, /turf/simulated/floor/plasteel, /area/quartermaster/storage) "aMU" = ( @@ -22311,11 +21600,6 @@ /obj/effect/decal/warning_stripes/yellow/hollow, /turf/simulated/floor/plasteel, /area/engine/engineering) -"aMV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/decal/warning_stripes/west, -/turf/simulated/floor/plasteel, -/area/quartermaster/storage) "aMW" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -22329,6 +21613,9 @@ dir = 2; icon_state = "pipe-c" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, /turf/simulated/floor/plasteel, /area/quartermaster/storage) "aMX" = ( @@ -22342,6 +21629,9 @@ icon_state = "2-8" }, /obj/effect/decal/warning_stripes/southeastcorner, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel, /area/engine/engineering) "aMY" = ( @@ -22364,6 +21654,9 @@ pixel_y = 32 }, /obj/effect/decal/warning_stripes/northeastcorner, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, /turf/simulated/floor/plasteel, /area/quartermaster/storage) "aMZ" = ( @@ -22375,12 +21668,14 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, /obj/effect/decal/warning_stripes/southeastcorner, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, /turf/simulated/floor/plasteel, /area/quartermaster/storage) "aNa" = ( @@ -22414,6 +21709,7 @@ icon_state = "pipe-c" }, /obj/effect/decal/warning_stripes/northwestcorner, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/quartermaster/storage) "aNc" = ( @@ -22429,6 +21725,9 @@ dir = 4 }, /obj/effect/decal/warning_stripes/southeast, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, /turf/simulated/floor/plasteel, /area/quartermaster/storage) "aNd" = ( @@ -22445,9 +21744,6 @@ d2 = 8; icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "browncorner" @@ -22456,9 +21752,6 @@ name = "Storage Wing" }) "aNf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; @@ -22495,26 +21788,7 @@ /area/quartermaster/miningdock{ name = "\improper Mining Office" }) -"aNh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "browncorner" - }, -/area/construction/Storage{ - name = "Storage Wing" - }) "aNi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=3-Central-Port"; location = "2-Storage" @@ -22529,6 +21803,12 @@ d2 = 8; icon_state = "1-8" }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "browncorner" @@ -22537,15 +21817,18 @@ name = "Storage Wing" }) "aNj" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1; - initialize_directions = 11 - }, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4; + level = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, /turf/simulated/floor/plasteel, /area/construction/Storage{ name = "Storage Wing" @@ -22559,6 +21842,10 @@ d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4; + level = 1 + }, /turf/simulated/floor/plasteel, /area/construction/Storage{ name = "Storage Wing" @@ -22578,6 +21865,10 @@ req_access = null; req_access_txt = "63" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4; + level = 1 + }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -22750,6 +22041,9 @@ /obj/structure/extinguisher_cabinet{ pixel_y = -30 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "redcorner" @@ -22766,6 +22060,9 @@ dir = 4 }, /obj/effect/decal/warning_stripes/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, /turf/simulated/floor/plasteel, /area/construction/Storage{ name = "Storage Wing" @@ -22811,15 +22108,6 @@ }, /turf/simulated/floor/wood, /area/lawoffice) -"aNI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/security/brig) "aNJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -22831,6 +22119,9 @@ pixel_y = -27 }, /obj/structure/cable/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "redcorner" @@ -22856,6 +22147,9 @@ name = "Station Intercom (General)"; pixel_y = -26 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "redcorner" @@ -22942,12 +22236,6 @@ /obj/machinery/shieldgen, /turf/simulated/floor/plating, /area/engine/engineering) -"aNW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/plating, -/area/maintenance/starboard) "aNX" = ( /obj/machinery/camera{ c_tag = "Cargo Bay - Storage Wing Entrance"; @@ -22972,17 +22260,11 @@ dir = 4 }, /obj/effect/decal/warning_stripes/south, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, /turf/simulated/floor/plasteel, /area/quartermaster/storage) -"aNZ" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/security/brig) "aOa" = ( /obj/machinery/power/rad_collector{ anchored = 1 @@ -23034,6 +22316,9 @@ icon_state = "pipe-c" }, /obj/effect/decal/warning_stripes/southwest, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, /turf/simulated/floor/plasteel, /area/construction/Storage{ name = "Storage Wing" @@ -23109,19 +22394,12 @@ /area/space/nearstation) "aOn" = ( /obj/machinery/light/spot{ - tag = "icon-tube1 (WEST)"; + dir = 8; icon_state = "tube1"; - dir = 8 + tag = "icon-tube1 (WEST)" }, /turf/simulated/shuttle/floor, /area/shuttle/supply) -"aOo" = ( -/obj/effect/spawner/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - req_access_txt = 1 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/courtroom) "aOp" = ( /obj/machinery/door/poddoor{ id_tag = "QMLoaddoor"; @@ -23136,25 +22414,11 @@ /obj/effect/decal/warning_stripes/northeast, /turf/simulated/floor/plating/airless, /area/space/nearstation) -"aOr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plasteel, -/area/quartermaster/storage) "aOs" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ req_access_txt = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plasteel, -/area/quartermaster/storage) -"aOt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/quartermaster/storage) "aOu" = ( @@ -23170,6 +22434,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, /obj/effect/decal/warning_stripes/northeastcorner, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/engine/engineering) "aOw" = ( @@ -23213,6 +22478,9 @@ req_one_access_txt = "48;50" }, /obj/effect/decal/warning_stripes/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, /turf/simulated/floor/plasteel, /area/construction/Storage{ name = "Storage Wing" @@ -23273,6 +22541,8 @@ name = "Auxiliary Tool Storage"; req_access_txt = "12" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel, /area/storage/tools) "aOE" = ( @@ -23297,33 +22567,7 @@ icon_state = "redcorner" }, /area/hallway/primary/fore) -"aOI" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plasteel, -/area/hallway/primary/fore) -"aOJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - req_access_txt = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - dir = 2; - icon_state = "redcorner" - }, -/area/hallway/primary/fore) "aOK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/machinery/door/firedoor, /obj/machinery/door/airlock/security{ name = "Brig"; @@ -23332,24 +22576,21 @@ }, /turf/simulated/floor/plasteel, /area/crew_quarters/courtroom) -"aOL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/plasteel, -/area/crew_quarters/courtroom) "aOM" = ( /turf/simulated/floor/plasteel{ - icon_state = "neutral"; - dir = 9 + dir = 9; + icon_state = "neutral" }, /area/crew_quarters/courtroom) "aON" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 27 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 }, /turf/simulated/floor/plasteel{ icon_state = "freezerfloor" @@ -23362,24 +22603,14 @@ /obj/item/gavelblock, /obj/item/gavelhammer, /turf/simulated/floor/plasteel{ - icon_state = "neutral"; - dir = 1 + dir = 1; + icon_state = "neutral" }, /area/crew_quarters/courtroom) -"aOP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - icon_state = "red"; - dir = 1 - }, -/area/security/brig) "aOQ" = ( /turf/simulated/floor/plasteel{ - icon_state = "neutral"; - dir = 5 + dir = 5; + icon_state = "neutral" }, /area/crew_quarters/courtroom) "aOR" = ( @@ -23391,9 +22622,9 @@ dir = 8 }, /turf/simulated/floor/plasteel{ - tag = "icon-vault (WEST)"; + dir = 8; icon_state = "vault"; - dir = 8 + tag = "icon-vault (WEST)" }, /area/crew_quarters/courtroom) "aOS" = ( @@ -23435,10 +22666,6 @@ /turf/simulated/floor/wood, /area/lawoffice) "aOW" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8; - initialize_directions = 11 - }, /obj/structure/disposalpipe/segment, /obj/effect/decal/warning_stripes/northeastcorner, /turf/simulated/floor/plasteel, @@ -23451,15 +22678,14 @@ /turf/simulated/floor/plasteel, /area/engine/engineering) "aOY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/unary/vent_pump, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "neutralcorner" @@ -23494,15 +22720,13 @@ /turf/simulated/floor/plasteel, /area/engine/engineering) "aPb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ dir = 2; @@ -23510,10 +22734,10 @@ }, /area/security/brig) "aPc" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 + dir = 1; + icon_state = "redcorner" }, /area/security/brig) "aPd" = ( @@ -23598,9 +22822,6 @@ /turf/simulated/floor/plating, /area/engine/engineering) "aPm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /obj/machinery/door_timer{ dir = 1; id = "Cell 4"; @@ -23616,8 +22837,8 @@ network = list("SS13") }, /turf/simulated/floor/plasteel{ - icon_state = "red"; - dir = 1 + dir = 1; + icon_state = "red" }, /area/security/brig) "aPn" = ( @@ -23626,7 +22847,6 @@ /area/engine/engineering) "aPo" = ( /obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/engine/engineering) "aPp" = ( @@ -23637,6 +22857,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/engine/engineering) "aPq" = ( @@ -23690,9 +22911,6 @@ pixel_y = 24; req_access_txt = "50" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, /obj/effect/decal/warning_stripes/north, /turf/simulated/floor/plasteel, /area/quartermaster/storage) @@ -23845,20 +23063,17 @@ /turf/simulated/floor/plasteel, /area/engine/engineering) "aPM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, /obj/structure/window/reinforced{ dir = 1; pixel_y = 1 }, /obj/effect/decal/warning_stripes/arrow{ - icon_state = "4"; - dir = 8 + dir = 8; + icon_state = "4" }, /obj/effect/decal/warning_stripes/yellow/partial{ - icon_state = "3"; - dir = 8 + dir = 8; + icon_state = "3" }, /turf/simulated/floor/plasteel, /area/quartermaster/storage) @@ -23884,14 +23099,6 @@ }, /turf/simulated/floor/plasteel, /area/quartermaster/storage) -"aPO" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4; - initialize_directions = 11 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plasteel, -/area/quartermaster/storage) "aPP" = ( /obj/structure/closet/crate, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -23900,6 +23107,7 @@ /obj/item/stack/ore/glass, /obj/item/stack/ore/iron, /obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/quartermaster/storage) "aPQ" = ( @@ -24001,13 +23209,6 @@ icon_state = "brown" }, /area/storage/primary) -"aPY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "brown" - }, -/area/storage/primary) "aPZ" = ( /obj/structure/table, /obj/item/stack/cable_coil{ @@ -24064,12 +23265,9 @@ /area/storage/primary) "aQd" = ( /obj/machinery/shower{ - tag = "icon-shower (EAST)"; + dir = 4; icon_state = "shower"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 + tag = "icon-shower (EAST)" }, /obj/structure/curtain/open/shower, /turf/simulated/floor/plasteel{ @@ -24078,19 +23276,6 @@ /area/crew_quarters/locker/locker_toilet{ name = "\improper Restrooms" }) -"aQe" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/wall/r_wall, -/area/storage/primary) -"aQf" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/space, -/area/space/nearstation) "aQg" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -24098,9 +23283,6 @@ /turf/simulated/wall/r_wall, /area/turret_protected/ai_upload) "aQh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/machinery/porta_turret, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -24130,45 +23312,14 @@ }, /area/turret_protected/ai_upload) "aQk" = ( -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 4; - on = 1 - }, /obj/machinery/alarm{ pixel_y = 23 }, +/obj/machinery/atmospherics/unary/vent_pump, /turf/simulated/floor/plasteel{ icon_state = "dark" }, /area/turret_protected/ai_upload) -"aQl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/porta_turret, -/turf/simulated/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai_upload) -"aQm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/wall/r_wall, -/area/turret_protected/ai_upload) -"aQn" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/space, -/area/space/nearstation) -"aQo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/wall/r_wall, -/area/hallway/primary/fore) "aQp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/alarm{ @@ -24176,34 +23327,51 @@ icon_state = "alarm0"; pixel_x = -22 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "redcorner" }, /area/hallway/primary/fore) -"aQq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plasteel, -/area/crew_quarters/courtroom) "aQr" = ( +/obj/machinery/atmospherics/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_Toxins = 0 + }, /turf/simulated/floor/plasteel{ - icon_state = "neutral"; - dir = 8 + dir = 8; + icon_state = "neutral" }, /area/crew_quarters/courtroom) "aQs" = ( /obj/effect/landmark/start{ name = "Internal Affairs Agent" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10; + initialize_directions = 10; + level = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, /turf/simulated/floor/plasteel, /area/crew_quarters/courtroom) "aQt" = ( +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 8; + external_pressure_bound = 0; + frequency = 1441; + id_tag = "tox_out"; + initialize_directions = 1; + internal_pressure_bound = 4000; + on = 1; + pressure_checks = 2; + pump_direction = 0 + }, /turf/simulated/floor/plasteel{ - icon_state = "neutral"; - dir = 4 + dir = 4; + icon_state = "neutral" }, /area/crew_quarters/courtroom) "aQu" = ( @@ -24213,16 +23381,16 @@ scrub_Toxins = 0 }, /obj/machinery/light{ - icon_state = "tube1"; - dir = 8 + dir = 8; + icon_state = "tube1" }, /turf/simulated/floor/wood, /area/lawoffice) "aQv" = ( /obj/machinery/shower{ - tag = "icon-shower (WEST)"; + dir = 8; icon_state = "shower"; - dir = 8 + tag = "icon-shower (WEST)" }, /obj/effect/landmark/start{ name = "Civilian" @@ -24257,20 +23425,17 @@ /area/lawoffice) "aQy" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /turf/simulated/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 + dir = 4; + icon_state = "redcorner" }, /area/security/brig) "aQz" = ( /obj/structure/closet/secure_closet/personal, /obj/item/clothing/under/assistantformal, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/crew_quarters/locker) "aQA" = ( @@ -24285,8 +23450,8 @@ pixel_y = 32 }, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/crew_quarters/locker) "aQB" = ( @@ -24298,8 +23463,8 @@ pixel_y = 32 }, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/crew_quarters/locker) "aQC" = ( @@ -24314,32 +23479,14 @@ icon_state = "neutralcorner" }, /area/crew_quarters/locker) -"aQE" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/decal/warning_stripes/yellow/hollow, -/turf/simulated/floor/plasteel, -/area/quartermaster/storage) -"aQF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/decal/warning_stripes/yellow/hollow, -/turf/simulated/floor/plasteel, -/area/quartermaster/storage) "aQG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/decal/warning_stripes/arrow{ - icon_state = "4"; - dir = 8 + dir = 8; + icon_state = "4" }, /obj/effect/decal/warning_stripes/yellow/partial{ - icon_state = "3"; - dir = 8 + dir = 8; + icon_state = "3" }, /turf/simulated/floor/plasteel, /area/quartermaster/storage) @@ -24368,8 +23515,8 @@ }, /obj/effect/decal/warning_stripes/yellow, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/crew_quarters/locker) "aQJ" = ( @@ -24391,10 +23538,10 @@ }, /area/crew_quarters/locker) "aQL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/light/small{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "neutralcorner" @@ -24402,8 +23549,8 @@ /area/crew_quarters/locker) "aQM" = ( /obj/structure/sink{ - icon_state = "sink"; dir = 8; + icon_state = "sink"; pixel_x = -12; pixel_y = 2 }, @@ -24414,8 +23561,8 @@ pixel_x = -26 }, /turf/simulated/floor/plasteel{ - icon_state = "neutral"; - dir = 9 + dir = 9; + icon_state = "neutral" }, /area/hallway/secondary/construction{ name = "\improper Garden" @@ -24425,8 +23572,8 @@ dir = 4 }, /turf/simulated/floor/plasteel{ - icon_state = "neutral"; - dir = 1 + dir = 1; + icon_state = "neutral" }, /area/hallway/secondary/construction{ name = "\improper Garden" @@ -24439,8 +23586,8 @@ scrub_Toxins = 0 }, /turf/simulated/floor/plasteel{ - icon_state = "neutral"; - dir = 5 + dir = 5; + icon_state = "neutral" }, /area/hallway/secondary/construction{ name = "\improper Garden" @@ -24503,9 +23650,6 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "neutralcorner" @@ -24525,7 +23669,6 @@ name = "\improper Garden" }) "aQY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; @@ -24657,8 +23800,8 @@ /obj/machinery/portable_atmospherics/pump, /obj/effect/decal/warning_stripes/yellow, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/crew_quarters/locker) "aRo" = ( @@ -24668,14 +23811,20 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ req_access_txt = 1 }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, /turf/simulated/floor/plasteel, /area/quartermaster/storage) "aRq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/landmark/start{ name = "Cargo Technician" }, /obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/unary/vent_scrubber{ + dir = 8; + on = 1 + }, /turf/simulated/floor/plasteel, /area/quartermaster/storage) "aRr" = ( @@ -24705,11 +23854,10 @@ /obj/structure/mirror{ pixel_x = -28 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/shower{ - tag = "icon-shower (EAST)"; + dir = 4; icon_state = "shower"; - dir = 4 + tag = "icon-shower (EAST)" }, /obj/structure/curtain/open/shower, /turf/simulated/floor/plasteel{ @@ -24721,33 +23869,14 @@ "aRu" = ( /turf/simulated/floor/plasteel, /area/storage/primary) -"aRv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/plasteel, -/area/storage/primary) -"aRw" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1; - initialize_directions = 11 - }, -/turf/simulated/floor/plasteel, -/area/storage/primary) -"aRx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plasteel, -/area/storage/primary) "aRy" = ( /obj/structure/mirror{ pixel_x = 28 }, /obj/machinery/shower{ - tag = "icon-shower (WEST)"; + dir = 8; icon_state = "shower"; - dir = 8 + tag = "icon-shower (WEST)" }, /obj/structure/curtain/open/shower, /turf/simulated/floor/plasteel{ @@ -24770,12 +23899,6 @@ /turf/simulated/floor/bluegrid, /area/turret_protected/ai_upload) "aRB" = ( -/obj/machinery/atmospherics/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, /obj/machinery/power/apc{ dir = 2; name = "Storage Wing APC"; @@ -24790,6 +23913,12 @@ d2 = 4; icon_state = "1-4" }, +/obj/machinery/atmospherics/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "browncorner" @@ -24814,7 +23943,6 @@ dir = 8; pixel_x = -24 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/crew_quarters/courtroom) "aRE" = ( @@ -24823,16 +23951,16 @@ name = "Prosecution" }, /turf/simulated/floor/plasteel{ - icon_state = "red"; - dir = 9 + dir = 9; + icon_state = "red" }, /area/crew_quarters/courtroom) "aRF" = ( /obj/structure/table/wood, /obj/item/folder/red, /turf/simulated/floor/plasteel{ - icon_state = "neutral"; - dir = 8 + dir = 8; + icon_state = "neutral" }, /area/crew_quarters/courtroom) "aRG" = ( @@ -24841,10 +23969,6 @@ d2 = 8; icon_state = "1-8" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 2; - initialize_directions = 11 - }, /obj/item/radio/intercom{ frequency = 1459; name = "Station Intercom (General)"; @@ -24872,8 +23996,8 @@ /obj/structure/table/wood, /obj/item/folder/blue, /turf/simulated/floor/plasteel{ - icon_state = "neutral"; - dir = 4 + dir = 4; + icon_state = "neutral" }, /area/crew_quarters/courtroom) "aRI" = ( @@ -24905,7 +24029,7 @@ name = "Internal Affairs Agent" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 + dir = 4 }, /turf/simulated/floor/wood, /area/lawoffice) @@ -24918,6 +24042,9 @@ d2 = 4; icon_state = "2-4" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, /turf/simulated/floor/wood, /area/lawoffice) "aRN" = ( @@ -24933,6 +24060,13 @@ icon_state = "4-8" }, /obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -24947,9 +24081,6 @@ /turf/simulated/floor/wood, /area/lawoffice) "aRP" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; @@ -24967,6 +24098,10 @@ /obj/machinery/atmospherics/pipe/simple/visible{ dir = 4 }, +/obj/machinery/atmospherics/unary/vent_scrubber{ + dir = 4; + on = 1 + }, /mob/living/simple_animal/mouse, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" @@ -25008,21 +24143,16 @@ }, /area/crew_quarters/courtroom) "aRT" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 2 - }, /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "neutralcorner" }, /area/crew_quarters/locker) "aRU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment{ dir = 4 @@ -25033,9 +24163,6 @@ }, /area/crew_quarters/locker) "aRV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /obj/structure/disposalpipe/junction{ dir = 4; icon_state = "pipe-j2"; @@ -25074,11 +24201,11 @@ /turf/simulated/floor/plasteel, /area/crew_quarters/locker) "aRY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=14.5-Recreation"; location = "14.3-Lockers-Dorms" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "neutralcorner" @@ -25098,8 +24225,8 @@ "aSa" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ - icon_state = "neutral"; - dir = 8 + dir = 8; + icon_state = "neutral" }, /area/hallway/secondary/construction{ name = "\improper Garden" @@ -25110,8 +24237,8 @@ /area/quartermaster/storage) "aSc" = ( /turf/simulated/floor/plasteel{ - icon_state = "neutral"; - dir = 4 + dir = 4; + icon_state = "neutral" }, /area/hallway/secondary/construction{ name = "\improper Garden" @@ -25178,23 +24305,6 @@ }, /turf/simulated/floor/plating, /area/engine/engineering) -"aSj" = ( -/obj/machinery/atmospherics/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/effect/decal/warning_stripes/arrow{ - icon_state = "4"; - dir = 8 - }, -/obj/effect/decal/warning_stripes/yellow/partial{ - icon_state = "3"; - dir = 8 - }, -/turf/simulated/floor/plasteel, -/area/quartermaster/storage) "aSk" = ( /obj/effect/decal/warning_stripes/east, /turf/simulated/floor/plating/airless, @@ -25236,8 +24346,8 @@ "aSq" = ( /turf/space, /turf/simulated/shuttle/wall{ - icon_state = "swall_f6"; - dir = 2 + dir = 2; + icon_state = "swall_f6" }, /area/shuttle/pod_1) "aSr" = ( @@ -25248,8 +24358,8 @@ "aSs" = ( /turf/space, /turf/simulated/shuttle/wall{ - icon_state = "swall_f10"; - dir = 2 + dir = 2; + icon_state = "swall_f10" }, /area/shuttle/pod_1) "aSt" = ( @@ -25295,15 +24405,17 @@ pixel_y = -8 }, /obj/machinery/light/spot{ - tag = "icon-tube1 (EAST)"; + dir = 4; icon_state = "tube1"; - dir = 4 + tag = "icon-tube1 (EAST)" }, /turf/simulated/shuttle/floor, /area/shuttle/supply) "aSy" = ( /obj/machinery/hologram/holopad, /obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel, /area/crew_quarters/courtroom) "aSz" = ( @@ -25363,6 +24475,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, /obj/effect/decal/warning_stripes/southeastcorner, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/engine/engineering) "aSF" = ( @@ -25386,10 +24499,9 @@ /turf/simulated/floor/plasteel, /area/quartermaster/storage) "aSG" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, /obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel, /area/quartermaster/storage) "aSH" = ( @@ -25409,14 +24521,6 @@ /area/crew_quarters/sleep) "aSI" = ( /obj/structure/closet/secure_closet/quartermaster, -/obj/machinery/atmospherics/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /turf/simulated/floor/plasteel{ dir = 9; icon_state = "brown" @@ -25462,13 +24566,6 @@ icon_state = "brown" }, /area/quartermaster/qm) -"aSL" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/turf/simulated/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/security/brig) "aSM" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/yellow{ @@ -25490,9 +24587,12 @@ /turf/simulated/floor/plasteel, /area/quartermaster/storage) "aSO" = ( -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 4; - on = 1 +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1; + level = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 }, /turf/simulated/floor/plasteel, /area/storage/primary) @@ -25500,12 +24600,8 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plasteel, -/area/storage/primary) -"aSQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 }, /turf/simulated/floor/plasteel, /area/storage/primary) @@ -25513,6 +24609,11 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10; + initialize_directions = 10; + level = 1 + }, /turf/simulated/floor/plasteel, /area/storage/primary) "aSS" = ( @@ -25607,31 +24708,22 @@ icon_state = "dark" }, /area/turret_protected/ai_upload) -"aSZ" = ( -/obj/machinery/atmospherics/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/simulated/floor/plasteel, -/area/crew_quarters/courtroom) "aTa" = ( /obj/structure/chair{ dir = 4; name = "Prosecution" }, /turf/simulated/floor/plasteel{ - icon_state = "red"; - dir = 10 + dir = 10; + icon_state = "red" }, /area/crew_quarters/courtroom) "aTb" = ( /obj/structure/table/wood, /obj/item/paper, /turf/simulated/floor/plasteel{ - icon_state = "neutral"; - dir = 10 + dir = 10; + icon_state = "neutral" }, /area/crew_quarters/courtroom) "aTc" = ( @@ -25641,18 +24733,25 @@ /area/crew_quarters/courtroom) "aTd" = ( /obj/item/radio/beacon, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ icon_state = "neutral" }, /area/crew_quarters/courtroom) "aTe" = ( /obj/machinery/shower{ - tag = "icon-shower (EAST)"; + dir = 4; icon_state = "shower"; - dir = 4 + tag = "icon-shower (EAST)" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/curtain/open/shower, +/obj/machinery/atmospherics/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 1; + scrub_Toxins = 1 + }, /turf/simulated/floor/plasteel{ icon_state = "freezerfloor" }, @@ -25664,12 +24763,9 @@ dir = 8; name = "Defense" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, /turf/simulated/floor/plasteel{ - icon_state = "green"; - dir = 6 + dir = 6; + icon_state = "green" }, /area/crew_quarters/courtroom) "aTg" = ( @@ -25701,11 +24797,17 @@ }) "aTh" = ( /obj/machinery/shower{ - tag = "icon-shower (WEST)"; + dir = 8; icon_state = "shower"; - dir = 8 + tag = "icon-shower (WEST)" }, /obj/structure/curtain/open/shower, +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 8; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, /turf/simulated/floor/plasteel{ icon_state = "freezerfloor" }, @@ -25719,6 +24821,9 @@ /obj/machinery/atm{ pixel_y = -32 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "redcorner" @@ -25731,6 +24836,7 @@ d2 = 2; icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood, /area/lawoffice) "aTk" = ( @@ -25782,7 +24888,12 @@ /turf/simulated/floor/plasteel, /area/crew_quarters/locker) "aTr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, /turf/simulated/floor/plasteel, /area/crew_quarters/locker) "aTs" = ( @@ -25791,6 +24902,10 @@ d2 = 4; icon_state = "2-4" }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel, /area/crew_quarters/locker) "aTt" = ( @@ -25802,6 +24917,10 @@ /obj/effect/landmark{ name = "lightsout" }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" }, @@ -25812,8 +24931,9 @@ d2 = 8; icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, /turf/simulated/floor/plasteel, /area/crew_quarters/locker) @@ -25827,6 +24947,9 @@ dir = 2; initialize_directions = 11 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/plasteel, /area/crew_quarters/locker) "aTw" = ( @@ -25835,6 +24958,9 @@ d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -25846,9 +24972,6 @@ d2 = 8; icon_state = "1-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; @@ -25858,13 +24981,13 @@ dir = 1; icon_state = "pipe-c" }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel, /area/crew_quarters/locker) "aTy" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8; - initialize_directions = 11 - }, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; @@ -25873,13 +24996,13 @@ /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, /area/crew_quarters/locker) "aTz" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 2; - initialize_directions = 11 - }, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -25888,6 +25011,10 @@ d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "neutralcorner" @@ -25910,6 +25037,9 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/plasteel, /area/hallway/secondary/construction{ name = "\improper Garden" @@ -25926,9 +25056,12 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, /turf/simulated/floor/plasteel{ - icon_state = "neutral"; - dir = 8 + dir = 8; + icon_state = "neutral" }, /area/hallway/secondary/construction{ name = "\improper Garden" @@ -25962,15 +25095,6 @@ /area/hallway/secondary/construction{ name = "\improper Garden" }) -"aTE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/warning_stripes/southeastcorner, -/turf/simulated/floor/plasteel, -/area/quartermaster/storage) "aTF" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -25981,8 +25105,8 @@ dir = 4 }, /turf/simulated/floor/plasteel{ - icon_state = "neutral"; - dir = 4 + dir = 4; + icon_state = "neutral" }, /area/hallway/secondary/construction{ name = "\improper Garden" @@ -26012,8 +25136,8 @@ dir = 8 }, /turf/simulated/floor/plasteel{ - icon_state = "neutral"; - dir = 4 + dir = 4; + icon_state = "neutral" }, /area/hallway/secondary/construction{ name = "\improper Garden" @@ -26044,9 +25168,6 @@ /area/engine/engineering) "aTL" = ( /obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /obj/effect/decal/warning_stripes/yellow/hollow, /turf/simulated/floor/plasteel, /area/quartermaster/storage) @@ -26055,16 +25176,16 @@ anchored = 1 }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + d2 = 4; + icon_state = "0-4" }, /turf/simulated/floor/plating/airless, /area/space/nearstation) "aTN" = ( /turf/simulated/shuttle/wall{ - tag = "icon-swall3"; + dir = 2; icon_state = "swall3"; - dir = 2 + tag = "icon-swall3" }, /area/shuttle/pod_1) "aTO" = ( @@ -26135,14 +25256,18 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/machinery/door/firedoor, /obj/machinery/door/airlock/mining/glass{ name = "Quartermaster"; req_access_txt = "41" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4; + level = 1 + }, /turf/simulated/floor/plasteel, /area/quartermaster/qm) "aTX" = ( @@ -26155,7 +25280,11 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4; + level = 1 }, /turf/simulated/floor/plasteel{ dir = 8; @@ -26166,12 +25295,19 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/yellow{ d1 = 1; d2 = 8; icon_state = "1-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10; + initialize_directions = 10; + level = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, /turf/simulated/floor/plasteel, /area/quartermaster/qm) "aTZ" = ( @@ -26196,8 +25332,8 @@ name = "Station Intercom (Court)" }, /turf/simulated/floor/plasteel{ - icon_state = "neutral"; - dir = 1 + dir = 1; + icon_state = "neutral" }, /area/crew_quarters/courtroom) "aUb" = ( @@ -26214,26 +25350,15 @@ /area/hallway/secondary/construction{ name = "\improper Garden" }) -"aUc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/decal/warning_stripes/yellow/hollow, -/turf/simulated/floor/plasteel, -/area/quartermaster/storage) "aUd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /obj/structure/window/reinforced, /obj/effect/decal/warning_stripes/arrow{ - icon_state = "4"; - dir = 8 + dir = 8; + icon_state = "4" }, /obj/effect/decal/warning_stripes/yellow/partial{ - icon_state = "3"; - dir = 8 + dir = 8; + icon_state = "3" }, /turf/simulated/floor/plasteel, /area/quartermaster/storage) @@ -26246,9 +25371,9 @@ }, /obj/structure/chair/stool, /turf/simulated/floor/plasteel{ - tag = "icon-cafeteria (NORTHEAST)"; + dir = 5; icon_state = "cafeteria"; - dir = 5 + tag = "icon-cafeteria (NORTHEAST)" }, /area/quartermaster/office{ name = "\improper Cargo Office" @@ -26271,6 +25396,7 @@ }) "aUg" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/storage/primary) "aUh" = ( @@ -26325,6 +25451,7 @@ d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/bluegrid, /area/turret_protected/ai_upload) "aUl" = ( @@ -26420,6 +25547,8 @@ name = "Courtroom"; req_access_txt = "42" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -26436,9 +25565,6 @@ icon_state = "1-2" }, /obj/machinery/door/window/southleft, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /obj/effect/decal/warning_stripes/yellow, /turf/simulated/floor/plasteel, /area/quartermaster/storage) @@ -26460,6 +25586,7 @@ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood, /area/lawoffice) "aUw" = ( @@ -26475,9 +25602,6 @@ }, /area/storage/primary) "aUx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /obj/machinery/door_timer{ dir = 1; id = "Cell 5"; @@ -26485,8 +25609,8 @@ pixel_y = 32 }, /turf/simulated/floor/plasteel{ - icon_state = "red"; - dir = 1 + dir = 1; + icon_state = "red" }, /area/security/brig) "aUy" = ( @@ -26499,21 +25623,7 @@ pixel_y = 8 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plasteel, -/area/crew_quarters/locker) -"aUA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/crew_quarters/locker) -"aUB" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4; - initialize_directions = 11 - }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/crew_quarters/locker) "aUC" = ( @@ -26526,35 +25636,16 @@ pixel_x = 4; pixel_y = -4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "neutralcorner" }, /area/crew_quarters/locker) -"aUD" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/tinted{ - dir = 5; - max_integrity = 120; - reinf = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) "aUE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ - icon_state = "neutral"; - dir = 8 + dir = 8; + icon_state = "neutral" }, /area/hallway/secondary/construction{ name = "\improper Garden" @@ -26613,6 +25704,9 @@ opacity = 0 }, /obj/effect/spawner/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plating, /area/crew_quarters/kitchen) "aUK" = ( @@ -26632,8 +25726,8 @@ pixel_y = 32 }, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/engine/engineering) "aUM" = ( @@ -26656,7 +25750,6 @@ name = "Arrivals" }) "aUO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/table/wood, /obj/machinery/photocopier/faxmachine/longrange{ department = "Internal Affairs Office" @@ -26664,16 +25757,11 @@ /turf/simulated/floor/wood, /area/lawoffice) "aUP" = ( -/obj/machinery/atmospherics/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, /obj/machinery/flasher{ - pixel_y = 24; - id = "AI" + id = "AI"; + pixel_y = 24 }, +/obj/machinery/atmospherics/unary/vent_scrubber, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -26699,18 +25787,9 @@ icon_state = "2-8" }, /obj/effect/decal/warning_stripes/east, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/engine/engineering) -"aUS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/security/brig) "aUT" = ( /obj/structure/plasticflaps{ opacity = 1 @@ -26769,10 +25848,14 @@ dir = 4; icon_state = "pipe-c" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/effect/decal/warning_stripes/north, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4; + level = 1 + }, /turf/simulated/floor/plasteel, /area/quartermaster/storage) "aVb" = ( @@ -26804,10 +25887,14 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/effect/decal/warning_stripes/northeast, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4; + level = 1 + }, /turf/simulated/floor/plasteel, /area/quartermaster/storage) "aVe" = ( @@ -26839,17 +25926,12 @@ "aVi" = ( /obj/machinery/power/smes/engineering, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + d2 = 4; + icon_state = "0-4" }, /obj/effect/decal/warning_stripes/yellow, /turf/simulated/floor/plasteel, /area/engine/engineering) -"aVj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plasteel, -/area/quartermaster/storage) "aVk" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/yellow{ @@ -26878,16 +25960,23 @@ }, /obj/effect/decal/warning_stripes/yellow, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/crew_quarters/locker) "aVn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, /turf/simulated/floor/plasteel, /area/quartermaster/qm) "aVo" = ( /obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/unary/vent_scrubber{ + dir = 8; + on = 1 + }, /turf/simulated/floor/plasteel, /area/quartermaster/qm) "aVp" = ( @@ -26900,8 +25989,8 @@ }, /obj/effect/decal/warning_stripes/yellow, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/crew_quarters/locker) "aVq" = ( @@ -26931,8 +26020,8 @@ }, /obj/effect/decal/warning_stripes/yellow, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/crew_quarters/locker) "aVs" = ( @@ -27002,8 +26091,8 @@ /obj/item/aiModule/paladin, /obj/item/aiModule/robocop, /obj/machinery/flasher{ - pixel_y = 24; - id = "AI" + id = "AI"; + pixel_y = 24 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -27025,6 +26114,9 @@ dir = 1; network = list("SS13","RD","AIUpload") }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, /turf/simulated/floor/bluegrid, /area/turret_protected/ai_upload) "aVy" = ( @@ -27038,6 +26130,14 @@ d2 = 2; icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10; + initialize_directions = 10; + level = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -27054,6 +26154,10 @@ dir = 1; network = list("SS13","RD","AIUpload") }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9; + pixel_y = 0 + }, /turf/simulated/floor/bluegrid, /area/turret_protected/ai_upload) "aVA" = ( @@ -27067,8 +26171,8 @@ }, /obj/structure/window/reinforced, /obj/machinery/flasher{ - pixel_y = 24; - id = "AI" + id = "AI"; + pixel_y = 24 }, /obj/item/aiModule/antimov, /obj/item/aiModule/oxygen, @@ -27089,22 +26193,7 @@ }, /turf/simulated/floor/wood, /area/lawoffice) -"aVC" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/window/reinforced/tinted{ - dir = 5; - max_integrity = 120; - reinf = 0 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/courtroom) "aVD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, /obj/machinery/vending/cigarette, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -27118,17 +26207,6 @@ icon_state = "dark" }, /area/crew_quarters/courtroom) -"aVF" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - req_access_txt = 1 - }, -/turf/simulated/floor/plasteel{ - icon_state = "dark" - }, -/area/crew_quarters/courtroom) "aVG" = ( /obj/machinery/vending/coffee, /turf/simulated/floor/plasteel{ @@ -27141,13 +26219,11 @@ d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, /obj/structure/disposalpipe/junction{ - icon_state = "pipe-j1"; - dir = 4 + dir = 4; + icon_state = "pipe-j1" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "neutralcorner" @@ -27159,7 +26235,6 @@ d2 = 4; icon_state = "2-4" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "neutralcorner" @@ -27179,6 +26254,9 @@ d2 = 8; icon_state = "1-8" }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "neutralcorner" @@ -27193,6 +26271,9 @@ d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "neutralcorner" @@ -27212,25 +26293,14 @@ dir = 2; network = list("SS13") }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "neutralcorner" }, /area/crew_quarters/locker) -"aVM" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - dir = 2; - icon_state = "neutralcorner" - }, -/area/security/brig) "aVN" = ( /obj/structure/table, /obj/item/book/manual/engineering_guide{ @@ -27259,6 +26329,9 @@ d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel, /area/crew_quarters/locker) "aVP" = ( @@ -27273,6 +26346,9 @@ d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel, /area/crew_quarters/locker) "aVQ" = ( @@ -27281,8 +26357,11 @@ d2 = 8; icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 2 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 }, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" @@ -27294,18 +26373,6 @@ d2 = 8; icon_state = "1-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plasteel, -/area/crew_quarters/locker) -"aVS" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /turf/simulated/floor/plasteel, /area/crew_quarters/locker) "aVT" = ( @@ -27314,9 +26381,6 @@ pixel_x = -2; pixel_y = 3 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /turf/simulated/floor/plasteel, /area/crew_quarters/locker) "aVU" = ( @@ -27324,30 +26388,17 @@ /obj/item/razor{ pixel_y = 5 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /turf/simulated/floor/plasteel, /area/crew_quarters/locker) "aVV" = ( /obj/structure/table, /obj/item/paicard, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plasteel, -/area/crew_quarters/locker) -"aVW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /turf/simulated/floor/plasteel, /area/crew_quarters/locker) "aVX" = ( /obj/structure/rack, -/obj/effect/landmark/costume/random, -/obj/effect/landmark/costume/random, +/obj/effect/landmark/costume, +/obj/effect/landmark/costume, /obj/item/clothing/mask/balaclava, /obj/machinery/alarm{ dir = 8; @@ -27357,24 +26408,21 @@ /obj/machinery/light/small{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "neutralcorner" }, /area/crew_quarters/locker) "aVY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, /obj/structure/sink{ - icon_state = "sink"; dir = 8; + icon_state = "sink"; pixel_x = -12; pixel_y = 2 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, /turf/simulated/floor/plasteel{ dir = 10; icon_state = "neutral" @@ -27412,8 +26460,8 @@ /area/engine/engineering) "aWc" = ( /turf/simulated/floor/plasteel{ - icon_state = "neutral"; - dir = 6 + dir = 6; + icon_state = "neutral" }, /area/hallway/secondary/construction{ name = "\improper Garden" @@ -27464,9 +26512,6 @@ network = list("SS13") }, /obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, /obj/machinery/power/apc{ dir = 1; name = "Quartermaster's Office APC"; @@ -27482,10 +26527,6 @@ }, /area/quartermaster/qm) "aWi" = ( -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 8; - on = 1 - }, /obj/structure/extinguisher_cabinet{ pixel_x = 27 }, @@ -27504,9 +26545,9 @@ }, /obj/structure/table/glass, /turf/simulated/floor/plasteel{ - tag = "icon-cafeteria (NORTHEAST)"; + dir = 5; icon_state = "cafeteria"; - dir = 5 + tag = "icon-cafeteria (NORTHEAST)" }, /area/quartermaster/office{ name = "\improper Cargo Office" @@ -27546,6 +26587,9 @@ icon_state = "4-8" }, /obj/effect/decal/warning_stripes/northwestcorner, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, /turf/simulated/floor/plasteel, /area/engine/engineering) "aWn" = ( @@ -27564,9 +26608,6 @@ /turf/simulated/floor/plasteel, /area/engine/engineering) "aWo" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "neutralcorner" @@ -27653,8 +26694,8 @@ pixel_x = 30 }, /obj/machinery/light{ - icon_state = "tube1"; - dir = 4 + dir = 4; + icon_state = "tube1" }, /obj/machinery/camera{ c_tag = "Tool Storage"; @@ -27768,9 +26809,9 @@ /obj/structure/shuttle/engine/propulsion/burst, /turf/simulated/floor/plating, /turf/simulated/shuttle/wall{ - tag = "icon-swall_f5"; + dir = 2; icon_state = "swall_f5"; - dir = 2 + tag = "icon-swall_f5" }, /area/shuttle/pod_1) "aWH" = ( @@ -27788,12 +26829,6 @@ }, /turf/simulated/floor/plasteel, /area/construction) -"aWJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/plasteel, -/area/construction) "aWK" = ( /obj/structure/rack{ dir = 1 @@ -27826,8 +26861,8 @@ pixel_x = -26 }, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/engine/engineering) "aWO" = ( @@ -27898,6 +26933,7 @@ name = "2maintenance loot spawner" }, /obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/quartermaster/storage) "aWT" = ( @@ -27908,10 +26944,9 @@ /area/storage/primary) "aWU" = ( /obj/structure/disposalpipe/junction{ - icon_state = "pipe-j1"; - dir = 4 + dir = 4; + icon_state = "pipe-j1" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/storage/primary) "aWV" = ( @@ -27922,12 +26957,6 @@ /turf/simulated/floor/plasteel, /area/storage/primary) "aWW" = ( -/obj/machinery/atmospherics/unary/vent_scrubber{ - dir = 2; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "brown" @@ -27952,8 +26981,8 @@ network = list("SS13") }, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/engine/engineering) "aWY" = ( @@ -27962,6 +26991,8 @@ d2 = 2; icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -27996,57 +27027,24 @@ icon_state = "dark" }, /area/crew_quarters/courtroom) -"aXc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plasteel{ - icon_state = "dark" - }, -/area/crew_quarters/courtroom) "aXd" = ( /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=16-Fore"; location = "15-Court" }, -/turf/simulated/floor/plasteel{ - icon_state = "dark" - }, -/area/crew_quarters/courtroom) -"aXe" = ( -/obj/structure/chair{ - dir = 1 - }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ icon_state = "dark" }, /area/crew_quarters/courtroom) -"aXf" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8; - initialize_directions = 11 - }, -/turf/simulated/floor/plasteel, -/area/crew_quarters/locker) "aXg" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" }, /area/crew_quarters/locker) -"aXh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/plasteel, -/area/crew_quarters/locker) "aXi" = ( /obj/effect/spawner/window/reinforced, /turf/simulated/floor/plating, @@ -28064,12 +27062,6 @@ /obj/machinery/hologram/holopad, /turf/simulated/floor/plasteel, /area/crew_quarters/locker) -"aXl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/crew_quarters/locker) "aXm" = ( /obj/structure/rack, /obj/item/storage/briefcase, @@ -28125,20 +27117,6 @@ /area/hallway/secondary/construction{ name = "\improper Garden" }) -"aXq" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plasteel{ - dir = 2; - icon_state = "neutralcorner" - }, -/area/security/brig) "aXr" = ( /obj/structure/table, /obj/item/hatchet, @@ -28231,17 +27209,6 @@ "aXz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plasteel, -/area/engine/engineering) -"aXA" = ( /obj/structure/cable/yellow{ d1 = 4; d2 = 8; @@ -28267,27 +27234,19 @@ /area/quartermaster/qm) "aXC" = ( /obj/machinery/atmospherics/unary/vent_pump{ - dir = 8; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 + dir = 2; + on = 1 }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, /area/security/brig) -"aXD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/wall/r_wall, -/area/security/brig) "aXE" = ( /obj/structure/table, /obj/item/aiModule/reset, /obj/machinery/light{ - icon_state = "tube1"; - dir = 8 + dir = 8; + icon_state = "tube1" }, /obj/machinery/ai_status_display{ pixel_x = -32 @@ -28373,12 +27332,6 @@ }) "aXL" = ( /turf/simulated/wall/r_wall, -/area/construction/hallway{ - name = "\improper MiniSat Exterior" - }) -"aXM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/wall/r_wall, /area/construction/hallway{ name = "\improper MiniSat Exterior" }) @@ -28415,16 +27368,13 @@ /area/engine/engineering) "aXR" = ( /obj/machinery/light{ - icon_state = "tube1"; - dir = 8 + dir = 8; + icon_state = "tube1" }, /obj/structure/extinguisher_cabinet{ pixel_x = -27 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8; - initialize_directions = 11 - }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "redcorner" @@ -28457,7 +27407,6 @@ name = "protective hat"; pixel_y = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/construction) "aXX" = ( @@ -28480,12 +27429,13 @@ icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/construction) "aXZ" = ( /obj/machinery/light{ - icon_state = "tube1"; - dir = 8 + dir = 8; + icon_state = "tube1" }, /obj/structure/extinguisher_cabinet{ pixel_x = -27 @@ -28518,28 +27468,28 @@ }) "aYc" = ( /turf/simulated/shuttle/wall{ - icon_state = "swall7"; - dir = 2 + dir = 2; + icon_state = "swall7" }, /area/shuttle/supply) "aYd" = ( /turf/simulated/shuttle/floor, /turf/simulated/shuttle/wall/interior{ - tag = "icon-swall_f10"; - icon_state = "swall_f10" + icon_state = "swall_f10"; + tag = "icon-swall_f10" }, /area/shuttle/supply) "aYe" = ( /turf/simulated/shuttle/floor, /turf/simulated/shuttle/wall/interior{ - tag = "icon-swall_f6"; - icon_state = "swall_f6" + icon_state = "swall_f6"; + tag = "icon-swall_f6" }, /area/shuttle/supply) "aYf" = ( /turf/simulated/shuttle/wall{ - icon_state = "swall11"; - dir = 2 + dir = 2; + icon_state = "swall11" }, /area/shuttle/supply) "aYg" = ( @@ -28564,8 +27514,8 @@ opened = 1 }, /obj/machinery/light{ - icon_state = "tube1"; - dir = 8 + dir = 8; + icon_state = "tube1" }, /obj/effect/decal/warning_stripes/yellow, /turf/simulated/floor/plasteel{ @@ -28574,7 +27524,6 @@ }, /area/storage/primary) "aYk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" @@ -28606,9 +27555,9 @@ }, /obj/structure/chair/stool, /turf/simulated/floor/plasteel{ - tag = "icon-cafeteria (NORTHEAST)"; + dir = 5; icon_state = "cafeteria"; - dir = 5 + tag = "icon-cafeteria (NORTHEAST)" }, /area/quartermaster/office{ name = "\improper Cargo Office" @@ -28661,9 +27610,6 @@ /area/storage/primary) "aYs" = ( /obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; @@ -28672,9 +27618,6 @@ /turf/simulated/floor/plasteel, /area/storage/primary) "aYt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; @@ -28683,22 +27626,8 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel, /area/storage/primary) -"aYu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plasteel, -/area/storage/primary) "aYv" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/structure/cable/yellow{ d1 = 2; d2 = 8; @@ -28709,12 +27638,10 @@ d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/storage/primary) "aYw" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; @@ -28741,6 +27668,8 @@ d2 = 2; icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -28767,17 +27696,6 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/courtroom) -"aYB" = ( -/obj/machinery/atmospherics/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/simulated/floor/plasteel{ - icon_state = "dark" - }, -/area/crew_quarters/courtroom) "aYC" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 5; @@ -28823,9 +27741,7 @@ /turf/simulated/floor/plasteel, /area/engine/engineering) "aYF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, +/obj/machinery/atmospherics/unary/vent_pump, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -28849,7 +27765,6 @@ dir = 4; on = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; @@ -28861,12 +27776,10 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/crew_quarters/locker) "aYJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=14.3-Lockers-Dorms"; location = "14.2-Central-CrewQuarters" @@ -28877,9 +27790,6 @@ }, /area/crew_quarters/locker) "aYK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "neutralcorner" @@ -28891,18 +27801,19 @@ d2 = 8; icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - req_access_txt = "0" - }, /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1; + level = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, /turf/simulated/floor/plasteel, /area/security/brig) "aYM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/machinery/power/apc{ dir = 2; name = "Locker Room APC"; @@ -28940,9 +27851,6 @@ }, /area/storage/primary) "aYP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/machinery/firealarm{ dir = 1; pixel_y = -24 @@ -28966,15 +27874,6 @@ /obj/effect/decal/warning_stripes/northwest, /turf/simulated/floor/plasteel, /area/engine/engineering) -"aYR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/plasteel{ - dir = 2; - icon_state = "neutralcorner" - }, -/area/crew_quarters/locker) "aYS" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -28985,12 +27884,14 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ d1 = 4; d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel, /area/engine/engineering) "aYT" = ( @@ -29002,6 +27903,11 @@ d2 = 8; icon_state = "2-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10; + initialize_directions = 10; + level = 1 + }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "arrival" @@ -29020,8 +27926,8 @@ }, /obj/machinery/power/smes/engineering, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/engine/chiefs_office) "aYV" = ( @@ -29034,20 +27940,20 @@ }, /obj/machinery/power/smes/engineering, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/engine/chiefs_office) "aYW" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, /obj/structure/cable{ d1 = 4; d2 = 8; icon_state = "4-8" }, /obj/effect/decal/warning_stripes/north, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/plasteel, /area/engine/engineering) "aYX" = ( @@ -29081,6 +27987,9 @@ dir = 6 }, /obj/effect/decal/warning_stripes/south, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, /turf/simulated/floor/plasteel, /area/engine/engineering) "aYZ" = ( @@ -29103,10 +28012,16 @@ d2 = 4; icon_state = "2-4" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4; + level = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, /turf/simulated/floor/plasteel, /area/security/brig) "aZb" = ( @@ -29125,6 +28040,11 @@ d2 = 4; icon_state = "1-4" }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 2; + initialize_directions = 11 + }, /turf/simulated/floor/plasteel, /area/security/brig) "aZc" = ( @@ -29133,9 +28053,6 @@ d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 2 - }, /obj/structure/disposalpipe/sortjunction{ sortType = 5 }, @@ -29145,6 +28062,11 @@ icon_state = "4-8" }, /obj/effect/decal/warning_stripes/northeastcorner, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4; + initialize_directions = 11 + }, /turf/simulated/floor/plasteel, /area/engine/engineering) "aZd" = ( @@ -29157,12 +28079,12 @@ icon_state = "4-8" }, /obj/machinery/power/terminal{ - icon_state = "term"; - dir = 1 + dir = 1; + icon_state = "term" }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + d2 = 4; + icon_state = "0-4" }, /obj/effect/decal/warning_stripes/north, /turf/simulated/floor/plasteel, @@ -29179,11 +28101,6 @@ /obj/effect/decal/warning_stripes/north, /turf/simulated/floor/plasteel, /area/engine/engineering) -"aZf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/decal/warning_stripes/south, -/turf/simulated/floor/plasteel, -/area/engine/engineering) "aZg" = ( /obj/structure/cable{ d1 = 4; @@ -29236,18 +28153,6 @@ req_access_txt = "32" }, /turf/simulated/floor/plating, -/area/hallway/secondary/entry{ - name = "Arrivals" - }) -"aZl" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/tinted{ - dir = 5; - max_integrity = 120; - reinf = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, /area/hallway/secondary/entry{ name = "Arrivals" }) @@ -29273,15 +28178,12 @@ req_access_txt = "32" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/hallway/secondary/entry{ name = "Arrivals" }) "aZo" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8; - initialize_directions = 11 - }, /obj/structure/cable/yellow{ d1 = 2; d2 = 8; @@ -29292,15 +28194,15 @@ "aZp" = ( /turf/space, /turf/simulated/shuttle/wall{ - tag = "icon-swall_f5"; + dir = 2; icon_state = "swall_f5"; - dir = 2 + tag = "icon-swall_f5" }, /area/shuttle/supply) "aZq" = ( /turf/simulated/shuttle/wall{ - icon_state = "swall15"; - dir = 2 + dir = 2; + icon_state = "swall15" }, /area/shuttle/supply) "aZr" = ( @@ -29313,9 +28215,9 @@ "aZs" = ( /turf/space, /turf/simulated/shuttle/wall{ - tag = "icon-swall_f9"; + dir = 2; icon_state = "swall_f9"; - dir = 2 + tag = "icon-swall_f9" }, /area/shuttle/supply) "aZt" = ( @@ -29323,8 +28225,8 @@ /area/quartermaster/storage) "aZu" = ( /obj/machinery/light{ - icon_state = "tube1"; - dir = 8 + dir = 8; + icon_state = "tube1" }, /obj/machinery/camera{ c_tag = "Cargo Bay - Port"; @@ -29336,10 +28238,6 @@ }, /turf/simulated/floor/plating, /area/quartermaster/storage) -"aZv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plasteel, -/area/quartermaster/storage) "aZw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 @@ -29349,6 +28247,9 @@ icon_state = "pipe-c" }, /obj/effect/decal/warning_stripes/south, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, /turf/simulated/floor/plasteel, /area/engine/engineering) "aZx" = ( @@ -29366,9 +28267,9 @@ "aZy" = ( /obj/item/flag/cargo, /turf/simulated/floor/plasteel{ - tag = "icon-cafeteria (NORTHEAST)"; + dir = 5; icon_state = "cafeteria"; - dir = 5 + tag = "icon-cafeteria (NORTHEAST)" }, /area/quartermaster/office{ name = "\improper Cargo Office" @@ -29377,9 +28278,9 @@ /obj/structure/shuttle/engine/propulsion/burst, /turf/simulated/floor/plating, /turf/simulated/shuttle/wall{ - tag = "icon-swall_f9"; + dir = 2; icon_state = "swall_f9"; - dir = 2 + tag = "icon-swall_f9" }, /area/shuttle/pod_1) "aZA" = ( @@ -29467,6 +28368,7 @@ d2 = 2; icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "brown" @@ -29511,9 +28413,16 @@ d2 = 8; icon_state = "2-8" }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4; + initialize_directions = 11 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/turret_protected/ai_upload_foyer) "aZO" = ( @@ -29592,9 +28501,12 @@ d2 = 8; icon_state = "4-8" }, -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 4; - on = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5; + level = 1 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -29609,6 +28521,11 @@ d2 = 8; icon_state = "2-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10; + initialize_directions = 10; + level = 1 + }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -29640,15 +28557,6 @@ icon_state = "dark" }, /area/crew_quarters/courtroom) -"aZX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plasteel, -/area/crew_quarters/locker) "aZY" = ( /obj/machinery/firealarm{ dir = 4; @@ -29665,49 +28573,49 @@ "baa" = ( /obj/structure/closet/wardrobe/black, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/crew_quarters/locker) "bab" = ( /obj/structure/closet/wardrobe/grey, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/crew_quarters/locker) "bac" = ( /obj/structure/closet/wardrobe/white, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/crew_quarters/locker) "bad" = ( /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/crew_quarters/locker) "bae" = ( /obj/structure/closet/wardrobe/green, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/crew_quarters/locker) "baf" = ( /obj/machinery/vending/clothing, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/crew_quarters/locker) "bag" = ( /obj/structure/closet/wardrobe/mixed, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/crew_quarters/locker) "bah" = ( @@ -29833,12 +28741,11 @@ d2 = 4; icon_state = "1-4" }, -/obj/machinery/atmospherics/unary/vent_scrubber{ - dir = 2; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4; + level = 1 }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/security/brig) "bar" = ( @@ -29847,6 +28754,7 @@ }, /obj/effect/spawner/lootdrop/maintenance, /obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/quartermaster/storage) "bas" = ( @@ -29876,15 +28784,14 @@ /area/construction) "baw" = ( /obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; icon_state = "1-2" }, /obj/effect/decal/warning_stripes/south, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel, /area/engine/engineering) "bax" = ( @@ -29898,9 +28805,6 @@ d2 = 8; icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/structure/cable/yellow{ d1 = 1; d2 = 8; @@ -29910,15 +28814,6 @@ /area/bridge/meeting_room{ name = "\improper Command Hallway" }) -"baz" = ( -/obj/effect/spawner/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/quartermaster/office{ - name = "\improper Cargo Office" - }) "baA" = ( /obj/machinery/light, /obj/machinery/camera{ @@ -30064,6 +28959,9 @@ dir = 1; network = list("SS13") }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -30082,6 +28980,9 @@ icon_state = "map-right-MS"; pixel_y = 32 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "whitecorner" @@ -30098,6 +28999,9 @@ d2 = 8; icon_state = "2-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/wood, /area/crew_quarters/bar) "baO" = ( @@ -30106,6 +29010,11 @@ name = "Station Intercom (General)"; pixel_y = -26 }, +/obj/machinery/atmospherics/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_Toxins = 0 + }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -30126,14 +29035,6 @@ }, /turf/simulated/shuttle/plating, /area/shuttle/supply) -"baS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/plasteel{ - icon_state = "dark" - }, -/area/crew_quarters/courtroom) "baT" = ( /obj/effect/spawner/lootdrop/maintenance, /obj/effect/decal/warning_stripes/yellow/hollow, @@ -30148,26 +29049,17 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/engine/engineering{ dir = 8 }) "baV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, /obj/effect/landmark/start{ name = "Cargo Technician" }, /turf/simulated/floor/plasteel, /area/quartermaster/storage) -"baW" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plasteel, -/area/quartermaster/storage) "baX" = ( /obj/machinery/atmospherics/unary/vent_pump{ dir = 4; @@ -30184,10 +29076,17 @@ d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4; + level = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, /turf/simulated/floor/plasteel{ - tag = "icon-cafeteria (NORTHEAST)"; + dir = 5; icon_state = "cafeteria"; - dir = 5 + tag = "icon-cafeteria (NORTHEAST)" }, /area/quartermaster/office{ name = "\improper Cargo Office" @@ -30198,23 +29097,38 @@ d2 = 8; icon_state = "1-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4; + level = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber{ + dir = 8; + on = 1 + }, /turf/simulated/floor/plasteel{ - tag = "icon-cafeteria (NORTHEAST)"; + dir = 5; icon_state = "cafeteria"; - dir = 5 + tag = "icon-cafeteria (NORTHEAST)" }, /area/quartermaster/office{ name = "\improper Cargo Office" }) "bba" = ( /obj/machinery/atmospherics/unary/vent_pump{ - dir = 2; - on = 1 + dir = 8; + external_pressure_bound = 0; + frequency = 1441; + id_tag = "tox_out"; + initialize_directions = 1; + internal_pressure_bound = 4000; + on = 1; + pressure_checks = 2; + pump_direction = 0 }, /turf/simulated/floor/plasteel{ - tag = "icon-cafeteria (NORTHEAST)"; + dir = 5; icon_state = "cafeteria"; - dir = 5 + tag = "icon-cafeteria (NORTHEAST)" }, /area/quartermaster/office{ name = "\improper Cargo Office" @@ -30226,35 +29140,14 @@ pixel_x = 27 }, /turf/simulated/floor/plasteel{ - tag = "icon-cafeteria (NORTHEAST)"; + dir = 5; icon_state = "cafeteria"; - dir = 5 + tag = "icon-cafeteria (NORTHEAST)" }, /area/quartermaster/office{ name = "\improper Cargo Office" }) -"bbc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/wall, -/area/quartermaster/office{ - name = "\improper Cargo Office" - }) -"bbd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/decal/warning_stripes/north, -/turf/simulated/floor/plasteel, -/area/hallway/secondary/entry{ - name = "Arrivals" - }) "bbe" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/item/radio/intercom{ frequency = 1459; name = "Station Intercom (General)"; @@ -30298,13 +29191,16 @@ d2 = 4; icon_state = "1-4" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel, /area/engine/break_room) "bbg" = ( /obj/structure/closet/firecloset, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/hallway/primary/central) "bbh" = ( @@ -30315,21 +29211,17 @@ }, /obj/structure/closet/emcloset, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/hallway/primary/central) "bbi" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/hallway/primary/central) -"bbj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/wall/r_wall, -/area/turret_protected/ai_upload_foyer) "bbk" = ( /obj/machinery/door/airlock/highsecurity{ name = "Secure Network Access"; @@ -30340,9 +29232,11 @@ d2 = 2; icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/turret_protected/ai_upload_foyer) "bbl" = ( @@ -30359,8 +29253,8 @@ tag = "icon-applebush" }, /turf/simulated/floor/plasteel{ - icon_state = "neutral"; - dir = 9 + dir = 9; + icon_state = "neutral" }, /area/hallway/primary/central) "bbn" = ( @@ -30370,8 +29264,8 @@ icon_state = "1-2" }, /turf/simulated/floor/plasteel{ - icon_state = "neutral"; - dir = 1 + dir = 1; + icon_state = "neutral" }, /area/hallway/primary/central) "bbo" = ( @@ -30384,8 +29278,8 @@ dir = 1 }, /turf/simulated/floor/plasteel{ - icon_state = "neutral"; - dir = 1 + dir = 1; + icon_state = "neutral" }, /area/hallway/primary/central) "bbp" = ( @@ -30400,15 +29294,15 @@ network = list("SS13") }, /turf/simulated/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 + dir = 1; + icon_state = "redcorner" }, /area/hallway/primary/central) "bbq" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 + dir = 1; + icon_state = "redcorner" }, /area/hallway/primary/central) "bbr" = ( @@ -30424,8 +29318,8 @@ req_access_txt = 1 }, /turf/simulated/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 + dir = 4; + icon_state = "redcorner" }, /area/hallway/primary/central) "bbt" = ( @@ -30434,14 +29328,11 @@ pixel_y = 24 }, /turf/simulated/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 + dir = 4; + icon_state = "redcorner" }, /area/hallway/primary/central) "bbu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/machinery/light, /obj/machinery/newscaster{ pixel_y = -32 @@ -30460,26 +29351,18 @@ icon_state = "neutralcorner" }, /area/crew_quarters/locker) -"bbw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/effect/decal/warning_stripes/south, -/turf/simulated/floor/plasteel, -/area/engine/engineering) "bbx" = ( /obj/machinery/door/airlock/highsecurity{ name = "Secure Tech Storage"; req_access_txt = "19;23" }, /turf/simulated/floor/plasteel{ - tag = "icon-vault (WEST)"; + dir = 8; icon_state = "vault"; - dir = 8 + tag = "icon-vault (WEST)" }, /area/storage/tech) "bby" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ name = "Crew Quarters Access" @@ -30497,6 +29380,7 @@ name = "Crew Quarters Access" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/crew_quarters/locker) "bbA" = ( @@ -30506,8 +29390,8 @@ "bbB" = ( /obj/machinery/vending/snack, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/hallway/primary/central) "bbC" = ( @@ -30532,8 +29416,8 @@ icon_state = "2-4" }, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/hallway/primary/central) "bbE" = ( @@ -30577,7 +29461,6 @@ /turf/simulated/floor/plating/airless, /area/engine/engineering) "bbJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ d1 = 2; d2 = 8; @@ -30591,8 +29474,8 @@ }, /obj/machinery/computer/station_alert, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/engine/chiefs_office) "bbL" = ( @@ -30610,10 +29493,6 @@ /obj/effect/decal/warning_stripes/yellow, /turf/simulated/floor/plasteel, /area/engine/engineering) -"bbN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/wall, -/area/engine/engineering) "bbO" = ( /obj/structure/table, /obj/item/paper_bin{ @@ -30624,14 +29503,10 @@ pixel_x = -3; pixel_y = 5 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/decal/warning_stripes/yellow, /turf/simulated/floor/plasteel, /area/engine/engineering) "bbP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /obj/structure/table, /obj/item/paper_bin{ pixel_x = -4; @@ -30643,9 +29518,9 @@ }, /obj/item/toy/figure/cargotech, /turf/simulated/floor/plasteel{ - dir = 2; - icon_state = "whitehall"; - tag = "icon-whitehall (WEST)" + dir = 5; + icon_state = "cafeteria"; + tag = "icon-cafeteria (NORTHEAST)" }, /area/quartermaster/office{ name = "\improper Cargo Office" @@ -30656,6 +29531,9 @@ }, /obj/item/storage/pill_bottle/dice, /obj/structure/table/wood/poker, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, /turf/simulated/floor/wood, /area/crew_quarters/bar) "bbR" = ( @@ -30665,6 +29543,9 @@ /obj/structure/chair/stool{ pixel_y = 8 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/wood, /area/crew_quarters/bar) "bbS" = ( @@ -30675,14 +29556,14 @@ dir = 1 }, /obj/effect/decal/warning_stripes/north, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, /turf/simulated/floor/plasteel, /area/hallway/secondary/entry{ name = "Arrivals" }) "bbT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /obj/machinery/camera{ c_tag = "Security Post - Cargo"; dir = 1; @@ -30690,18 +29571,18 @@ }, /obj/machinery/vending/cola, /turf/simulated/floor/plasteel{ - dir = 2; - icon_state = "whitehall"; - tag = "icon-whitehall (WEST)" + dir = 5; + icon_state = "cafeteria"; + tag = "icon-cafeteria (NORTHEAST)" }, /area/quartermaster/office{ name = "\improper Cargo Office" }) "bbU" = ( /obj/structure/cable{ + d2 = 2; icon_state = "0-2"; - pixel_y = 1; - d2 = 2 + pixel_y = 1 }, /obj/machinery/power/emitter{ anchored = 1; @@ -30785,6 +29666,9 @@ dir = 1; layer = 2.9 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -30798,7 +29682,6 @@ name = "Central Maintenance" }) "bcd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/light_switch{ pixel_x = 28 }, @@ -30823,6 +29706,9 @@ }, /obj/effect/decal/warning_stripes/northwestcorner, /obj/effect/decal/warning_stripes/northwestcorner, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, /turf/simulated/floor/plasteel, /area/hallway/secondary/entry{ name = "Arrivals" @@ -30837,6 +29723,7 @@ dir = 2 }, /obj/effect/decal/warning_stripes/north, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/hallway/secondary/entry{ name = "Arrivals" @@ -30852,29 +29739,15 @@ d2 = 4; icon_state = "2-4" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, /obj/effect/decal/warning_stripes/east, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, /turf/simulated/floor/plasteel, /area/quartermaster/storage) -"bch" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/plasteel, -/area/hallway/secondary/entry{ - name = "Arrivals" - }) -"bci" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1; - initialize_directions = 11 - }, -/turf/simulated/floor/plasteel, -/area/hallway/secondary/entry{ - name = "Arrivals" - }) "bcj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 @@ -30906,21 +29779,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6; - level = 1 - }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "yellow" }, /area/engine/engineering) "bcl" = ( -/obj/machinery/atmospherics/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, /obj/machinery/turretid{ control_area = "\improper AI Upload Chamber"; icon_state = "control_stun"; @@ -30956,20 +29821,18 @@ network = list("AIUpload"); pixel_x = -29 }, +/obj/machinery/atmospherics/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, /turf/simulated/floor/plasteel{ - tag = "icon-vault (SOUTHEAST)"; + dir = 6; icon_state = "vault"; - dir = 6 + tag = "icon-vault (SOUTHEAST)" }, /area/turret_protected/ai_upload_foyer) -"bcm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/plasteel, -/area/hallway/secondary/entry{ - name = "Arrivals" - }) "bcn" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -30979,15 +29842,12 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ req_access_txt = 1 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/hallway/secondary/entry{ name = "Arrivals" }) "bco" = ( -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 2; - on = 1 - }, /obj/effect/landmark/start{ name = "Cyborg" }, @@ -31008,10 +29868,16 @@ /obj/machinery/alarm{ pixel_y = 26 }, +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 8; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, /turf/simulated/floor/plasteel{ - tag = "icon-vault (SOUTHWEST)"; + dir = 10; icon_state = "vault"; - dir = 10 + tag = "icon-vault (SOUTHWEST)" }, /area/turret_protected/ai_upload_foyer) "bcp" = ( @@ -31055,6 +29921,7 @@ icon_state = "1-2" }, /obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/engine/engineering) "bcu" = ( @@ -31062,6 +29929,7 @@ req_access_txt = 1 }, /obj/effect/decal/warning_stripes/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/quartermaster/storage) "bcv" = ( @@ -31074,6 +29942,9 @@ d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, /turf/simulated/floor/plasteel, /area/quartermaster/storage) "bcw" = ( @@ -31085,6 +29956,9 @@ d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, /turf/simulated/floor/plasteel, /area/quartermaster/storage) "bcx" = ( @@ -31094,15 +29968,13 @@ icon_state = "4-8" }, /obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1; + initialize_directions = 11 + }, /turf/simulated/floor/plasteel, /area/quartermaster/storage) "bcy" = ( @@ -31115,14 +29987,11 @@ /obj/machinery/newscaster{ pixel_y = -32 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, /obj/machinery/vending/coffee, /turf/simulated/floor/plasteel{ - dir = 2; - icon_state = "whitehall"; - tag = "icon-whitehall (WEST)" + dir = 5; + icon_state = "cafeteria"; + tag = "icon-cafeteria (NORTHEAST)" }, /area/quartermaster/office{ name = "\improper Cargo Office" @@ -31130,9 +29999,9 @@ "bcA" = ( /obj/machinery/vending/cigarette, /turf/simulated/floor/plasteel{ - dir = 2; - icon_state = "whitehall"; - tag = "icon-whitehall (WEST)" + dir = 5; + icon_state = "cafeteria"; + tag = "icon-cafeteria (NORTHEAST)" }, /area/quartermaster/office{ name = "\improper Cargo Office" @@ -31153,7 +30022,8 @@ d2 = 4; icon_state = "1-4" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/security/brig) "bcC" = ( @@ -31178,6 +30048,13 @@ req_access_txt = "0"; req_one_access_txt = "48;50" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4; + level = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, /turf/simulated/floor/plasteel, /area/quartermaster/office{ name = "\improper Cargo Office" @@ -31257,6 +30134,9 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "neutralcorner" @@ -31275,6 +30155,9 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "neutralcorner" @@ -31285,6 +30168,9 @@ dir = 4 }, /obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "neutralcorner" @@ -31297,6 +30183,9 @@ /obj/machinery/firealarm{ pixel_y = 32 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "neutralcorner" @@ -31311,6 +30200,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 2 }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "neutralcorner" @@ -31320,7 +30210,9 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "neutralcorner" @@ -31331,6 +30223,9 @@ dir = 4 }, /obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "neutralcorner" @@ -31340,6 +30235,9 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "neutralcorner" @@ -31354,6 +30252,9 @@ d2 = 2; icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "neutralcorner" @@ -31366,29 +30267,8 @@ name = "Arrivals" }) "bcS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/effect/decal/warning_stripes/southeastcorner, /turf/simulated/floor/plasteel, -/area/hallway/secondary/entry{ - name = "Arrivals" - }) -"bcT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/decal/warning_stripes/south, -/turf/simulated/floor/plasteel, -/area/hallway/secondary/entry{ - name = "Arrivals" - }) -"bcU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/decal/warning_stripes/southwestcorner, -/turf/simulated/floor/plasteel, /area/hallway/secondary/entry{ name = "Arrivals" }) @@ -31412,19 +30292,25 @@ d2 = 2; icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel, /area/hallway/primary/central) "bcX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel, /area/hallway/primary/central) "bcY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/hallway/primary/central) "bcZ" = ( @@ -31439,18 +30325,27 @@ /obj/effect/landmark{ name = "lightsout" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel, /area/hallway/primary/central) "bda" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 2 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel, /area/hallway/primary/central) "bdb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "neutralcorner" @@ -31460,6 +30355,9 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "neutralcorner" @@ -31469,6 +30367,9 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "neutralcorner" @@ -31483,6 +30384,7 @@ d2 = 2; icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "neutralcorner" @@ -31493,6 +30395,9 @@ dir = 4 }, /obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "neutralcorner" @@ -31502,12 +30407,14 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "neutralcorner" @@ -31517,6 +30424,10 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 2 }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 2; + initialize_directions = 11 + }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "neutralcorner" @@ -31527,6 +30438,9 @@ dir = 4 }, /obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "neutralcorner" @@ -31541,6 +30455,9 @@ d2 = 2; icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "neutralcorner" @@ -31714,7 +30631,6 @@ }, /area/storage/tech) "bdw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ d1 = 1; d2 = 2; @@ -31748,14 +30664,14 @@ pixel_x = -29 }, /turf/simulated/floor/plasteel{ - icon_state = "vault"; - dir = 5 + dir = 5; + icon_state = "vault" }, /area/engine/chiefs_office) "bdz" = ( /turf/simulated/floor/plasteel{ - icon_state = "vault"; - dir = 5 + dir = 5; + icon_state = "vault" }, /area/engine/chiefs_office) "bdA" = ( @@ -31769,8 +30685,8 @@ network = list("SS13") }, /turf/simulated/floor/plasteel{ - icon_state = "vault"; - dir = 5 + dir = 5; + icon_state = "vault" }, /area/engine/chiefs_office) "bdB" = ( @@ -31807,6 +30723,7 @@ req_one_access_txt = "0" }, /obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/engine/chiefs_office) "bdE" = ( @@ -31824,8 +30741,8 @@ }, /obj/machinery/computer/card/minor/ce, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/engine/chiefs_office) "bdF" = ( @@ -31846,6 +30763,9 @@ pixel_y = 32 }, /obj/effect/decal/warning_stripes/northeastcorner, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, /turf/simulated/floor/plasteel, /area/hallway/primary/central) "bdG" = ( @@ -31868,6 +30788,9 @@ pixel_y = 32 }, /obj/effect/decal/warning_stripes/north, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, /turf/simulated/floor/plasteel, /area/hallway/secondary/entry{ name = "Arrivals" @@ -31883,7 +30806,9 @@ network = list("SS13","MiniSat") }, /obj/machinery/light/small, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -31924,13 +30849,6 @@ layer = 2.9 }, /turf/space, -/area/construction/hallway{ - name = "\improper MiniSat Exterior" - }) -"bdO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/lattice/catwalk, -/turf/space, /area/construction/hallway{ name = "\improper MiniSat Exterior" }) @@ -31953,8 +30871,8 @@ pixel_y = 21 }, /turf/simulated/floor/plasteel{ - icon_state = "arrival"; - dir = 5 + dir = 5; + icon_state = "arrival" }, /area/hallway/secondary/entry{ name = "Arrivals" @@ -31968,15 +30886,14 @@ name = "Arrivals" }) "bdS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; icon_state = "1-2" }, /obj/effect/decal/warning_stripes/north, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/plasteel, /area/hallway/primary/central) "bdT" = ( @@ -31996,6 +30913,9 @@ pixel_y = 32 }, /obj/effect/decal/warning_stripes/northwestcorner, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel, /area/hallway/primary/central) "bdW" = ( @@ -32016,9 +30936,6 @@ /turf/simulated/floor/plating, /area/maintenance/starboard) "bdX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, /obj/machinery/alarm{ dir = 8; icon_state = "alarm0"; @@ -32093,7 +31010,6 @@ d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/light_switch{ pixel_x = 27 }, @@ -32118,6 +31034,7 @@ }) "beh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "neutralcorner" @@ -32178,15 +31095,6 @@ }, /turf/simulated/floor/plasteel, /area/hallway/primary/central) -"bem" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plasteel, -/area/hallway/primary/central) "ben" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -32203,8 +31111,9 @@ icon_state = "4-8" }, /obj/machinery/atmospherics/unary/vent_scrubber{ - dir = 2; + dir = 1; on = 1; + scrub_N2O = 0; scrub_Toxins = 0 }, /turf/simulated/floor/plasteel, @@ -32221,6 +31130,7 @@ d2 = 8; icon_state = "2-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/hallway/primary/central) "beq" = ( @@ -32243,7 +31153,6 @@ d2 = 8; icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=2-Storage"; location = "1.5-Fore-Central" @@ -32300,37 +31209,24 @@ }, /turf/simulated/floor/plasteel, /area/hallway/primary/central) -"bew" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/plasteel, -/area/hallway/primary/central) "bex" = ( /obj/structure/cable/yellow{ d1 = 2; d2 = 8; icon_state = "2-8" }, -/obj/machinery/atmospherics/unary/vent_scrubber{ - dir = 2; - on = 1; - scrub_Toxins = 0 - }, /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ d1 = 2; d2 = 4; icon_state = "2-4" }, +/obj/machinery/atmospherics/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, /turf/simulated/floor/plasteel, /area/hallway/primary/central) "bey" = ( @@ -32346,6 +31242,7 @@ d2 = 8; icon_state = "1-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "neutralcorner" @@ -32366,9 +31263,6 @@ /turf/simulated/floor/plating, /area/storage/tools) "beB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, /obj/machinery/vending/cart, /turf/simulated/floor/plasteel{ dir = 5; @@ -32388,8 +31282,8 @@ dir = 1 }, /turf/simulated/floor/plasteel{ - icon_state = "neutral"; - dir = 1 + dir = 1; + icon_state = "neutral" }, /area/hallway/primary/central) "beE" = ( @@ -32399,27 +31293,9 @@ icon_state = "4-8" }, /turf/simulated/floor/plasteel{ - tag = "icon-vault (WEST)"; + dir = 8; icon_state = "vault"; - dir = 8 - }, -/area/storage/tech) -"beF" = ( -/obj/machinery/atmospherics/unary/vent_scrubber{ - dir = 2; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plasteel{ - tag = "icon-vault (WEST)"; - icon_state = "vault"; - dir = 8 + tag = "icon-vault (WEST)" }, /area/storage/tech) "beG" = ( @@ -32429,9 +31305,9 @@ icon_state = "2-8" }, /turf/simulated/floor/plasteel{ - tag = "icon-vault (WEST)"; + dir = 8; icon_state = "vault"; - dir = 8 + tag = "icon-vault (WEST)" }, /area/storage/tech) "beH" = ( @@ -32441,8 +31317,8 @@ pixel_y = 21 }, /turf/simulated/floor/plasteel{ - icon_state = "neutral"; - dir = 1 + dir = 1; + icon_state = "neutral" }, /area/hallway/primary/central) "beI" = ( @@ -32465,8 +31341,8 @@ dir = 8 }, /turf/simulated/floor/plasteel{ - icon_state = "vault"; - dir = 5 + dir = 5; + icon_state = "vault" }, /area/engine/chiefs_office) "beJ" = ( @@ -32517,9 +31393,10 @@ icon_state = "1-2" }, /obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ - icon_state = "vault"; - dir = 5 + dir = 5; + icon_state = "vault" }, /area/engine/chiefs_office) "beO" = ( @@ -32551,13 +31428,11 @@ d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ req_access_txt = 1 }, /obj/effect/decal/warning_stripes/southwestcorner, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/hallway/secondary/entry{ name = "Arrivals" @@ -32583,8 +31458,8 @@ /obj/machinery/disposal, /obj/structure/disposalpipe/trunk, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/hallway/primary/central) "beT" = ( @@ -32601,6 +31476,11 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1; + initialize_directions = 11 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/plasteel, /area/security/brig) "beU" = ( @@ -32649,15 +31529,6 @@ }, /turf/simulated/floor/plating/airless, /area/space/nearstation) -"bfa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5; - level = 1 - }, -/turf/simulated/wall/r_wall, -/area/construction/hallway{ - name = "\improper MiniSat Exterior" - }) "bfb" = ( /obj/structure/window/reinforced{ dir = 8 @@ -32681,6 +31552,9 @@ dir = 8; network = list("SS13","MiniSat") }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -32697,8 +31571,8 @@ }, /obj/machinery/computer/atmos_alert, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/engine/chiefs_office) "bfe" = ( @@ -32715,6 +31589,7 @@ icon_state = "1-2" }, /obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/engine/engineering) "bff" = ( @@ -32735,6 +31610,9 @@ }, /obj/effect/spawner/lootdrop/maintenance, /obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, /turf/simulated/floor/plasteel, /area/quartermaster/storage) "bfh" = ( @@ -32759,7 +31637,6 @@ d2 = 8; icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/yellow{ d1 = 2; d2 = 8; @@ -32795,7 +31672,11 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4; + level = 1 + }, /turf/simulated/floor/plasteel, /area/security/brig) "bfl" = ( @@ -32821,15 +31702,19 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 1; - on = 1 - }, /obj/structure/cable/yellow{ d1 = 1; d2 = 8; icon_state = "1-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4; + level = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1; + level = 1 + }, /turf/simulated/floor/plasteel, /area/security/brig) "bfn" = ( @@ -32861,6 +31746,7 @@ req_access_txt = 1 }, /obj/effect/decal/warning_stripes/south, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/quartermaster/storage) "bfq" = ( @@ -32888,15 +31774,15 @@ /area/engine/engineering) "bfs" = ( /obj/machinery/atmospherics/unary/vent_scrubber{ - dir = 2; + dir = 8; on = 1; scrub_N2O = 0; scrub_Toxins = 0 }, /obj/machinery/shower{ - tag = "icon-shower (WEST)"; + dir = 8; icon_state = "shower"; - dir = 8 + tag = "icon-shower (WEST)" }, /obj/effect/decal/warning_stripes/northeast, /turf/simulated/floor/plasteel, @@ -32927,6 +31813,7 @@ req_access_txt = 1 }, /obj/effect/decal/warning_stripes/west, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/hallway/secondary/entry{ name = "Arrivals" @@ -32952,6 +31839,9 @@ icon_state = "4-8" }, /obj/effect/decal/warning_stripes/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, /turf/simulated/floor/plasteel, /area/quartermaster/storage) "bfy" = ( @@ -32959,7 +31849,6 @@ pixel_y = 32 }, /obj/structure/closet/radiation, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/decal/warning_stripes/yellow, /turf/simulated/floor/plasteel, /area/engine/engineering) @@ -32983,7 +31872,6 @@ /turf/simulated/floor/plating, /area/engine/engineering) "bfA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; @@ -32992,6 +31880,11 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4; + level = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/security/brig) "bfB" = ( @@ -33011,8 +31904,8 @@ pixel_x = -32 }, /obj/machinery/light{ - icon_state = "tube1"; - dir = 8 + dir = 8; + icon_state = "tube1" }, /turf/simulated/floor/bluegrid, /area/turret_protected/ai) @@ -33048,6 +31941,14 @@ d2 = 8; icon_state = "1-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4; + level = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4; + level = 1 + }, /turf/simulated/floor/plasteel, /area/security/brig) "bfG" = ( @@ -33060,8 +31961,8 @@ pixel_x = 32 }, /obj/machinery/light{ - icon_state = "tube1"; - dir = 4 + dir = 4; + icon_state = "tube1" }, /turf/simulated/floor/bluegrid, /area/turret_protected/ai) @@ -33075,9 +31976,6 @@ /turf/simulated/floor/plasteel, /area/hallway/primary/central) "bfJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" @@ -33088,22 +31986,6 @@ }, /area/hallway/primary/central) "bfK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - dir = 2; - icon_state = "neutralcorner" - }, -/area/hallway/primary/central) -"bfL" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 2; - initialize_directions = 11 - }, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -33113,9 +31995,6 @@ }, /area/hallway/primary/central) "bfM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment{ dir = 4 @@ -33126,22 +32005,15 @@ }, /area/hallway/primary/central) "bfN" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4; - initialize_directions = 11; - level = 1 - }, /obj/structure/cable{ d1 = 2; d2 = 8; icon_state = "2-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/bluegrid, /area/turret_protected/ai) "bfO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/machinery/alarm{ dir = 1; pixel_y = -22 @@ -33154,23 +32026,7 @@ icon_state = "neutralcorner" }, /area/hallway/primary/central) -"bfP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 2; - initialize_directions = 11 - }, -/turf/simulated/floor/plasteel{ - dir = 2; - icon_state = "neutralcorner" - }, -/area/hallway/primary/central) "bfQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/yellow{ d1 = 1; @@ -33181,6 +32037,7 @@ dir = 2; icon_state = "pipe-c" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "neutralcorner" @@ -33191,54 +32048,28 @@ dir = 1; pixel_y = -24 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 2; - initialize_directions = 11 - }, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "neutralcorner" }, /area/hallway/primary/central) "bfS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - dir = 2; - icon_state = "neutralcorner" - }, -/area/hallway/primary/central) -"bfT" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 2; - initialize_directions = 11 - }, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "neutralcorner" }, /area/hallway/primary/central) "bfU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/machinery/hologram/holopad, /turf/simulated/floor/plasteel, /area/hallway/primary/central) "bfV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "neutralcorner" }, /area/hallway/primary/central) "bfW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/machinery/firealarm{ dir = 1; pixel_y = -24 @@ -33249,9 +32080,6 @@ }, /area/hallway/primary/central) "bfX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/machinery/camera{ c_tag = "Central Primary Hallway - Fore - Courtroom"; dir = 1; @@ -33263,10 +32091,6 @@ }, /area/hallway/primary/central) "bfY" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1; - initialize_directions = 11 - }, /obj/machinery/light, /turf/simulated/floor/plasteel{ dir = 8; @@ -33274,9 +32098,6 @@ }, /area/hallway/primary/central) "bfZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/machinery/alarm{ dir = 1; pixel_y = -22 @@ -33302,10 +32123,6 @@ name = "Arrivals" }) "bgb" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1; - initialize_directions = 11 - }, /obj/item/radio/intercom{ frequency = 1459; name = "Station Intercom (General)"; @@ -33317,18 +32134,6 @@ icon_state = "neutralcorner" }, /area/hallway/primary/central) -"bgc" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plasteel, -/area/hallway/primary/central) "bgd" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ req_access_txt = 1 @@ -33338,6 +32143,7 @@ dir = 8; network = list("SS13") }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "neutralcorner" @@ -33439,6 +32245,10 @@ scrub_N2O = 0; scrub_Toxins = 0 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4; + level = 1 + }, /turf/simulated/floor/plasteel, /area/security/brig) "bgm" = ( @@ -33455,8 +32265,8 @@ pixel_y = -2 }, /turf/simulated/floor/plasteel{ - icon_state = "vault"; - dir = 4 + dir = 4; + icon_state = "vault" }, /area/storage/tech) "bgn" = ( @@ -33528,7 +32338,6 @@ }, /obj/item/circuitboard/destructive_analyzer, /obj/item/circuitboard/protolathe, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -33539,10 +32348,11 @@ d2 = 2; icon_state = "1-2" }, +/obj/machinery/atmospherics/unary/vent_scrubber, /turf/simulated/floor/plasteel{ - tag = "icon-vault (WEST)"; + dir = 8; icon_state = "vault"; - dir = 8 + tag = "icon-vault (WEST)" }, /area/storage/tech) "bgt" = ( @@ -33570,8 +32380,8 @@ req_access_txt = "11" }, /turf/simulated/floor/plasteel{ - icon_state = "vault"; - dir = 5 + dir = 5; + icon_state = "vault" }, /area/engine/chiefs_office) "bgv" = ( @@ -33589,8 +32399,8 @@ /obj/structure/table/reinforced, /obj/item/cartridge/atmos, /turf/simulated/floor/plasteel{ - icon_state = "neutral"; - dir = 4 + dir = 4; + icon_state = "neutral" }, /area/engine/chiefs_office) "bgw" = ( @@ -33618,9 +32428,6 @@ dir = 4; pixel_x = 24 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "brown" @@ -33637,14 +32444,17 @@ d2 = 8; icon_state = "2-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/extinguisher_cabinet{ pixel_x = 27 }, /obj/effect/decal/warning_stripes/east, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9; + level = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, /turf/simulated/floor/plasteel, /area/quartermaster/storage) "bgA" = ( @@ -33693,13 +32503,15 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/item/radio/intercom{ frequency = 1459; name = "Station Intercom (General)"; pixel_y = 21 }, /obj/effect/decal/warning_stripes/north, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel, /area/hallway/primary/central) "bgG" = ( @@ -33707,13 +32519,16 @@ /turf/simulated/floor/plating, /area/engine/engineering) "bgH" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 2 - }, /obj/machinery/ai_status_display{ pixel_y = 32 }, /obj/effect/decal/warning_stripes/north, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/plasteel, /area/hallway/primary/central) "bgI" = ( @@ -33731,16 +32546,12 @@ d2 = 8; icon_state = "1-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/plasteel, /area/security/brig) -"bgJ" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8; - initialize_directions = 11 - }, -/turf/simulated/floor/plating, -/area/maintenance/starboard) "bgK" = ( /obj/item/radio/intercom{ broadcasting = 0; @@ -33799,8 +32610,8 @@ /area/storage/tech) "bgP" = ( /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + d2 = 4; + icon_state = "0-4" }, /obj/machinery/power/smes{ charge = 5e+006 @@ -33890,7 +32701,6 @@ /turf/simulated/floor/plasteel, /area/quartermaster/storage) "bgW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; @@ -33940,6 +32750,9 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/carpet, /area/crew_quarters/theatre) "bhb" = ( @@ -33985,7 +32798,9 @@ d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "brown" @@ -34013,9 +32828,10 @@ pixel_x = 26; pixel_y = 26 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ - icon_state = "vault"; - dir = 5 + dir = 5; + icon_state = "vault" }, /area/engine/chiefs_office) "bhg" = ( @@ -34060,10 +32876,6 @@ /area/hallway/secondary/entry{ name = "Arrivals" }) -"bhk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plasteel, -/area/hallway/primary/port) "bhl" = ( /turf/simulated/floor/plasteel, /area/hallway/primary/port) @@ -34109,7 +32921,6 @@ /turf/simulated/floor/plasteel, /area/engine/engineering) "bhp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel{ dir = 2; @@ -34127,10 +32938,6 @@ }, /turf/simulated/floor/plasteel, /area/janitor) -"bhs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/wall, -/area/janitor) "bht" = ( /turf/simulated/wall, /area/maintenance/maintcentral{ @@ -34148,6 +32955,7 @@ d2 = 2; icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/maintenance/maintcentral{ name = "Central Maintenance" @@ -34162,6 +32970,10 @@ /obj/machinery/atmospherics/pipe/simple/visible{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" }, @@ -34171,23 +32983,11 @@ /area/crew_quarters/captain{ name = "\improper Captain's Quarters" }) -"bhx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/wall/r_wall, -/area/crew_quarters/captain{ - name = "\improper Captain's Quarters" - }) -"bhy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "neutralcorner" - }, -/area/hallway/primary/central) "bhz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ req_access_txt = 1 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "neutralcorner" @@ -34209,18 +33009,24 @@ /area/engine/engineering) "bhB" = ( /obj/machinery/atmospherics/unary/vent_pump{ - dir = 2; + dir = 4; on = 1 }, /turf/simulated/floor/plasteel, /area/storage/tools) "bhC" = ( /obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, /turf/simulated/floor/plasteel, /area/storage/tools) "bhD" = ( /obj/machinery/atmospherics/unary/vent_scrubber{ - dir = 2; + dir = 8; on = 1; scrub_N2O = 0; scrub_Toxins = 0 @@ -34287,33 +33093,30 @@ pixel_y = -5 }, /turf/simulated/floor/plasteel{ - tag = "icon-vault (WEST)"; + dir = 8; icon_state = "vault"; - dir = 8 + tag = "icon-vault (WEST)" }, /area/storage/tech) "bhJ" = ( /turf/simulated/floor/plasteel{ - tag = "icon-vault (WEST)"; + dir = 8; icon_state = "vault"; - dir = 8 + tag = "icon-vault (WEST)" }, /area/storage/tech) "bhK" = ( /obj/structure/reagent_dispensers/spacecleanertank{ pixel_y = 30 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, /turf/simulated/floor/plasteel, /area/janitor) "bhL" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/plasteel{ - tag = "icon-vault (WEST)"; + dir = 8; icon_state = "vault"; - dir = 8 + tag = "icon-vault (WEST)" }, /area/storage/tech) "bhM" = ( @@ -34326,9 +33129,9 @@ pixel_x = -1 }, /turf/simulated/floor/plasteel{ - tag = "icon-vault (WEST)"; + dir = 8; icon_state = "vault"; - dir = 8 + tag = "icon-vault (WEST)" }, /area/storage/tech) "bhN" = ( @@ -34336,20 +33139,9 @@ dir = 4 }, /turf/simulated/floor/plasteel{ - tag = "icon-vault (WEST)"; + dir = 8; icon_state = "vault"; - dir = 8 - }, -/area/storage/tech) -"bhO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plasteel{ - tag = "icon-vault (WEST)"; - icon_state = "vault"; - dir = 8 + tag = "icon-vault (WEST)" }, /area/storage/tech) "bhP" = ( @@ -34361,10 +33153,11 @@ d2 = 2; icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ - tag = "icon-vault (WEST)"; + dir = 8; icon_state = "vault"; - dir = 8 + tag = "icon-vault (WEST)" }, /area/storage/tech) "bhQ" = ( @@ -34375,9 +33168,9 @@ /obj/item/wirecutters, /obj/item/multitool, /turf/simulated/floor/plasteel{ - tag = "icon-vault (WEST)"; + dir = 8; icon_state = "vault"; - dir = 8 + tag = "icon-vault (WEST)" }, /area/storage/tech) "bhR" = ( @@ -34409,8 +33202,8 @@ dir = 4 }, /turf/simulated/floor/plasteel{ - icon_state = "neutral"; - dir = 1 + dir = 1; + icon_state = "neutral" }, /area/engine/chiefs_office) "bhU" = ( @@ -34418,7 +33211,7 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 + dir = 4 }, /turf/simulated/floor/plasteel{ dir = 1; @@ -34426,9 +33219,6 @@ }, /area/engine/chiefs_office) "bhV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, /obj/structure/sign/securearea{ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; @@ -34460,6 +33250,7 @@ req_one_access_txt = "48;50" }, /obj/effect/decal/warning_stripes/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/quartermaster/office{ name = "\improper Cargo Office" @@ -34486,9 +33277,9 @@ icon_state = "0-4" }, /turf/simulated/floor/plasteel{ - tag = "icon-vault (WEST)"; + dir = 8; icon_state = "vault"; - dir = 8 + tag = "icon-vault (WEST)" }, /area/storage/tech) "bib" = ( @@ -34519,8 +33310,8 @@ dir = 8 }, /turf/simulated/floor/plasteel{ - icon_state = "vault"; - dir = 8 + dir = 8; + icon_state = "vault" }, /area/turret_protected/ai) "bie" = ( @@ -34559,11 +33350,10 @@ dir = 4; on = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/shower{ - tag = "icon-shower (EAST)"; + dir = 4; icon_state = "shower"; - dir = 4 + tag = "icon-shower (EAST)" }, /obj/structure/extinguisher_cabinet{ pixel_x = -27 @@ -34573,8 +33363,8 @@ /area/engine/engineering) "bih" = ( /obj/machinery/power/terminal{ - icon_state = "term"; - dir = 1 + dir = 1; + icon_state = "term" }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -34604,15 +33394,18 @@ name = "lightsout" }, /obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; icon_state = "1-2" }, /obj/effect/decal/warning_stripes/north, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, /turf/simulated/floor/plasteel, /area/engine/engineering) "bil" = ( @@ -34620,10 +33413,6 @@ /turf/simulated/floor/bluegrid, /area/turret_protected/ai) "bim" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5; - level = 1 - }, /obj/structure/cable{ d1 = 1; d2 = 4; @@ -34635,16 +33424,16 @@ "bin" = ( /turf/space, /turf/simulated/shuttle/wall{ - tag = "icon-swall_f6"; + dir = 2; icon_state = "swall_f6"; - dir = 2 + tag = "icon-swall_f6" }, /area/shuttle/arrival/station) "bio" = ( /turf/simulated/shuttle/wall{ - tag = "icon-swall12"; + dir = 2; icon_state = "swall12"; - dir = 2 + tag = "icon-swall12" }, /area/shuttle/arrival/station) "bip" = ( @@ -34660,27 +33449,20 @@ /area/shuttle/arrival/station) "bir" = ( /turf/simulated/shuttle/wall{ - tag = "icon-swall14"; + dir = 2; icon_state = "swall14"; - dir = 2 + tag = "icon-swall14" }, /area/shuttle/arrival/station) "bis" = ( /turf/space, /turf/simulated/shuttle/wall{ - tag = "icon-swall_f10"; + dir = 2; icon_state = "swall_f10"; - dir = 2 + tag = "icon-swall_f10" }, /area/shuttle/arrival/station) "bit" = ( -/obj/machinery/atmospherics/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/firealarm{ dir = 4; pixel_x = 24 @@ -34697,27 +33479,15 @@ /area/hallway/secondary/entry{ name = "Arrivals" }) -"biu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/wall, -/area/security/checkpoint2{ - name = "Customs" - }) "biv" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1; - initialize_directions = 11 - }, /obj/structure/table/reinforced, /obj/item/book/manual/security_space_law{ pixel_x = -3; pixel_y = 5 }, /turf/simulated/floor/plasteel{ - icon_state = "red"; - dir = 9 + dir = 9; + icon_state = "red" }, /area/security/checkpoint2{ name = "Customs" @@ -34732,15 +33502,9 @@ d2 = 2; icon_state = "0-2" }, -/obj/machinery/atmospherics/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, /turf/simulated/floor/plasteel{ - icon_state = "red"; - dir = 1 + dir = 1; + icon_state = "red" }, /area/security/checkpoint2{ name = "Customs" @@ -34753,8 +33517,8 @@ }, /obj/machinery/computer/security, /turf/simulated/floor/plasteel{ - icon_state = "red"; - dir = 1 + dir = 1; + icon_state = "red" }, /area/security/checkpoint2{ name = "Customs" @@ -34775,8 +33539,8 @@ network = list("SS13") }, /turf/simulated/floor/plasteel{ - icon_state = "red"; - dir = 1 + dir = 1; + icon_state = "red" }, /area/security/checkpoint2{ name = "Customs" @@ -34802,6 +33566,7 @@ /obj/machinery/atmospherics/pipe/simple/visible{ dir = 2 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" }, @@ -34914,7 +33679,6 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/quartermaster/office{ name = "\improper Cargo Office" @@ -34923,10 +33687,6 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8; - initialize_directions = 11 - }, /turf/simulated/floor/plasteel, /area/quartermaster/office{ name = "\improper Cargo Office" @@ -34936,18 +33696,12 @@ dir = 2; icon_state = "pipe-c" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /turf/simulated/floor/plasteel, /area/quartermaster/office{ name = "\improper Cargo Office" }) "biN" = ( /obj/machinery/computer/supplycomp, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "brown" @@ -34970,7 +33724,6 @@ d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/door/firedoor, /obj/machinery/door/airlock/mining{ name = "Cargo Bay"; @@ -34982,13 +33735,6 @@ /area/quartermaster/office{ name = "\improper Cargo Office" }) -"biQ" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4; - initialize_directions = 11 - }, -/turf/simulated/floor/plasteel, -/area/hallway/primary/port) "biR" = ( /obj/machinery/atmospherics/unary/vent_pump{ dir = 4; @@ -35026,6 +33772,7 @@ /area/turret_protected/ai) "biV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "browncorner" @@ -35045,7 +33792,6 @@ /turf/simulated/floor/plasteel, /area/hallway/primary/central) "biX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" @@ -35079,9 +33825,6 @@ /obj/machinery/alarm{ pixel_y = 28 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" }, @@ -35090,8 +33833,8 @@ /obj/structure/table/wood, /obj/item/book/manual/security_space_law, /turf/simulated/floor/plasteel{ - icon_state = "neutral"; - dir = 6 + dir = 6; + icon_state = "neutral" }, /area/crew_quarters/courtroom) "bjc" = ( @@ -35165,12 +33908,6 @@ name = "\improper Cargo Office" }) "bjg" = ( -/obj/machinery/atmospherics/unary/vent_scrubber{ - dir = 2; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, /obj/machinery/status_display{ density = 0; pixel_y = 32 @@ -35236,13 +33973,13 @@ dir = 4; network = list("SS13") }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "neutralcorner" }, /area/hallway/primary/central) "bjm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/door/firedoor, /turf/simulated/floor/plasteel{ dir = 8; @@ -35264,6 +34001,7 @@ req_access_txt = 1 }, /obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "neutralcorner" @@ -35289,13 +34027,14 @@ amount = 50 }, /obj/item/storage/box/lights/mixed, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "yellow" }, /area/storage/tools) "bjr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "yellow" @@ -35305,7 +34044,6 @@ /obj/structure/rack, /obj/item/apc_electronics, /obj/item/airlock_electronics, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/spawner/lootdrop/maintenance, /turf/simulated/floor/plasteel{ dir = 2; @@ -35344,8 +34082,8 @@ pixel_y = -1 }, /turf/simulated/floor/plasteel{ - icon_state = "vault"; - dir = 1 + dir = 1; + icon_state = "vault" }, /area/storage/tech) "bjw" = ( @@ -35385,10 +34123,6 @@ }, /area/storage/tech) "bjA" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1; - initialize_directions = 11 - }, /obj/machinery/light, /obj/structure/disposalpipe/segment{ dir = 4 @@ -35408,10 +34142,11 @@ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ - tag = "icon-vault (WEST)"; + dir = 8; icon_state = "vault"; - dir = 8 + tag = "icon-vault (WEST)" }, /area/storage/tech) "bjC" = ( @@ -35433,10 +34168,6 @@ }, /area/storage/tech) "bjD" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 2; - initialize_directions = 11 - }, /obj/structure/extinguisher_cabinet{ pixel_y = -30 }, @@ -35484,18 +34215,18 @@ icon_state = "tube1" }, /obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ - icon_state = "vault"; - dir = 5 + dir = 5; + icon_state = "vault" }, /area/engine/chiefs_office) "bjH" = ( /obj/structure/filingcabinet/chestdrawer, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /mob/living/simple_animal/parrot/Poly, /turf/simulated/floor/plasteel{ - icon_state = "vault"; - dir = 5 + dir = 5; + icon_state = "vault" }, /area/engine/chiefs_office) "bjI" = ( @@ -35513,8 +34244,8 @@ pixel_x = 24 }, /turf/simulated/floor/plasteel{ - icon_state = "vault"; - dir = 5 + dir = 5; + icon_state = "vault" }, /area/engine/chiefs_office) "bjJ" = ( @@ -35537,9 +34268,6 @@ /area/atmos) "bjL" = ( /obj/effect/spawner/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/structure/cable/yellow{ d1 = 0; d2 = 2; @@ -35570,12 +34298,6 @@ d2 = 8; icon_state = "0-8" }, -/obj/machinery/atmospherics/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, /turf/simulated/floor/plasteel{ dir = 6; icon_state = "yellow" @@ -35583,9 +34305,6 @@ /area/engine/engineering) "bjP" = ( /obj/effect/spawner/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/structure/cable/yellow, /turf/simulated/floor/plating, /area/security/checkpoint2{ @@ -35593,8 +34312,8 @@ }) "bjQ" = ( /turf/simulated/floor/plasteel{ - icon_state = "vault"; - dir = 1 + dir = 1; + icon_state = "vault" }, /area/turret_protected/ai) "bjR" = ( @@ -35630,16 +34349,24 @@ /turf/simulated/floor/plating, /area/engine/engineering) "bjU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4; + level = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4; + level = 1 + }, /turf/simulated/floor/plasteel{ - icon_state = "red"; - dir = 4 + dir = 4; + icon_state = "red" }, /area/security/brig) "bjV" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/plasteel{ - icon_state = "vault"; - dir = 1 + dir = 1; + icon_state = "vault" }, /area/turret_protected/ai) "bjW" = ( @@ -35674,8 +34401,8 @@ req_access_txt = "75" }, /turf/simulated/floor/plasteel{ - icon_state = "vault"; - dir = 6 + dir = 6; + icon_state = "vault" }, /area/turret_protected/ai) "bjY" = ( @@ -35687,9 +34414,9 @@ /area/turret_protected/ai) "bjZ" = ( /turf/simulated/shuttle/wall{ - tag = "icon-swall11"; + dir = 2; icon_state = "swall11"; - dir = 2 + tag = "icon-swall11" }, /area/shuttle/arrival/station) "bka" = ( @@ -35755,19 +34482,15 @@ /area/shuttle/arrival/station) "bki" = ( /turf/simulated/shuttle/wall{ - tag = "icon-swall7"; + dir = 2; icon_state = "swall7"; - dir = 2 + tag = "icon-swall7" }, /area/shuttle/arrival/station) "bkj" = ( /obj/item/crowbar, /obj/item/wrench, /obj/structure/table, -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 1; - on = 1 - }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "cautioncorner" @@ -35775,11 +34498,9 @@ /area/hallway/primary/starboard) "bkk" = ( /obj/effect/spawner/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plating, /area/storage/tools) "bkl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/table/reinforced, /obj/item/folder/red, /obj/item/folder/red, @@ -35789,8 +34510,8 @@ icon_state = "4-8" }, /turf/simulated/floor/plasteel{ - icon_state = "red"; - dir = 8 + dir = 8; + icon_state = "red" }, /area/security/checkpoint2{ name = "Customs" @@ -35821,6 +34542,11 @@ d2 = 4; icon_state = "2-4" }, +/obj/machinery/atmospherics/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_Toxins = 0 + }, /turf/simulated/floor/plasteel, /area/security/checkpoint2{ name = "Customs" @@ -35832,15 +34558,17 @@ d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, /turf/simulated/floor/plasteel, /area/security/checkpoint2{ name = "Customs" }) "bkp" = ( -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 4; - on = 1 - }, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; @@ -35851,22 +34579,30 @@ d2 = 4; icon_state = "2-4" }, +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 8; + external_pressure_bound = 0; + frequency = 1441; + id_tag = "tox_out"; + initialize_directions = 1; + internal_pressure_bound = 4000; + on = 1; + pressure_checks = 2; + pump_direction = 0 + }, /turf/simulated/floor/plasteel, /area/security/checkpoint2{ name = "Customs" }) "bkq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plasteel{ - icon_state = "red"; - dir = 4 + dir = 4; + icon_state = "red" }, /area/security/checkpoint2{ name = "Customs" @@ -35876,9 +34612,6 @@ name = "Security Maintenance"; req_access_txt = "1" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; @@ -35901,9 +34634,6 @@ /turf/simulated/floor/plating, /area/maintenance/starboard) "bkt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, /obj/machinery/light/small{ dir = 8 }, @@ -35922,9 +34652,6 @@ name = "\improper Cargo Office" }) "bkv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, /obj/machinery/light/small{ dir = 4 }, @@ -35943,11 +34670,9 @@ d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1; - initialize_directions = 11 - }, /obj/effect/decal/warning_stripes/south, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/engine/engineering) "bkx" = ( @@ -35958,6 +34683,10 @@ /obj/machinery/light_switch{ pixel_x = -25 }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8; + initialize_directions = 11 + }, /turf/simulated/floor/plasteel{ dir = 9; icon_state = "brown" @@ -35970,6 +34699,7 @@ req_access_txt = 1 }, /obj/effect/decal/warning_stripes/west, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/hallway/secondary/entry{ name = "Arrivals" @@ -35991,6 +34721,7 @@ dir = 4; network = list("SS13") }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "brown" @@ -36004,17 +34735,11 @@ d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, /turf/simulated/floor/plasteel, /area/quartermaster/office{ name = "\improper Cargo Office" }) "bkB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, /mob/living/simple_animal/pet/sloth/paperwork, /turf/simulated/floor/plasteel, /area/quartermaster/office{ @@ -36071,29 +34796,21 @@ /area/hallway/primary/port) "bkI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "browncorner" }, /area/hallway/primary/central) -"bkJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plasteel{ - dir = 2; - icon_state = "neutralcorner" - }, -/area/hallway/primary/central) "bkK" = ( -/obj/machinery/atmospherics/unary/vent_scrubber{ - dir = 2; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, /obj/machinery/status_display{ density = 0; pixel_y = 32 }, +/obj/machinery/atmospherics/unary/vent_scrubber{ + dir = 8; + on = 1 + }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "brown" @@ -36109,7 +34826,6 @@ /turf/simulated/floor/plating, /area/janitor) "bkM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -36118,6 +34834,9 @@ d2 = 4; icon_state = "2-4" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" }, @@ -36135,6 +34854,9 @@ dir = 4; icon_state = "pipe-c" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" }, @@ -36155,6 +34877,9 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plating, /area/janitor) "bkP" = ( @@ -36169,6 +34894,9 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plating, /area/maintenance/maintcentral{ name = "Central Maintenance" @@ -36195,15 +34923,13 @@ d2 = 2; icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, /turf/simulated/floor/plating, /area/maintenance/maintcentral{ name = "Central Maintenance" }) -"bkR" = ( -/obj/effect/spawner/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/storage/tools) "bkS" = ( /obj/effect/decal/warning_stripes/yellow, /turf/simulated/floor/plasteel{ @@ -36221,7 +34947,6 @@ codes_txt = "patrol;next_patrol=13.3-Engineering-Central"; location = "13.2-Tcommstore" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/yellow, /turf/simulated/floor/plasteel{ dir = 2; @@ -36276,11 +35001,10 @@ /obj/effect/landmark/start{ name = "Captain" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/chair/comfy/brown{ - tag = "icon-comfychair (WEST)"; + dir = 8; icon_state = "comfychair"; - dir = 8 + tag = "icon-comfychair (WEST)" }, /turf/simulated/floor/carpet, /area/crew_quarters/captain{ @@ -36319,7 +35043,6 @@ name = "\improper Captain's Quarters" }) "blf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/alarm{ dir = 4; icon_state = "alarm0"; @@ -36334,6 +35057,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ req_access_txt = 1 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "yellowcorner" @@ -36341,9 +35065,12 @@ /area/hallway/primary/central) "blh" = ( /obj/structure/closet/wardrobe/pjs, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ - icon_state = "neutral"; - dir = 1 + dir = 1; + icon_state = "neutral" }, /area/hallway/secondary/construction{ name = "\improper Garden" @@ -36363,14 +35090,15 @@ name = "Mechanic Workshop"; req_access_txt = "70" }, -/turf/simulated/floor/plasteel, -/area/engine/mechanic_workshop) -"blk" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4; + level = 1 }, /turf/simulated/floor/plasteel, -/area/engine/break_room) +/area/engine/mechanic_workshop) "bll" = ( /obj/structure/closet/emcloset, /obj/structure/sign/double/map/left{ @@ -36378,8 +35106,8 @@ pixel_y = 32 }, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/hallway/primary/starboard) "blm" = ( @@ -36390,8 +35118,8 @@ }, /obj/structure/closet/firecloset, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/hallway/primary/starboard) "bln" = ( @@ -36409,10 +35137,6 @@ "blo" = ( /turf/simulated/wall, /area/hallway/primary/starboard) -"blp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/wall, -/area/storage/tech) "blq" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/engineering{ @@ -36426,10 +35150,11 @@ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ - tag = "icon-vault (WEST)"; + dir = 8; icon_state = "vault"; - dir = 8 + tag = "icon-vault (WEST)" }, /area/storage/tech) "blr" = ( @@ -36444,38 +35169,22 @@ }, /turf/space, /turf/simulated/shuttle/wall{ - icon_state = "swall_f6"; - dir = 2 + dir = 2; + icon_state = "swall_f6" }, /area/shuttle/transport) "blt" = ( /obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; icon_state = "1-2" }, /obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/engine/engineering) -"blu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/decal/warning_stripes/yellow/hollow, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "brown" - }, -/area/hallway/primary/port) -"blv" = ( -/obj/effect/spawner/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating, -/area/quartermaster/office{ - name = "\improper Cargo Office" - }) "blw" = ( /obj/structure/shuttle/engine/propulsion{ dir = 8; @@ -36484,8 +35193,8 @@ }, /turf/space, /turf/simulated/shuttle/wall{ - icon_state = "swall_f5"; - dir = 2 + dir = 2; + icon_state = "swall_f5" }, /area/shuttle/transport) "blx" = ( @@ -36501,8 +35210,8 @@ on = 1 }, /turf/simulated/floor/plasteel{ - icon_state = "vault"; - dir = 8 + dir = 8; + icon_state = "vault" }, /area/engine/break_room) "blz" = ( @@ -36551,8 +35260,8 @@ /area/turret_protected/ai) "blE" = ( /turf/simulated/floor/plasteel{ - icon_state = "vault"; - dir = 8 + dir = 8; + icon_state = "vault" }, /area/construction/hallway{ name = "\improper MiniSat Exterior" @@ -36588,10 +35297,6 @@ icon_state = "vault" }, /area/turret_protected/ai) -"blH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/wall/r_wall, -/area/turret_protected/ai) "blI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/item/radio/intercom{ @@ -36604,6 +35309,7 @@ layer = 4; pixel_x = -32 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "neutralcorner" @@ -36629,8 +35335,8 @@ pixel_x = -23 }, /turf/simulated/floor/plasteel{ - icon_state = "vault"; - dir = 1 + dir = 1; + icon_state = "vault" }, /area/turret_protected/ai) "blL" = ( @@ -36684,10 +35390,6 @@ /obj/structure/window/reinforced{ dir = 4 }, -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 8; - on = 1 - }, /obj/machinery/light/small{ dir = 4; pixel_y = 8 @@ -36697,6 +35399,9 @@ dir = 8; network = list("SS13","MiniSat") }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -36705,8 +35410,8 @@ }) "blO" = ( /turf/simulated/shuttle/wall{ - icon_state = "swall3"; - dir = 2 + dir = 2; + icon_state = "swall3" }, /area/shuttle/arrival/station) "blP" = ( @@ -36723,9 +35428,9 @@ /area/shuttle/arrival/station) "blR" = ( /turf/simulated/shuttle/wall{ - tag = "icon-swall3"; + dir = 2; icon_state = "swall3"; - dir = 2 + tag = "icon-swall3" }, /area/shuttle/arrival/station) "blS" = ( @@ -36745,9 +35450,9 @@ /area/shuttle/arrival/station) "blU" = ( /obj/structure/shuttle/engine/heater{ - tag = "icon-heater (EAST)"; + dir = 4; icon_state = "heater"; - dir = 4 + tag = "icon-heater (EAST)" }, /obj/structure/window/reinforced{ dir = 8 @@ -36763,10 +35468,9 @@ /turf/simulated/shuttle/plating, /area/shuttle/arrival/station) "blW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/light{ - icon_state = "tube1"; - dir = 4 + dir = 4; + icon_state = "tube1" }, /obj/structure/cable/yellow{ d1 = 1; @@ -36786,14 +35490,13 @@ icon_state = "alarm0"; pixel_x = -22 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/closet, /obj/item/crowbar, /obj/item/flash, /obj/item/radio, /turf/simulated/floor/plasteel{ - icon_state = "red"; - dir = 10 + dir = 10; + icon_state = "red" }, /area/security/checkpoint2{ name = "Customs" @@ -36813,6 +35516,12 @@ req_access_txt = "0"; req_one_access_txt = "1;4" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -36826,6 +35535,8 @@ pixel_y = -8; req_access_txt = "1" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ icon_state = "red" }, @@ -36854,8 +35565,8 @@ pixel_x = 24 }, /turf/simulated/floor/plasteel{ - icon_state = "red"; - dir = 6 + dir = 6; + icon_state = "red" }, /area/security/checkpoint2{ name = "Customs" @@ -36874,9 +35585,6 @@ }) "bme" = ( /obj/machinery/space_heater, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, /obj/structure/disposalpipe/wrapsortjunction{ dir = 1 }, @@ -36919,13 +35627,14 @@ name = "Engine Room"; req_access_txt = "10" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; icon_state = "1-2" }, /obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/engine/engineering) "bmi" = ( @@ -36950,6 +35659,9 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, /turf/simulated/floor/plasteel, /area/quartermaster/office{ name = "\improper Cargo Office" @@ -36960,7 +35672,11 @@ pixel_y = 24 }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 + dir = 1; + level = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, /turf/simulated/floor/plasteel, /area/quartermaster/office{ @@ -36982,8 +35698,8 @@ scrub_Toxins = 0 }, /turf/simulated/floor/plasteel{ - icon_state = "vault"; - dir = 5 + dir = 5; + icon_state = "vault" }, /area/engine/chiefs_office) "bmn" = ( @@ -36993,6 +35709,9 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel, /area/quartermaster/office{ name = "\improper Cargo Office" @@ -37019,6 +35738,10 @@ d2 = 4; icon_state = "2-4" }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 2; + initialize_directions = 11 + }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "brown" @@ -37040,6 +35763,9 @@ d2 = 8; icon_state = "1-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, /turf/simulated/floor/plasteel, /area/quartermaster/office{ name = "\improper Cargo Office" @@ -37053,6 +35779,9 @@ d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, /turf/simulated/floor/plasteel, /area/quartermaster/office{ name = "\improper Cargo Office" @@ -37070,6 +35799,9 @@ d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, /turf/simulated/floor/plasteel, /area/quartermaster/office{ name = "\improper Cargo Office" @@ -37087,6 +35819,9 @@ d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "brown" @@ -37117,6 +35852,9 @@ d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "brown" @@ -37126,7 +35864,6 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -37135,6 +35872,9 @@ d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, /turf/simulated/floor/plasteel, /area/hallway/primary/port) "bmx" = ( @@ -37149,6 +35889,9 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, /turf/simulated/floor/plasteel, /area/hallway/primary/port) "bmy" = ( @@ -37185,6 +35928,7 @@ req_access_txt = "0" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/maintenance/starboard) "bmC" = ( @@ -37228,9 +35972,12 @@ /obj/machinery/newscaster{ pixel_x = 30 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, /turf/simulated/floor/plasteel{ - icon_state = "vault"; - dir = 5 + dir = 5; + icon_state = "vault" }, /area/engine/chiefs_office) "bmF" = ( @@ -37261,16 +36008,6 @@ /area/construction/hallway{ name = "\improper MiniSat Exterior" }) -"bmI" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 2; - initialize_directions = 11 - }, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "redcorner" - }, -/area/security/brig) "bmJ" = ( /obj/structure/table, /obj/item/storage/toolbox/mechanical{ @@ -37292,7 +36029,6 @@ pixel_x = -2; pixel_y = -1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/item/assembly/signaler, /obj/item/multitool{ pixel_x = 4 @@ -37303,9 +36039,6 @@ }, /area/storage/primary) "bmL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/machinery/light, /obj/machinery/atm{ pixel_y = -32 @@ -37341,6 +36074,7 @@ icon_state = "1-2" }, /obj/effect/decal/warning_stripes/north, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/maintenance/maintcentral{ name = "Central Maintenance" @@ -37354,8 +36088,8 @@ }, /obj/structure/closet/secure_closet/security, /turf/simulated/floor/plasteel{ - icon_state = "red"; - dir = 5 + dir = 5; + icon_state = "red" }, /area/security/checkpoint2{ name = "Customs" @@ -37395,8 +36129,8 @@ pixel_y = 30 }, /turf/simulated/floor/plasteel{ - icon_state = "red"; - dir = 1 + dir = 1; + icon_state = "red" }, /area/security/checkpoint2{ name = "Customs" @@ -37434,9 +36168,6 @@ pixel_y = -25 }, /obj/structure/table/wood, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, /obj/item/reagent_containers/food/drinks/flask/gold, /obj/item/razor{ pixel_x = -4; @@ -37449,10 +36180,8 @@ }) "bmW" = ( /obj/machinery/atmospherics/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_N2O = 1; - scrub_Toxins = 1 + dir = 4; + on = 1 }, /turf/simulated/floor/carpet, /area/crew_quarters/captain{ @@ -37463,6 +36192,9 @@ dir = 6 }, /obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, /turf/simulated/floor/carpet, /area/crew_quarters/captain{ name = "\improper Captain's Quarters" @@ -37518,6 +36250,9 @@ dir = 2; icon_state = "pipe-c" }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "yellowcorner" @@ -37531,6 +36266,9 @@ /obj/machinery/door/airlock/public/glass{ name = "Starboard Primary Hallway" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "yellowcorner" @@ -37540,6 +36278,9 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "yellowcorner" @@ -37547,7 +36288,10 @@ /area/hallway/primary/starboard) "bnf" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 2 + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 }, /turf/simulated/floor/plasteel{ dir = 1; @@ -37555,10 +36299,12 @@ }, /area/hallway/primary/starboard) "bng" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "yellowcorner" @@ -37571,6 +36317,9 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "yellowcorner" @@ -37585,6 +36334,9 @@ dir = 2; network = list("SS13") }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "yellowcorner" @@ -37599,6 +36351,9 @@ d2 = 2; icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "yellowcorner" @@ -37609,6 +36364,9 @@ dir = 4 }, /obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "yellowcorner" @@ -37622,6 +36380,9 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "yellowcorner" @@ -37635,6 +36396,9 @@ dir = 2; icon_state = "pipe-c" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "yellowcorner" @@ -37650,6 +36414,9 @@ /obj/machinery/light{ dir = 1 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "yellowcorner" @@ -37659,6 +36426,9 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "yellowcorner" @@ -37671,6 +36441,9 @@ /obj/structure/sign/securearea{ pixel_y = 32 }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "yellowcorner" @@ -37687,6 +36460,7 @@ /obj/structure/extinguisher_cabinet{ pixel_x = -27 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "brown" @@ -37698,6 +36472,9 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "cautioncorner" @@ -37711,6 +36488,9 @@ codes_txt = "patrol;next_patrol=14-Starboard-Central"; location = "13.3-Engineering-Central" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "cautioncorner" @@ -37730,10 +36510,7 @@ dir = 1; network = list("SS13") }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 2; - initialize_directions = 11 - }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "redcorner" @@ -37752,8 +36529,8 @@ amount = 100000 }, /turf/simulated/floor/plasteel{ - icon_state = "vault"; - dir = 4 + dir = 4; + icon_state = "vault" }, /area/security/nuke_storage) "bnw" = ( @@ -37766,28 +36543,45 @@ pixel_y = 32 }, /obj/structure/table/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "yellow" }, /area/engine/break_room) "bnx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "yellow" }, /area/engine/break_room) "bny" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/junction{ - tag = "icon-pipe-j2"; + dir = 2; icon_state = "pipe-j2"; - dir = 2 + tag = "icon-pipe-j2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 }, /turf/simulated/floor/plasteel{ dir = 1; @@ -37809,7 +36603,6 @@ layer = 4; pixel_y = 32 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/table/wood, /obj/item/pinpointer, /obj/item/disk/nuclear, @@ -37817,18 +36610,6 @@ /area/crew_quarters/captain{ name = "\improper Captain's Quarters" }) -"bnB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "yellow" - }, -/area/engine/break_room) "bnC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/yellow{ @@ -37839,10 +36620,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - level = 1 - }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "yellow" @@ -37896,8 +36674,8 @@ "bnH" = ( /turf/space, /turf/simulated/shuttle/wall{ - icon_state = "swall_f9"; - dir = 2 + dir = 2; + icon_state = "swall_f9" }, /area/shuttle/pod_4) "bnI" = ( @@ -37922,7 +36700,6 @@ /obj/machinery/light_switch{ pixel_y = -28 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -37930,8 +36707,8 @@ "bnK" = ( /obj/machinery/light/small, /turf/simulated/floor/plasteel{ - icon_state = "vault"; - dir = 8 + dir = 8; + icon_state = "vault" }, /area/construction/hallway{ name = "\improper MiniSat Exterior" @@ -37955,8 +36732,8 @@ pixel_y = -28 }, /turf/simulated/floor/plasteel{ - icon_state = "vault"; - dir = 5 + dir = 5; + icon_state = "vault" }, /area/engine/chiefs_office) "bnN" = ( @@ -38025,8 +36802,8 @@ dir = 1 }, /turf/simulated/floor/plasteel{ - icon_state = "vault"; - dir = 8 + dir = 8; + icon_state = "vault" }, /area/construction/hallway{ name = "\improper MiniSat Exterior" @@ -38064,7 +36841,6 @@ d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/door/firedoor, /turf/simulated/floor/plasteel{ dir = 4; @@ -38076,21 +36852,10 @@ "bnY" = ( /obj/structure/sign/pods, /turf/simulated/wall, -/area/security/checkpoint2{ - name = "Customs" - }) -"bnZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/wall, /area/security/checkpoint2{ name = "Customs" }) "boa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/machinery/door/airlock/security{ name = "Customs Desk"; req_access = null; @@ -38113,8 +36878,8 @@ pixel_y = -26 }, /turf/simulated/floor/plasteel{ - icon_state = "vault"; - dir = 5 + dir = 5; + icon_state = "vault" }, /area/engine/chiefs_office) "boc" = ( @@ -38133,9 +36898,6 @@ d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, /obj/machinery/door/airlock/maintenance{ req_access_txt = "0"; req_one_access_txt = "12;48;50;1" @@ -38145,7 +36907,6 @@ name = "Port Maintenance" }) "boe" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, /turf/simulated/wall, /area/maintenance/fpmaint2{ @@ -38160,13 +36921,14 @@ opacity = 0 }, /obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; icon_state = "1-2" }, /obj/effect/decal/warning_stripes/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/engine/break_room) "bog" = ( @@ -38191,6 +36953,7 @@ }) "boi" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/quartermaster/office{ name = "\improper Cargo Office" @@ -38223,8 +36986,8 @@ }, /obj/item/rcs, /turf/simulated/floor/plasteel{ - icon_state = "arrival"; - dir = 4 + dir = 4; + icon_state = "arrival" }, /area/quartermaster/office{ name = "\improper Cargo Office" @@ -38243,8 +37006,8 @@ pixel_y = -30 }, /turf/simulated/floor/plasteel{ - icon_state = "vault"; - dir = 5 + dir = 5; + icon_state = "vault" }, /area/engine/chiefs_office) "bon" = ( @@ -38277,12 +37040,6 @@ }, /turf/simulated/floor/plasteel, /area/hallway/primary/port) -"bor" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plasteel, -/area/hallway/primary/port) "bos" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -38330,8 +37087,8 @@ /area/janitor) "bow" = ( /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + d2 = 4; + icon_state = "0-4" }, /obj/machinery/power/apc{ aidisabled = 0; @@ -38364,13 +37121,6 @@ /area/maintenance/maintcentral{ name = "Central Maintenance" }) -"boA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/spawner/window, -/turf/simulated/floor/plating, -/area/civilian/barber) "boB" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -38433,8 +37183,8 @@ pixel_y = 21 }, /turf/simulated/floor/plasteel{ - icon_state = "vault"; - dir = 8 + dir = 8; + icon_state = "vault" }, /area/turret_protected/ai) "boI" = ( @@ -38541,9 +37291,10 @@ req_access_txt = 1 }, /obj/structure/disposalpipe/junction{ - icon_state = "pipe-j2"; - dir = 4 + dir = 4; + icon_state = "pipe-j2" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "neutralcorner" @@ -38595,21 +37346,8 @@ d2 = 8; icon_state = "2-8" }, -/turf/simulated/floor/plasteel{ - dir = 2; - icon_state = "neutralcorner" - }, -/area/hallway/primary/starboard) -"boT" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "neutralcorner" @@ -38698,26 +37436,6 @@ icon_state = "neutralcorner" }, /area/hallway/primary/starboard) -"boZ" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/unary/vent_scrubber{ - dir = 2; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - dir = 2; - icon_state = "neutralcorner" - }, -/area/hallway/primary/starboard) "bpa" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -38728,6 +37446,7 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "neutralcorner" @@ -38748,21 +37467,6 @@ icon_state = "neutralcorner" }, /area/hallway/primary/starboard) -"bpc" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plasteel{ - dir = 2; - icon_state = "neutralcorner" - }, -/area/hallway/primary/starboard) "bpd" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -38778,6 +37482,7 @@ d2 = 4; icon_state = "2-4" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "neutralcorner" @@ -38822,6 +37527,7 @@ pixel_x = 28 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "cautioncorner" @@ -38836,9 +37542,6 @@ }, /area/turret_protected/ai) "bpi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; @@ -38851,9 +37554,6 @@ dir = 4; icon_state = "pipe-c" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; @@ -38866,10 +37566,6 @@ dir = 8; icon_state = "pipe-c" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 2; - initialize_directions = 11 - }, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; @@ -38945,7 +37641,9 @@ name = "\improper Cargo Office" }) "bpt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -38956,14 +37654,6 @@ }, /turf/simulated/floor/bluegrid, /area/turret_protected/ai) -"bpv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/wall/r_wall, -/area/construction/hallway{ - name = "\improper MiniSat Exterior" - }) "bpw" = ( /obj/machinery/light, /obj/structure/chair/comfy/shuttle{ @@ -38984,8 +37674,8 @@ pixel_y = 12 }, /obj/machinery/light{ - icon_state = "tube1"; - dir = 4 + dir = 4; + icon_state = "tube1" }, /obj/effect/decal/warning_stripes/north, /turf/simulated/floor/plasteel, @@ -38993,15 +37683,11 @@ name = "\improper Cargo Office" }) "bpz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "whitecorner" @@ -39010,12 +37696,9 @@ name = "Arrivals" }) "bpA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /turf/simulated/floor/plasteel{ - icon_state = "arrival"; - dir = 5 + dir = 5; + icon_state = "arrival" }, /area/hallway/secondary/entry{ name = "Arrivals" @@ -39025,12 +37708,12 @@ dir = 4 }, /obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, /turf/simulated/floor/plasteel, /area/hallway/primary/port) "bpC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /turf/simulated/floor/plasteel{ dir = 9; icon_state = "neutral" @@ -39038,12 +37721,12 @@ /area/hallway/primary/port) "bpD" = ( /obj/effect/decal/warning_stripes/yellow/partial{ - icon_state = "3"; - dir = 4 + dir = 4; + icon_state = "3" }, /obj/effect/decal/warning_stripes/arrow{ - icon_state = "4"; - dir = 4 + dir = 4; + icon_state = "4" }, /turf/simulated/floor/plasteel, /area/quartermaster/office{ @@ -39060,6 +37743,9 @@ req_one_access_txt = "48;50" }, /obj/effect/decal/warning_stripes/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel, /area/quartermaster/office{ name = "\improper Cargo Office" @@ -39072,6 +37758,9 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel, /area/quartermaster/office{ name = "\improper Cargo Office" @@ -39085,29 +37774,33 @@ d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, /turf/simulated/floor/plasteel{ - icon_state = "neutral"; - dir = 9 + dir = 9; + icon_state = "neutral" }, /area/hallway/primary/port) "bpH" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 2 - }, /obj/structure/sign/double/map/left{ desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; icon_state = "map-left-MS"; pixel_y = 32 }, /obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/plasteel{ - icon_state = "neutral"; - dir = 1 + dir = 1; + icon_state = "neutral" }, /area/hallway/primary/port) "bpI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atm{ pixel_x = 32 }, @@ -39149,11 +37842,16 @@ name = "\improper Cargo Office" }) "bpL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/chair/office/dark, /obj/effect/landmark/start{ name = "Cargo Technician" }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "arrival" @@ -39162,7 +37860,13 @@ name = "\improper Cargo Office" }) "bpM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "arrival" @@ -39250,8 +37954,8 @@ }, /obj/item/hand_labeler, /turf/simulated/floor/plasteel{ - icon_state = "arrival"; - dir = 6 + dir = 6; + icon_state = "arrival" }, /area/quartermaster/office{ name = "\improper Cargo Office" @@ -39322,7 +38026,6 @@ }, /area/bridge) "bpW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/hologram/holopad, /turf/simulated/floor/plasteel{ dir = 8; @@ -39342,6 +38045,7 @@ d2 = 4; icon_state = "2-4" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "browncorner" @@ -39382,13 +38086,13 @@ "bqa" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "neutralcorner" }, /area/hallway/primary/central) "bqb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/door/firedoor, /turf/simulated/floor/plasteel{ dir = 2; @@ -39465,9 +38169,6 @@ d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, /obj/effect/decal/warning_stripes/south, /turf/simulated/floor/plating, /area/maintenance/fpmaint2{ @@ -39490,9 +38191,9 @@ pixel_x = -1 }, /obj/machinery/shower{ - tag = "icon-shower (EAST)"; + dir = 4; icon_state = "shower"; - dir = 4 + tag = "icon-shower (EAST)" }, /obj/machinery/door/window/westright{ dir = 4 @@ -39565,6 +38266,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood, /area/crew_quarters/captain{ name = "\improper Captain's Quarters" @@ -39586,16 +38288,6 @@ /area/crew_quarters/captain{ name = "\improper Captain's Quarters" }) -"bqt" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8; - initialize_directions = 11 - }, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "neutralcorner" - }, -/area/hallway/primary/central) "bqu" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -39606,9 +38298,6 @@ codes_txt = "patrol;next_patrol=13.1-Engineering-Enter"; location = "12-Central-Starboard" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel, /area/hallway/primary/central) @@ -39616,18 +38305,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ req_access_txt = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "yellowcorner" }, /area/hallway/primary/central) "bqw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ name = "Starboard Primary Hallway" @@ -39638,34 +38322,25 @@ }, /area/hallway/primary/starboard) "bqx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "cautioncorner" }, /area/hallway/primary/starboard) "bqy" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1; - initialize_directions = 11 - }, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "cautioncorner" }, /area/hallway/primary/starboard) "bqz" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 2; - initialize_directions = 11 - }, /obj/structure/sign/barber{ pixel_y = -28 }, @@ -39675,9 +38350,6 @@ }, /area/hallway/primary/starboard) "bqA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/item/radio/intercom{ name = "Station Intercom (General)"; pixel_y = -29 @@ -39701,15 +38373,15 @@ d2 = 2; icon_state = "0-2" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "yellowcorner" }, /area/hallway/primary/starboard) "bqC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/machinery/door/firedoor, /turf/simulated/floor/plasteel{ dir = 8; @@ -39717,9 +38389,6 @@ }, /area/hallway/primary/starboard) "bqD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel{ dir = 8; @@ -39727,10 +38396,6 @@ }, /area/hallway/primary/starboard) "bqE" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 2; - initialize_directions = 11 - }, /obj/machinery/firealarm{ dir = 1; pixel_y = -24 @@ -39745,46 +38410,22 @@ icon_state = "cautioncorner" }, /area/hallway/primary/starboard) -"bqF" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1; - initialize_directions = 11 - }, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "cautioncorner" - }, -/area/hallway/primary/starboard) "bqG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "cautioncorner" - }, -/area/hallway/primary/starboard) -"bqH" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 2; - initialize_directions = 11 - }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "cautioncorner" }, /area/hallway/primary/starboard) "bqI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "cautioncorner" @@ -39792,9 +38433,6 @@ /area/hallway/primary/starboard) "bqJ" = ( /obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/machinery/camera{ c_tag = "Starboard Primary Hallway - Engineering"; dir = 1; @@ -39806,10 +38444,6 @@ }, /area/hallway/primary/starboard) "bqK" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1; - initialize_directions = 11 - }, /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=13.2-Tcommstore"; location = "13.1-Engineering-Enter" @@ -39826,19 +38460,14 @@ icon_state = "1-2" }, /obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "neutralcorner" }, /area/hallway/primary/starboard) "bqM" = ( -/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 = 4; icon_state = "cautioncorner" @@ -39854,9 +38483,8 @@ d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel, /area/engine/break_room) "bqP" = ( @@ -39893,10 +38521,16 @@ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/engine/break_room) "bqU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, /turf/simulated/floor/plasteel, /area/engine/break_room) "bqV" = ( @@ -39932,6 +38566,9 @@ icon_state = "4-8" }, /obj/effect/decal/warning_stripes/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, /turf/simulated/floor/plasteel, /area/quartermaster/office{ name = "\improper Cargo Office" @@ -39943,9 +38580,9 @@ }, /obj/item/pen/multi, /obj/machinery/light/small{ - tag = "icon-bulb1 (WEST)"; + dir = 8; icon_state = "bulb1"; - dir = 8 + tag = "icon-bulb1 (WEST)" }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -39953,8 +38590,8 @@ /area/turret_protected/ai) "bqY" = ( /obj/structure/transit_tube{ - tag = "icon-D-SE"; - icon_state = "D-SE" + icon_state = "D-SE"; + tag = "icon-D-SE" }, /turf/space, /area/space/nearstation) @@ -39965,6 +38602,9 @@ /obj/machinery/ai_slipper{ icon_state = "motion0" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, /turf/simulated/floor/bluegrid, /area/turret_protected/ai) "bra" = ( @@ -39974,9 +38614,9 @@ }, /obj/item/pen/multi, /obj/machinery/light/small{ - tag = "icon-bulb1 (EAST)"; + dir = 4; icon_state = "bulb1"; - dir = 4 + tag = "icon-bulb1 (EAST)" }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -39994,6 +38634,12 @@ pixel_x = -4 }, /obj/structure/table/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "yellow" @@ -40009,8 +38655,8 @@ }) "brd" = ( /obj/structure/transit_tube{ - tag = "icon-D-SW"; - icon_state = "D-SW" + icon_state = "D-SW"; + tag = "icon-D-SW" }, /obj/structure/window/reinforced, /turf/space, @@ -40072,16 +38718,14 @@ }) "brl" = ( /obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/effect/decal/warning_stripes/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel, /area/security/checkpoint2{ name = "Customs" }) "brm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/ai_status_display{ pixel_y = -32 }, @@ -40104,9 +38748,9 @@ "bro" = ( /turf/space, /turf/simulated/shuttle/wall{ - tag = "icon-swall_f5"; + dir = 2; icon_state = "swall_f5"; - dir = 2 + tag = "icon-swall_f5" }, /area/shuttle/arrival/station) "brp" = ( @@ -40165,7 +38809,6 @@ d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/hallway/secondary/entry{ name = "Arrivals" @@ -40253,8 +38896,8 @@ icon_state = "4-8" }, /turf/simulated/floor/plasteel{ - icon_state = "neutral"; - dir = 6 + dir = 6; + icon_state = "neutral" }, /area/hallway/primary/port) "brD" = ( @@ -40268,12 +38911,9 @@ d2 = 4; icon_state = "1-4" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, /turf/simulated/floor/plasteel{ - icon_state = "neutral"; - dir = 10 + dir = 10; + icon_state = "neutral" }, /area/hallway/primary/port) "brE" = ( @@ -40282,9 +38922,6 @@ d2 = 8; icon_state = "2-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel{ dir = 8; @@ -40293,9 +38930,10 @@ /area/hallway/primary/port) "brF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ - icon_state = "neutral"; - dir = 4 + dir = 4; + icon_state = "neutral" }, /area/hallway/primary/port) "brG" = ( @@ -40328,6 +38966,7 @@ "brI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -40347,12 +38986,12 @@ pixel_y = 18 }, /obj/effect/decal/warning_stripes/yellow/partial{ - icon_state = "3"; - dir = 4 + dir = 4; + icon_state = "3" }, /obj/effect/decal/warning_stripes/arrow{ - icon_state = "4"; - dir = 4 + dir = 4; + icon_state = "4" }, /turf/simulated/floor/plasteel, /area/quartermaster/office{ @@ -40360,7 +38999,6 @@ }) "brL" = ( /obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "brown" @@ -40375,6 +39013,7 @@ icon_state = "1-2" }, /obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "brown" @@ -40393,7 +39032,6 @@ name = "\improper Captain's Quarters" }) "brO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/light{ dir = 4 }, @@ -40420,8 +39058,13 @@ dir = 4; pixel_x = -23 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/table/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "yellow" @@ -40465,18 +39108,16 @@ }, /obj/machinery/door/firedoor, /obj/effect/decal/warning_stripes/west, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/hallway/secondary/entry{ name = "Arrivals" }) "brV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /obj/effect/decal/warning_stripes/yellow/hollow, /turf/simulated/floor/plasteel{ - icon_state = "neutral"; - dir = 1 + dir = 1; + icon_state = "neutral" }, /area/hallway/primary/port) "brW" = ( @@ -40658,6 +39299,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/carpet, /area/crew_quarters/captain{ name = "\improper Captain's Quarters" @@ -40690,6 +39332,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ req_access_txt = 1 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "yellowcorner" @@ -40706,7 +39349,6 @@ }) "bso" = ( /obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; @@ -40715,6 +39357,8 @@ /obj/machinery/door/airlock/public/glass{ name = "Barber Shop" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel, /area/civilian/barber) "bsp" = ( @@ -40727,10 +39371,6 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/maintenance/starboard) -"bsr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/wall, -/area/maintenance/starboard) "bss" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ @@ -40759,15 +39399,9 @@ d2 = 2; icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/maintenance/starboard) -"bsu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "cautioncorner" - }, -/area/hallway/primary/starboard) "bsv" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -40802,6 +39436,9 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "cautioncorner" @@ -40817,9 +39454,6 @@ name = "Arrivals" }) "bsy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /obj/structure/cable/yellow{ d1 = 1; d2 = 8; @@ -40828,6 +39462,13 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 2; + initialize_directions = 11 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 2 + }, /turf/simulated/floor/plasteel, /area/engine/break_room) "bsz" = ( @@ -40835,22 +39476,9 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 2 - }, -/turf/simulated/floor/plasteel, -/area/engine/break_room) -"bsA" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/turf/simulated/floor/plasteel, -/area/engine/break_room) -"bsB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 }, /turf/simulated/floor/plasteel, @@ -40869,6 +39497,7 @@ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/engine/break_room) "bsE" = ( @@ -40926,14 +39555,15 @@ pixel_x = -28 }, /obj/item/card/id/captains_spare, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood, /area/crew_quarters/captain{ name = "\improper Captain's Quarters" }) "bsI" = ( /obj/structure/transit_tube{ - tag = "icon-E-SW"; - icon_state = "E-SW" + icon_state = "E-SW"; + tag = "icon-E-SW" }, /obj/structure/window/reinforced{ dir = 8 @@ -40948,16 +39578,16 @@ /area/space/nearstation) "bsK" = ( /obj/structure/transit_tube{ - tag = "icon-W-SE"; - icon_state = "W-SE" + icon_state = "W-SE"; + tag = "icon-W-SE" }, /obj/structure/lattice, /turf/space, /area/space/nearstation) "bsL" = ( /obj/structure/transit_tube{ - tag = "icon-D-SW"; - icon_state = "D-SW" + icon_state = "D-SW"; + tag = "icon-D-SW" }, /turf/space, /area/space/nearstation) @@ -40968,8 +39598,8 @@ }) "bsN" = ( /obj/structure/transit_tube{ - tag = "icon-D-NW"; - icon_state = "D-NW" + icon_state = "D-NW"; + tag = "icon-D-NW" }, /turf/space, /area/space/nearstation) @@ -41050,7 +39680,6 @@ name = "\improper MiniSat Exterior" }) "bsV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/extinguisher_cabinet{ pixel_x = -27 }, @@ -41066,9 +39695,9 @@ }, /obj/machinery/computer/teleporter, /turf/simulated/floor/plasteel{ - tag = "icon-vault (EAST)"; + dir = 4; icon_state = "vault"; - dir = 4 + tag = "icon-vault (EAST)" }, /area/turret_protected/tcomfoyer{ name = "\improper MiniSat Teleporter Foyer" @@ -41076,18 +39705,14 @@ "bsX" = ( /obj/machinery/teleport/hub, /turf/simulated/floor/plasteel{ - tag = "icon-vault (EAST)"; + dir = 4; icon_state = "vault"; - dir = 4 + tag = "icon-vault (EAST)" }, /area/turret_protected/tcomfoyer{ name = "\improper MiniSat Teleporter Foyer" }) "bsY" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8; - initialize_directions = 11 - }, /obj/structure/cable/yellow{ d1 = 2; d2 = 4; @@ -41096,10 +39721,11 @@ /obj/machinery/light_switch{ pixel_x = -22 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel, /area/engine/break_room) "bsZ" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; @@ -41111,16 +39737,20 @@ pixel_y = -24; req_access_txt = "70" }, -/turf/simulated/floor/plasteel{ - icon_state = "vault"; - dir = 5 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 }, -/area/engine/mechanic_workshop) -"bta" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4; level = 1 }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "vault" + }, +/area/engine/mechanic_workshop) +"bta" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/structure/cable/yellow{ d2 = 8; icon_state = "0-8" @@ -41131,12 +39761,13 @@ pixel_y = -25 }, /turf/simulated/floor/plasteel{ - icon_state = "vault"; - dir = 5 + dir = 5; + icon_state = "vault" }, /area/engine/mechanic_workshop) "btb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -41178,6 +39809,7 @@ name = "AI Chamber"; req_access_txt = "16" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -41191,8 +39823,8 @@ icon_state = "0-4" }, /turf/simulated/floor/plasteel{ - icon_state = "vault"; - dir = 8 + dir = 8; + icon_state = "vault" }, /area/turret_protected/tcomeast{ name = "\improper MiniSat East Wing" @@ -41204,8 +39836,8 @@ }, /obj/machinery/power/port_gen/pacman, /turf/simulated/floor/plasteel{ - icon_state = "vault"; - dir = 8 + dir = 8; + icon_state = "vault" }, /area/turret_protected/tcomeast{ name = "\improper MiniSat East Wing" @@ -41219,8 +39851,8 @@ }, /obj/machinery/portable_atmospherics/canister/air, /turf/simulated/floor/plasteel{ - icon_state = "vault"; - dir = 8 + dir = 8; + icon_state = "vault" }, /area/turret_protected/tcomeast{ name = "\improper MiniSat East Wing" @@ -41233,17 +39865,17 @@ /area/shuttle/arrival/station) "bti" = ( /turf/simulated/shuttle/wall{ - tag = "icon-swall13"; + dir = 2; icon_state = "swall13"; - dir = 2 + tag = "icon-swall13" }, /area/shuttle/arrival/station) "btj" = ( /turf/space, /turf/simulated/shuttle/wall{ - tag = "icon-swall_f9"; + dir = 2; icon_state = "swall_f9"; - dir = 2 + tag = "icon-swall_f9" }, /area/shuttle/arrival/station) "btk" = ( @@ -41260,17 +39892,6 @@ /obj/structure/cable/yellow, /turf/simulated/floor/plating, /area/blueshield) -"btl" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plasteel, -/area/hallway/secondary/entry{ - name = "Arrivals" - }) "btm" = ( /turf/simulated/floor/plasteel{ dir = 4; @@ -41324,25 +39945,30 @@ d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/junction{ dir = 1; icon_state = "pipe-j1"; tag = "icon-pipe-j1 (EAST)" }, /turf/simulated/floor/plasteel{ - icon_state = "neutral"; - dir = 8 + dir = 8; + icon_state = "neutral" }, /area/hallway/primary/port) "btt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8; + initialize_directions = 11; + level = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8; + initialize_directions = 11 + }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "neutralcorner" @@ -41355,6 +39981,9 @@ /obj/machinery/firealarm{ pixel_y = 32 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "neutralcorner" @@ -41364,14 +39993,20 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "neutralcorner" }, /area/hallway/primary/port) "btw" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, /turf/simulated/floor/plasteel{ dir = 1; @@ -41379,19 +40014,8 @@ }, /area/hallway/primary/port) "btx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "neutralcorner" - }, -/area/hallway/primary/port) -"bty" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 2 - }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "neutralcorner" @@ -41409,6 +40033,9 @@ dir = 2; network = list("SS13") }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "neutralcorner" @@ -41419,6 +40046,9 @@ dir = 4 }, /obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "neutralcorner" @@ -41438,6 +40068,9 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "neutralcorner" @@ -41448,6 +40081,9 @@ dir = 1 }, /obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "neutralcorner" @@ -41465,6 +40101,9 @@ /obj/machinery/light{ dir = 1 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, /turf/simulated/floor/plasteel{ dir = 5; icon_state = "neutral" @@ -41474,6 +40113,9 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "browncorner" @@ -41483,7 +40125,9 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "browncorner" @@ -41499,20 +40143,12 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 2 }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "browncorner" }, /area/hallway/primary/port) -"btH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "browncorner" - }, -/area/hallway/primary/port) "btI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -41521,6 +40157,9 @@ /obj/machinery/door/airlock/public/glass{ name = "Port Primary Hallway" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "neutralcorner" @@ -41530,6 +40169,9 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "neutralcorner" @@ -41560,6 +40202,11 @@ icon_state = "map-right-MS"; pixel_y = 32 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10; + initialize_directions = 10; + level = 1 + }, /turf/simulated/floor/plasteel{ dir = 5; icon_state = "neutral" @@ -41834,6 +40481,7 @@ "bug" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood, /area/crew_quarters/captain{ name = "\improper Captain's Quarters" @@ -41864,7 +40512,6 @@ name = "\improper Captain's Quarters" }) "buj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/item/radio/intercom{ dir = 8; name = "Station Intercom (General)"; @@ -41881,9 +40528,8 @@ }, /area/hallway/primary/central) "buk" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "neutralcorner" @@ -41926,20 +40572,15 @@ }, /area/bridge) "bun" = ( -/obj/machinery/atmospherics/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "barber" @@ -41990,13 +40631,17 @@ /turf/simulated/floor/wood, /area/crew_quarters/bar) "but" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, /obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1; + level = 1 + }, /turf/simulated/floor/plasteel{ - icon_state = "neutral"; - dir = 1 + dir = 1; + icon_state = "neutral" }, /area/hallway/primary/port) "buu" = ( @@ -42010,6 +40655,7 @@ }, /obj/effect/spawner/lootdrop/maintenance, /obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel, /area/quartermaster/office{ name = "\improper Cargo Office" @@ -42037,19 +40683,6 @@ icon_state = "dark" }, /area/bridge) -"bux" = ( -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 4; - on = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - req_access_txt = 1 - }, -/obj/effect/decal/warning_stripes/west, -/turf/simulated/floor/plasteel, -/area/hallway/secondary/entry{ - name = "Arrivals" - }) "buy" = ( /obj/structure/closet/firecloset, /turf/simulated/floor/plating, @@ -42058,11 +40691,6 @@ /obj/structure/reagent_dispensers/fueltank, /turf/simulated/floor/plating, /area/maintenance/starboard) -"buA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/space_heater, -/turf/simulated/floor/plating, -/area/maintenance/starboard) "buB" = ( /obj/item/radio/off, /obj/effect/decal/warning_stripes/east, @@ -42088,6 +40716,7 @@ network = list("SS13") }, /obj/effect/decal/warning_stripes/west, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/hallway/secondary/entry{ name = "Arrivals" @@ -42131,6 +40760,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 = "cautioncorner" @@ -42144,12 +40774,10 @@ "buI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/decal/warning_stripes/north, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/maintenance/starboard) "buJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, /obj/effect/decal/warning_stripes/southwestcorner, /turf/simulated/floor/plasteel, /area/engine/break_room) @@ -42165,6 +40793,7 @@ d2 = 4; icon_state = "1-4" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/engine/break_room) "buL" = ( @@ -42200,8 +40829,8 @@ }) "buO" = ( /obj/structure/transit_tube{ - tag = "icon-D-NE"; - icon_state = "D-NE" + icon_state = "D-NE"; + tag = "icon-D-NE" }, /obj/structure/window/reinforced{ dir = 4 @@ -42241,21 +40870,6 @@ /area/construction/hallway{ name = "\improper MiniSat Exterior" }) -"buR" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6; - level = 1 - }, -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "darkbluecorners" - }, -/area/construction/hallway{ - name = "\improper MiniSat Exterior" - }) "buS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/door/window/eastright{ @@ -42273,7 +40887,6 @@ /obj/structure/window/reinforced{ dir = 1 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/machinery/light_switch{ pixel_x = 23 }, @@ -42290,6 +40903,7 @@ pixel_x = 9; pixel_y = 2 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "darkbluecorners" @@ -42298,10 +40912,11 @@ name = "\improper MiniSat Exterior" }) "buU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/machinery/bluespace_beacon, +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 8; + on = 1 + }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "darkbluecorners" @@ -42310,9 +40925,6 @@ name = "\improper MiniSat Teleporter Foyer" }) "buV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/structure/extinguisher_cabinet{ pixel_y = -30 }, @@ -42329,15 +40941,17 @@ }, /obj/machinery/teleport/station, /turf/simulated/floor/plasteel{ - tag = "icon-vault (EAST)"; + dir = 4; icon_state = "vault"; - dir = 4 + tag = "icon-vault (EAST)" }, /area/turret_protected/tcomfoyer{ name = "\improper MiniSat Teleporter Foyer" }) "buX" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "darkbluecorners" @@ -42346,13 +40960,10 @@ name = "\improper MiniSat Central Foyer" }) "buY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/machinery/light/small{ - tag = "icon-bulb1 (WEST)"; + dir = 8; icon_state = "bulb1"; - dir = 8 + tag = "icon-bulb1 (WEST)" }, /obj/machinery/light_switch{ pixel_x = -23 @@ -42362,6 +40973,9 @@ dir = 4; network = list("SS13","MiniSat") }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "darkbluecorners" @@ -42370,9 +40984,7 @@ name = "\improper MiniSat Central Foyer" }) "buZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, +/obj/machinery/atmospherics/unary/vent_pump, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "darkbluecorners" @@ -42381,11 +40993,12 @@ name = "\improper MiniSat Central Foyer" }) "bva" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4; + initialize_directions = 11 + }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -42407,18 +41020,14 @@ pixel_x = 25 }, /obj/machinery/light/small{ - tag = "icon-bulb1 (EAST)"; + dir = 4; icon_state = "bulb1"; - dir = 4 + tag = "icon-bulb1 (EAST)" }, /obj/structure/cable/yellow{ d2 = 2; icon_state = "0-2" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1; - initialize_directions = 11 - }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "darkbluecorners" @@ -42427,11 +41036,6 @@ name = "\improper MiniSat Central Foyer" }) "bvd" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4; - initialize_directions = 11; - level = 1 - }, /obj/structure/showcase{ density = 0; desc = "An old, deactivated cyborg. Whilst once actively used to guard against intruders, it now simply intimidates them with its cold, steely gaze."; @@ -42449,17 +41053,14 @@ name = "\improper MiniSat Central Foyer" }) "bve" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + d2 = 4; + icon_state = "0-4" }, /obj/effect/decal/warning_stripes/north, /obj/machinery/power/terminal{ - icon_state = "term"; - dir = 1 + dir = 1; + icon_state = "term" }, /obj/machinery/camera/motion{ c_tag = "Mini Satellite Maintenance"; @@ -42472,6 +41073,9 @@ /obj/machinery/ai_slipper{ icon_state = "motion0" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -42479,10 +41083,6 @@ name = "\improper MiniSat East Wing" }) "bvf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5; - level = 1 - }, /obj/machinery/porta_turret{ dir = 8 }, @@ -42493,8 +41093,8 @@ pixel_x = -29 }, /turf/simulated/floor/plasteel{ - icon_state = "vault"; - dir = 8 + dir = 8; + icon_state = "vault" }, /area/turret_protected/aisat_interior{ name = "\improper MiniSat Central Foyer" @@ -42547,12 +41147,13 @@ req_access_txt = 1 }, /obj/effect/decal/warning_stripes/north, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/maintenance/starboard) "bvk" = ( /obj/structure/transit_tube{ - tag = "icon-S-NE"; - icon_state = "S-NE" + icon_state = "S-NE"; + tag = "icon-S-NE" }, /obj/structure/window/reinforced{ dir = 4 @@ -42561,8 +41162,8 @@ dir = 6 }, /turf/simulated/floor/plasteel{ - icon_state = "vault"; - dir = 8 + dir = 8; + icon_state = "vault" }, /area/space/nearstation) "bvl" = ( @@ -42589,8 +41190,8 @@ pixel_x = 29 }, /turf/simulated/floor/plasteel{ - icon_state = "vault"; - dir = 8 + dir = 8; + icon_state = "vault" }, /area/turret_protected/aisat_interior{ name = "\improper MiniSat Central Foyer" @@ -42624,8 +41225,8 @@ icon_state = "2-8" }, /turf/simulated/floor/plasteel{ - icon_state = "vault"; - dir = 8 + dir = 8; + icon_state = "vault" }, /area/turret_protected/tcomeast{ name = "\improper MiniSat East Wing" @@ -42676,7 +41277,6 @@ }, /area/bridge) "bvs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/status_display{ density = 0; layer = 4; @@ -42716,8 +41316,8 @@ /area/engine/break_room) "bvv" = ( /obj/structure/transit_tube{ - tag = "icon-D-SE"; - icon_state = "D-SE" + icon_state = "D-SE"; + tag = "icon-D-SE" }, /obj/structure/window/reinforced{ dir = 4 @@ -42733,9 +41333,6 @@ }, /area/space/nearstation) "bvw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/machinery/alarm{ dir = 4; pixel_x = -25 @@ -42750,6 +41347,9 @@ pixel_x = -9; pixel_y = 2 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "darkbluecorners" @@ -42758,11 +41358,6 @@ name = "\improper MiniSat Teleporter Foyer" }) "bvx" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1; - initialize_directions = 11; - level = 1 - }, /obj/machinery/ai_slipper{ icon_state = "motion0" }, @@ -42854,7 +41449,6 @@ d2 = 4; icon_state = "1-4" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ d1 = 1; @@ -42862,8 +41456,8 @@ icon_state = "1-2" }, /turf/simulated/floor/plasteel{ - icon_state = "neutral"; - dir = 8 + dir = 8; + icon_state = "neutral" }, /area/hallway/primary/port) "bvG" = ( @@ -42876,6 +41470,8 @@ dir = 1; icon_state = "pipe-c" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel, /area/hallway/primary/port) "bvH" = ( @@ -42889,30 +41485,6 @@ }, /turf/simulated/floor/plasteel, /area/hallway/primary/port) -"bvI" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plasteel, -/area/hallway/primary/port) -"bvJ" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plasteel, -/area/hallway/primary/port) "bvK" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -42987,18 +41559,7 @@ icon_state = "pipe-j1s"; sortType = 3 }, -/turf/simulated/floor/plasteel, -/area/hallway/primary/port) -"bvP" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, /turf/simulated/floor/plasteel, /area/hallway/primary/port) "bvQ" = ( @@ -43007,12 +41568,6 @@ d2 = 8; icon_state = "4-8" }, -/obj/machinery/atmospherics/unary/vent_scrubber{ - dir = 2; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, /obj/structure/cable/yellow{ d1 = 1; d2 = 4; @@ -43022,6 +41577,12 @@ dir = 8; icon_state = "pipe-c" }, +/obj/machinery/atmospherics/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 1; + scrub_Toxins = 1 + }, /turf/simulated/floor/plasteel, /area/hallway/primary/port) "bvR" = ( @@ -43051,6 +41612,10 @@ icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8; + initialize_directions = 11 + }, /turf/simulated/floor/plasteel, /area/hallway/primary/central) "bvU" = ( @@ -43064,24 +41629,15 @@ d2 = 8; icon_state = "1-8" }, +/obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/unary/vent_scrubber{ - dir = 4; + dir = 8; on = 1; + scrub_N2O = 0; scrub_Toxins = 0 }, -/obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel, /area/hallway/primary/central) -"bvV" = ( -/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) "bvW" = ( /obj/structure/window/reinforced, /obj/structure/cable/yellow{ @@ -43094,9 +41650,6 @@ }, /area/bridge) "bvX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/structure/cable{ d1 = 4; d2 = 8; @@ -43108,6 +41661,9 @@ d2 = 2; icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -43148,21 +41704,13 @@ name = "\improper MiniSat East Wing" }) "bwa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5; - level = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10; - initialize_directions = 10; - level = 1 - }, /obj/structure/cable{ d1 = 4; d2 = 8; icon_state = "4-8" }, /obj/effect/decal/warning_stripes/north, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -43178,6 +41726,9 @@ name = "Station Intercom (General)"; pixel_y = 21 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "neutralcorner" @@ -43314,7 +41865,6 @@ /obj/structure/extinguisher_cabinet{ pixel_x = -27 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "cautioncorner" @@ -43349,8 +41899,8 @@ }) "bwr" = ( /obj/structure/transit_tube{ - tag = "icon-D-NW"; - icon_state = "D-NW" + icon_state = "D-NW"; + tag = "icon-D-NW" }, /obj/structure/window/reinforced{ dir = 8 @@ -43385,6 +41935,7 @@ /obj/structure/chair/comfy/brown, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood, /area/crew_quarters/captain{ name = "\improper Captain's Quarters" @@ -43412,6 +41963,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "neutralcorner" @@ -43419,12 +41971,12 @@ /area/hallway/primary/central) "bwy" = ( /obj/structure/transit_tube{ - tag = "icon-D-SE"; - icon_state = "D-SE" + icon_state = "D-SE"; + tag = "icon-D-SE" }, /obj/structure/transit_tube{ - tag = "icon-D-NE"; - icon_state = "D-NE" + icon_state = "D-NE"; + tag = "icon-D-NE" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -43487,8 +42039,8 @@ /area/crew_quarters/bar) "bwF" = ( /obj/structure/transit_tube{ - tag = "icon-E-SW-NW"; - icon_state = "E-SW-NW" + icon_state = "E-SW-NW"; + tag = "icon-E-SW-NW" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -43521,13 +42073,6 @@ }, /turf/simulated/floor/plating, /area/maintenance/starboard) -"bwJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/effect/decal/warning_stripes/south, -/turf/simulated/floor/plasteel, -/area/engine/break_room) "bwK" = ( /obj/machinery/door/airlock/maintenance{ req_access_txt = "12" @@ -43551,8 +42096,8 @@ /area/space/nearstation) "bwM" = ( /obj/structure/transit_tube{ - tag = "icon-E-W-Pass"; - icon_state = "E-W-Pass" + icon_state = "E-W-Pass"; + tag = "icon-E-W-Pass" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -43566,16 +42111,12 @@ d2 = 8; icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 2; - initialize_directions = 11 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, /turf/simulated/floor/plating, /area/maintenance/starboard) "bwO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; @@ -43583,30 +42124,20 @@ }, /obj/item/storage/box/lights/mixed, /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 2; + initialize_directions = 11 + }, /turf/simulated/floor/plating, /area/maintenance/starboard) "bwP" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/effect/decal/warning_stripes/west, -/turf/simulated/floor/plating, -/area/maintenance/starboard) -"bwQ" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, /turf/simulated/floor/plating, /area/maintenance/starboard) "bwR" = ( @@ -43620,11 +42151,10 @@ icon_state = "pipe-j1s"; sortType = 19 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1; - initialize_directions = 11 - }, /obj/effect/decal/warning_stripes/east, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plating, /area/maintenance/starboard) "bwS" = ( @@ -43641,6 +42171,10 @@ d2 = 8; icon_state = "2-8" }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4; + initialize_directions = 11 + }, /turf/simulated/floor/plating, /area/maintenance/starboard) "bwT" = ( @@ -43665,9 +42199,9 @@ "bwV" = ( /obj/machinery/vending/coffee, /turf/simulated/floor/plasteel{ - tag = "icon-cafeteria (NORTHEAST)"; + dir = 5; icon_state = "cafeteria"; - dir = 5 + tag = "icon-cafeteria (NORTHEAST)" }, /area/engine/break_room) "bwW" = ( @@ -43683,8 +42217,8 @@ /area/space/nearstation) "bwX" = ( /obj/structure/transit_tube{ - tag = "icon-D-SW"; - icon_state = "D-SW" + icon_state = "D-SW"; + tag = "icon-D-SW" }, /obj/structure/transit_tube{ icon_state = "D-NW"; @@ -43711,10 +42245,10 @@ d2 = 8; icon_state = "4-8" }, +/obj/effect/decal/warning_stripes/west, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/effect/decal/warning_stripes/west, /turf/simulated/floor/plating, /area/maintenance/starboard) "bxa" = ( @@ -43738,13 +42272,13 @@ level = 1 }, /obj/structure/transit_tube/station{ - tag = "icon-closed (EAST)"; + dir = 4; icon_state = "closed"; - dir = 4 + tag = "icon-closed (EAST)" }, /turf/simulated/floor/plasteel{ - icon_state = "vault"; - dir = 5 + dir = 5; + icon_state = "vault" }, /area/construction/hallway{ name = "\improper MiniSat Exterior" @@ -43758,15 +42292,13 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4; + initialize_directions = 11 + }, /turf/simulated/floor/plasteel, /area/engine/break_room) "bxd" = ( -/obj/machinery/atmospherics/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; @@ -43800,19 +42332,14 @@ /area/engine/break_room) "bxg" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/engine/break_room) -"bxh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, /turf/simulated/floor/plasteel{ - icon_state = "dark" + dir = 8; + icon_state = "vault" }, /area/engine/break_room) "bxi" = ( @@ -43827,16 +42354,16 @@ }) "bxj" = ( /obj/structure/transit_tube{ - tag = "icon-S-NE"; - icon_state = "S-NE" + icon_state = "S-NE"; + tag = "icon-S-NE" }, /obj/structure/lattice, /turf/space, /area/space/nearstation) "bxk" = ( /obj/structure/transit_tube{ - tag = "icon-D-NE"; - icon_state = "D-NE" + icon_state = "D-NE"; + tag = "icon-D-NE" }, /turf/space, /area/space/nearstation) @@ -43870,6 +42397,9 @@ d2 = 4; icon_state = "0-4" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel, /area/engine/break_room) "bxn" = ( @@ -43885,6 +42415,9 @@ d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel, /area/engine/break_room) "bxo" = ( @@ -43937,6 +42470,7 @@ pixel_x = -23 }, /obj/effect/decal/warning_stripes/west, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/hallway/secondary/entry{ name = "Arrivals" @@ -43963,10 +42497,8 @@ }) "bxu" = ( /obj/machinery/atmospherics/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 1; - scrub_Toxins = 1 + dir = 4; + on = 1 }, /obj/structure/cable/yellow{ d1 = 4; @@ -44004,6 +42536,12 @@ d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -44019,6 +42557,10 @@ d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -44032,6 +42574,12 @@ d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -44039,14 +42587,15 @@ name = "\improper MiniSat Teleporter Foyer" }) "bxz" = ( -/obj/machinery/atmospherics/unary/vent_pump{ - on = 1 - }, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -44064,6 +42613,12 @@ d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -44071,12 +42626,6 @@ name = "\improper MiniSat Teleporter Foyer" }) "bxB" = ( -/obj/machinery/atmospherics/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 1; - scrub_Toxins = 1 - }, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; @@ -44087,6 +42636,12 @@ d2 = 4; icon_state = "2-4" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -44108,6 +42663,9 @@ /obj/effect/landmark/start{ name = "Cyborg" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -44123,6 +42681,12 @@ /obj/effect/landmark/start{ name = "Cyborg" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -44130,9 +42694,6 @@ name = "\improper MiniSat Central Foyer" }) "bxE" = ( -/obj/machinery/atmospherics/unary/vent_pump{ - on = 1 - }, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; @@ -44141,6 +42702,10 @@ /obj/effect/landmark/start{ name = "Cyborg" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -44149,21 +42714,21 @@ }) "bxF" = ( /obj/machinery/light{ - icon_state = "tube1"; - dir = 8 + dir = 8; + icon_state = "tube1" }, /turf/simulated/shuttle/floor, /area/shuttle/mining) "bxG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; icon_state = "4-8" }, /obj/effect/decal/warning_stripes/east, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plating, /area/maintenance/starboard) "bxH" = ( @@ -44208,7 +42773,6 @@ d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/yellow{ d1 = 2; d2 = 4; @@ -44280,10 +42844,6 @@ }, /area/hallway/primary/port) "bxQ" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8; - initialize_directions = 11 - }, /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ d1 = 1; @@ -44291,14 +42851,13 @@ icon_state = "1-2" }, /turf/simulated/floor/plasteel{ - icon_state = "neutral"; - dir = 8 + dir = 8; + icon_state = "neutral" }, /area/hallway/primary/port) "bxR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "neutralcorner" @@ -44311,38 +42870,12 @@ name = "Station Intercom (General)"; pixel_y = -28 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "neutralcorner" }, /area/hallway/primary/port) "bxT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "neutralcorner" - }, -/area/hallway/primary/port) -"bxU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "neutralcorner" - }, -/area/hallway/primary/port) -"bxV" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 2; - initialize_directions = 11 - }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "neutralcorner" @@ -44362,9 +42895,6 @@ /turf/simulated/floor/wood, /area/crew_quarters/heads) "bxX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/machinery/alarm{ dir = 1; pixel_y = -22 @@ -44375,9 +42905,6 @@ }, /area/hallway/primary/port) "bxY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; @@ -44390,9 +42917,6 @@ }, /area/hallway/primary/port) "bxZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/machinery/door/firedoor, /turf/simulated/floor/plasteel{ dir = 8; @@ -44411,21 +42935,16 @@ /turf/simulated/floor/wood, /area/crew_quarters/heads) "byb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ req_access_txt = 1 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "neutralcorner" }, /area/hallway/primary/port) "byc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/machinery/light, /obj/machinery/firealarm{ dir = 1; @@ -44437,9 +42956,6 @@ }, /area/hallway/primary/port) "byd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/machinery/camera{ c_tag = "Port Primary Hallway - Starboard"; dir = 1; @@ -44462,9 +42978,6 @@ /turf/simulated/floor/wood, /area/crew_quarters/heads) "byf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ name = "Port Primary Hallway" @@ -44476,9 +42989,7 @@ /area/hallway/primary/port) "byg" = ( /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 = 8; icon_state = "neutralcorner" @@ -44495,9 +43006,6 @@ location = "6-Port-Central" }, /obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /turf/simulated/floor/plasteel, /area/hallway/primary/central) "byi" = ( @@ -44612,11 +43120,6 @@ pixel_y = -24; req_access_txt = "19" }, -/obj/machinery/atmospherics/unary/vent_scrubber{ - on = 1; - scrub_N2O = 1; - scrub_Toxins = 1 - }, /obj/machinery/door_control{ id = "council blast"; name = "Council Chamber Blast Door Control"; @@ -44629,10 +43132,20 @@ dir = 1; network = list("SS13") }, +/obj/machinery/atmospherics/unary/vent_scrubber{ + dir = 4; + on = 1 + }, /turf/simulated/floor/carpet, /area/bridge) "byt" = ( /obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, /turf/simulated/floor/carpet, /area/bridge) "byu" = ( @@ -44750,6 +43263,7 @@ }, /obj/structure/disposalpipe/segment, /obj/item/stamp/captain, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood, /area/crew_quarters/captain{ name = "\improper Captain's Quarters" @@ -44789,6 +43303,10 @@ pixel_x = -3; pixel_y = 5 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4; + level = 1 + }, /turf/simulated/floor/carpet, /area/security/detectives_office) "byE" = ( @@ -44812,7 +43330,6 @@ name = "Central Maintenance" }) "byF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -44925,7 +43442,6 @@ req_access_txt = "12" }, /obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/maintenance/starboard) "byP" = ( @@ -44939,6 +43455,12 @@ d2 = 4; icon_state = "0-4" }, +/obj/machinery/atmospherics/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "barber" @@ -44954,20 +43476,7 @@ icon_state = "dark" }, /area/bridge) -"byR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/item/cigbutt, -/turf/simulated/floor/plating, -/area/maintenance/starboard) -"byS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/spawner/window/reinforced, -/turf/simulated/floor/plating, -/area/toxins/lab) "byT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "caution" @@ -44975,9 +43484,10 @@ /area/hallway/primary/starboard) "byU" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ - icon_state = "caution"; - dir = 4 + dir = 4; + icon_state = "caution" }, /area/hallway/primary/starboard) "byV" = ( @@ -44986,27 +43496,34 @@ req_access_txt = "0"; req_one_access_txt = "32;19" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plating, /area/engine/break_room) "byW" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5; + level = 1 + }, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "caution" }, /area/engine/break_room) "byX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1; + level = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "caution" @@ -45035,6 +43552,7 @@ dir = 8; pixel_x = -24 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -45049,6 +43567,7 @@ /obj/structure/sign/securearea{ pixel_x = 32 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "blackcorner" @@ -45056,8 +43575,8 @@ /area/hallway/primary/starboard) "bzc" = ( /obj/structure/transit_tube{ - tag = "icon-D-SW"; - icon_state = "D-SW" + icon_state = "D-SW"; + tag = "icon-D-SW" }, /obj/structure/window/reinforced{ dir = 8 @@ -45067,14 +43586,13 @@ /area/space/nearstation) "bzd" = ( /obj/structure/transit_tube{ - tag = "icon-N-SW"; - icon_state = "N-SW" + icon_state = "N-SW"; + tag = "icon-N-SW" }, /obj/structure/lattice, /turf/space, /area/space/nearstation) "bze" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/ai_slipper{ icon_state = "motion0" }, @@ -45088,6 +43606,10 @@ d2 = 4; icon_state = "2-4" }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, /mob/living/simple_animal/bot/secbot/pingsky, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -45106,6 +43628,12 @@ d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -45123,10 +43651,15 @@ d2 = 4; icon_state = "1-4" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/landmark/start{ name = "Cyborg" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -45143,6 +43676,7 @@ }) "bzi" = ( /obj/machinery/atmospherics/unary/vent_pump{ + dir = 1; on = 1 }, /obj/structure/cable/yellow{ @@ -45150,6 +43684,9 @@ d2 = 8; icon_state = "1-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -45167,6 +43704,12 @@ d2 = 8; icon_state = "2-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -45174,9 +43717,8 @@ name = "\improper MiniSat East Wing" }) "bzk" = ( -/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 = "dark" @@ -45186,10 +43728,10 @@ }) "bzl" = ( /obj/machinery/atmospherics/unary/vent_scrubber{ - dir = 1; + dir = 8; on = 1; - scrub_N2O = 1; - scrub_Toxins = 1 + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -45262,28 +43804,23 @@ /area/construction/hallway{ name = "\improper MiniSat Exterior" }) -"bzq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/decal/warning_stripes/west, -/turf/simulated/floor/plating, -/area/maintenance/starboard) "bzr" = ( /obj/machinery/computer/security/telescreen/entertainment{ pixel_y = -30 }, /obj/machinery/vending/cigarette, -/turf/simulated/floor/plasteel{ - tag = "icon-cafeteria (NORTHEAST)"; - icon_state = "cafeteria"; +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5; + level = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "cafeteria"; + tag = "icon-cafeteria (NORTHEAST)" + }, /area/engine/break_room) "bzs" = ( /obj/machinery/hologram/holopad, @@ -45292,7 +43829,6 @@ d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/hallway/secondary/entry{ name = "Arrivals" @@ -45319,10 +43855,13 @@ name = "\improper MiniSat Exterior" }) "bzv" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, /obj/effect/decal/warning_stripes/west, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/plasteel, /area/engine/break_room) "bzw" = ( @@ -45399,7 +43938,6 @@ }, /area/hallway/primary/port) "bzE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" @@ -45410,8 +43948,8 @@ icon_state = "1-2" }, /turf/simulated/floor/plasteel{ - icon_state = "neutral"; - dir = 8 + dir = 8; + icon_state = "neutral" }, /area/hallway/primary/port) "bzF" = ( @@ -45419,31 +43957,25 @@ dir = 4; icon_state = "tube1" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ - icon_state = "neutral"; - dir = 4 + dir = 4; + icon_state = "neutral" }, /area/hallway/primary/port) "bzG" = ( /obj/structure/closet/firecloset, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/hallway/primary/port) "bzH" = ( /obj/structure/closet/emcloset, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" - }, -/area/hallway/primary/port) -"bzI" = ( -/obj/structure/closet/emcloset, -/turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/hallway/primary/port) "bzJ" = ( @@ -45486,6 +44018,7 @@ /obj/machinery/door/airlock/public/glass{ name = "Library" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "carpetsymbol" @@ -45503,6 +44036,10 @@ /area/hallway/primary/port) "bzP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8; + initialize_directions = 11 + }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "neutralcorner" @@ -45524,6 +44061,9 @@ d2 = 4; icon_state = "2-4" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel, /area/hallway/primary/central) "bzR" = ( @@ -45532,13 +44072,12 @@ d2 = 8; icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8; - initialize_directions = 11 - }, /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "neutralcorner" @@ -45683,21 +44222,6 @@ icon_state = "dark" }, /area/bridge) -"bAc" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8; - initialize_directions = 11 - }, -/turf/simulated/floor/plasteel{ - icon_state = "dark" - }, -/area/bridge) -"bAd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/wall, -/area/bridge) "bAe" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/door/firedoor, @@ -45709,26 +44233,18 @@ icon_state = "dark" }, /area/bridge) -"bAf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/wall, -/area/bridge) "bAg" = ( /obj/machinery/door/airlock/command{ name = "Command Desk"; req_access = null; req_access_txt = "19" }, -/turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" - }, -/area/bridge) -"bAh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/wall, +/turf/simulated/floor/plasteel{ + icon_state = "vault"; + tag = "icon-vault" + }, /area/bridge) "bAi" = ( /obj/structure/bookcase, @@ -45765,8 +44281,8 @@ pixel_y = -9 }, /turf/simulated/floor/carpet{ - tag = "icon-carpet6-2"; - icon_state = "carpet6-2" + icon_state = "carpet6-2"; + tag = "icon-carpet6-2" }, /area/crew_quarters/captain{ name = "\improper Captain's Quarters" @@ -45778,16 +44294,16 @@ icon_state = "1-2" }, /turf/simulated/floor/carpet{ - tag = "icon-carpet14-10"; - icon_state = "carpet14-10" + icon_state = "carpet14-10"; + tag = "icon-carpet14-10" }, /area/crew_quarters/captain{ name = "\improper Captain's Quarters" }) "bAo" = ( /turf/simulated/floor/carpet{ - tag = "icon-carpet14-10"; - icon_state = "carpet14-10" + icon_state = "carpet14-10"; + tag = "icon-carpet14-10" }, /area/crew_quarters/captain{ name = "\improper Captain's Quarters" @@ -45797,9 +44313,10 @@ req_access_txt = 1 }, /obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/carpet{ - tag = "icon-carpet14-10"; - icon_state = "carpet14-10" + icon_state = "carpet14-10"; + tag = "icon-carpet14-10" }, /area/crew_quarters/captain{ name = "\improper Captain's Quarters" @@ -45811,8 +44328,8 @@ network = list("SS13") }, /turf/simulated/floor/carpet{ - tag = "icon-carpet10-8"; - icon_state = "carpet10-8" + icon_state = "carpet10-8"; + tag = "icon-carpet10-8" }, /area/crew_quarters/captain{ name = "\improper Captain's Quarters" @@ -45823,10 +44340,16 @@ }, /obj/item/storage/box/donkpockets, /obj/structure/table/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/plasteel{ - tag = "icon-cafeteria (NORTHEAST)"; + dir = 5; icon_state = "cafeteria"; - dir = 5 + tag = "icon-cafeteria (NORTHEAST)" }, /area/engine/break_room) "bAs" = ( @@ -45839,10 +44362,16 @@ network = list("SS13") }, /obj/structure/table/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/plasteel{ - tag = "icon-cafeteria (NORTHEAST)"; + dir = 5; icon_state = "cafeteria"; - dir = 5 + tag = "icon-cafeteria (NORTHEAST)" }, /area/engine/break_room) "bAt" = ( @@ -45855,12 +44384,10 @@ dir = 4 }, /obj/structure/transit_tube_pod, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ - icon_state = "vault"; - dir = 8 + dir = 8; + icon_state = "vault" }, /area/space/nearstation) "bAu" = ( @@ -45895,7 +44422,6 @@ /area/crew_quarters/bar) "bAy" = ( /obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; @@ -45912,18 +44438,14 @@ /turf/simulated/floor/wood, /area/crew_quarters/bar) "bAA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 - }, /obj/machinery/alarm{ dir = 4; pixel_x = -25 }, /obj/machinery/light/small{ - tag = "icon-bulb1 (WEST)"; + dir = 8; icon_state = "bulb1"; - dir = 8 + tag = "icon-bulb1 (WEST)" }, /mob/living/simple_animal/bot/cleanbot{ on = 0 @@ -45951,17 +44473,12 @@ icon_state = "dark" }, /area/crew_quarters/sleep) -"bAD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/maintenance/starboard) "bAE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ req_access_txt = 1 }, /obj/effect/decal/warning_stripes/northwestcorner, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/hallway/secondary/entry{ name = "Arrivals" @@ -45973,88 +44490,29 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/plating, /area/maintenance/starboard) "bAG" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 2; - initialize_directions = 11 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "caution" }, /area/hallway/primary/starboard) -"bAH" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plasteel{ - dir = 2; - icon_state = "neutralcorner" - }, -/area/hallway/primary/starboard) -"bAI" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/plasteel{ - icon_state = "caution"; - dir = 4 - }, -/area/hallway/primary/starboard) -"bAJ" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/starboard) -"bAK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/starboard) "bAL" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/plasteel, /area/engine/engineering) -"bAM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/spawner/lootdrop{ - loot = list(/obj/structure/grille,/obj/structure/grille,/obj/structure/grille,/obj/structure/grille,/obj/structure/grille,/obj/item/cigbutt,/obj/item/trash/cheesie,/obj/item/trash/candy,/obj/item/trash/chips,/obj/item/trash/pistachios,/obj/item/trash/plate,/obj/item/trash/popcorn,/obj/item/trash/raisins,/obj/item/trash/sosjerky,/obj/item/trash/syndi_cakes); - name = "maint grille or trash spawner" - }, -/turf/simulated/floor/plating, -/area/maintenance/starboard) -"bAN" = ( -/obj/effect/spawner/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/poddoor{ - density = 0; - icon_state = "open"; - id_tag = "telelab"; - name = "test chamber blast door"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/toxins/explab) "bAO" = ( /obj/structure/reagent_dispensers/fueltank, /turf/simulated/floor/plating, @@ -46084,14 +44542,7 @@ /area/hallway/secondary/entry{ name = "Arrivals" }) -"bAS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/wall/r_wall, -/area/engine/break_room) "bAT" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/light, /obj/machinery/computer/station_alert, /obj/machinery/computer/security/telescreen{ @@ -46108,15 +44559,6 @@ }) "bAU" = ( /obj/machinery/light/small, -/obj/machinery/atmospherics/unary/vent_scrubber{ - dir = 2; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 2 - }, /obj/machinery/light_switch{ pixel_x = -8; pixel_y = -24 @@ -46134,6 +44576,10 @@ pixel_x = 1; pixel_y = 5 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -46145,15 +44591,14 @@ dir = 1; level = 1 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, /area/engine/break_room) "bAW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 - }, /obj/machinery/firealarm{ dir = 8; pixel_x = -24 @@ -46183,8 +44628,8 @@ }) "bAX" = ( /obj/structure/transit_tube{ - tag = "icon-E-NW"; - icon_state = "E-NW" + icon_state = "E-NW"; + tag = "icon-E-NW" }, /obj/structure/window/reinforced{ dir = 8 @@ -46194,8 +44639,8 @@ /area/space/nearstation) "bAY" = ( /obj/structure/transit_tube{ - tag = "icon-W-NE"; - icon_state = "W-NE" + icon_state = "W-NE"; + tag = "icon-W-NE" }, /obj/structure/lattice, /turf/space, @@ -46203,15 +44648,15 @@ "bAZ" = ( /obj/structure/lattice, /obj/structure/transit_tube{ - tag = "icon-D-NW"; - icon_state = "D-NW" + icon_state = "D-NW"; + tag = "icon-D-NW" }, /turf/space, /area/space/nearstation) "bBa" = ( /obj/structure/transit_tube{ - tag = "icon-E-NW"; - icon_state = "E-NW" + icon_state = "E-NW"; + tag = "icon-E-NW" }, /turf/space, /area/space/nearstation) @@ -46260,22 +44705,13 @@ dir = 8; icon_state = "darkbluecorners" }, -/area/construction/hallway{ - name = "\improper MiniSat Exterior" - }) -"bBe" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/wall/r_wall, /area/construction/hallway{ name = "\improper MiniSat Exterior" }) "bBf" = ( /obj/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /turf/simulated/floor/plasteel{ dir = 8; @@ -46294,24 +44730,11 @@ /turf/simulated/floor/plasteel{ icon_state = "dark" }, -/area/construction/hallway{ - name = "\improper MiniSat Exterior" - }) -"bBh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 - }, -/turf/simulated/wall/r_wall, /area/construction/hallway{ name = "\improper MiniSat Exterior" }) "bBi" = ( /obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 - }, /obj/machinery/firealarm{ dir = 4; pixel_x = 24 @@ -46327,6 +44750,9 @@ pixel_x = 9; pixel_y = 2 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "darkbluecorners" @@ -46335,10 +44761,6 @@ name = "\improper MiniSat Exterior" }) "bBj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 - }, /obj/machinery/camera{ c_tag = "Mini Satellite Teleporter"; dir = 1; @@ -46354,6 +44776,12 @@ /obj/effect/landmark{ name = "JoinLateCyborg" }, +/obj/machinery/atmospherics/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 1; + scrub_Toxins = 1 + }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "darkbluecorners" @@ -46371,9 +44799,10 @@ d2 = 2; icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ - icon_state = "vault"; - dir = 8 + dir = 8; + icon_state = "vault" }, /area/turret_protected/aisat_interior{ name = "\improper MiniSat Central Foyer" @@ -46384,9 +44813,6 @@ name = "\improper Telecoms Control Room" }) "bBm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, /obj/structure/rack, /obj/item/storage/toolbox/electrical{ pixel_x = -3; @@ -46403,7 +44829,6 @@ name = "\improper MiniSat East Wing" }) "bBn" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/light_switch{ pixel_x = -23 }, @@ -46418,19 +44843,7 @@ /area/turret_protected/tcomfoyer{ name = "\improper MiniSat Teleporter Foyer" }) -"bBo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 - }, -/turf/simulated/wall/r_wall, -/area/turret_protected/aisat_interior{ - name = "\improper MiniSat Central Foyer" - }) "bBp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/structure/extinguisher_cabinet{ pixel_y = -30 }, @@ -46445,13 +44858,13 @@ d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - req_access_txt = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/effect/decal/warning_stripes/east, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, /turf/simulated/floor/plating, /area/maintenance/starboard) "bBr" = ( @@ -46481,9 +44894,6 @@ name = "Arrivals" }) "bBu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/machinery/status_display{ density = 0; layer = 4; @@ -46501,9 +44911,6 @@ name = "Arrivals" }) "bBw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/effect/decal/warning_stripes/northeastcorner, /turf/simulated/floor/plasteel, /area/hallway/secondary/entry{ @@ -46515,9 +44922,6 @@ d2 = 4; icon_state = "2-4" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, /turf/simulated/floor/plasteel, /area/hallway/secondary/entry{ name = "Arrivals" @@ -46528,12 +44932,10 @@ d2 = 8; icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ req_access_txt = 1 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/hallway/secondary/entry{ name = "Arrivals" @@ -46544,10 +44946,6 @@ d2 = 8; icon_state = "1-8" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 2; - initialize_directions = 11 - }, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; @@ -46557,41 +44955,10 @@ /area/hallway/secondary/entry{ name = "Arrivals" }) -"bBA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "arrival" - }, -/area/hallway/secondary/entry{ - name = "Arrivals" - }) -"bBB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plasteel, -/area/hallway/primary/port) -"bBC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - dir = 9; - icon_state = "neutral" - }, -/area/hallway/primary/port) "bBD" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1; - initialize_directions = 11 - }, /turf/simulated/floor/plasteel{ - icon_state = "neutral"; - dir = 1 + dir = 1; + icon_state = "neutral" }, /area/hallway/primary/port) "bBE" = ( @@ -46599,72 +44966,36 @@ codes_txt = "patrol;next_patrol=6-Port-Central"; location = "5-Customs" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1; - initialize_directions = 11 - }, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/turf/simulated/floor/plasteel{ - icon_state = "neutral"; - dir = 1 - }, -/area/hallway/primary/port) -"bBF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/machinery/atmospherics/unary/vent_scrubber{ + dir = 2; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel{ - icon_state = "neutral"; - dir = 1 + dir = 1; + icon_state = "neutral" }, /area/hallway/primary/port) "bBG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /turf/simulated/floor/plasteel{ dir = 5; icon_state = "neutral" }, /area/hallway/primary/port) -"bBH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - icon_state = "neutral"; - dir = 9 - }, -/area/hallway/primary/port) "bBI" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4; - initialize_directions = 11 - }, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plasteel{ - icon_state = "neutralcorner"; - dir = 1 - }, -/area/hallway/primary/port) -"bBJ" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 2; - initialize_directions = 11 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = -30 - }, -/turf/simulated/floor/plasteel{ - dir = 8; + dir = 1; icon_state = "neutralcorner" }, /area/hallway/primary/port) @@ -46673,21 +45004,6 @@ /area/crew_quarters/toilet{ name = "\improper Auxiliary Restrooms" }) -"bBL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/wall, -/area/crew_quarters/toilet{ - name = "\improper Auxiliary Restrooms" - }) -"bBM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/decal/warning_stripes/north, -/turf/simulated/floor/plasteel, -/area/hallway/secondary/entry{ - name = "Arrivals" - }) "bBN" = ( /obj/structure/closet, /obj/effect/decal/cleanable/cobweb2, @@ -46720,6 +45036,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ req_access_txt = 1 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/carpet, /area/library) "bBS" = ( @@ -46738,16 +45055,12 @@ pixel_y = 30 }, /turf/simulated/floor/plasteel{ - tag = "icon-cult"; + dir = 2; icon_state = "cult"; - dir = 2 + tag = "icon-cult" }, /area/library) "bBU" = ( -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 2; - on = 1 - }, /obj/machinery/door_control{ id = "evashutter"; name = "E.V.A. Storage Shutter Control"; @@ -46760,6 +45073,10 @@ pixel_y = -34; req_access_txt = "19" }, +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 8; + on = 1 + }, /turf/simulated/floor/carpet, /area/bridge) "bBV" = ( @@ -46926,6 +45243,9 @@ icon_state = "pipe-j2"; tag = "icon-pipe-j1 (WEST)" }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "neutralcorner" @@ -46970,6 +45290,10 @@ pixel_y = 2; products = list(/obj/item/storage/fancy/cigarettes/cigpack_syndicate = 7, /obj/item/storage/fancy/cigarettes/cigpack_uplift = 3, /obj/item/storage/fancy/cigarettes/cigpack_robust = 2, /obj/item/storage/fancy/cigarettes/cigpack_carp = 3, /obj/item/storage/fancy/cigarettes/cigpack_midori = 1, /obj/item/storage/box/matches = 10, /obj/item/lighter/random = 4) }, +/obj/machinery/atmospherics/unary/vent_scrubber{ + dir = 4; + on = 1 + }, /turf/simulated/floor/wood, /area/crew_quarters/captain{ name = "\improper Captain's Quarters" @@ -46978,9 +45302,12 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, /turf/simulated/floor/carpet{ - tag = "icon-carpet7-3"; - icon_state = "carpet7-3" + icon_state = "carpet7-3"; + tag = "icon-carpet7-3" }, /area/crew_quarters/captain{ name = "\improper Captain's Quarters" @@ -46995,8 +45322,11 @@ icon_state = "1-4" }, /obj/structure/chair/comfy/brown{ - tag = "icon-comfychair (EAST)"; + dir = 4; icon_state = "comfychair"; + tag = "icon-comfychair (EAST)" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/carpet, @@ -47014,6 +45344,9 @@ icon_state = "4-8" }, /obj/item/storage/fancy/donut_box, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/carpet, /area/crew_quarters/captain{ name = "\improper Captain's Quarters" @@ -47032,9 +45365,12 @@ icon_state = "pipe-c" }, /obj/structure/chair/comfy/brown{ - tag = "icon-comfychair (WEST)"; + dir = 8; icon_state = "comfychair"; - dir = 8 + tag = "icon-comfychair (WEST)" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 }, /turf/simulated/floor/carpet, /area/crew_quarters/captain{ @@ -47053,21 +45389,12 @@ dir = 4 }, /turf/simulated/floor/carpet{ - tag = "icon-carpet11-12"; - icon_state = "carpet11-12" + icon_state = "carpet11-12"; + tag = "icon-carpet11-12" }, /area/crew_quarters/captain{ name = "\improper Captain's Quarters" }) -"bCs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/decal/warning_stripes/northwestcorner, -/turf/simulated/floor/plasteel, -/area/hallway/secondary/entry{ - name = "Arrivals" - }) "bCt" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -47081,13 +45408,19 @@ name = "Port Maintenance" }) "bCu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/computer/security/telescreen{ dir = 8; name = "MiniSat Monitor"; network = list("MiniSat","tcomm"); pixel_x = 29 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9; + level = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "caution" @@ -47102,12 +45435,13 @@ /area/crew_quarters/bar) "bCw" = ( /obj/structure/transit_tube{ - tag = "icon-N-SE"; - icon_state = "N-SE" + icon_state = "N-SE"; + tag = "icon-N-SE" }, /obj/structure/window/reinforced{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -47156,7 +45490,6 @@ }, /area/bridge) "bCB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/alarm{ dir = 4; pixel_x = -23 @@ -47194,6 +45527,7 @@ /obj/structure/extinguisher_cabinet{ pixel_x = 27 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "neutralcorner" @@ -47205,7 +45539,6 @@ d2 = 8; icon_state = "1-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/wood, /area/crew_quarters/bar) @@ -47233,6 +45566,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ req_access_txt = 1 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/maintenance/starboard) "bCJ" = ( @@ -47257,6 +45591,9 @@ d2 = 2; icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "neutralcorner" @@ -47264,9 +45601,6 @@ /area/hallway/primary/starboard) "bCL" = ( /obj/structure/rack, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /obj/item/clothing/mask/breath{ pixel_x = 4 }, @@ -47279,6 +45613,9 @@ /obj/item/tank/emergency_oxygen{ pixel_x = -8 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -47301,35 +45638,11 @@ name = "Atmospherics"; req_access_txt = "24" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/atmos) -"bCP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/wall, -/area/atmos) -"bCQ" = ( -/obj/machinery/atmospherics/pipe/simple/visible/universal{ - dir = 4; - layer = 4.4 - }, -/turf/simulated/wall/r_wall, -/area/atmos) "bCR" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/purple{ - tag = "icon-map (NORTH)"; - icon_state = "map"; - dir = 1 - }, -/turf/simulated/wall/r_wall, -/area/atmos) -"bCS" = ( -/obj/machinery/atmospherics/pipe/simple/visible/purple{ - tag = "icon-intact (SOUTHWEST)"; - icon_state = "intact"; - dir = 10 - }, +/obj/machinery/atmospherics/pipe/simple/visible/universal, /turf/simulated/wall/r_wall, /area/atmos) "bCT" = ( @@ -47338,24 +45651,7 @@ }, /turf/simulated/wall/r_wall, /area/atmos) -"bCU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5; - level = 1 - }, -/turf/simulated/wall/r_wall, -/area/atmos) -"bCV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/wall/r_wall, -/area/atmos) "bCW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 - }, /obj/machinery/power/apc{ dir = 2; name = "AI Satellite Teleporter APC"; @@ -47370,14 +45666,6 @@ name = "\improper MiniSat Teleporter Foyer" }) "bCX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6; - level = 1 - }, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "darkbluecorners" @@ -47387,8 +45675,8 @@ }) "bCY" = ( /obj/structure/transit_tube{ - tag = "icon-D-NE"; - icon_state = "D-NE" + icon_state = "D-NE"; + tag = "icon-D-NE" }, /obj/structure/window/reinforced{ dir = 4 @@ -47396,36 +45684,20 @@ /obj/structure/rack, /obj/item/clothing/suit/storage/hazardvest, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 + dir = 9 }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, /area/space/nearstation) -"bCZ" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - level = 1 - }, -/turf/simulated/floor/plasteel{ - dir = 2; - icon_state = "darkbluecorners" - }, -/area/turret_protected/aisat_interior{ - name = "\improper MiniSat Central Foyer" - }) "bDa" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - level = 1 - }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -47449,17 +45721,7 @@ /area/tcommsat/computer{ name = "\improper Telecoms Control Room" }) -"bDc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 - }, -/turf/simulated/wall/r_wall, -/area/turret_protected/tcomeast{ - name = "\improper MiniSat East Wing" - }) "bDd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/showcase{ density = 0; desc = "An old, deactivated cyborg. Whilst once actively used to guard against intruders, it now simply intimidates them with its cold, steely gaze."; @@ -47482,6 +45744,7 @@ d2 = 2; icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ icon_state = "grimy" }, @@ -47548,17 +45811,10 @@ name = "\improper Telecoms Control Room" }) "bDi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 - }, /obj/machinery/light/small{ - tag = "icon-bulb1 (EAST)"; + dir = 4; icon_state = "bulb1"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 + tag = "icon-bulb1 (EAST)" }, /mob/living/simple_animal/bot/floorbot{ on = 0 @@ -47670,9 +45926,11 @@ /obj/structure/extinguisher_cabinet{ pixel_x = 27 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ - icon_state = "neutral"; - dir = 4 + dir = 4; + icon_state = "neutral" }, /area/hallway/primary/port) "bDr" = ( @@ -47710,7 +45968,9 @@ d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "bluecorner" @@ -47726,6 +45986,7 @@ dir = 1; pixel_y = -24 }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "arrival" @@ -47742,6 +46003,9 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "arrival" @@ -47760,9 +46024,9 @@ pixel_x = 30 }, /turf/simulated/floor/plasteel{ - tag = "icon-cult"; + dir = 2; icon_state = "cult"; - dir = 2 + tag = "icon-cult" }, /area/library) "bDx" = ( @@ -47773,6 +46037,9 @@ dir = 1; pixel_y = -22 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, /turf/simulated/floor/plasteel{ dir = 10; icon_state = "neutral" @@ -47782,11 +46049,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/firealarm{ dir = 2; pixel_y = -24 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, /turf/simulated/floor/plasteel{ icon_state = "neutral" }, @@ -47801,19 +46070,27 @@ /obj/machinery/light{ dir = 1 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, /area/bridge) "bDA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, /obj/structure/cable/yellow{ d1 = 2; d2 = 8; icon_state = "2-8" }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1; + initialize_directions = 11 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1; + level = 1 + }, /turf/simulated/floor/plasteel{ icon_state = "neutral" }, @@ -47824,9 +46101,16 @@ icon_state = "alarm0"; pixel_y = -22 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4; + level = 1 + }, /turf/simulated/floor/plasteel{ - icon_state = "neutral"; - dir = 6 + dir = 6; + icon_state = "neutral" }, /area/hallway/primary/port) "bDC" = ( @@ -47839,15 +46123,19 @@ icon_state = "map-left-MS"; pixel_y = -32 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4; + level = 1 + }, /turf/simulated/floor/plasteel{ - icon_state = "neutral"; - dir = 10 + dir = 10; + icon_state = "neutral" }, /area/hallway/primary/port) "bDE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, /obj/structure/cable/yellow{ d1 = 1; d2 = 4; @@ -47858,22 +46146,28 @@ icon_state = "map-right-MS"; pixel_y = -32 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4; + level = 1 + }, /turf/simulated/floor/plasteel{ icon_state = "neutral" }, /area/hallway/primary/port) "bDF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/plasteel{ - icon_state = "neutral"; - dir = 6 + dir = 6; + icon_state = "neutral" }, /area/hallway/primary/port) "bDG" = ( @@ -47890,6 +46184,10 @@ d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4; + level = 1 + }, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" }, @@ -47910,6 +46208,10 @@ name = "old sink"; pixel_y = 28 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4; + level = 1 + }, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" }, @@ -47917,10 +46219,6 @@ name = "\improper Auxiliary Restrooms" }) "bDI" = ( -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 1; - on = 1 - }, /obj/structure/sink/kitchen{ desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; name = "old sink"; @@ -47930,6 +46228,9 @@ name = "xeno_spawn"; pixel_x = -1 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, /turf/simulated/floor/plating, /area/crew_quarters/toilet{ name = "\improper Auxiliary Restrooms" @@ -47951,6 +46252,9 @@ }, /obj/machinery/light, /obj/effect/decal/warning_stripes/south, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, /turf/simulated/floor/plasteel, /area/hallway/secondary/entry{ name = "Arrivals" @@ -47985,6 +46289,9 @@ /obj/structure/window/reinforced/tinted{ dir = 8 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -48000,9 +46307,9 @@ /area/library) "bDO" = ( /turf/simulated/floor/plasteel{ - tag = "icon-cult"; + dir = 2; icon_state = "cult"; - dir = 2 + tag = "icon-cult" }, /area/library) "bDP" = ( @@ -48010,9 +46317,9 @@ dir = 1 }, /turf/simulated/floor/plasteel{ - tag = "icon-cult"; + dir = 2; icon_state = "cult"; - dir = 2 + tag = "icon-cult" }, /area/library) "bDQ" = ( @@ -48039,6 +46346,10 @@ /obj/structure/chair/stool{ pixel_y = 8 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5; + level = 1 + }, /turf/simulated/floor/wood, /area/crew_quarters/bar) "bDS" = ( @@ -48101,6 +46412,9 @@ req_access = null; req_access_txt = "19" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -48196,26 +46510,27 @@ }) "bEi" = ( /turf/simulated/floor/carpet{ - tag = "icon-carpet6-2"; - icon_state = "carpet6-2" + icon_state = "carpet6-2"; + tag = "icon-carpet6-2" }, /area/crew_quarters/captain{ name = "\improper Captain's Quarters" }) "bEj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/carpet{ - tag = "icon-carpet15-11"; - icon_state = "carpet15-11" + icon_state = "carpet15-11"; + tag = "icon-carpet15-11" }, /area/crew_quarters/captain{ name = "\improper Captain's Quarters" }) "bEk" = ( /obj/structure/chair/comfy/brown{ - tag = "icon-comfychair (EAST)"; + dir = 4; icon_state = "comfychair"; - dir = 4 + tag = "icon-comfychair (EAST)" }, /turf/simulated/floor/carpet, /area/crew_quarters/captain{ @@ -48230,9 +46545,9 @@ }) "bEm" = ( /obj/structure/chair/comfy/brown{ - tag = "icon-comfychair (WEST)"; + dir = 8; icon_state = "comfychair"; - dir = 8 + tag = "icon-comfychair (WEST)" }, /turf/simulated/floor/carpet, /area/crew_quarters/captain{ @@ -48245,12 +46560,12 @@ pixel_x = 24 }, /obj/machinery/light{ - icon_state = "tube1"; - dir = 4 + dir = 4; + icon_state = "tube1" }, /turf/simulated/floor/carpet{ - tag = "icon-carpet11-12"; - icon_state = "carpet11-12" + icon_state = "carpet11-12"; + tag = "icon-carpet11-12" }, /area/crew_quarters/captain{ name = "\improper Captain's Quarters" @@ -48279,7 +46594,6 @@ }, /area/crew_quarters/bar) "bEp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/firealarm{ dir = 8; pixel_x = -24 @@ -48365,23 +46679,17 @@ dir = 1; icon_state = "pipe-c" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, /obj/structure/chair/stool{ pixel_y = 8 }, /turf/simulated/floor/wood, /area/crew_quarters/bar) "bEz" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 2; - initialize_directions = 11 - }, /obj/structure/disposalpipe/junction{ - icon_state = "pipe-j2"; - dir = 4 + dir = 4; + icon_state = "pipe-j2" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood, /area/crew_quarters/bar) "bEA" = ( @@ -48389,9 +46697,6 @@ dir = 2; icon_state = "pipe-c" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, /turf/simulated/floor/wood, /area/crew_quarters/bar) "bEB" = ( @@ -48456,10 +46761,10 @@ loot = list(/obj/structure/grille,/obj/structure/grille,/obj/structure/grille,/obj/structure/grille,/obj/structure/grille,/obj/item/cigbutt,/obj/item/trash/cheesie,/obj/item/trash/candy,/obj/item/trash/chips,/obj/item/trash/pistachios,/obj/item/trash/plate,/obj/item/trash/popcorn,/obj/item/trash/raisins,/obj/item/trash/sosjerky,/obj/item/trash/syndi_cakes); name = "maint grille or trash spawner" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/maintenance/starboard) "bEI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/item/radio/beacon, /turf/simulated/floor/plasteel{ dir = 8; @@ -48471,6 +46776,9 @@ dir = 1 }, /obj/effect/decal/warning_stripes/southwestcorner, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, /turf/simulated/floor/plasteel, /area/hallway/secondary/entry{ name = "Arrivals" @@ -48574,8 +46882,11 @@ dir = 4; pixel_x = -23 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 + dir = 5 }, /turf/simulated/floor/plasteel{ dir = 8; @@ -48589,6 +46900,7 @@ d2 = 2; icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/atmos) "bES" = ( @@ -48604,6 +46916,9 @@ pixel_y = -32 }, /obj/effect/decal/warning_stripes/south, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, /turf/simulated/floor/plasteel, /area/hallway/secondary/entry{ name = "Arrivals" @@ -48641,7 +46956,6 @@ /obj/machinery/light{ dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/visible/purple, /obj/machinery/atmospherics/binary/volume_pump/on{ dir = 8; name = "Distro to Waste"; @@ -48666,9 +46980,9 @@ /area/atmos) "bEX" = ( /obj/machinery/atmospherics/pipe/manifold/visible/purple{ - tag = "icon-map (NORTH)"; + dir = 1; icon_state = "map"; - dir = 1 + tag = "icon-map (NORTH)" }, /turf/simulated/floor/plasteel{ dir = 1; @@ -48679,7 +46993,6 @@ /obj/machinery/alarm{ pixel_y = 25 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/camera{ c_tag = "Atmospherics - Distro Loop"; network = list("SS13") @@ -48714,9 +47027,12 @@ dir = 4; icon_state = "tube1" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, /turf/simulated/floor/plasteel{ - icon_state = "caution"; - dir = 4 + dir = 4; + icon_state = "caution" }, /area/hallway/primary/starboard) "bFb" = ( @@ -48764,10 +47080,6 @@ name = "Arrivals" }) "bFf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 - }, /obj/machinery/computer/monitor{ name = "Grid Power Monitoring Computer" }, @@ -48795,12 +47107,6 @@ name = "\improper MiniSat Exterior" }) "bFh" = ( -/obj/machinery/atmospherics/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 1; - scrub_Toxins = 1 - }, /obj/structure/closet/emcloset, /turf/simulated/floor/plasteel{ dir = 8; @@ -48825,9 +47131,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, /turf/simulated/floor/plasteel{ icon_state = "grimy" }, @@ -48881,6 +47184,9 @@ pixel_y = -32 }, /obj/effect/decal/warning_stripes/south, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, /turf/simulated/floor/plasteel, /area/hallway/secondary/entry{ name = "Arrivals" @@ -48903,10 +47209,6 @@ "bFp" = ( /turf/simulated/wall, /area/security/vacantoffice) -"bFq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/wall, -/area/security/vacantoffice) "bFr" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/centcom{ @@ -48920,6 +47222,7 @@ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "carpetsymbol" @@ -48945,6 +47248,7 @@ /obj/structure/mirror{ pixel_x = 28 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plating, /area/crew_quarters/toilet{ name = "\improper Auxiliary Restrooms" @@ -48985,6 +47289,7 @@ name = "Station Intercom (General)"; pixel_x = 27 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/carpet, /area/library) "bFy" = ( @@ -48993,9 +47298,9 @@ req_access_txt = "0" }, /turf/simulated/floor/plasteel{ - tag = "icon-cult"; + dir = 2; icon_state = "cult"; - dir = 2 + tag = "icon-cult" }, /area/library) "bFz" = ( @@ -49004,9 +47309,9 @@ req_access_txt = "0" }, /turf/simulated/floor/plasteel{ - tag = "icon-cult"; + dir = 2; icon_state = "cult"; - dir = 2 + tag = "icon-cult" }, /area/library) "bFA" = ( @@ -49024,6 +47329,7 @@ dir = 4; network = list("SS13") }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "neutralcorner" @@ -49053,21 +47359,6 @@ /obj/effect/decal/warning_stripes/yellow, /turf/simulated/floor/plasteel, /area/engine/break_room) -"bFE" = ( -/obj/machinery/door/poddoor{ - density = 0; - icon_state = "open"; - id_tag = "atmos"; - name = "Atmos Blast Door"; - opacity = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/decal/warning_stripes/yellow, -/turf/simulated/floor/plasteel, -/area/engine/break_room) "bFF" = ( /obj/machinery/door/poddoor{ density = 0; @@ -49081,10 +47372,9 @@ d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, /obj/effect/decal/warning_stripes/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/engine/break_room) "bFG" = ( @@ -49097,6 +47387,9 @@ pixel_y = -32 }, /obj/effect/decal/warning_stripes/south, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, /turf/simulated/floor/plasteel, /area/hallway/secondary/entry{ name = "Arrivals" @@ -49121,23 +47414,26 @@ name = "Station Intercom (General)"; pixel_y = -25 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, /turf/simulated/floor/plasteel{ - icon_state = "arrival"; - dir = 6 + dir = 6; + icon_state = "arrival" }, /area/hallway/secondary/entry{ name = "Arrivals" }) "bFK" = ( -/obj/machinery/atmospherics/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_N2O = 1; - scrub_Toxins = 1 - }, /obj/machinery/vending/coffee{ pixel_x = -3 }, +/obj/machinery/atmospherics/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -49158,9 +47454,9 @@ /area/bridge) "bFM" = ( /obj/structure/chair/comfy/teal{ - tag = "icon-comfychair (EAST)"; + dir = 4; icon_state = "comfychair"; - dir = 4 + tag = "icon-comfychair (EAST)" }, /obj/structure/chair/comfy/black{ dir = 4 @@ -49247,19 +47543,13 @@ pixel_x = -24 }, /turf/simulated/floor/carpet{ - tag = "icon-carpet5-1"; - icon_state = "carpet5-1" + icon_state = "carpet5-1"; + tag = "icon-carpet5-1" }, /area/crew_quarters/captain{ name = "\improper Captain's Quarters" }) "bFW" = ( -/obj/machinery/atmospherics/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, /obj/structure/cable/yellow{ d1 = 1; d2 = 4; @@ -49273,14 +47563,15 @@ layer = 4; pixel_y = -32 }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/plasteel{ icon_state = "neutral" }, /area/hallway/primary/port) "bFX" = ( /turf/simulated/floor/carpet{ - tag = "icon-carpetside"; - icon_state = "carpetside" + icon_state = "carpetside"; + tag = "icon-carpetside" }, /area/crew_quarters/captain{ name = "\improper Captain's Quarters" @@ -49297,6 +47588,7 @@ /obj/structure/extinguisher_cabinet{ pixel_x = -27 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "neutralcorner" @@ -49432,33 +47724,14 @@ /area/bridge) "bGl" = ( /obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, /obj/structure/chair/stool{ pixel_y = 8 }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bGm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/theatre) -"bGn" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1; - initialize_directions = 11 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/theatre) "bGo" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 + dir = 6 }, /turf/simulated/floor/carpet, /area/crew_quarters/theatre) @@ -49493,8 +47766,7 @@ /obj/machinery/atmospherics/unary/portables_connector{ dir = 4 }, -/obj/machinery/portable_atmospherics/pump, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/portable_atmospherics/scrubber, /obj/structure/window/reinforced{ dir = 1 }, @@ -49504,8 +47776,8 @@ network = list("SS13") }, /turf/simulated/floor/plasteel{ - icon_state = "arrival"; - dir = 8 + dir = 8; + icon_state = "arrival" }, /area/hallway/primary/starboard) "bGs" = ( @@ -49514,22 +47786,17 @@ d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "neutralcorner" }, /area/hallway/primary/starboard) "bGt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, /turf/simulated/floor/plasteel{ - icon_state = "caution"; - dir = 4 + dir = 4; + icon_state = "caution" }, /area/hallway/primary/starboard) "bGu" = ( @@ -49552,8 +47819,8 @@ pixel_x = 32 }, /turf/simulated/floor/plasteel{ - icon_state = "caution"; - dir = 4 + dir = 4; + icon_state = "caution" }, /area/hallway/primary/starboard) "bGw" = ( @@ -49615,8 +47882,8 @@ /area/atmos) "bGA" = ( /obj/machinery/light{ - icon_state = "tube1"; - dir = 8 + dir = 8; + icon_state = "tube1" }, /obj/structure/table, /obj/item/stack/sheet/metal{ @@ -49652,6 +47919,7 @@ d2 = 8; icon_state = "1-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/atmos) "bGD" = ( @@ -49756,8 +48024,8 @@ pixel_x = 26 }, /turf/simulated/floor/plasteel{ - icon_state = "caution"; - dir = 5 + dir = 5; + icon_state = "caution" }, /area/atmos) "bGQ" = ( @@ -49777,13 +48045,10 @@ name = "\improper Toxins Lab" }) "bGR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/structure/closet/firecloset, /turf/simulated/floor/plasteel{ - icon_state = "caution"; - dir = 4 + dir = 4; + icon_state = "caution" }, /area/hallway/primary/starboard) "bGS" = ( @@ -49860,8 +48125,8 @@ }) "bGX" = ( /turf/simulated/shuttle/wall{ - icon_state = "swall12"; - dir = 2 + dir = 2; + icon_state = "swall12" }, /area/shuttle/transport) "bGY" = ( @@ -49877,8 +48142,8 @@ "bHa" = ( /turf/space, /turf/simulated/shuttle/wall{ - icon_state = "swall_f10"; - dir = 2 + dir = 2; + icon_state = "swall_f10" }, /area/shuttle/transport) "bHb" = ( @@ -49934,6 +48199,7 @@ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood, /area/security/vacantoffice) "bHh" = ( @@ -50094,8 +48360,8 @@ /area/library) "bHx" = ( /obj/item/twohanded/required/kirbyplants{ - tag = "icon-plant-22"; - icon_state = "plant-22" + icon_state = "plant-22"; + tag = "icon-plant-22" }, /turf/simulated/floor/wood, /area/library) @@ -50122,9 +48388,10 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/carpet{ - tag = "icon-carpetside"; - icon_state = "carpetside" + icon_state = "carpetside"; + tag = "icon-carpetside" }, /area/crew_quarters/captain{ name = "\improper Captain's Quarters" @@ -50136,8 +48403,8 @@ "bHB" = ( /obj/machinery/vending/cola, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/bridge/meeting_room{ name = "\improper Command Hallway" @@ -50152,17 +48419,13 @@ }, /mob/living/simple_animal/pet/dog/fox/Renault, /turf/simulated/floor/carpet{ - tag = "icon-carpetside"; - icon_state = "carpetside" + icon_state = "carpetside"; + tag = "icon-carpetside" }, /area/crew_quarters/captain{ name = "\improper Captain's Quarters" }) "bHD" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8; - initialize_directions = 11 - }, /obj/machinery/door_control{ id = "bridge blast"; name = "Bridge Access Blast Door Control"; @@ -50170,6 +48433,7 @@ pixel_y = -24; req_access_txt = "19" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -50182,13 +48446,6 @@ /obj/structure/table/wood/poker, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bHF" = ( -/obj/effect/spawner/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/atmos) "bHG" = ( /obj/effect/spawner/window/reinforced, /obj/machinery/atmospherics/pipe/simple/visible/yellow{ @@ -50197,18 +48454,12 @@ /turf/simulated/floor/plating, /area/atmos) "bHH" = ( -/obj/machinery/atmospherics/unary/vent_scrubber{ - dir = 2; - on = 1; - scrub_N2O = 1; - scrub_Toxins = 1 - }, /obj/structure/extinguisher_cabinet{ pixel_x = 27 }, /turf/simulated/floor/carpet{ - tag = "icon-carpet9-4"; - icon_state = "carpet9-4" + icon_state = "carpet9-4"; + tag = "icon-carpet9-4" }, /area/crew_quarters/captain{ name = "\improper Captain's Quarters" @@ -50244,7 +48495,6 @@ name = "Central Maintenance" }) "bHL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/light{ dir = 8 }, @@ -50312,6 +48562,9 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 2 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/wood, /area/crew_quarters/bar) "bHU" = ( @@ -50320,17 +48573,6 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/theatre) -"bHV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5; - level = 1 - }, -/obj/machinery/vending/medical, -/turf/simulated/floor/plasteel{ - dir = 10; - icon_state = "whiteblue" - }, -/area/medical/reception) "bHW" = ( /turf/simulated/floor/carpet, /area/crew_quarters/theatre) @@ -50355,33 +48597,21 @@ /obj/machinery/atmospherics/unary/portables_connector{ dir = 4 }, -/obj/machinery/portable_atmospherics/pump, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/portable_atmospherics/scrubber, /turf/simulated/floor/plasteel{ - icon_state = "arrival"; - dir = 8 + dir = 8; + icon_state = "arrival" }, /area/hallway/primary/starboard) "bIa" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/plasteel{ - icon_state = "caution"; - dir = 4 + dir = 4; + icon_state = "caution" }, /area/hallway/primary/starboard) -"bIb" = ( -/obj/machinery/atmospherics/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/simulated/floor/plasteel{ - icon_state = "grimy" - }, -/area/security/detectives_office) "bIc" = ( /obj/structure/chair{ dir = 8 @@ -50389,6 +48619,9 @@ /obj/effect/landmark/start{ name = "Life Support Specialist" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "caution" @@ -50401,9 +48634,10 @@ }, /area/atmos) "bIe" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8; - initialize_directions = 11 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/binary/volume_pump/on{ + dir = 4; + name = "External to Filter" }, /turf/simulated/floor/plasteel{ dir = 2; @@ -50411,8 +48645,10 @@ }, /area/atmos) "bIf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 10; + icon_state = "intact"; + tag = "icon-intact (SOUTHWEST)" }, /turf/simulated/floor/plasteel{ dir = 2; @@ -50420,9 +48656,6 @@ }, /area/atmos) "bIg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/machinery/computer/general_air_control{ frequency = 1443; level = 3; @@ -50431,8 +48664,8 @@ sensors = list("mair_in_meter" = "Mixed Air In", "air_sensor" = "Mixed Air Supply Tank", "mair_out_meter" = "Mixed Air Out", "dloop_atm_meter" = "Distribution Loop", "wloop_atm_meter" = "Waste Loop") }, /turf/simulated/floor/plasteel{ - icon_state = "caution"; - dir = 4 + dir = 4; + icon_state = "caution" }, /area/atmos) "bIh" = ( @@ -50452,9 +48685,6 @@ /obj/item/t_scanner, /obj/item/t_scanner, /obj/item/t_scanner, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "caution" @@ -50466,24 +48696,23 @@ d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/machinery/atmospherics/unary/vent_scrubber{ + dir = 4; + on = 1 }, /turf/simulated/floor/plasteel, /area/atmos) "bIk" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4; + initialize_directions = 11 }, /turf/simulated/floor/plasteel, /area/atmos) "bIl" = ( /obj/machinery/space_heater, /obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, /obj/effect/decal/warning_stripes/southwest, /turf/simulated/floor/plasteel, /area/atmos) @@ -50590,8 +48819,8 @@ pixel_y = -26 }, /turf/simulated/floor/carpet{ - tag = "icon-carpetside"; - icon_state = "carpetside" + icon_state = "carpetside"; + tag = "icon-carpetside" }, /area/crew_quarters/captain{ name = "\improper Captain's Quarters" @@ -50608,8 +48837,8 @@ }) "bIA" = ( /obj/item/twohanded/required/kirbyplants{ - tag = "icon-plant-21"; - icon_state = "plant-21" + icon_state = "plant-21"; + tag = "icon-plant-21" }, /turf/simulated/floor/plasteel{ icon_state = "grimy" @@ -50627,12 +48856,6 @@ /area/tcommsat/computer{ name = "\improper Telecoms Control Room" }) -"bIC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/wall/r_wall, -/area/turret_protected/aisat_interior{ - name = "\improper MiniSat Central Foyer" - }) "bID" = ( /obj/structure/table/reinforced, /obj/item/lighter/zippo, @@ -50663,15 +48886,15 @@ "bIG" = ( /turf/simulated/shuttle/floor, /turf/simulated/shuttle/wall/interior{ - tag = "icon-swall_f9"; - icon_state = "swall_f9" + icon_state = "swall_f9"; + tag = "icon-swall_f9" }, /area/shuttle/transport) "bIH" = ( /obj/machinery/light/spot{ - tag = "icon-tube1 (NORTH)"; + dir = 1; icon_state = "tube1"; - dir = 1 + tag = "icon-tube1 (NORTH)" }, /obj/structure/chair/comfy/shuttle{ dir = 4 @@ -50688,9 +48911,9 @@ /area/shuttle/transport) "bIK" = ( /obj/machinery/light/spot{ - tag = "icon-tube1 (NORTH)"; + dir = 1; icon_state = "tube1"; - dir = 1 + tag = "icon-tube1 (NORTH)" }, /obj/structure/chair/comfy/shuttle, /turf/simulated/shuttle/floor, @@ -50699,6 +48922,9 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/wood, /area/crew_quarters/bar) "bIM" = ( @@ -50718,7 +48944,9 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/carpet, /area/crew_quarters/theatre) "bIO" = ( @@ -50741,17 +48969,9 @@ name = "test chamber blast door"; opacity = 0 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/engine, /area/toxins/explab) -"bIQ" = ( -/obj/machinery/atmospherics/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/simulated/floor/wood, -/area/security/vacantoffice) "bIR" = ( /obj/structure/table/wood, /turf/simulated/floor/wood, @@ -50830,8 +49050,8 @@ pixel_x = 30 }, /turf/simulated/floor/plasteel{ - icon_state = "caution"; - dir = 4 + dir = 4; + icon_state = "caution" }, /area/atmos) "bIZ" = ( @@ -50844,13 +49064,19 @@ /turf/simulated/floor/wood, /area/library) "bJa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, /turf/simulated/floor/carpet, /area/library) "bJb" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8; + initialize_directions = 11 + }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "neutralcorner" @@ -50870,16 +49096,21 @@ icon_state = "pipe-j1"; tag = "icon-pipe-j1 (EAST)" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel, /area/hallway/primary/central) "bJd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /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" @@ -50896,6 +49127,9 @@ /obj/machinery/door/airlock/public/glass{ name = "Command Hallway" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "neutralcorner" @@ -50910,6 +49144,9 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "neutralcorner" @@ -50924,6 +49161,9 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "neutralcorner" @@ -50941,6 +49181,9 @@ /obj/effect/landmark{ name = "lightsout" }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "neutralcorner" @@ -50960,6 +49203,9 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "neutralcorner" @@ -50968,13 +49214,13 @@ name = "\improper Command Hallway" }) "bJj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "neutralcorner" @@ -50987,6 +49233,9 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "neutralcorner" @@ -51035,9 +49284,12 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ - icon_state = "neutral"; - dir = 1 + dir = 1; + icon_state = "neutral" }, /area/bridge/meeting_room{ name = "\improper Command Hallway" @@ -51046,6 +49298,9 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "neutralcorner" @@ -51060,6 +49315,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" @@ -51079,9 +49337,12 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ - icon_state = "neutral"; - dir = 1 + dir = 1; + icon_state = "neutral" }, /area/bridge/meeting_room{ name = "\improper Command Hallway" @@ -51094,9 +49355,12 @@ dir = 2; icon_state = "pipe-c" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ - icon_state = "neutral"; - dir = 1 + dir = 1; + icon_state = "neutral" }, /area/bridge/meeting_room{ name = "\improper Command Hallway" @@ -51105,6 +49369,9 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "neutralcorner" @@ -51119,6 +49386,9 @@ /obj/machinery/ai_status_display{ pixel_y = 32 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "neutralcorner" @@ -51131,7 +49401,6 @@ /obj/machinery/light_switch{ pixel_x = -28 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/item/folder, /turf/simulated/floor/wood, /area/security/vacantoffice) @@ -51144,6 +49413,9 @@ d2 = 2; icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "neutralcorner" @@ -51153,6 +49425,9 @@ }) "bJw" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "neutralcorner" @@ -51164,6 +49439,9 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "neutralcorner" @@ -51178,6 +49456,7 @@ /obj/effect/landmark{ name = "lightsout" }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "neutralcorner" @@ -51223,7 +49502,9 @@ /obj/machinery/alarm{ pixel_y = 32 }, -/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" @@ -51240,6 +49521,9 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 2 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "neutralcorner" @@ -51255,6 +49539,9 @@ /obj/machinery/door/airlock/public/glass{ name = "Command Hallway" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "neutralcorner" @@ -51262,16 +49549,6 @@ /area/bridge/meeting_room{ name = "\improper Command Hallway" }) -"bJE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "neutralcorner" - }, -/area/hallway/primary/central) "bJF" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -51281,6 +49558,9 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel, /area/hallway/primary/central) "bJG" = ( @@ -51331,6 +49611,9 @@ /obj/structure/window/reinforced{ dir = 8 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/carpet, /area/crew_quarters/theatre) "bJM" = ( @@ -51340,6 +49623,7 @@ /obj/effect/landmark/start{ name = "Civilian" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood, /area/crew_quarters/bar) "bJN" = ( @@ -51351,7 +49635,6 @@ /area/crew_quarters/theatre) "bJO" = ( /obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/carpet, /area/crew_quarters/theatre) "bJP" = ( @@ -51379,8 +49662,7 @@ /obj/machinery/atmospherics/unary/portables_connector{ dir = 4 }, -/obj/machinery/portable_atmospherics/scrubber, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/portable_atmospherics/pump, /obj/structure/window/reinforced{ dir = 1 }, @@ -51415,23 +49697,43 @@ /area/atmos) "bJT" = ( /obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "neutralcorner" }, /area/atmos) "bJU" = ( -/turf/simulated/floor/plasteel{ - icon_state = "caution"; +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "caution" + }, /area/atmos) "bJV" = ( /obj/machinery/door/airlock/atmos/glass{ name = "Atmospherics Monitoring"; req_access_txt = "24" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 4 + }, /turf/simulated/floor/plasteel, /area/atmos) "bJW" = ( @@ -51446,15 +49748,30 @@ d2 = 2; icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 10; + icon_state = "intact"; + tag = "icon-intact (SOUTHWEST)" + }, /turf/simulated/floor/plasteel, /area/atmos) "bJY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, /turf/simulated/floor/plasteel, /area/atmos) "bJZ" = ( /obj/structure/closet/crate, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/atmos) "bKa" = ( @@ -51468,19 +49785,20 @@ dir = 8; name = "Mix to Filter" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/atmos) "bKc" = ( /obj/machinery/atmospherics/pipe/manifold/visible/yellow{ - tag = "icon-manifold-y (EAST)"; - dir = 4 + dir = 4; + tag = "icon-manifold-y (EAST)" }, /turf/simulated/floor/plasteel, /area/atmos) "bKd" = ( /obj/machinery/atmospherics/pipe/simple/visible/green{ - tag = "icon-intact-g (SOUTHEAST)"; - dir = 6 + dir = 6; + tag = "icon-intact-g (SOUTHEAST)" }, /turf/simulated/floor/plasteel, /area/atmos) @@ -51489,12 +49807,13 @@ dir = 1; tag = "icon-manifold-g (NORTH)" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel, /area/atmos) "bKf" = ( /obj/machinery/atmospherics/pipe/manifold/visible/green{ - tag = "icon-manifold-g (EAST)"; - dir = 4 + dir = 4; + tag = "icon-manifold-g (EAST)" }, /turf/simulated/floor/plasteel, /area/atmos) @@ -51508,8 +49827,8 @@ }, /obj/machinery/atmospherics/pipe/simple/visible/cyan, /turf/simulated/floor/plasteel{ - icon_state = "green"; - dir = 4 + dir = 4; + icon_state = "green" }, /area/atmos) "bKh" = ( @@ -51558,6 +49877,9 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, /turf/simulated/floor/carpet, /area/crew_quarters/theatre) "bKn" = ( @@ -51575,7 +49897,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 }, /turf/simulated/floor/plasteel{ @@ -51619,19 +49941,18 @@ /obj/structure/window/reinforced{ dir = 1 }, -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 8; - on = 1 - }, /obj/machinery/light/small{ - tag = "icon-bulb1 (EAST)"; + dir = 4; icon_state = "bulb1"; - dir = 4 + tag = "icon-bulb1 (EAST)" }, /obj/machinery/camera/motion{ c_tag = "AI Satellite Exterior South West"; dir = 8 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -51775,47 +50096,12 @@ /area/hallway/secondary/entry{ name = "Arrivals" }) -"bKG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/carpet, -/area/library) -"bKH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - req_access_txt = 1 - }, -/turf/simulated/floor/carpet, -/area/library) "bKI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/carpet, /area/library) -"bKJ" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 2; - initialize_directions = 11 - }, -/turf/simulated/floor/carpet, -/area/library) -"bKK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Library" - }, -/turf/simulated/floor/plasteel{ - dir = 2; - icon_state = "carpetsymbol" - }, -/area/library) "bKL" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -51828,9 +50114,6 @@ d2 = 4; icon_state = "1-4" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=11.1-Command-Starboard"; location = "11-Command-Port" @@ -51838,10 +50121,6 @@ /turf/simulated/floor/plasteel, /area/hallway/primary/central) "bKM" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8; - initialize_directions = 11 - }, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; @@ -51853,9 +50132,6 @@ }, /area/hallway/primary/central) "bKN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/machinery/door/firedoor, /obj/structure/cable/yellow{ d1 = 4; @@ -51873,9 +50149,6 @@ name = "\improper Command Hallway" }) "bKO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; @@ -51889,9 +50162,6 @@ name = "\improper Command Hallway" }) "bKP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; @@ -51916,10 +50186,7 @@ d2 = 4; icon_state = "2-4" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1; - initialize_directions = 11 - }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "neutralcorner" @@ -51928,12 +50195,6 @@ name = "\improper Command Hallway" }) "bKR" = ( -/obj/machinery/atmospherics/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; @@ -51942,6 +50203,10 @@ /obj/structure/extinguisher_cabinet{ pixel_x = 27 }, +/obj/machinery/atmospherics/unary/vent_scrubber{ + dir = 8; + on = 1 + }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "arrival" @@ -51961,9 +50226,6 @@ /turf/simulated/floor/wood, /area/library) "bKT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; @@ -51981,9 +50243,6 @@ name = "\improper Command Hallway" }) "bKU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/structure/cable/yellow{ d1 = 1; d2 = 4; @@ -52002,9 +50261,6 @@ name = "\improper Command Hallway" }) "bKV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; @@ -52017,23 +50273,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "neutralcorner" - }, -/area/bridge/meeting_room{ - name = "\improper Command Hallway" - }) -"bKW" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1; - initialize_directions = 11 - }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "neutralcorner" @@ -52047,10 +50287,6 @@ d2 = 8; icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 2; - initialize_directions = 11 - }, /obj/machinery/newscaster{ pixel_y = -29 }, @@ -52068,17 +50304,17 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ - icon_state = "neutral"; - dir = 1 + dir = 1; + icon_state = "neutral" }, /area/bridge/meeting_room{ name = "\improper Command Hallway" }) "bKZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; @@ -52097,9 +50333,6 @@ name = "\improper Command Hallway" }) "bLa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; @@ -52115,9 +50348,6 @@ name = "\improper Command Hallway" }) "bLb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; @@ -52133,23 +50363,20 @@ /turf/simulated/floor/plasteel, /area/atmos) "bLd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 1; + on = 1 + }, /turf/simulated/floor/plasteel, /area/bridge/meeting_room{ name = "\improper Command Hallway" }) "bLe" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; @@ -52168,9 +50395,6 @@ name = "\improper Command Hallway" }) "bLf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; @@ -52190,9 +50414,6 @@ name = "\improper Command Hallway" }) "bLg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; @@ -52211,9 +50432,6 @@ name = "\improper Command Hallway" }) "bLh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; @@ -52235,9 +50453,6 @@ name = "\improper Command Hallway" }) "bLi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; @@ -52251,9 +50466,6 @@ name = "\improper Command Hallway" }) "bLj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; @@ -52267,23 +50479,7 @@ d2 = 4; icon_state = "2-4" }, -/turf/simulated/floor/plasteel{ - dir = 2; - icon_state = "neutralcorner" - }, -/area/bridge/meeting_room{ - name = "\improper Command Hallway" - }) -"bLk" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1; - initialize_directions = 11 - }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "neutralcorner" @@ -52300,17 +50496,14 @@ layer = 4; pixel_y = 32 }, -/obj/machinery/atmospherics/unary/vent_scrubber{ - dir = 2; - on = 1; - scrub_N2O = 1; - scrub_Toxins = 1 - }, /obj/structure/disposalpipe/junction{ dir = 8; icon_state = "pipe-j2"; tag = "icon-pipe-j1 (WEST)" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "neutralcorner" @@ -52319,9 +50512,6 @@ name = "\improper Command Hallway" }) "bLm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; @@ -52339,48 +50529,17 @@ /area/bridge/meeting_room{ name = "\improper Command Hallway" }) -"bLn" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - dir = 2; - icon_state = "neutralcorner" - }, -/area/bridge/meeting_room{ - name = "\improper Command Hallway" - }) "bLo" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 2; - initialize_directions = 11 - }, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; icon_state = "4-8" }, -/turf/simulated/floor/plasteel{ - dir = 2; - icon_state = "neutralcorner" - }, -/area/bridge/meeting_room{ - name = "\improper Command Hallway" - }) -"bLp" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 2; - initialize_directions = 11 +/obj/machinery/atmospherics/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 1; + scrub_Toxins = 1 }, /turf/simulated/floor/plasteel{ dir = 2; @@ -52390,9 +50549,6 @@ name = "\improper Command Hallway" }) "bLq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; @@ -52416,9 +50572,6 @@ name = "\improper Command Hallway" }) "bLr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; @@ -52441,10 +50594,6 @@ d2 = 8; icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4; - initialize_directions = 11 - }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "neutralcorner" @@ -52481,6 +50630,10 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8; + initialize_directions = 11 + }, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "neutralcorner" @@ -52499,6 +50652,9 @@ /obj/machinery/door/airlock/public/glass{ name = "Bar" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel, /area/crew_quarters/bar) "bLw" = ( @@ -52510,6 +50666,9 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ icon_state = "bar" }, @@ -52523,7 +50682,7 @@ d2 = 8; icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/plasteel{ icon_state = "bar" }, @@ -52537,6 +50696,9 @@ d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ icon_state = "bar" }, @@ -52550,6 +50712,9 @@ d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ icon_state = "bar" }, @@ -52563,6 +50728,9 @@ d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ icon_state = "bar" }, @@ -52581,6 +50749,9 @@ name = "Club"; opacity = 1 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ icon_state = "bar" }, @@ -52624,19 +50795,6 @@ /area/maintenance/fpmaint2{ name = "Port Maintenance" }) -"bLE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - req_access_txt = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6; - level = 1 - }, -/obj/effect/decal/warning_stripes/west, -/turf/simulated/floor/plasteel, -/area/hallway/secondary/entry{ - name = "Arrivals" - }) "bLF" = ( /obj/machinery/atmospherics/unary/vent_pump{ dir = 2; @@ -52644,13 +50802,6 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bLG" = ( -/obj/effect/spawner/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/bar) "bLH" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -52662,7 +50813,6 @@ /area/crew_quarters/theatre) "bLI" = ( /obj/structure/chair/wood/wings, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/carpet, /area/crew_quarters/theatre) "bLJ" = ( @@ -52672,6 +50822,9 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, /turf/simulated/floor/carpet, /area/crew_quarters/theatre) "bLK" = ( @@ -52693,6 +50846,9 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/wood, /area/crew_quarters/theatre) "bLM" = ( @@ -52713,6 +50869,9 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plating, /area/crew_quarters/theatre) "bLN" = ( @@ -52733,11 +50892,10 @@ /obj/machinery/atmospherics/unary/portables_connector{ dir = 4 }, -/obj/machinery/portable_atmospherics/scrubber, +/obj/machinery/portable_atmospherics/pump, /obj/machinery/light/small{ dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/window/reinforced, /turf/simulated/floor/plasteel{ dir = 8; @@ -52750,28 +50908,27 @@ d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4; - initialize_directions = 11 - }, /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "neutralcorner" }, /area/hallway/primary/starboard) "bLQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/simulated/floor/plasteel{ - icon_state = "caution"; +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "caution" + }, /area/hallway/primary/starboard) "bLR" = ( /obj/structure/cable/yellow{ @@ -52800,6 +50957,9 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "neutralcorner" @@ -52811,6 +50971,9 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/visible/universal{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "neutralcorner" @@ -52820,7 +50983,10 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/binary/volume_pump/on{ + dir = 8; + name = "Air to External" + }, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "neutralcorner" @@ -52831,9 +50997,12 @@ dir = 4 }, /obj/machinery/atmospherics/unary/vent_pump{ - dir = 2; + dir = 1; on = 1 }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "blackcorner" @@ -52855,6 +51024,9 @@ pixel_y = -26; req_access_txt = "24" }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 6; icon_state = "caution" @@ -52862,6 +51034,10 @@ /area/atmos) "bLX" = ( /obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 10; + initialize_directions = 10 + }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "caution" @@ -52873,23 +51049,37 @@ d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/visible/purple{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/visible/purple{ + dir = 8 + }, /turf/simulated/floor/plasteel, /area/atmos) "bLZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/visible/purple{ dir = 4 }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel, /area/atmos) "bMa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/visible/purple{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel, /area/atmos) "bMb" = ( @@ -52900,6 +51090,12 @@ /obj/machinery/atmospherics/pipe/simple/visible/purple{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/plasteel, /area/atmos) "bMc" = ( @@ -52913,6 +51109,9 @@ dir = 9; tag = "icon-intact-y (NORTHWEST)" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/plasteel, /area/atmos) "bMe" = ( @@ -52921,13 +51120,20 @@ name = "Pure to Mix"; on = 0 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/plasteel, /area/atmos) "bMf" = ( /obj/machinery/atmospherics/pipe/simple/visible/green{ - tag = "icon-intact-g (NORTHEAST)"; dir = 5; - initialize_directions = 12 + initialize_directions = 12; + tag = "icon-intact-g (NORTHEAST)" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9; + level = 1 }, /turf/simulated/floor/plasteel, /area/atmos) @@ -52946,8 +51152,8 @@ }, /obj/machinery/atmospherics/pipe/simple/visible/cyan, /turf/simulated/floor/plasteel{ - icon_state = "green"; - dir = 6 + dir = 6; + icon_state = "green" }, /area/atmos) "bMi" = ( @@ -53000,6 +51206,9 @@ d2 = 2; icon_state = "0-2" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "neutralcorner" @@ -53129,8 +51338,8 @@ "bMw" = ( /turf/simulated/shuttle/floor, /turf/simulated/shuttle/wall/interior{ - tag = "icon-swall_f10"; - icon_state = "swall_f10" + icon_state = "swall_f10"; + tag = "icon-swall_f10" }, /area/shuttle/transport) "bMx" = ( @@ -53194,9 +51403,6 @@ d2 = 4; icon_state = "2-4" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, /turf/simulated/floor/wood, /area/security/vacantoffice) "bMF" = ( @@ -53213,6 +51419,9 @@ dir = 2; network = list("SS13") }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "neutralcorner" @@ -53229,11 +51438,8 @@ layer = 4; pixel_y = 32 }, -/obj/machinery/atmospherics/unary/vent_scrubber{ - dir = 2; - on = 1; - scrub_N2O = 1; - scrub_Toxins = 1 +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 }, /turf/simulated/floor/plasteel{ dir = 4; @@ -53297,6 +51503,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/carpet, /area/library) "bMN" = ( @@ -53322,23 +51529,7 @@ /obj/machinery/bookbinder, /turf/simulated/floor/wood, /area/library) -"bMQ" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/plasteel, -/area/hallway/primary/central) "bMR" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4; - initialize_directions = 11 - }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "neutralcorner" @@ -53374,12 +51565,12 @@ icon_state = "4-8" }, /obj/effect/decal/warning_stripes/arrow{ - icon_state = "4"; - dir = 1 + dir = 1; + icon_state = "4" }, /obj/effect/decal/warning_stripes/yellow/partial{ - icon_state = "3"; - dir = 1 + dir = 1; + icon_state = "3" }, /turf/simulated/floor/plasteel, /area/bridge/meeting_room{ @@ -53413,7 +51604,6 @@ name = "\improper Command Hallway" }) "bMY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/sign/securearea, /turf/simulated/wall/r_wall, /area/teleporter{ @@ -53509,17 +51699,16 @@ opacity = 0 }, /obj/effect/decal/warning_stripes/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel, /area/atmos) -"bNk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/wall/r_wall, -/area/gateway) "bNl" = ( /obj/machinery/vending/coffee, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/bridge/meeting_room{ name = "\improper Command Hallway" @@ -53556,9 +51745,9 @@ req_access_txt = "28" }, /turf/simulated/floor/plasteel{ - tag = "icon-cafeteria (NORTHEAST)"; + dir = 5; icon_state = "cafeteria"; - dir = 5 + tag = "icon-cafeteria (NORTHEAST)" }, /area/crew_quarters/kitchen) "bNo" = ( @@ -53576,33 +51765,16 @@ name = "Central Maintenance" }) "bNp" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8; - initialize_directions = 11 - }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "neutralcorner" }, /area/hallway/primary/central) -"bNq" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plasteel, -/area/hallway/primary/central) "bNr" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ req_access_txt = 1 }, -/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" @@ -53618,31 +51790,6 @@ /area/teleporter{ name = "\improper Teleporter Room" }) -"bNt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - icon_state = "bar" - }, -/area/crew_quarters/bar) -"bNu" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 2; - initialize_directions = 11 - }, -/turf/simulated/floor/plasteel{ - icon_state = "bar" - }, -/area/crew_quarters/bar) -"bNv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/plasteel{ - icon_state = "bar" - }, -/area/crew_quarters/bar) "bNw" = ( /obj/machinery/atmospherics/unary/vent_pump{ dir = 1; @@ -53660,36 +51807,20 @@ icon_state = "1-8" }, /turf/simulated/floor/plasteel{ - tag = "icon-cafeteria (NORTHEAST)"; + dir = 5; icon_state = "cafeteria"; - dir = 5 - }, -/area/crew_quarters/kitchen) -"bNy" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - tag = "icon-cafeteria (NORTHEAST)"; - icon_state = "cafeteria"; - dir = 5 + tag = "icon-cafeteria (NORTHEAST)" }, /area/crew_quarters/kitchen) "bNz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, /turf/simulated/floor/plasteel{ - tag = "icon-cafeteria (NORTHEAST)"; + dir = 5; icon_state = "cafeteria"; - dir = 5 + tag = "icon-cafeteria (NORTHEAST)" }, /area/crew_quarters/kitchen) "bNA" = ( @@ -53700,9 +51831,6 @@ name = "Station Intercom (General)"; pixel_y = -29 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /turf/simulated/floor/plasteel{ icon_state = "showroomfloor" }, @@ -53716,9 +51844,6 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /turf/simulated/floor/plasteel{ icon_state = "showroomfloor" }, @@ -53731,9 +51856,6 @@ pixel_y = -26 }, /obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /turf/simulated/floor/plasteel{ icon_state = "showroomfloor" }, @@ -53746,9 +51868,6 @@ dir = 1; pixel_y = -22 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/machinery/camera{ c_tag = "Kitchen - Coldroom"; dir = 1; @@ -53776,6 +51895,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ req_access_txt = 1 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/maintenance/starboard) "bNG" = ( @@ -53801,24 +51921,15 @@ /obj/machinery/light/small{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, /obj/machinery/firealarm{ dir = 4; pixel_x = 24 }, /turf/simulated/floor/plasteel{ - icon_state = "caution"; - dir = 4 + dir = 4; + icon_state = "caution" }, /area/hallway/primary/starboard) -"bNJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/wall/r_wall, -/area/atmos) "bNK" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -53839,6 +51950,9 @@ opacity = 0 }, /obj/effect/decal/warning_stripes/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/plasteel, /area/atmos) "bNL" = ( @@ -53857,11 +51971,14 @@ pixel_y = 1 }, /obj/effect/decal/warning_stripes/arrow{ - icon_state = "4"; - dir = 4 + dir = 4; + icon_state = "4" }, /obj/effect/decal/warning_stripes/yellow/partial{ - icon_state = "3"; + dir = 4; + icon_state = "3" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/plasteel, @@ -53881,28 +51998,16 @@ "bNN" = ( /obj/machinery/computer/card/minor/rd, /turf/simulated/floor/plasteel{ - tag = "icon-cafeteria (NORTHEAST)"; + dir = 5; icon_state = "cafeteria"; - dir = 5 + tag = "icon-cafeteria (NORTHEAST)" }, /area/crew_quarters/hor) -"bNO" = ( -/obj/machinery/atmospherics/pipe/simple/visible/universal{ - dir = 4 - }, -/turf/simulated/wall/r_wall, -/area/atmos) -"bNP" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 10; - initialize_directions = 10 - }, -/turf/simulated/wall/r_wall, -/area/atmos) "bNQ" = ( /obj/machinery/light{ dir = 8 }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "caution" @@ -53915,6 +52020,8 @@ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/visible/purple, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/atmos) "bNS" = ( @@ -54006,8 +52113,8 @@ "bOd" = ( /turf/space, /turf/simulated/shuttle/wall{ - icon_state = "swall_f9"; - dir = 2 + dir = 2; + icon_state = "swall_f9" }, /area/shuttle/transport) "bOe" = ( @@ -54025,6 +52132,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, /obj/effect/decal/warning_stripes/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/teleporter{ name = "\improper Teleporter Room" @@ -54072,6 +52180,9 @@ /obj/structure/chair/comfy/black{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + req_access_txt = 1 + }, /turf/simulated/floor/carpet, /area/security/vacantoffice) "bOj" = ( @@ -54081,9 +52192,9 @@ /area/security/vacantoffice) "bOk" = ( /obj/machinery/shower{ - tag = "icon-shower (EAST)"; + dir = 4; icon_state = "shower"; - dir = 4 + tag = "icon-shower (EAST)" }, /obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/blood/gibs/limb, @@ -54200,13 +52311,6 @@ }, /turf/simulated/floor/plasteel, /area/hallway/primary/central) -"bOv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "neutralcorner" - }, -/area/hallway/primary/central) "bOw" = ( /obj/structure/table/wood, /obj/machinery/computer/security/telescreen/entertainment{ @@ -54239,6 +52343,10 @@ dir = 4 }, /obj/effect/decal/warning_stripes/west, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4; + initialize_directions = 11 + }, /turf/simulated/floor/plating, /area/maintenance/starboard) "bOz" = ( @@ -54254,9 +52362,9 @@ pixel_y = 30 }, /turf/simulated/floor/plasteel{ - tag = "icon-vault (WEST)"; + dir = 8; icon_state = "vault"; - dir = 8 + tag = "icon-vault (WEST)" }, /area/ai_monitored/storage/eva{ name = "E.V.A. Storage" @@ -54281,13 +52389,11 @@ req_access_txt = 1 }, /obj/effect/decal/warning_stripes/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/gateway) "bOD" = ( /obj/machinery/portable_atmospherics/canister/oxygen, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /obj/effect/decal/warning_stripes/yellow/hollow, /turf/simulated/floor/plasteel, /area/atmos) @@ -54296,9 +52402,6 @@ /obj/machinery/light/small{ dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /obj/effect/decal/warning_stripes/yellow/hollow, /turf/simulated/floor/plasteel, /area/atmos) @@ -54307,9 +52410,6 @@ /obj/machinery/light/small{ dir = 4 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 2 - }, /obj/effect/decal/warning_stripes/yellow/hollow, /turf/simulated/floor/plasteel, /area/atmos) @@ -54353,9 +52453,6 @@ dir = 1; on = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; @@ -54377,9 +52474,6 @@ name = "\improper Command Hallway" }) "bOK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; @@ -54436,16 +52530,12 @@ icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 + req_access_txt = 1 }, /turf/simulated/floor/wood, /area/security/vacantoffice) "bOQ" = ( /obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /obj/effect/decal/warning_stripes/yellow/hollow, /turf/simulated/floor/plasteel, /area/atmos) @@ -54490,6 +52580,9 @@ req_access_txt = 1 }, /obj/effect/decal/warning_stripes/northwest, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, /turf/simulated/floor/plasteel, /area/gateway) "bOV" = ( @@ -54499,9 +52592,8 @@ icon_state = "1-2" }, /obj/machinery/atmospherics/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_Toxins = 0 + dir = 4; + on = 1 }, /turf/simulated/floor/plasteel, /area/hallway/primary/central) @@ -54509,6 +52601,10 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ req_access_txt = 1 }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4; + initialize_directions = 11 + }, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "neutralcorner" @@ -54516,9 +52612,9 @@ /area/hallway/primary/central) "bOX" = ( /obj/machinery/shower{ - tag = "icon-shower (EAST)"; + dir = 4; icon_state = "shower"; - dir = 4 + tag = "icon-shower (EAST)" }, /obj/machinery/door_control{ id = "AuxShower"; @@ -54541,19 +52637,12 @@ pixel_y = -29 }, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/bridge/meeting_room{ name = "\improper Command Hallway" }) -"bOZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/chair/stool/bar, -/turf/simulated/floor/plasteel{ - icon_state = "bar" - }, -/area/crew_quarters/bar) "bPa" = ( /obj/machinery/light, /obj/machinery/camera{ @@ -54611,18 +52700,9 @@ /obj/machinery/light_switch{ pixel_y = -28 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, /obj/machinery/light, /turf/simulated/floor/carpet, /area/crew_quarters/theatre) -"bPf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/theatre) "bPg" = ( /obj/structure/table/wood, /obj/machinery/light/small, @@ -54642,9 +52722,9 @@ pixel_x = -27 }, /turf/simulated/floor/plasteel{ - tag = "icon-vault (WEST)"; + dir = 8; icon_state = "vault"; - dir = 8 + tag = "icon-vault (WEST)" }, /area/ai_monitored/storage/eva{ name = "E.V.A. Storage" @@ -54708,6 +52788,7 @@ }, /obj/structure/disposalpipe/segment, /obj/effect/decal/warning_stripes/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/teleporter{ name = "\improper Teleporter Room" @@ -54739,19 +52820,12 @@ dir = 4; pixel_x = 24 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/closet/crate, /obj/effect/decal/warning_stripes/yellow/hollow, /turf/simulated/floor/plasteel, /area/teleporter{ name = "\improper Teleporter Room" }) -"bPr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/wall/r_wall, -/area/atmos) "bPs" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -54761,9 +52835,9 @@ /turf/simulated/floor/wood, /area/ntrep) "bPt" = ( -/obj/machinery/atmospherics/binary/volume_pump/on{ +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ dir = 8; - name = "Air to External" + initialize_directions = 11 }, /turf/simulated/floor/plasteel{ dir = 8; @@ -54771,21 +52845,16 @@ }, /area/atmos) "bPu" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 4 - }, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/visible/purple, -/turf/simulated/floor/plasteel, -/area/atmos) -"bPv" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ - dir = 1; - initialize_directions = 11 +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 }, /turf/simulated/floor/plasteel, /area/atmos) @@ -54906,6 +52975,7 @@ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ icon_state = "grimy" }, @@ -55003,10 +53073,6 @@ name = "Port Maintenance" }) "bPR" = ( -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 4; - on = 1 - }, /obj/item/radio/intercom{ frequency = 1459; name = "Station Intercom (General)"; @@ -55069,6 +53135,9 @@ icon_state = "1-8" }, /obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "redcorner" @@ -55118,9 +53187,9 @@ "bQd" = ( /obj/machinery/suit_storage_unit/standard_unit, /turf/simulated/floor/plasteel{ - tag = "icon-vault (WEST)"; + dir = 8; icon_state = "vault"; - dir = 8 + tag = "icon-vault (WEST)" }, /area/ai_monitored/storage/eva{ name = "E.V.A. Storage" @@ -55131,8 +53200,10 @@ d2 = 8; icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/decal/warning_stripes/northeast, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, /turf/simulated/floor/plasteel, /area/gateway) "bQf" = ( @@ -55166,9 +53237,9 @@ pixel_x = 24 }, /turf/simulated/floor/plasteel{ - tag = "icon-vault (WEST)"; + dir = 8; icon_state = "vault"; - dir = 8 + tag = "icon-vault (WEST)" }, /area/ai_monitored/storage/eva{ name = "E.V.A. Storage" @@ -55202,27 +53273,13 @@ /obj/effect/decal/warning_stripes/yellow/hollow, /turf/simulated/floor/plasteel, /area/gateway) -"bQj" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/decal/warning_stripes/yellow/hollow, -/turf/simulated/floor/plasteel, -/area/atmos) "bQk" = ( /obj/machinery/portable_atmospherics/canister/air, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/effect/decal/warning_stripes/yellow/hollow, /turf/simulated/floor/plasteel, /area/atmos) "bQl" = ( /obj/machinery/portable_atmospherics/canister/sleeping_agent, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/effect/decal/warning_stripes/yellow/hollow, /turf/simulated/floor/plasteel, /area/atmos) @@ -55236,75 +53293,36 @@ /area/gateway) "bQn" = ( /obj/machinery/atmospherics/unary/vent_scrubber{ - dir = 4; - on = 1 + dir = 2; + on = 1; + scrub_N2O = 1; + scrub_Toxins = 1 }, /turf/simulated/floor/wood, /area/blueshield) -"bQo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - icon_state = "bcarpet05" - }, -/area/blueshield) "bQp" = ( /obj/machinery/light_switch{ pixel_x = 27 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, +/obj/machinery/atmospherics/unary/vent_pump, /turf/simulated/floor/wood, /area/blueshield) -"bQq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/wall, -/area/ntrep) "bQr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, +/obj/machinery/atmospherics/unary/vent_pump, /turf/simulated/floor/wood, /area/ntrep) -"bQs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/carpet, -/area/ntrep) -"bQt" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1; - initialize_directions = 11; - level = 1 - }, -/turf/simulated/floor/carpet, -/area/ntrep) "bQu" = ( /obj/machinery/light_switch{ pixel_x = 27 }, /obj/machinery/atmospherics/unary/vent_scrubber{ - dir = 8; + dir = 2; on = 1; scrub_N2O = 1; scrub_Toxins = 1 }, /turf/simulated/floor/wood, /area/ntrep) -"bQw" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 2; - initialize_directions = 11 - }, -/obj/effect/decal/warning_stripes/yellow/hollow, -/turf/simulated/floor/plasteel, -/area/atmos) "bQx" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 @@ -55343,11 +53361,6 @@ /obj/item/stack/rods{ amount = 50 }, -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - tag = "icon-intact (NORTHEAST)"; - icon_state = "intact"; - dir = 5 - }, /obj/effect/decal/warning_stripes/yellow/hollow, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -55366,9 +53379,9 @@ dir = 9 }, /turf/simulated/floor/plasteel{ - tag = "icon-vault (NORTH)"; + dir = 1; icon_state = "vault"; - dir = 1 + tag = "icon-vault (NORTH)" }, /area/gateway) "bQC" = ( @@ -55390,9 +53403,9 @@ dir = 5 }, /turf/simulated/floor/plasteel{ - tag = "icon-vault (EAST)"; + dir = 4; icon_state = "vault"; - dir = 4 + tag = "icon-vault (EAST)" }, /area/gateway) "bQE" = ( @@ -55406,7 +53419,6 @@ }, /area/crew_quarters/bar) "bQF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/door/firedoor, /turf/simulated/floor/plasteel{ dir = 1; @@ -55427,6 +53439,7 @@ req_access_txt = 1 }, /obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "neutralcorner" @@ -55443,7 +53456,6 @@ id_tag = "kitchen"; name = "Serving Hatch" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/item/reagent_containers/food/snacks/pie, /obj/machinery/door/window/eastleft{ dir = 2; @@ -55451,9 +53463,9 @@ req_access_txt = "28" }, /turf/simulated/floor/plasteel{ - tag = "icon-cafeteria (NORTHEAST)"; + dir = 5; icon_state = "cafeteria"; - dir = 5 + tag = "icon-cafeteria (NORTHEAST)" }, /area/crew_quarters/kitchen) "bQK" = ( @@ -55471,9 +53483,9 @@ req_access_txt = "28" }, /turf/simulated/floor/plasteel{ - tag = "icon-cafeteria (NORTHEAST)"; + dir = 5; icon_state = "cafeteria"; - dir = 5 + tag = "icon-cafeteria (NORTHEAST)" }, /area/crew_quarters/kitchen) "bQL" = ( @@ -55514,8 +53526,8 @@ req_access_txt = "28" }, /turf/simulated/floor/plasteel{ - icon_state = "cafeteria"; - dir = 2 + dir = 2; + icon_state = "cafeteria" }, /area/crew_quarters/kitchen) "bQP" = ( @@ -55559,7 +53571,6 @@ name = "Theatre Backstage"; req_access_txt = "46" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood, /area/crew_quarters/theatre) "bQV" = ( @@ -55600,9 +53611,9 @@ pixel_y = -2 }, /turf/simulated/floor/plasteel{ - tag = "icon-cafeteria (NORTHEAST)"; + dir = 5; icon_state = "cafeteria"; - dir = 5 + tag = "icon-cafeteria (NORTHEAST)" }, /area/crew_quarters/hor) "bQX" = ( @@ -55618,38 +53629,14 @@ /area/teleporter{ name = "\improper Teleporter Room" }) -"bQY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/wall/r_wall, -/area/atmos) -"bQZ" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/wood, -/area/security/vacantoffice) "bRa" = ( /obj/structure/cable/yellow{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/manifold/visible/purple{ - dir = 4 - }, -/turf/simulated/floor/plasteel, -/area/atmos) -"bRb" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 2 - }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/atmos) "bRc" = ( @@ -55770,15 +53757,11 @@ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel/dark, /area/tcommsat/server) "bRr" = ( -/obj/machinery/atmospherics/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, +/obj/machinery/atmospherics/unary/vent_scrubber, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -55789,7 +53772,12 @@ d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, /turf/simulated/floor/plasteel/dark, /area/tcommsat/server) "bRt" = ( @@ -55839,22 +53827,19 @@ d2 = 8; icon_state = "1-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, /obj/structure/cable/yellow{ d1 = 1; d2 = 4; icon_state = "1-4" }, /obj/effect/decal/warning_stripes/west, +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 1; + on = 1 + }, /turf/simulated/floor/plasteel, /area/gateway) "bRx" = ( -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 8; - on = 1 - }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/yellow{ d1 = 4; @@ -55965,8 +53950,8 @@ dir = 8; layer = 2.9 }, -/obj/effect/landmark/costume/random, -/obj/effect/landmark/costume/random, +/obj/effect/landmark/costume, +/obj/effect/landmark/costume, /turf/simulated/floor/plating, /area/maintenance/fpmaint2{ name = "Port Maintenance" @@ -55977,8 +53962,8 @@ dir = 8; layer = 2.9 }, -/obj/effect/landmark/costume/random, -/obj/effect/landmark/costume/random, +/obj/effect/landmark/costume, +/obj/effect/landmark/costume, /turf/simulated/floor/plating, /area/maintenance/fpmaint2{ name = "Port Maintenance" @@ -56002,6 +53987,7 @@ /obj/effect/landmark{ name = "lightsout" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/carpet, /area/library) "bRM" = ( @@ -56020,7 +54006,6 @@ /turf/simulated/floor/wood, /area/library) "bRO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/extinguisher_cabinet{ pixel_x = 27 }, @@ -56039,9 +54024,9 @@ pixel_y = 32 }, /turf/simulated/floor/plasteel{ - tag = "icon-vault (WEST)"; + dir = 8; icon_state = "vault"; - dir = 8 + tag = "icon-vault (WEST)" }, /area/gateway) "bRQ" = ( @@ -56076,9 +54061,9 @@ icon_state = "0-4" }, /turf/simulated/floor/plasteel{ - tag = "icon-vault (WEST)"; + dir = 8; icon_state = "vault"; - dir = 8 + tag = "icon-vault (WEST)" }, /area/ai_monitored/storage/eva{ name = "E.V.A. Storage" @@ -56136,9 +54121,9 @@ req_access_txt = "28" }, /turf/simulated/floor/plasteel{ - tag = "icon-cafeteria (NORTHEAST)"; + dir = 5; icon_state = "cafeteria"; - dir = 5 + tag = "icon-cafeteria (NORTHEAST)" }, /area/crew_quarters/kitchen) "bRV" = ( @@ -56177,9 +54162,6 @@ d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, /obj/structure/cable/yellow{ d1 = 1; d2 = 4; @@ -56187,11 +54169,13 @@ }, /obj/structure/disposalpipe/segment, /obj/effect/decal/warning_stripes/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/teleporter{ name = "\improper Teleporter Room" }) "bRZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood, /area/blueshield) "bSa" = ( @@ -56210,9 +54194,11 @@ pixel_x = 29; pixel_y = -1 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/wood, /area/blueshield) "bSd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/wood, /area/ntrep) "bSe" = ( @@ -56220,7 +54206,6 @@ /area/ntrep) "bSf" = ( /obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/carpet, /area/ntrep) "bSg" = ( @@ -56228,6 +54213,7 @@ pixel_x = 29; pixel_y = -1 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood, /area/ntrep) "bSh" = ( @@ -56276,9 +54262,6 @@ /area/crew_quarters/bar) "bSk" = ( /obj/machinery/shieldwallgen, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; @@ -56301,9 +54284,9 @@ dir = 8 }, /turf/simulated/floor/plasteel{ - tag = "icon-vault (WEST)"; + dir = 8; icon_state = "vault"; - dir = 8 + tag = "icon-vault (WEST)" }, /area/gateway) "bSn" = ( @@ -56317,9 +54300,9 @@ dir = 4 }, /turf/simulated/floor/plasteel{ - tag = "icon-vault (WEST)"; + dir = 8; icon_state = "vault"; - dir = 8 + tag = "icon-vault (WEST)" }, /area/gateway) "bSp" = ( @@ -56338,19 +54321,13 @@ dir = 4; pixel_x = -23 }, -/obj/machinery/atmospherics/binary/volume_pump/on{ - dir = 4; - name = "External to Filter" - }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "caution" }, /area/atmos) "bSr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; @@ -56386,17 +54363,9 @@ /area/atmos) "bSt" = ( /turf/simulated/floor/plasteel{ - tag = "icon-cafeteria (NORTHEAST)"; + dir = 5; icon_state = "cafeteria"; - dir = 5 - }, -/area/crew_quarters/kitchen) -"bSu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plasteel{ - tag = "icon-cafeteria (NORTHEAST)"; - icon_state = "cafeteria"; - dir = 5 + tag = "icon-cafeteria (NORTHEAST)" }, /area/crew_quarters/kitchen) "bSv" = ( @@ -56408,9 +54377,9 @@ dir = 1 }, /turf/simulated/floor/plasteel{ - tag = "icon-cafeteria (NORTHEAST)"; + dir = 5; icon_state = "cafeteria"; - dir = 5 + tag = "icon-cafeteria (NORTHEAST)" }, /area/crew_quarters/kitchen) "bSw" = ( @@ -56418,9 +54387,9 @@ dir = 4 }, /turf/simulated/floor/plasteel{ - tag = "icon-cafeteria (NORTHEAST)"; + dir = 5; icon_state = "cafeteria"; - dir = 5 + tag = "icon-cafeteria (NORTHEAST)" }, /area/crew_quarters/kitchen) "bSx" = ( @@ -56437,9 +54406,9 @@ icon_state = "2-4" }, /turf/simulated/floor/plasteel{ - tag = "icon-cafeteria (NORTHEAST)"; + dir = 5; icon_state = "cafeteria"; - dir = 5 + tag = "icon-cafeteria (NORTHEAST)" }, /area/crew_quarters/kitchen) "bSy" = ( @@ -56449,9 +54418,9 @@ icon_state = "1-8" }, /turf/simulated/floor/plasteel{ - tag = "icon-cafeteria (NORTHEAST)"; + dir = 5; icon_state = "cafeteria"; - dir = 5 + tag = "icon-cafeteria (NORTHEAST)" }, /area/crew_quarters/kitchen) "bSz" = ( @@ -56490,6 +54459,7 @@ loot = list(/obj/structure/grille,/obj/structure/grille,/obj/structure/grille,/obj/structure/grille,/obj/structure/grille,/obj/item/cigbutt,/obj/item/trash/cheesie,/obj/item/trash/candy,/obj/item/trash/chips,/obj/item/trash/pistachios,/obj/item/trash/plate,/obj/item/trash/popcorn,/obj/item/trash/raisins,/obj/item/trash/sosjerky,/obj/item/trash/syndi_cakes); name = "maint grille or trash spawner" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/maintenance/starboard) "bSD" = ( @@ -56547,9 +54517,9 @@ pixel_y = -3 }, /turf/simulated/floor/plasteel{ - tag = "icon-vault (WEST)"; + dir = 8; icon_state = "vault"; - dir = 8 + tag = "icon-vault (WEST)" }, /area/ai_monitored/storage/eva{ name = "E.V.A. Storage" @@ -56586,30 +54556,15 @@ /area/atmos) "bSK" = ( /obj/machinery/atmospherics/pipe/manifold/visible/cyan{ - dir = 1; + dir = 4; initialize_directions = 11 }, /turf/simulated/floor/plasteel{ - icon_state = "arrival"; - dir = 8 + dir = 8; + icon_state = "arrival" }, /area/atmos) -"bSL" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/purple, -/turf/simulated/floor/plasteel, -/area/atmos) "bSM" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 9 - }, /obj/structure/reagent_dispensers/watertank/high, /turf/simulated/floor/plasteel, /area/atmos) @@ -56703,7 +54658,6 @@ /turf/simulated/floor/engine/n20, /area/atmos) "bSW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/status_display{ density = 0; layer = 4; @@ -56758,6 +54712,9 @@ /obj/machinery/door/airlock/medical{ name = "Morgue" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -56793,10 +54750,9 @@ loot = list(/obj/structure/grille,/obj/structure/grille,/obj/structure/grille,/obj/structure/grille,/obj/structure/grille,/obj/item/cigbutt,/obj/item/trash/cheesie,/obj/item/trash/candy,/obj/item/trash/chips,/obj/item/trash/pistachios,/obj/item/trash/plate,/obj/item/trash/popcorn,/obj/item/trash/raisins,/obj/item/trash/sosjerky,/obj/item/trash/syndi_cakes); name = "maint grille or trash spawner" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 2 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/obj/effect/decal/warning_stripes/north, /turf/simulated/floor/plating, /area/maintenance/aft{ name = "Aft Maintenance" @@ -56808,7 +54764,6 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/carpet, /area/crew_quarters/theatre) "bTe" = ( @@ -56847,17 +54802,17 @@ d2 = 8; icon_state = "1-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 +/obj/machinery/atmospherics/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, /area/security/podbay) "bTh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/machinery/computer/account_database, /turf/simulated/floor/bluegrid, /area/bridge) @@ -56929,8 +54884,8 @@ tag = "icon-plant-03" }, /turf/simulated/floor/plasteel{ - icon_state = "arrival"; - dir = 6 + dir = 6; + icon_state = "arrival" }, /area/hallway/secondary/entry{ name = "Arrivals" @@ -57018,7 +54973,6 @@ /turf/simulated/floor/wood, /area/library) "bTu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; @@ -57035,6 +54989,7 @@ d2 = 8; icon_state = "2-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/carpet, /area/library) "bTw" = ( @@ -57076,12 +55031,11 @@ "bTB" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/library) "bTC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/light{ dir = 4 }, @@ -57100,8 +55054,8 @@ }, /obj/machinery/kitchen_machine/microwave, /turf/simulated/floor/plasteel{ - icon_state = "cafeteria"; - dir = 2 + dir = 2; + icon_state = "cafeteria" }, /area/crew_quarters/kitchen) "bTE" = ( @@ -57168,7 +55122,6 @@ name = "Arrivals" }) "bTK" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/machinery/alarm{ dir = 1; pixel_y = -22 @@ -57184,12 +55137,9 @@ icon_state = "alarm0"; pixel_x = 24 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/wood, /area/blueshield) -"bTM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/carpet, -/area/ntrep) "bTN" = ( /obj/structure/chair/office/dark, /turf/simulated/floor/carpet, @@ -57200,6 +55150,7 @@ icon_state = "alarm0"; pixel_x = 24 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood, /area/ntrep) "bTP" = ( @@ -57210,7 +55161,6 @@ /turf/simulated/floor/wood, /area/crew_quarters/theatre) "bTQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/light_switch{ pixel_x = -26 }, @@ -57233,9 +55183,9 @@ dir = 10 }, /turf/simulated/floor/plasteel{ - tag = "icon-vault (EAST)"; + dir = 4; icon_state = "vault"; - dir = 4 + tag = "icon-vault (EAST)" }, /area/gateway) "bTT" = ( @@ -57245,9 +55195,9 @@ icon_state = "0-2" }, /turf/simulated/floor/plasteel{ - tag = "icon-vault (WEST)"; + dir = 8; icon_state = "vault"; - dir = 8 + tag = "icon-vault (WEST)" }, /area/gateway) "bTU" = ( @@ -57255,9 +55205,9 @@ dir = 6 }, /turf/simulated/floor/plasteel{ - tag = "icon-vault (NORTH)"; + dir = 1; icon_state = "vault"; - dir = 1 + tag = "icon-vault (NORTH)" }, /area/gateway) "bTV" = ( @@ -57271,7 +55221,6 @@ name = "Central Maintenance" }) "bTW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/item/radio/intercom{ dir = 8; name = "Station Intercom (General)"; @@ -57286,6 +55235,10 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8; + initialize_directions = 11 + }, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "neutralcorner" @@ -57306,10 +55259,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ - tag = "icon-cafeteria (NORTHEAST)"; + dir = 5; icon_state = "cafeteria"; - dir = 5 + tag = "icon-cafeteria (NORTHEAST)" }, /area/crew_quarters/kitchen) "bUb" = ( @@ -57318,30 +55274,9 @@ on = 1 }, /turf/simulated/floor/plasteel{ - tag = "icon-cafeteria (NORTHEAST)"; + dir = 5; icon_state = "cafeteria"; - dir = 5 - }, -/area/crew_quarters/kitchen) -"bUc" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8; - initialize_directions = 11 - }, -/turf/simulated/floor/plasteel{ - tag = "icon-cafeteria (NORTHEAST)"; - icon_state = "cafeteria"; - dir = 5 - }, -/area/crew_quarters/kitchen) -"bUd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/plasteel{ - tag = "icon-cafeteria (NORTHEAST)"; - icon_state = "cafeteria"; - dir = 5 + tag = "icon-cafeteria (NORTHEAST)" }, /area/crew_quarters/kitchen) "bUe" = ( @@ -57352,9 +55287,9 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel{ - tag = "icon-cafeteria (NORTHEAST)"; + dir = 5; icon_state = "cafeteria"; - dir = 5 + tag = "icon-cafeteria (NORTHEAST)" }, /area/crew_quarters/kitchen) "bUf" = ( @@ -57364,13 +55299,14 @@ }, /obj/machinery/vending/dinnerware, /turf/simulated/floor/plasteel{ - icon_state = "cafeteria"; - dir = 2 + dir = 2; + icon_state = "cafeteria" }, /area/crew_quarters/kitchen) "bUg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/machinery/atmospherics/unary/vent_scrubber{ + dir = 4; + on = 1 }, /turf/simulated/floor/wood, /area/crew_quarters/theatre) @@ -57406,9 +55342,6 @@ /turf/simulated/floor/wood, /area/crew_quarters/theatre) "bUl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, /turf/simulated/floor/wood, /area/crew_quarters/theatre) "bUm" = ( @@ -57463,8 +55396,8 @@ dir = 9 }, /turf/simulated/floor/plasteel{ - icon_state = "arrival"; - dir = 8 + dir = 8; + icon_state = "arrival" }, /area/atmos) "bUt" = ( @@ -57478,8 +55411,8 @@ }, /obj/structure/window/reinforced, /turf/simulated/floor/plasteel{ - icon_state = "escape"; - dir = 6 + dir = 6; + icon_state = "escape" }, /area/atmos) "bUu" = ( @@ -57511,31 +55444,15 @@ icon_state = "dark" }, /area/atmos) -"bUx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10; - initialize_directions = 10; - level = 1 - }, -/turf/simulated/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) "bUy" = ( /obj/structure/cable/yellow{ d1 = 4; d2 = 8; icon_state = "4-8" }, -/obj/machinery/atmospherics/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_Toxins = 0 - }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 + dir = 4 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -57549,7 +55466,12 @@ d2 = 8; icon_state = "2-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -57569,14 +55491,15 @@ req_access_txt = "13;75" }, /obj/machinery/light/small{ - tag = "icon-bulb1 (EAST)"; + dir = 4; icon_state = "bulb1"; - dir = 4 + tag = "icon-bulb1 (EAST)" }, /obj/machinery/camera/motion{ c_tag = "AI Satellite Exterior South East 2"; dir = 8 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -57595,9 +55518,6 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, /turf/simulated/floor/plasteel{ icon_state = "showroomfloor" }, @@ -57638,7 +55558,6 @@ name = "Quiet Room"; opacity = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "carpetsymbol" @@ -57658,6 +55577,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ req_access_txt = 1 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "carpetsymbol" @@ -57669,21 +55589,21 @@ req_access_txt = "37" }, /turf/simulated/floor/plasteel{ - tag = "icon-cult"; + dir = 2; icon_state = "cult"; - dir = 2 + tag = "icon-cult" }, /area/library) "bUL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "neutralcorner" }, /area/hallway/primary/central) "bUM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/door/firedoor, /turf/simulated/floor/plasteel{ dir = 4; @@ -57713,9 +55633,9 @@ pixel_x = -22 }, /turf/simulated/floor/plasteel{ - tag = "icon-vault (WEST)"; + dir = 8; icon_state = "vault"; - dir = 8 + tag = "icon-vault (WEST)" }, /area/ai_monitored/storage/eva{ name = "E.V.A. Storage" @@ -57740,9 +55660,6 @@ name = "E.V.A. Storage" }) "bUQ" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4; level = 1 @@ -57753,6 +55670,9 @@ icon_state = "4-8" }, /obj/effect/decal/warning_stripes/south, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/plasteel, /area/hallway/secondary/entry{ name = "Arrivals" @@ -57764,19 +55684,18 @@ name = "Aft Maintenance" }) "bUS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - level = 1 - }, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; icon_state = "4-8" }, /obj/effect/decal/warning_stripes/south, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, /turf/simulated/floor/plasteel, /area/hallway/secondary/entry{ name = "Arrivals" @@ -57820,10 +55739,6 @@ name = "Station Intercom (General)"; pixel_y = -25 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6; - level = 1 - }, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; @@ -57861,18 +55776,9 @@ icon_state = "bcarpet05" }, /area/blueshield) -"bUZ" = ( -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 2; - layer = 2.4; - on = 1 - }, -/turf/simulated/floor/plasteel{ - icon_state = "bcarpet05" - }, -/area/blueshield) "bVa" = ( /obj/machinery/photocopier, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/wood, /area/blueshield) "bVb" = ( @@ -57891,16 +55797,15 @@ pixel_y = 1 }, /turf/simulated/floor/plasteel{ - tag = "icon-vault (WEST)"; + dir = 8; icon_state = "vault"; - dir = 8 + tag = "icon-vault (WEST)" }, /area/ai_monitored/storage/eva{ name = "E.V.A. Storage" }) "bVc" = ( /obj/structure/table/wood, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/carpet, /area/ntrep) "bVd" = ( @@ -58005,6 +55910,7 @@ dir = 8; initialize_directions = 11 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -58062,10 +55968,9 @@ }, /area/crew_quarters/sleep) "bVn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/light{ - icon_state = "tube1"; - dir = 8 + dir = 8; + icon_state = "tube1" }, /turf/simulated/floor/plasteel{ dir = 1; @@ -58133,24 +56038,24 @@ }, /obj/machinery/kitchen_machine/microwave, /turf/simulated/floor/plasteel{ - icon_state = "cafeteria"; - dir = 2 + dir = 2; + icon_state = "cafeteria" }, /area/crew_quarters/kitchen) "bVt" = ( /obj/machinery/kitchen_machine/candy_maker, /turf/simulated/floor/plasteel{ - tag = "icon-cafeteria (NORTHEAST)"; + dir = 5; icon_state = "cafeteria"; - dir = 5 + tag = "icon-cafeteria (NORTHEAST)" }, /area/crew_quarters/kitchen) "bVu" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/plasteel{ - tag = "icon-cafeteria (NORTHEAST)"; + dir = 5; icon_state = "cafeteria"; - dir = 5 + tag = "icon-cafeteria (NORTHEAST)" }, /area/crew_quarters/kitchen) "bVv" = ( @@ -58163,6 +56068,8 @@ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/visible/purple, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/atmos) "bVw" = ( @@ -58222,6 +56129,7 @@ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -58229,12 +56137,6 @@ name = "Research Division" }) "bVD" = ( -/obj/machinery/atmospherics/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" @@ -58242,6 +56144,9 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, /turf/simulated/floor/wood, /area/crew_quarters/theatre) "bVE" = ( @@ -58256,6 +56161,9 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plating, /area/crew_quarters/theatre) "bVF" = ( @@ -58403,9 +56311,9 @@ pixel_y = 1 }, /turf/simulated/floor/plasteel{ - tag = "icon-vault (WEST)"; + dir = 8; icon_state = "vault"; - dir = 8 + tag = "icon-vault (WEST)" }, /area/ai_monitored/storage/eva{ name = "E.V.A. Storage" @@ -58499,6 +56407,7 @@ name = "Desk Door"; req_access_txt = "67" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood, /area/blueshield) "bWc" = ( @@ -58596,6 +56505,9 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plating, /area/crew_quarters/kitchen) "bWo" = ( @@ -58610,27 +56522,14 @@ /obj/effect/spawner/window/reinforced, /turf/simulated/floor/plating, /area/crew_quarters/sleep) -"bWq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/wood, -/area/library) -"bWr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/wood, -/area/library) "bWs" = ( /obj/structure/cable/yellow{ d1 = 1; d2 = 4; icon_state = "1-4" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood, /area/library) "bWt" = ( @@ -58639,9 +56538,6 @@ d2 = 8; icon_state = "2-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, /turf/simulated/floor/wood, /area/library) "bWu" = ( @@ -58664,14 +56560,15 @@ /obj/machinery/keycard_auth{ pixel_x = 24 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood, /area/ntrep) "bWx" = ( /obj/structure/chair/comfy/brown, /turf/simulated/floor/plasteel{ - tag = "icon-cult"; + dir = 2; icon_state = "cult"; - dir = 2 + tag = "icon-cult" }, /area/library) "bWy" = ( @@ -58688,7 +56585,6 @@ name = "Central Maintenance" }) "bWz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/alarm{ dir = 8; icon_state = "alarm0"; @@ -58728,9 +56624,9 @@ "bWC" = ( /obj/structure/cable/yellow, /turf/simulated/floor/plasteel{ - tag = "icon-vault (EAST)"; + dir = 4; icon_state = "vault"; - dir = 4 + tag = "icon-vault (EAST)" }, /area/teleporter{ name = "\improper Teleporter Room" @@ -58738,9 +56634,9 @@ "bWD" = ( /obj/item/radio/beacon, /turf/simulated/floor/plasteel{ - tag = "icon-vault (WEST)"; + dir = 8; icon_state = "vault"; - dir = 8 + tag = "icon-vault (WEST)" }, /area/teleporter{ name = "\improper Teleporter Room" @@ -58760,9 +56656,9 @@ req_access_txt = "19" }, /turf/simulated/floor/plasteel{ - tag = "icon-vault (WEST)"; + dir = 8; icon_state = "vault"; - dir = 8 + tag = "icon-vault (WEST)" }, /area/teleporter{ name = "\improper Teleporter Room" @@ -58771,9 +56667,9 @@ /obj/structure/cable/yellow, /obj/machinery/shieldwallgen, /turf/simulated/floor/plasteel{ - tag = "icon-vault (EAST)"; + dir = 4; icon_state = "vault"; - dir = 4 + tag = "icon-vault (EAST)" }, /area/teleporter{ name = "\improper Teleporter Room" @@ -58786,6 +56682,7 @@ name = "Blueshield Requests Console"; pixel_x = -30 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood, /area/blueshield) "bWH" = ( @@ -58809,43 +56706,24 @@ /obj/structure/chair/comfy/black{ dir = 8 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8; - initialize_directions = 11; - level = 1 - }, /turf/simulated/floor/plasteel{ icon_state = "bcarpet05" }, /area/blueshield) "bWK" = ( /obj/item/flag/nt, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/wood, /area/blueshield) -"bWL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/wall, -/area/ntrep) "bWM" = ( /obj/item/flag/nt, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/wood, /area/ntrep) "bWN" = ( /obj/structure/chair/comfy/black{ dir = 4 }, -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 8; - on = 1 - }, /turf/simulated/floor/carpet, /area/ntrep) "bWO" = ( @@ -58856,7 +56734,6 @@ pixel_y = 12 }, /obj/item/paper/ntrep, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/carpet, /area/ntrep) "bWP" = ( @@ -58877,6 +56754,7 @@ name = "NT Rep Requests Console"; pixel_x = 30 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood, /area/ntrep) "bWR" = ( @@ -58915,6 +56793,10 @@ dir = 4 }, /obj/effect/decal/warning_stripes/west, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4; + initialize_directions = 11 + }, /turf/simulated/floor/plating, /area/maintenance/starboard) "bWU" = ( @@ -59016,9 +56898,9 @@ }, /obj/structure/closet/secure_closet/freezer/fridge, /turf/simulated/floor/plasteel{ - tag = "icon-cafeteria (NORTHEAST)"; + dir = 5; icon_state = "cafeteria"; - dir = 5 + tag = "icon-cafeteria (NORTHEAST)" }, /area/crew_quarters/kitchen) "bXc" = ( @@ -59031,9 +56913,9 @@ pixel_x = 5 }, /turf/simulated/floor/plasteel{ - tag = "icon-cafeteria (NORTHEAST)"; + dir = 5; icon_state = "cafeteria"; - dir = 5 + tag = "icon-cafeteria (NORTHEAST)" }, /area/crew_quarters/kitchen) "bXd" = ( @@ -59042,76 +56924,16 @@ d2 = 8; icon_state = "4-8" }, -/turf/simulated/floor/plasteel{ - tag = "icon-cafeteria (NORTHEAST)"; - icon_state = "cafeteria"; - dir = 5 - }, -/area/crew_quarters/kitchen) -"bXe" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plasteel{ - tag = "icon-cafeteria (NORTHEAST)"; - icon_state = "cafeteria"; - dir = 5 - }, -/area/crew_quarters/kitchen) -"bXf" = ( /obj/machinery/atmospherics/unary/vent_scrubber{ dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0 }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /turf/simulated/floor/plasteel{ - tag = "icon-cafeteria (NORTHEAST)"; + dir = 5; icon_state = "cafeteria"; - dir = 5 - }, -/area/crew_quarters/kitchen) -"bXg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plasteel{ - tag = "icon-cafeteria (NORTHEAST)"; - icon_state = "cafeteria"; - dir = 5 - }, -/area/crew_quarters/kitchen) -"bXh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plasteel{ - tag = "icon-cafeteria (NORTHEAST)"; - icon_state = "cafeteria"; - dir = 5 + tag = "icon-cafeteria (NORTHEAST)" }, /area/crew_quarters/kitchen) "bXi" = ( @@ -59122,6 +56944,9 @@ dir = 2; icon_state = "pipe-c" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plating, /area/maintenance/starboard) "bXj" = ( @@ -59299,9 +57124,9 @@ }, /obj/item/clothing/under/suit_jacket/red, /turf/simulated/floor/plasteel{ - tag = "icon-cult"; + dir = 2; icon_state = "cult"; - dir = 2 + tag = "icon-cult" }, /area/library) "bXz" = ( @@ -59419,15 +57244,11 @@ pixel_x = 30 }, /turf/simulated/floor/plasteel{ - tag = "icon-cult"; + dir = 2; icon_state = "cult"; - dir = 2 + tag = "icon-cult" }, /area/library) -"bXM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/wood, -/area/library) "bXN" = ( /obj/structure/chair/office/dark, /turf/simulated/floor/wood, @@ -59448,7 +57269,6 @@ /turf/space, /area/space/nearstation) "bXP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/extinguisher_cabinet{ pixel_x = -27 }, @@ -59460,8 +57280,8 @@ "bXQ" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/crew_quarters/locker) "bXR" = ( @@ -59474,9 +57294,9 @@ }, /obj/structure/table/wood, /turf/simulated/floor/plasteel{ - tag = "icon-cult"; + dir = 2; icon_state = "cult"; - dir = 2 + tag = "icon-cult" }, /area/library) "bXS" = ( @@ -59484,13 +57304,12 @@ name = "Forbidden Knowledge" }, /turf/simulated/floor/plasteel{ - tag = "icon-cult"; + dir = 2; icon_state = "cult"; - dir = 2 + tag = "icon-cult" }, /area/library) "bXT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/item/radio/intercom{ dir = 4; name = "Station Intercom (General)"; @@ -59545,8 +57364,8 @@ }, /obj/machinery/processor, /turf/simulated/floor/plasteel{ - icon_state = "cafeteria"; - dir = 2 + dir = 2; + icon_state = "cafeteria" }, /area/crew_quarters/kitchen) "bXY" = ( @@ -59583,6 +57402,9 @@ dir = 8; pixel_x = -24 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, /turf/simulated/floor/wood, /area/blueshield) "bYc" = ( @@ -59612,18 +57434,21 @@ /obj/machinery/newscaster/security_unit{ pixel_y = -32 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, /turf/simulated/floor/wood, /area/blueshield) "bYe" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, /turf/simulated/floor/wood, /area/blueshield) "bYf" = ( -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 4; - layer = 2.4; - on = 1 - }, /obj/structure/closet{ icon_closed = "cabinet_closed"; icon_opened = "cabinet_open"; @@ -59632,10 +57457,17 @@ /obj/item/reagent_containers/food/drinks/bottle/whiskey, /obj/item/reagent_containers/food/drinks/drinkingglass, /obj/item/reagent_containers/food/drinks/drinkingglass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, /turf/simulated/floor/wood, /area/blueshield) "bYg" = ( /obj/structure/filingcabinet, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5; + level = 1 + }, /turf/simulated/floor/wood, /area/ntrep) "bYh" = ( @@ -59651,16 +57483,14 @@ /turf/simulated/floor/wood, /area/library) "bYj" = ( -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 4; - layer = 2.4; - on = 1 - }, /obj/structure/closet/secure_closet/ntrep, /obj/machinery/firealarm{ dir = 4; pixel_x = 24 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, /turf/simulated/floor/wood, /area/ntrep) "bYk" = ( @@ -59703,13 +57533,15 @@ network = list("SS13") }, /obj/structure/table/wood, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/newscaster/security_unit{ pixel_y = -32 }, /obj/machinery/photocopier/faxmachine/longrange{ department = "NT Representative's Office" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, /turf/simulated/floor/wood, /area/ntrep) "bYo" = ( @@ -59751,7 +57583,6 @@ name = "Aft Maintenance" }) "bYr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/firealarm{ dir = 8; pixel_x = -24 @@ -59762,7 +57593,6 @@ }, /area/hallway/primary/central) "bYs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/table, /obj/item/book/manual/chef_recipes{ pixel_x = 2; @@ -59771,20 +57601,19 @@ /obj/item/stack/packageWrap, /obj/item/hand_labeler, /turf/simulated/floor/plasteel{ - tag = "icon-cafeteria (NORTHEAST)"; + dir = 5; icon_state = "cafeteria"; - dir = 5 + tag = "icon-cafeteria (NORTHEAST)" }, /area/crew_quarters/kitchen) "bYt" = ( /obj/structure/table, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/item/storage/box/donkpockets, /obj/item/eftpos, /turf/simulated/floor/plasteel{ - tag = "icon-cafeteria (NORTHEAST)"; + dir = 5; icon_state = "cafeteria"; - dir = 5 + tag = "icon-cafeteria (NORTHEAST)" }, /area/crew_quarters/kitchen) "bYu" = ( @@ -59794,9 +57623,9 @@ icon_state = "2-4" }, /turf/simulated/floor/plasteel{ - tag = "icon-cafeteria (NORTHEAST)"; + dir = 5; icon_state = "cafeteria"; - dir = 5 + tag = "icon-cafeteria (NORTHEAST)" }, /area/crew_quarters/kitchen) "bYv" = ( @@ -59815,9 +57644,9 @@ req_access_txt = "19" }, /turf/simulated/floor/plasteel{ - tag = "icon-vault (WEST)"; + dir = 8; icon_state = "vault"; - dir = 8 + tag = "icon-vault (WEST)" }, /area/ai_monitored/storage/eva{ name = "E.V.A. Storage" @@ -59829,9 +57658,6 @@ name = "Port Maintenance" }) "bYy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" @@ -59848,8 +57674,8 @@ dir = 4 }, /turf/simulated/floor/plasteel{ - icon_state = "green"; - dir = 6 + dir = 6; + icon_state = "green" }, /area/hydroponics) "bYA" = ( @@ -59893,8 +57719,8 @@ "bYE" = ( /obj/machinery/cooker/deepfryer, /turf/simulated/floor/plasteel{ - icon_state = "cafeteria"; - dir = 2 + dir = 2; + icon_state = "cafeteria" }, /area/crew_quarters/kitchen) "bYF" = ( @@ -59925,9 +57751,6 @@ d2 = 4; icon_state = "0-4" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, /obj/machinery/door/poddoor{ density = 0; icon_state = "open"; @@ -59945,6 +57768,9 @@ req_access_txt = "67" }, /obj/machinery/computer/crew, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, /turf/simulated/floor/wood, /area/blueshield) "bYK" = ( @@ -59980,6 +57806,9 @@ req_access_txt = "73" }, /obj/machinery/computer/secure_data, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, /turf/simulated/floor/wood, /area/ntrep) "bYO" = ( @@ -60115,9 +57944,6 @@ d2 = 8; icon_state = "0-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, /obj/machinery/door/poddoor{ density = 0; icon_state = "open"; @@ -60158,15 +57984,14 @@ /obj/structure/table, /obj/machinery/reagentgrinder, /turf/simulated/floor/plasteel{ - icon_state = "cafeteria"; - dir = 2 + dir = 2; + icon_state = "cafeteria" }, /area/crew_quarters/kitchen) "bZc" = ( /obj/structure/chair/office/dark{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood, /area/library) "bZd" = ( @@ -60190,13 +58015,15 @@ req_access_txt = "28" }, /turf/simulated/floor/plasteel{ - icon_state = "cafeteria"; - dir = 2 + dir = 2; + icon_state = "cafeteria" }, /area/crew_quarters/kitchen) "bZe" = ( /obj/item/toy/cards/deck, /obj/structure/table/wood, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood, /area/library) "bZf" = ( @@ -60205,7 +58032,6 @@ d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/wood, /area/library) "bZg" = ( @@ -60224,6 +58050,7 @@ dir = 8; pixel_x = -24 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "neutralcorner" @@ -60245,9 +58072,9 @@ }, /obj/machinery/kitchen_machine/oven, /turf/simulated/floor/plasteel{ - tag = "icon-cafeteria (NORTHEAST)"; + dir = 5; icon_state = "cafeteria"; - dir = 5 + tag = "icon-cafeteria (NORTHEAST)" }, /area/crew_quarters/kitchen) "bZk" = ( @@ -60269,6 +58096,7 @@ name = "Blueshield's Office"; req_access_txt = "67" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood, /area/blueshield) "bZn" = ( @@ -60279,11 +58107,9 @@ name = "NT Representative's Office"; req_access_txt = "73" }, -/turf/simulated/floor/wood, -/area/ntrep) -"bZp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/wall/r_wall, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood, /area/ntrep) "bZq" = ( /obj/structure/closet/fireaxecabinet{ @@ -60317,17 +58143,11 @@ /area/maintenance/maintcentral{ name = "Central Maintenance" }) -"bZs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "neutralcorner" - }, -/area/hallway/primary/central) "bZt" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ req_access_txt = 1 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "greencorner" @@ -60381,9 +58201,8 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/plasteel{ icon_state = "hydrofloor" }, @@ -60392,11 +58211,11 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atmospherics/unary/vent_scrubber{ - dir = 2; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, /turf/simulated/floor/plasteel{ icon_state = "hydrofloor" @@ -60433,14 +58252,17 @@ dir = 4; icon_state = "pipe-c" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, /obj/structure/cable/yellow{ d1 = 2; d2 = 4; icon_state = "2-4" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plating, /area/maintenance/starboard) "bZG" = ( @@ -60608,7 +58430,7 @@ pixel_y = -22 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 + dir = 4 }, /turf/simulated/floor/wood, /area/library) @@ -60623,12 +58445,20 @@ }, /obj/item/storage/pill_bottle/dice, /obj/structure/table/wood, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/wood, /area/library) "cab" = ( /obj/structure/table/wood, -/obj/item/paper, /obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, /turf/simulated/floor/wood, /area/library) "cac" = ( @@ -60701,6 +58531,8 @@ tag = "icon-shower (WEST)" }, /obj/machinery/atmospherics/pipe/simple/visible/purple, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/atmos) "cag" = ( @@ -60709,25 +58541,6 @@ }, /turf/simulated/floor/plasteel, /area/atmos) -"cah" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8; - initialize_directions = 11 - }, -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "neutralcorner" - }, -/area/hallway/primary/central) -"cai" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "neutralcorner" - }, -/area/hallway/primary/central) "caj" = ( /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, @@ -60751,27 +58564,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, -/obj/machinery/atmospherics/unary/vent_scrubber{ - dir = 8; - on = 1 - }, /obj/effect/decal/warning_stripes/north, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel, /area/crew_quarters/kitchen) -"cam" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "neutralcorner" - }, -/area/hallway/primary/central) "can" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/machinery/firealarm{ pixel_y = 28 }, @@ -60781,11 +58580,11 @@ }, /area/hallway/primary/central) "cao" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8; - initialize_directions = 11 - }, /obj/effect/decal/warning_stripes/north, +/obj/machinery/atmospherics/unary/vent_scrubber{ + dir = 4; + on = 1 + }, /turf/simulated/floor/plasteel, /area/crew_quarters/kitchen) "cap" = ( @@ -60800,6 +58599,9 @@ name = "blobstart" }, /obj/effect/decal/warning_stripes/west, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, /turf/simulated/floor/plating, /area/maintenance/starboard) "caq" = ( @@ -60815,51 +58617,17 @@ name = "Arrivals" }) "car" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /turf/simulated/floor/plasteel{ - icon_state = "neutral"; - dir = 1 + dir = 1; + icon_state = "neutral" }, /area/hallway/primary/central) "cas" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plasteel{ - icon_state = "neutral"; - dir = 1 - }, -/area/hallway/primary/central) -"cat" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1; - initialize_directions = 11 - }, -/turf/simulated/floor/plasteel{ - icon_state = "neutral"; - dir = 1 - }, -/area/hallway/primary/central) -"cau" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 2; - initialize_directions = 11 - }, -/turf/simulated/floor/plasteel{ - icon_state = "neutral"; - dir = 1 - }, -/area/hallway/primary/central) -"cav" = ( -/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" + icon_state = "neutral" }, /area/hallway/primary/central) "caw" = ( @@ -60871,10 +58639,6 @@ /turf/simulated/wall/r_wall, /area/maintenance/portsolar) "cax" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1; - initialize_directions = 11 - }, /obj/machinery/power/apc{ cell_type = 10000; dir = 1; @@ -60891,10 +58655,6 @@ }, /area/hallway/primary/central) "cay" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1; - initialize_directions = 11 - }, /obj/structure/sign/double/map/left{ desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; icon_state = "map-left-MS"; @@ -60906,9 +58666,6 @@ }, /area/hallway/primary/central) "caz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/structure/sign/double/map/right{ desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; icon_state = "map-right-MS"; @@ -60929,9 +58686,6 @@ }, /area/hallway/primary/central) "caB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; @@ -60954,9 +58708,6 @@ /turf/simulated/floor/plasteel, /area/hallway/primary/central) "caD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/machinery/door_control{ id = "evashutter"; name = "E.V.A. Storage Shutter Control"; @@ -60966,15 +58717,6 @@ /obj/effect/decal/warning_stripes/northwestcorner, /turf/simulated/floor/plasteel, /area/hallway/primary/central) -"caE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "neutralcorner" - }, -/area/hallway/primary/central) "caF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ req_access_txt = 1 @@ -60983,9 +58725,10 @@ pixel_x = 32; pixel_y = 32 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ - icon_state = "green"; - dir = 4 + dir = 4; + icon_state = "green" }, /area/hallway/primary/central) "caG" = ( @@ -60997,7 +58740,6 @@ req_one_access_txt = "0" }, /obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/item/paper, /obj/machinery/door/window/eastleft{ dir = 2; @@ -61021,6 +58763,9 @@ /obj/machinery/door/airlock/public/glass{ name = "Locker Room" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" }, @@ -61037,10 +58782,13 @@ d2 = 2; icon_state = "0-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, /obj/effect/decal/warning_stripes/north, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plating, /area/maintenance/starboard) "caJ" = ( @@ -61071,9 +58819,6 @@ name = "Port Maintenance" }) "caL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/machinery/firealarm{ dir = 2; pixel_y = 24 @@ -61082,16 +58827,10 @@ /turf/simulated/floor/plasteel, /area/hallway/primary/central) "caM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/effect/decal/warning_stripes/north, /turf/simulated/floor/plasteel, /area/hallway/primary/central) "caN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/machinery/door_control{ id = "teleshutter"; name = "Teleporter Shutter Control"; @@ -61105,10 +58844,6 @@ /obj/machinery/light{ dir = 1 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1; - initialize_directions = 11 - }, /obj/machinery/status_display{ density = 0; layer = 4; @@ -61120,9 +58855,6 @@ }, /area/hallway/primary/central) "caP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/item/radio/intercom{ frequency = 1459; name = "Station Intercom (General)"; @@ -61140,9 +58872,6 @@ /turf/simulated/floor/plasteel, /area/hydroponics) "caR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/machinery/light{ dir = 1 }, @@ -61161,9 +58890,6 @@ dir = 1; icon_state = "pipe-c" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/machinery/door/window/eastright{ dir = 1; name = "Kitchen Delivery"; @@ -61176,9 +58902,6 @@ /obj/structure/closet{ name = "spare parts locker" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, /obj/item/rack_parts, /obj/item/rack_parts, /obj/item/wrench, @@ -61200,9 +58923,6 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/effect/decal/warning_stripes/yellow/hollow, /turf/simulated/floor/plasteel, /area/crew_quarters/kitchen) @@ -61218,6 +58938,9 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plating, /area/hydroponics) "caW" = ( @@ -61244,9 +58967,6 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, /turf/simulated/floor/plating, /area/maintenance/starboard) "caY" = ( @@ -61280,14 +59000,11 @@ }, /obj/machinery/kitchen_machine/grill, /turf/simulated/floor/plasteel{ - icon_state = "cafeteria"; - dir = 2 + dir = 2; + icon_state = "cafeteria" }, /area/crew_quarters/kitchen) "cbb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/item/radio/intercom{ frequency = 1459; name = "Station Intercom (General)"; @@ -61326,6 +59043,9 @@ d2 = 8; icon_state = "2-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel, /area/crew_quarters/locker) "cbf" = ( @@ -61354,9 +59074,6 @@ /turf/simulated/floor/plasteel, /area/atmos) "cbi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/machinery/door/firedoor, /obj/machinery/door_control{ id = "gateshutter"; @@ -61368,9 +59085,6 @@ /turf/simulated/floor/plasteel, /area/hallway/primary/central) "cbj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/structure/extinguisher_cabinet{ pixel_y = 30 }, @@ -61423,11 +59137,6 @@ /obj/machinery/power/smes, /turf/simulated/floor/plating, /area/maintenance/portsolar) -"cbp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/decal/warning_stripes/south, -/turf/simulated/floor/plasteel, -/area/hydroponics) "cbq" = ( /obj/structure/closet, /obj/item/storage/box/donkpockets, @@ -61518,44 +59227,20 @@ }, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/unary/vent_scrubber{ - dir = 4; + dir = 8; on = 1; + scrub_N2O = 0; scrub_Toxins = 0 }, /turf/simulated/floor/plasteel, /area/hallway/primary/central) -"cbz" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/plasteel, -/area/hallway/primary/central) "cbA" = ( /obj/structure/cable/yellow{ d1 = 4; d2 = 8; icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/plasteel, -/area/hallway/primary/central) -"cbB" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 8; - on = 1 - }, +/obj/machinery/atmospherics/unary/vent_pump, /turf/simulated/floor/plasteel, /area/hallway/primary/central) "cbC" = ( @@ -61616,7 +59301,6 @@ d2 = 8; icon_state = "2-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/yellow{ d1 = 1; d2 = 8; @@ -61630,11 +59314,7 @@ d2 = 8; icon_state = "4-8" }, -/obj/machinery/atmospherics/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_Toxins = 0 - }, +/obj/machinery/atmospherics/unary/vent_scrubber, /turf/simulated/floor/plasteel, /area/hallway/primary/central) "cbI" = ( @@ -61676,9 +59356,10 @@ d2 = 8; icon_state = "2-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ - icon_state = "green"; - dir = 4 + dir = 4; + icon_state = "green" }, /area/hallway/primary/central) "cbL" = ( @@ -61719,18 +59400,12 @@ icon_state = "green" }, /area/hydroponics) -"cbQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/plasteel{ - dir = 5; - icon_state = "green" - }, -/area/hydroponics) "cbR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 }, /turf/simulated/floor/plasteel{ dir = 9; @@ -61739,7 +59414,10 @@ /area/hydroponics) "cbS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, /turf/simulated/floor/plasteel{ dir = 1; @@ -61764,10 +59442,6 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/maintenance/starboard) -"cbV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/maintenance/starboard) "cbW" = ( /obj/effect/decal/warning_stripes/south, /turf/simulated/floor/plasteel, @@ -61780,22 +59454,6 @@ /obj/effect/spawner/window/reinforced, /turf/simulated/floor/plating, /area/medical/genetics) -"cbZ" = ( -/obj/effect/spawner/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/poddoor{ - density = 0; - icon_state = "open"; - id_tag = "toxins_blastdoor"; - name = "privacy shutters"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/toxins/mixing{ - name = "\improper Toxins Lab" - }) "cca" = ( /obj/machinery/camera{ c_tag = "Security Post - Medbay"; @@ -61843,6 +59501,8 @@ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/visible/purple, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/atmos) "ccf" = ( @@ -61866,8 +59526,8 @@ pixel_y = 1 }, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/atmos) "cch" = ( @@ -61899,21 +59559,21 @@ name = "JoinLateGateway" }, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/gateway) "ccm" = ( /obj/machinery/light{ - icon_state = "tube1"; - dir = 4 + dir = 4; + icon_state = "tube1" }, /obj/effect/landmark{ name = "JoinLateGateway" }, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/gateway) "ccn" = ( @@ -61938,13 +59598,12 @@ codes_txt = "patrol;next_patrol=8.1-Aft-to-Escape"; location = "8-Central-to-Aft" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/hallway/primary/central) "ccp" = ( /obj/machinery/power/terminal{ - icon_state = "term"; - dir = 1 + dir = 1; + icon_state = "term" }, /obj/structure/cable{ d2 = 8; @@ -61979,10 +59638,6 @@ d2 = 8; icon_state = "1-8" }, -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 8; - on = 1 - }, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; @@ -62033,15 +59688,15 @@ /turf/simulated/floor/plasteel, /area/hydroponics) "ccw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, /obj/structure/closet/crate, /obj/effect/spawner/lootdrop/maintenance{ lootcount = 3; name = "3maintenance loot spawner" }, /obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" }, @@ -62056,10 +59711,6 @@ /area/maintenance/aft{ name = "Aft Maintenance" }) -"ccy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plasteel, -/area/engine/engineering) "ccz" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ @@ -62072,6 +59723,8 @@ d2 = 8; icon_state = "1-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel, /area/engine/engineering) "ccA" = ( @@ -62143,12 +59796,12 @@ dir = 4 }, /obj/structure/disposalpipe/junction{ - icon_state = "pipe-j2"; - dir = 4 + dir = 4; + icon_state = "pipe-j2" }, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/hallway/primary/central) "ccE" = ( @@ -62163,6 +59816,10 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 2 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5; + level = 1 + }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "neutralcorner" @@ -62186,6 +59843,9 @@ dir = 1; network = list("SS13") }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "neutralcorner" @@ -62195,6 +59855,9 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "neutralcorner" @@ -62211,6 +59874,9 @@ dir = 1; pixel_y = -22 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "neutralcorner" @@ -62230,6 +59896,9 @@ dir = 4 }, /obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "neutralcorner" @@ -62244,15 +59913,25 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, /turf/simulated/floor/plasteel, /area/hallway/primary/central) "ccM" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 2; + initialize_directions = 11 + }, /turf/simulated/floor/plasteel, /area/hallway/primary/central) "ccN" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, /turf/simulated/floor/plasteel, /area/hallway/primary/central) @@ -62260,6 +59939,9 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "neutralcorner" @@ -62274,11 +59956,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "neutralcorner" @@ -62291,6 +59975,10 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 2; + initialize_directions = 11 + }, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "neutralcorner" @@ -62304,6 +59992,9 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "neutralcorner" @@ -62317,6 +60008,9 @@ dir = 2; icon_state = "pipe-c" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "neutralcorner" @@ -62335,8 +60029,8 @@ dir = 4 }, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/atmos) "ccU" = ( @@ -62347,6 +60041,9 @@ dir = 1; pixel_y = -22 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "neutralcorner" @@ -62356,6 +60053,9 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "greencorner" @@ -62370,15 +60070,19 @@ d2 = 2; icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/plasteel{ - icon_state = "green"; - dir = 6 + dir = 6; + icon_state = "green" }, /area/hallway/primary/central) "ccX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ icon_state = "greenfull" }, @@ -62397,6 +60101,9 @@ }, /obj/item/folder/white, /obj/item/folder/white, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "greenfull"; @@ -62413,6 +60120,9 @@ /obj/effect/landmark/start{ name = "Botanist" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 10; icon_state = "green" @@ -62422,18 +60132,24 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ - icon_state = "green"; - dir = 6 + dir = 6; + icon_state = "green" }, /area/hydroponics) "cdb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ - icon_state = "green"; - dir = 8 + dir = 8; + icon_state = "green" }, /area/hydroponics) "cdc" = ( @@ -62441,31 +60157,43 @@ dir = 4 }, /obj/machinery/hydroponics/constructable, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel, /area/hydroponics) "cdd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, /obj/machinery/hydroponics/constructable, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/plasteel, /area/hydroponics) "cde" = ( -/turf/simulated/floor/plasteel{ - icon_state = "green"; +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "green" + }, /area/hydroponics) "cdf" = ( -/turf/simulated/floor/plasteel{ - icon_state = "green"; - dir = 8 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4; + initialize_directions = 11 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "green" }, -/area/hydroponics) -"cdg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/hydroponics/constructable, -/turf/simulated/floor/plasteel, /area/hydroponics) "cdh" = ( /obj/machinery/hydroponics/constructable, @@ -62479,15 +60207,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ req_access_txt = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/structure/cable/yellow{ d1 = 2; d2 = 4; icon_state = "2-4" }, /obj/effect/decal/warning_stripes/west, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/maintenance/starboard) "cdj" = ( @@ -62521,12 +60247,15 @@ dir = 4 }, /obj/effect/decal/warning_stripes/yellow/partial{ - icon_state = "3"; - dir = 1 + dir = 1; + icon_state = "3" }, /obj/effect/decal/warning_stripes/arrow{ - icon_state = "4"; - dir = 1 + dir = 1; + icon_state = "4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, /turf/simulated/floor/plasteel{ dir = 8; @@ -62546,6 +60275,9 @@ dir = 4; icon_state = "pipe-c" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, /turf/simulated/floor/plating, /area/maintenance/starboard) "cdn" = ( @@ -62586,6 +60318,9 @@ d2 = 4; icon_state = "2-4" }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, /turf/simulated/floor/plating, /area/maintenance/starboard) "cdq" = ( @@ -62641,6 +60376,9 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plating, /area/atmos) "cdt" = ( @@ -62656,6 +60394,9 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/visible/purple, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "caution" @@ -62670,15 +60411,12 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/machinery/atmospherics/unary/vent_scrubber{ - dir = 2; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel, /area/atmos) "cdv" = ( @@ -62694,6 +60432,9 @@ dir = 8; icon_state = "pipe-c" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel, /area/atmos) "cdw" = ( @@ -62702,9 +60443,11 @@ d2 = 8; icon_state = "4-8" }, -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 8; - on = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 }, /turf/simulated/floor/plasteel, /area/atmos) @@ -62714,6 +60457,10 @@ d2 = 8; icon_state = "1-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/plasteel, /area/atmos) "cdy" = ( @@ -62748,6 +60495,9 @@ /obj/structure/extinguisher_cabinet{ pixel_y = -30 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "neutralcorner" @@ -62763,8 +60513,8 @@ name = "JoinLateGateway" }, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/gateway) "cdC" = ( @@ -62774,8 +60524,8 @@ track = 0 }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + d2 = 4; + icon_state = "0-4" }, /obj/structure/cable, /turf/simulated/floor/plating, @@ -62803,6 +60553,9 @@ dir = 1; network = list("SS13") }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "neutralcorner" @@ -62891,9 +60644,6 @@ }) "cdP" = ( /obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/machinery/door/airlock/public/glass{ name = "Locker Room" }, @@ -62912,8 +60662,8 @@ }, /obj/structure/window/reinforced, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/atmos) "cdR" = ( @@ -62990,12 +60740,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ req_access_txt = 1 }, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "bluecorner" - }, -/area/hallway/primary/central) -"cdY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ dir = 8; @@ -63020,22 +60764,6 @@ icon_state = "bluecorner" }, /area/hallway/primary/central) -"ceb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - req_access_txt = 1 - }, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "bluecorner" - }, -/area/hallway/primary/central) -"cec" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plasteel{ - dir = 2; - icon_state = "purplecorner" - }, -/area/hallway/primary/central) "ced" = ( /obj/machinery/light/small, /turf/simulated/floor/plasteel{ @@ -63062,6 +60790,7 @@ /area/hallway/primary/central) "ceg" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "purplecorner" @@ -63073,7 +60802,6 @@ d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel{ dir = 2; @@ -63104,8 +60832,8 @@ pixel_y = -29 }, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/hallway/primary/central) "cek" = ( @@ -63177,10 +60905,6 @@ icon_state = "greenfull" }, /area/hydroponics) -"cep" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/wall/r_wall, -/area/tcommsat/server) "ceq" = ( /obj/machinery/door/airlock/medical{ name = "Paramedic" @@ -63204,17 +60928,19 @@ "ces" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/plasteel{ - icon_state = "green"; - dir = 4 + dir = 4; + icon_state = "green" }, /area/hydroponics) "cet" = ( /obj/effect/landmark/start{ name = "Botanist" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ - icon_state = "green"; - dir = 4 + dir = 4; + icon_state = "green" }, /area/hydroponics) "ceu" = ( @@ -63262,24 +60988,13 @@ icon_state = "1-4" }, /obj/structure/disposalpipe/junction{ - tag = "icon-pipe-j2"; + dir = 2; icon_state = "pipe-j2"; - dir = 2 + tag = "icon-pipe-j2" }, -/turf/simulated/floor/plating, -/area/maintenance/starboard) -"cey" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8; + initialize_directions = 11 }, /turf/simulated/floor/plating, /area/maintenance/starboard) @@ -63299,6 +61014,9 @@ loot = list(/obj/structure/grille,/obj/structure/grille,/obj/structure/grille,/obj/structure/grille,/obj/structure/grille,/obj/item/cigbutt,/obj/item/trash/cheesie,/obj/item/trash/candy,/obj/item/trash/chips,/obj/item/trash/pistachios,/obj/item/trash/plate,/obj/item/trash/popcorn,/obj/item/trash/raisins,/obj/item/trash/sosjerky,/obj/item/trash/syndi_cakes); name = "maint grille or trash spawner" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plating, /area/maintenance/starboard) "ceA" = ( @@ -63314,17 +61032,8 @@ dir = 8; icon_state = "pipe-c" }, -/turf/simulated/floor/plating, -/area/maintenance/starboard) -"ceB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/maintenance/starboard) -"ceC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 + dir = 9 }, /turf/simulated/floor/plating, /area/maintenance/starboard) @@ -63347,21 +61056,12 @@ name = "Aft Maintenance" }) "ceF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/machinery/atmospherics/pipe/simple/visible/purple, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "caution" }, /area/atmos) -"ceG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/plasteel, -/area/atmos) "ceH" = ( /obj/machinery/atmospherics/unary/portables_connector, /turf/simulated/floor/plasteel, @@ -63477,6 +61177,9 @@ dir = 4 }, /obj/effect/decal/warning_stripes/east, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plating, /area/maintenance/starboard) "ceS" = ( @@ -63619,8 +61322,8 @@ }, /obj/item/clipboard, /turf/simulated/floor/plasteel{ - icon_state = "neutral"; - dir = 8 + dir = 8; + icon_state = "neutral" }, /area/engine/chiefs_office) "cfe" = ( @@ -63721,8 +61424,8 @@ pixel_x = 27 }, /obj/machinery/light{ - icon_state = "tube1"; - dir = 4 + dir = 4; + icon_state = "tube1" }, /obj/machinery/camera/autoname{ dir = 8; @@ -63772,9 +61475,6 @@ name = "\improper Captain's Quarters" }) "cfo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - req_access_txt = 1 - }, /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass, /turf/simulated/floor/plasteel{ @@ -63790,10 +61490,11 @@ }, /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel, /area/hallway/primary/aft) "cfq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass, /turf/simulated/floor/plasteel{ @@ -63830,6 +61531,7 @@ "cfu" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "whitehall"; @@ -63844,7 +61546,6 @@ d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel{ @@ -63881,6 +61582,9 @@ dir = 2 }, /obj/effect/decal/warning_stripes/north, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plating, /area/maintenance/starboard) "cfz" = ( @@ -63921,8 +61625,8 @@ /area/hallway/primary/central) "cfC" = ( /obj/structure/sink{ - icon_state = "sink"; dir = 8; + icon_state = "sink"; pixel_x = -12; pixel_y = 2 }, @@ -63936,8 +61640,8 @@ name = "Botanist" }, /turf/simulated/floor/plasteel{ - icon_state = "green"; - dir = 8 + dir = 8; + icon_state = "green" }, /area/hydroponics) "cfE" = ( @@ -63977,22 +61681,6 @@ /area/toxins/mixing{ name = "\improper Toxins Lab" }) -"cfI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/spawner/lootdrop{ - loot = list(/obj/structure/grille,/obj/structure/grille,/obj/structure/grille,/obj/structure/grille,/obj/structure/grille,/obj/item/cigbutt,/obj/item/trash/cheesie,/obj/item/trash/candy,/obj/item/trash/chips,/obj/item/trash/pistachios,/obj/item/trash/plate,/obj/item/trash/popcorn,/obj/item/trash/raisins,/obj/item/trash/sosjerky,/obj/item/trash/syndi_cakes); - name = "maint grille or trash spawner" - }, -/turf/simulated/floor/plating, -/area/maintenance/starboard) -"cfJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/plating, -/area/maintenance/starboard) "cfK" = ( /turf/simulated/wall, /area/maintenance/incinerator) @@ -64007,6 +61695,7 @@ d2 = 2; icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/maintenance/incinerator) "cfM" = ( @@ -64051,6 +61740,7 @@ icon_state = "sink"; pixel_x = 11 }, +/obj/machinery/atmospherics/unary/vent_scrubber, /turf/simulated/floor/plasteel{ icon_state = "hydrofloor" }, @@ -64175,6 +61865,12 @@ req_one_access_txt = "0" }, /obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/plasteel, /area/hydroponics) "cge" = ( @@ -64270,6 +61966,12 @@ dir = 4 }, /obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/plasteel, /area/hydroponics) "cgm" = ( @@ -64301,6 +62003,7 @@ pixel_x = -32 }, /obj/machinery/photocopier, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/wood, /area/ntrep) "cgr" = ( @@ -64336,9 +62039,9 @@ }, /obj/item/pen/invisible, /turf/simulated/floor/plasteel{ - tag = "icon-cult"; + dir = 2; icon_state = "cult"; - dir = 2 + tag = "icon-cult" }, /area/library) "cgu" = ( @@ -64386,9 +62089,6 @@ /turf/simulated/floor/wood, /area/library) "cgw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - req_access_txt = 1 - }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "bluecorner" @@ -64400,10 +62100,11 @@ d2 = 2; icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel, /area/hallway/primary/aft) "cgy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "purplecorner" @@ -64444,20 +62145,7 @@ }) "cgC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"cgD" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -64527,16 +62215,6 @@ icon_state = "whiteblue" }, /area/medical/paramedic) -"cgJ" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay2{ - name = "Medbay Storage" - }) "cgK" = ( /obj/structure/table, /obj/item/paper_bin{ @@ -64576,8 +62254,8 @@ pixel_x = -24 }, /obj/structure/sink{ - icon_state = "sink"; dir = 8; + icon_state = "sink"; pixel_x = -12; pixel_y = 2 }, @@ -64645,8 +62323,8 @@ icon_state = "4-8" }, /turf/simulated/floor/plasteel{ - icon_state = "green"; - dir = 6 + dir = 6; + icon_state = "green" }, /area/hydroponics) "cgS" = ( @@ -64692,9 +62370,6 @@ /obj/structure/window/reinforced{ dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/effect/decal/warning_stripes/yellow, /turf/simulated/floor/plasteel{ icon_state = "hydrofloor" @@ -64737,13 +62412,8 @@ d2 = 8; icon_state = "2-8" }, -/turf/simulated/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/explab) -"cgZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 + dir = 4 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -64755,9 +62425,6 @@ }, /area/toxins/explab) "chb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/item/cigbutt, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/yellow{ @@ -64766,6 +62433,7 @@ icon_state = "1-2" }, /obj/effect/decal/warning_stripes/south, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/maintenance/starboard) "chc" = ( @@ -64820,9 +62488,9 @@ /area/atmos) "chh" = ( /obj/machinery/atmospherics/pipe/simple/visible/purple{ - tag = "icon-intact (SOUTHWEST)"; + dir = 10; icon_state = "intact"; - dir = 10 + tag = "icon-intact (SOUTHWEST)" }, /turf/simulated/floor/plasteel, /area/atmos) @@ -64930,9 +62598,6 @@ pixel_y = 5 }, /obj/item/watertank, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, /obj/item/grenade/chem_grenade/antiweed, /obj/structure/table/glass, /obj/effect/decal/warning_stripes/north, @@ -64964,6 +62629,9 @@ pixel_y = -24; req_access_txt = "66" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "neutralcorner" @@ -65074,6 +62742,9 @@ dir = 4 }, /obj/effect/decal/warning_stripes/west, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, /turf/simulated/floor/plating, /area/maintenance/starboard) "chE" = ( @@ -65155,15 +62826,14 @@ name = "Medical Doctor" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - level = 1 - }, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -65388,6 +63058,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -65400,21 +63071,8 @@ d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, /obj/machinery/hologram/holopad, /obj/structure/disposalpipe/segment, -/turf/simulated/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"cih" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -65422,10 +63080,7 @@ name = "Research Division" }) "cii" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1; - initialize_directions = 11 - }, +/obj/machinery/atmospherics/unary/vent_scrubber, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -65444,6 +63099,7 @@ d2 = 2; icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -65451,15 +63107,13 @@ name = "Medbay Storage" }) "cil" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8; - initialize_directions = 11 - }, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -65481,12 +63135,6 @@ pixel_y = -3 }, /obj/structure/table/glass, -/obj/machinery/atmospherics/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "whiteblue" @@ -65511,8 +63159,8 @@ slogan_delay = 700 }, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/hallway/primary/central) "cip" = ( @@ -65529,15 +63177,15 @@ pixel_y = -25 }, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/hallway/primary/central) "ciq" = ( /obj/machinery/vending/hydronutrients, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/hallway/primary/central) "cir" = ( @@ -65553,14 +63201,6 @@ /obj/effect/decal/warning_stripes/north, /turf/simulated/floor/plating, /area/maintenance/starboard) -"cit" = ( -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 1; - on = 1 - }, -/obj/machinery/hydroponics/constructable, -/turf/simulated/floor/plasteel, -/area/hydroponics) "ciu" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -65572,15 +63212,13 @@ d2 = 4; icon_state = "1-4" }, -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 1; - on = 1 - }, /obj/effect/landmark{ name = "xeno_spawn"; pixel_x = -1 }, /obj/effect/decal/warning_stripes/north, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/maintenance/incinerator) "civ" = ( @@ -65612,16 +63250,6 @@ /area/maintenance/aft{ name = "Aft Maintenance" }) -"cix" = ( -/obj/machinery/atmospherics/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/machinery/hydroponics/constructable, -/turf/simulated/floor/plasteel, -/area/hydroponics) "ciy" = ( /obj/item/stack/sheet/cardboard, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -65656,9 +63284,6 @@ /obj/structure/plasticflaps{ opacity = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/effect/decal/warning_stripes/yellow/hollow, /turf/simulated/floor/plasteel{ icon_state = "hydrofloor" @@ -65746,6 +63371,8 @@ /obj/machinery/atmospherics/pipe/simple/visible{ dir = 10 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" }, @@ -65762,8 +63389,8 @@ icon_state = "0-8" }, /obj/machinery/power/terminal{ - icon_state = "term"; - dir = 1 + dir = 1; + icon_state = "term" }, /obj/machinery/alarm{ desc = "This particular atmos control unit appears to have no access restrictions."; @@ -66021,18 +63648,6 @@ /obj/structure/lattice/catwalk, /turf/space, /area/solar/port) -"cjd" = ( -/obj/effect/spawner/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/poddoor{ - density = 0; - icon_state = "open"; - id_tag = "lawyer_blast"; - name = "privacy shutters"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/lawoffice) "cje" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -66069,7 +63684,6 @@ name = "Aft Maintenance" }) "cjh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/door/firedoor, /turf/simulated/floor/plasteel{ dir = 2; @@ -66095,6 +63709,7 @@ req_access_txt = 1 }, /obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "whitehall"; @@ -66172,6 +63787,7 @@ "cjr" = ( /obj/machinery/mecha_part_fabricator{ dir = 1; + id = "0"; name = "counterfeit fabricator"; req_access = "0" }, @@ -66200,7 +63816,6 @@ name = "Aft Maintenance" }) "cjt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -66287,15 +63902,13 @@ d2 = 8; icon_state = "2-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "whiteblue" @@ -66388,9 +64001,6 @@ }, /area/medical/reception) "cjH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - req_access_txt = 1 - }, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -66415,6 +64025,7 @@ dir = 2; icon_state = "pipe-c" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel, /area/hallway/primary/aft) "cjJ" = ( @@ -66443,13 +64054,16 @@ d2 = 4; icon_state = "1-4" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -66462,13 +64076,16 @@ d2 = 8; icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -66481,6 +64098,9 @@ d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -66533,15 +64153,6 @@ /area/medical/medbay2{ name = "Medbay Storage" }) -"cjS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "whiteblue" - }, -/area/medical/reception) "cjT" = ( /obj/effect/spawner/window/reinforced, /turf/simulated/floor/plating, @@ -66564,30 +64175,10 @@ }, /turf/simulated/floor/plating, /area/hydroponics) -"cjW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/spawner/window/reinforced, -/turf/simulated/floor/plating, -/area/medical/virology) "cjX" = ( /obj/item/flashlight, /turf/simulated/floor/plating, /area/maintenance/starboard) -"cjY" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - icon_state = "white" - }, -/area/medical/reception) "cjZ" = ( /obj/machinery/alarm{ dir = 1; @@ -66648,6 +64239,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ req_access_txt = 1 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -66676,6 +64268,12 @@ name = "Station Intercom (Medbay)"; pixel_y = -30 }, +/obj/machinery/atmospherics/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "whiteblue" @@ -66767,14 +64365,13 @@ /area/space/nearstation) "ckr" = ( /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + d2 = 2; + icon_state = "0-2" }, /obj/structure/lattice/catwalk, /turf/space, /area/solar/port) "cks" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, /obj/machinery/door/poddoor{ density = 0; @@ -66871,9 +64468,6 @@ d2 = 8; icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /obj/effect/spawner/window/reinforced, /turf/simulated/floor/plating, /area/assembly/robotics) @@ -67010,8 +64604,8 @@ name = "Aft Maintenance" }) "ckK" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -67038,9 +64632,6 @@ name = "Medbay Storage" }) "ckM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /obj/machinery/power/apc{ dir = 1; name = "Medbay Central APC"; @@ -67068,6 +64659,7 @@ dir = 2; initialize_directions = 11 }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -67086,6 +64678,9 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -67114,6 +64709,9 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -67133,6 +64731,9 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -67146,11 +64747,8 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/machinery/atmospherics/unary/vent_scrubber{ - dir = 2; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -67163,6 +64761,10 @@ icon_state = "1-2" }, /obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel, /area/hallway/primary/aft) "ckX" = ( @@ -67218,8 +64820,8 @@ }) "clb" = ( /obj/structure/disposalpipe/junction{ - icon_state = "pipe-j2"; - dir = 4 + dir = 4; + icon_state = "pipe-j2" }, /turf/simulated/floor/plasteel{ dir = 2; @@ -67245,6 +64847,7 @@ icon_state = "sink"; pixel_x = 11 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "whitepurple" @@ -67253,7 +64856,6 @@ name = "Research Division" }) "cld" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" @@ -67312,6 +64914,10 @@ pixel_x = -23; pixel_y = 8 }, +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 4; + on = 1 + }, /turf/simulated/floor/plasteel{ dir = 10; icon_state = "whiteblue" @@ -67351,14 +64957,6 @@ /area/maintenance/aft{ name = "Aft Maintenance" }) -"clk" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1; - initialize_directions = 11 - }, -/obj/effect/spawner/window/reinforced, -/turf/simulated/floor/plating, -/area/medical/virology) "cll" = ( /obj/item/wrench, /obj/item/clothing/suit/apron, @@ -67382,6 +64980,7 @@ opacity = 0 }, /obj/effect/decal/warning_stripes/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "whitepurplefull"; @@ -67420,7 +65019,6 @@ }) "clp" = ( /obj/structure/cable/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/spawner/window/reinforced, /turf/simulated/floor/plating, /area/medical/virology) @@ -67434,9 +65032,6 @@ req_access_txt = 1 }, /obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/effect/decal/warning_stripes/west, /turf/simulated/floor/plating, /area/maintenance/starboard) @@ -67545,15 +65140,6 @@ /area/maintenance/aft{ name = "Aft Maintenance" }) -"clx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plasteel{ - icon_state = "white" - }, -/area/medical/reception) "cly" = ( /turf/simulated/floor/plasteel{ icon_state = "floorgrime" @@ -67600,6 +65186,9 @@ dir = 2 }, /obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -67703,8 +65292,10 @@ /obj/effect/landmark/start{ name = "Coroner" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -67717,9 +65308,11 @@ /turf/simulated/floor/plating, /area/maintenance/starboard) "clS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4; - initialize_directions = 11 + dir = 1 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -67814,7 +65407,6 @@ name = "Medbay Storage" }) "cma" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/sink{ dir = 4; icon_state = "sink"; @@ -67824,26 +65416,7 @@ icon_state = "whitebluefull" }, /area/medical/reception) -"cmb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/morgue{ - tag = "icon-morgue1 (WEST)"; - icon_state = "morgue1"; - dir = 8 - }, -/turf/simulated/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/morgue) "cmc" = ( -/obj/machinery/atmospherics/unary/vent_scrubber{ - dir = 2; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, /obj/structure/table, /obj/item/autopsy_scanner, /obj/item/camera{ @@ -67865,17 +65438,6 @@ icon_state = "dark" }, /area/medical/morgue) -"cme" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/morgue{ - tag = "icon-morgue1 (WEST)"; - icon_state = "morgue1"; - dir = 8 - }, -/turf/simulated/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/morgue) "cmf" = ( /obj/machinery/power/apc{ dir = 4; @@ -67911,14 +65473,7 @@ icon_state = "alarm0"; pixel_x = -22 }, -/turf/simulated/floor/plasteel{ - icon_state = "white" - }, -/area/medical/reception) -"cmh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -67945,25 +65500,7 @@ tag = "icon-whitehall (WEST)" }, /area/medical/chemistry) -"cmk" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8; - initialize_directions = 11 - }, -/turf/simulated/floor/plasteel{ - icon_state = "white" - }, -/area/medical/reception) -"cml" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/plasteel{ - icon_state = "white" - }, -/area/medical/reception) "cmm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "neutralcorner" @@ -68014,11 +65551,16 @@ /turf/simulated/wall, /area/medical/reception) "cmu" = ( -/obj/machinery/atmospherics/unary/vent_pump, /obj/machinery/door/window/eastright{ name = "Coroner Office"; req_access_txt = "5" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -68046,6 +65588,13 @@ d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 2; + initialize_directions = 11 + }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -68248,7 +65797,6 @@ /turf/simulated/floor/plating, /area/atmos) "cmR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, /obj/machinery/door/firedoor, /obj/machinery/door/airlock/research{ @@ -68366,12 +65914,17 @@ name = "Aft Maintenance" }) "cna" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -68385,6 +65938,12 @@ d2 = 8; icon_state = "1-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -68393,8 +65952,6 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/effect/landmark/start{ name = "Coroner" }, @@ -68404,9 +65961,6 @@ }, /area/medical/morgue) "cnd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - req_access_txt = 1 - }, /obj/machinery/alarm{ dir = 4; pixel_x = -23 @@ -68425,23 +65979,12 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ req_access_txt = 1 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "whiteblue" }, /area/medical/reception) -"cnf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/morgue, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/morgue) "cng" = ( /obj/structure/noticeboard{ desc = "A board for pinning important notices upon."; @@ -68465,27 +66008,14 @@ }, /obj/item/storage/box/donkpockets, /obj/structure/table/glass, -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 4; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, /turf/simulated/floor/plasteel{ - tag = "icon-cafeteria (NORTHEAST)"; + dir = 5; icon_state = "cafeteria"; - dir = 5 + tag = "icon-cafeteria (NORTHEAST)" }, /area/medical/research{ name = "Research Division" }) -"cni" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plasteel{ - dir = 2; - icon_state = "whiteblue" - }, -/area/medical/reception) "cnj" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -68493,10 +66023,6 @@ icon_state = "4-8" }, /obj/machinery/light, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 2; - initialize_directions = 11 - }, /obj/structure/cable/yellow{ d1 = 2; d2 = 4; @@ -68553,8 +66079,8 @@ /area/medical/reception) "cno" = ( /obj/item/twohanded/required/kirbyplants{ - tag = "icon-plant-11"; - icon_state = "plant-11" + icon_state = "plant-11"; + tag = "icon-plant-11" }, /turf/simulated/floor/plasteel{ dir = 2; @@ -68595,9 +66121,6 @@ /turf/simulated/floor/plating, /area/maintenance/incinerator) "cns" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - req_access_txt = 1 - }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "neutralcorner" @@ -68615,10 +66138,11 @@ icon_state = "2-4" }, /obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel, /area/hallway/primary/aft) "cnu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; @@ -68667,15 +66191,11 @@ pixel_y = 32 }, /obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 - }, /mob/living/simple_animal/pet/dog/corgi/borgi, /turf/simulated/floor/plasteel{ - tag = "icon-cafeteria (NORTHEAST)"; + dir = 5; icon_state = "cafeteria"; - dir = 5 + tag = "icon-cafeteria (NORTHEAST)" }, /area/medical/research{ name = "Research Division" @@ -68713,6 +66233,7 @@ req_one_access_txt = "47" }, /obj/effect/decal/warning_stripes/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "whitepurple" @@ -68728,26 +66249,7 @@ }, /area/toxins/lab) "cnC" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 8; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/simulated/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/morgue) -"cnD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/morgue{ - tag = "icon-morgue1 (WEST)"; - icon_state = "morgue1"; - dir = 8 - }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -68784,14 +66286,10 @@ pixel_y = 7 }, /obj/structure/table/glass, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1; - level = 1 - }, /turf/simulated/floor/plasteel{ - tag = "icon-cafeteria (NORTHEAST)"; + dir = 5; icon_state = "cafeteria"; - dir = 5 + tag = "icon-cafeteria (NORTHEAST)" }, /area/medical/research{ name = "Research Division" @@ -68808,14 +66306,10 @@ /turf/simulated/floor/plating, /area/maintenance/incinerator) "cnI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - level = 1 - }, /turf/simulated/floor/plasteel{ - tag = "icon-cafeteria (NORTHEAST)"; + dir = 5; icon_state = "cafeteria"; - dir = 5 + tag = "icon-cafeteria (NORTHEAST)" }, /area/medical/research{ name = "Research Division" @@ -69187,6 +66681,15 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 1; + external_pressure_bound = 0; + initialize_directions = 1; + internal_pressure_bound = 4000; + on = 0; + pressure_checks = 2; + pump_direction = 0 + }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -69207,9 +66710,9 @@ dir = 4 }, /obj/structure/morgue{ - tag = "icon-morgue1 (WEST)"; + dir = 8; icon_state = "morgue1"; - dir = 8 + tag = "icon-morgue1 (WEST)" }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -69259,6 +66762,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ req_access_txt = 1 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ icon_state = "whitebluefull" }, @@ -69318,12 +66822,9 @@ }, /area/medical/surgery1) "coz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - req_access_txt = 1 - }, /obj/machinery/light{ - icon_state = "tube1"; - dir = 8 + dir = 8; + icon_state = "tube1" }, /turf/simulated/floor/plasteel{ dir = 8; @@ -69485,9 +66986,6 @@ /turf/simulated/floor/plating, /area/maintenance/starboard) "coR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /obj/structure/sign/nosmoking_2{ pixel_y = 28 }, @@ -69498,11 +66996,13 @@ /area/medical/reception) "coS" = ( /obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, /turf/simulated/floor/plasteel{ - tag = "icon-cafeteria (NORTHEAST)"; + dir = 5; icon_state = "cafeteria"; - dir = 5 + tag = "icon-cafeteria (NORTHEAST)" }, /area/medical/research{ name = "Research Division" @@ -69510,9 +67010,9 @@ "coU" = ( /obj/item/cigbutt, /turf/simulated/floor/plasteel{ - tag = "icon-cafeteria (NORTHEAST)"; + dir = 5; icon_state = "cafeteria"; - dir = 5 + tag = "icon-cafeteria (NORTHEAST)" }, /area/medical/research{ name = "Research Division" @@ -69578,9 +67078,6 @@ }, /area/medical/exam_room) "cpc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; @@ -69774,8 +67271,8 @@ pixel_y = 28 }, /turf/simulated/floor/wood{ - tag = "icon-wood-broken3"; - icon_state = "wood-broken3" + icon_state = "wood-broken3"; + tag = "icon-wood-broken3" }, /area/maintenance/aft{ name = "Aft Maintenance" @@ -69803,9 +67300,6 @@ normaldoorcontrol = 1; pixel_y = 26 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "whiteblue" @@ -69917,7 +67411,6 @@ }, /area/medical/cmo) "cpH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/camera{ c_tag = "Chemistry"; dir = 4; @@ -69959,12 +67452,12 @@ req_access_txt = "5" }, /obj/effect/mapping_helpers/airlock/unres, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ icon_state = "whitebluefull" }, /area/medical/reception) "cpL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/door/firedoor, /obj/machinery/door/airlock/medical/glass{ id_tag = "MedbayFoyer"; @@ -69989,10 +67482,6 @@ pixel_x = 4; pixel_y = -4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - level = 1 - }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "whiteblue" @@ -70000,10 +67489,6 @@ /area/medical/reception) "cpN" = ( /obj/structure/table, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6; - level = 1 - }, /obj/machinery/computer/guestpass, /obj/machinery/camera{ c_tag = "Medbay Surgery 1 North"; @@ -70027,12 +67512,6 @@ dir = 1; pixel_y = 3 }, -/obj/machinery/atmospherics/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "whiteblue" @@ -70076,10 +67555,16 @@ /obj/machinery/newscaster{ pixel_x = -30 }, +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 4; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, /turf/simulated/floor/plasteel{ - tag = "icon-cafeteria (NORTHEAST)"; + dir = 5; icon_state = "cafeteria"; - dir = 5 + tag = "icon-cafeteria (NORTHEAST)" }, /area/medical/research{ name = "Research Division" @@ -70159,9 +67644,6 @@ /turf/simulated/floor/engine/insulated, /area/maintenance/incinerator) "cqb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "whiteblue" @@ -70207,10 +67689,8 @@ /obj/effect/landmark/start{ name = "Scientist" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, /obj/effect/decal/warning_stripes/east, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -70226,12 +67706,11 @@ }, /area/toxins/lab) "cqi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, /obj/machinery/shower{ - tag = "icon-shower (EAST)"; + dir = 4; icon_state = "shower"; - dir = 4 + tag = "icon-shower (EAST)" }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -70262,7 +67741,6 @@ name = "\improper Secure Lab" }) "cqk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atm{ pixel_x = 32 }, @@ -70279,9 +67757,6 @@ /obj/item/stock_parts/manipulator, /obj/item/stock_parts/micro_laser, /obj/item/stock_parts/micro_laser, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /obj/item/clothing/glasses/science, /obj/effect/decal/warning_stripes/north, /turf/simulated/floor/plasteel{ @@ -70352,18 +67827,21 @@ }, /obj/item/cigbutt, /turf/simulated/floor/plasteel{ - tag = "icon-cafeteria (NORTHEAST)"; + dir = 5; icon_state = "cafeteria"; - dir = 5 + tag = "icon-cafeteria (NORTHEAST)" }, /area/medical/research{ name = "Research Division" }) "cqt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ - tag = "icon-cafeteria (NORTHEAST)"; + dir = 5; icon_state = "cafeteria"; - dir = 5 + tag = "icon-cafeteria (NORTHEAST)" }, /area/medical/research{ name = "Research Division" @@ -70392,11 +67870,16 @@ name = "Research Division" }) "cqx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, /turf/simulated/floor/engine, /area/toxins/explab) "cqz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, /turf/simulated/floor/engine, /area/toxins/explab) "cqB" = ( @@ -70531,6 +68014,9 @@ name = "Test Chamber Blast Doors"; pixel_y = -25 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/engine, /area/toxins/explab) "cqN" = ( @@ -70637,8 +68123,8 @@ }) "cra" = ( /turf/simulated/floor/wood{ - tag = "icon-wood-broken7"; - icon_state = "wood-broken7" + icon_state = "wood-broken7"; + tag = "icon-wood-broken7" }, /area/maintenance/aft{ name = "Aft Maintenance" @@ -70647,16 +68133,16 @@ /obj/item/reagent_containers/glass/rag, /obj/structure/table/wood, /turf/simulated/floor/wood{ - tag = "icon-wood-broken4"; - icon_state = "wood-broken4" + icon_state = "wood-broken4"; + tag = "icon-wood-broken4" }, /area/maintenance/aft{ name = "Aft Maintenance" }) "crc" = ( /turf/simulated/floor/wood{ - tag = "icon-wood-broken5"; - icon_state = "wood-broken5" + icon_state = "wood-broken5"; + tag = "icon-wood-broken5" }, /area/maintenance/aft{ name = "Aft Maintenance" @@ -70665,23 +68151,11 @@ /obj/machinery/sleeper{ dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ icon_state = "white" }, /area/medical/exam_room) -"cre" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "whiteblue" - }, -/area/medical/exam_room) "crf" = ( /obj/machinery/door/poddoor/shutters{ density = 0; @@ -70692,30 +68166,12 @@ opacity = 0 }, /obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /turf/simulated/floor/plasteel{ - tag = "icon-whitebluefull"; - icon_state = "whitebluefull" - }, -/area/medical/exam_room) -"crg" = ( -/obj/machinery/sleeper{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plasteel{ - icon_state = "white" + icon_state = "whitebluefull"; + tag = "icon-whitebluefull" }, /area/medical/exam_room) "crh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /turf/simulated/floor/plasteel{ dir = 9; icon_state = "whiteblue" @@ -70731,12 +68187,9 @@ name = "Acute 1 Privacy Shutters"; opacity = 0 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /turf/simulated/floor/plasteel{ - tag = "icon-whitebluefull"; - icon_state = "whitebluefull" + icon_state = "whitebluefull"; + tag = "icon-whitebluefull" }, /area/medical/exam_room) "crj" = ( @@ -70745,19 +68198,8 @@ d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 2 - }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "whiteblue" - }, -/area/medical/reception) -"crk" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "whiteblue" @@ -70772,9 +68214,6 @@ /turf/simulated/floor/engine/o2, /area/atmos) "crm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /obj/machinery/light{ dir = 1; in_use = 1 @@ -70833,14 +68272,13 @@ d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, /obj/structure/cable/yellow{ d1 = 1; d2 = 4; icon_state = "1-4" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "whiteblue" @@ -70857,23 +68295,12 @@ /area/maintenance/aft{ name = "Aft Maintenance" }) -"crz" = ( -/obj/effect/spawner/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/medical/reception) "crA" = ( /obj/structure/cable/yellow{ d1 = 4; d2 = 8; icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8; - initialize_directions = 11 - }, /turf/simulated/floor/plasteel{ dir = 5; icon_state = "whiteblue" @@ -70881,9 +68308,6 @@ /area/medical/reception) "crB" = ( /obj/structure/table, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, /obj/item/paper_bin{ pixel_x = -2; pixel_y = 5 @@ -70948,7 +68372,6 @@ }, /area/medical/surgery1) "crI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/camera{ c_tag = "Aft Primary Hallway - Fore"; dir = 8; @@ -70965,9 +68388,6 @@ /area/hallway/primary/aft) "crJ" = ( /obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, /obj/structure/sink{ dir = 8; icon_state = "sink"; @@ -70983,6 +68403,7 @@ "crK" = ( /obj/machinery/hologram/holopad, /obj/effect/decal/warning_stripes/east, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -71002,6 +68423,7 @@ /area/toxins/lab) "crN" = ( /obj/effect/decal/warning_stripes/east, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -71122,9 +68544,9 @@ }, /obj/structure/table/glass, /turf/simulated/floor/plasteel{ - tag = "icon-cafeteria (NORTHEAST)"; + dir = 5; icon_state = "cafeteria"; - dir = 5 + tag = "icon-cafeteria (NORTHEAST)" }, /area/medical/research{ name = "Research Division" @@ -71134,14 +68556,12 @@ dir = 4; icon_state = "pipe-c" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ - tag = "icon-cafeteria (NORTHEAST)"; + dir = 5; icon_state = "cafeteria"; - dir = 5 + tag = "icon-cafeteria (NORTHEAST)" }, /area/medical/research{ name = "Research Division" @@ -71150,13 +68570,10 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /turf/simulated/floor/plasteel{ - tag = "icon-cafeteria (NORTHEAST)"; + dir = 5; icon_state = "cafeteria"; - dir = 5 + tag = "icon-cafeteria (NORTHEAST)" }, /area/medical/research{ name = "Research Division" @@ -71165,11 +68582,6 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atmospherics/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_Toxins = 0 - }, /obj/structure/noticeboard{ pixel_y = -32 }, @@ -71180,9 +68592,9 @@ network = list("SS13","RD") }, /turf/simulated/floor/plasteel{ - tag = "icon-cafeteria (NORTHEAST)"; + dir = 5; icon_state = "cafeteria"; - dir = 5 + tag = "icon-cafeteria (NORTHEAST)" }, /area/medical/research{ name = "Research Division" @@ -71429,6 +68841,9 @@ normaldoorcontrol = 1; pixel_y = -26 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "whiteblue" @@ -71548,6 +68963,9 @@ d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "whiteblue" @@ -71578,10 +68996,6 @@ name = "\improper Secure Lab" }) "csG" = ( -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 1; - on = 1 - }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5; level = 1 @@ -71594,6 +69008,9 @@ /obj/effect/landmark/start{ name = "Medical Doctor" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -71607,6 +69024,9 @@ d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "whiteblue" @@ -71630,9 +69050,12 @@ d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/plasteel{ - tag = "icon-whitebluefull"; - icon_state = "whitebluefull" + icon_state = "whitebluefull"; + tag = "icon-whitebluefull" }, /area/medical/exam_room) "csJ" = ( @@ -71697,10 +69120,6 @@ name = "\improper Secure Lab" }) "csN" = ( -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 1; - on = 1 - }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 2; initialize_directions = 11 @@ -71713,6 +69132,9 @@ /obj/effect/landmark/start{ name = "Medical Doctor" }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -71726,6 +69148,9 @@ d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "whiteblue" @@ -71749,9 +69174,12 @@ d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/plasteel{ - tag = "icon-whitebluefull"; - icon_state = "whitebluefull" + icon_state = "whitebluefull"; + tag = "icon-whitebluefull" }, /area/medical/exam_room) "csQ" = ( @@ -71765,12 +69193,13 @@ d2 = 4; icon_state = "1-4" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -71779,18 +69208,19 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/plasteel{ icon_state = "white" }, /area/medical/reception) "csT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/light{ dir = 4; icon_state = "tube1" @@ -71810,8 +69240,8 @@ pixel_x = -28 }, /obj/machinery/light{ - icon_state = "tube1"; - dir = 8 + dir = 8; + icon_state = "tube1" }, /turf/simulated/floor/plasteel{ dir = 8; @@ -71854,7 +69284,6 @@ }, /area/medical/chemistry) "csY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, /obj/machinery/door/firedoor, /obj/machinery/door/airlock/research{ @@ -71886,6 +69315,7 @@ req_one_access_txt = "47" }, /obj/effect/decal/warning_stripes/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "whitepurple" @@ -71933,9 +69363,9 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ - tag = "icon-cafeteria (NORTHEAST)"; + dir = 5; icon_state = "cafeteria"; - dir = 5 + tag = "icon-cafeteria (NORTHEAST)" }, /area/medical/research{ name = "Research Division" @@ -71944,13 +69374,14 @@ /turf/simulated/wall, /area/toxins/explab) "ctf" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, /obj/structure/disposalpipe/segment, /obj/machinery/shower{ dir = 4 }, +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 4; + on = 1 + }, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -71967,6 +69398,9 @@ icon_state = "4-8" }, /obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -71978,9 +69412,8 @@ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 8; - on = 1 +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -72055,7 +69488,6 @@ /obj/item/taperecorder{ pixel_y = 0 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/decal/warning_stripes/south, /turf/simulated/floor/plasteel, /area/toxins/explab) @@ -72077,8 +69509,11 @@ d2 = 8; icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -72132,8 +69567,8 @@ }) "cty" = ( /turf/simulated/floor/wood{ - tag = "icon-wood-broken"; - icon_state = "wood-broken" + icon_state = "wood-broken"; + tag = "icon-wood-broken" }, /area/maintenance/aft{ name = "Aft Maintenance" @@ -72146,19 +69581,6 @@ /area/maintenance/aft{ name = "Aft Maintenance" }) -"ctB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plasteel{ - icon_state = "white" - }, -/area/medical/reception) "ctE" = ( /obj/machinery/portable_atmospherics/canister/air, /obj/machinery/atmospherics/unary/portables_connector{ @@ -72174,12 +69596,8 @@ d2 = 8; icon_state = "1-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -72208,15 +69626,23 @@ name = "Medical Reception"; req_access_txt = "5" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ - tag = "icon-whitebluefull"; - icon_state = "whitebluefull" + icon_state = "whitebluefull"; + tag = "icon-whitebluefull" }, /area/medical/reception) "ctK" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4; - initialize_directions = 11 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, /turf/simulated/floor/plasteel{ dir = 4; @@ -72237,6 +69663,12 @@ /turf/simulated/floor/plasteel, /area/toxins/explab) "ctM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "whiteblue" @@ -72264,12 +69696,12 @@ }, /area/medical/reception) "ctQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - req_access_txt = 1 - }, /obj/structure/extinguisher_cabinet{ pixel_x = -27 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "bluecorner" @@ -72310,10 +69742,6 @@ /area/medical/surgery1) "ctV" = ( /obj/machinery/optable, -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 2; - on = 1 - }, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -72361,6 +69789,10 @@ }, /area/medical/exam_room) "cua" = ( +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 1; + on = 1 + }, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "whiteblue" @@ -72377,26 +69809,15 @@ on = 1 }, /obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/hallway/primary/aft) "cuc" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8; - initialize_directions = 11 - }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "purple" }, /area/hallway/primary/aft) -"cud" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - icon_state = "purplefull" - }, -/area/hallway/primary/aft) "cue" = ( /obj/structure/bed, /obj/machinery/iv_drip, @@ -72405,34 +69826,6 @@ icon_state = "whiteblue" }, /area/medical/exam_room) -"cuf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "whitepurple" - }, -/area/toxins/lab) -"cug" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/chair/stool, -/turf/simulated/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/lab) -"cuh" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/lab) "cui" = ( /obj/structure/closet/wardrobe/chemistry_white, /obj/item/storage/backpack/satchel_chem, @@ -72454,8 +69847,8 @@ pixel_y = 4 }, /obj/machinery/light{ - icon_state = "tube1"; - dir = 4 + dir = 4; + icon_state = "tube1" }, /turf/simulated/floor/plasteel{ dir = 6; @@ -72467,9 +69860,6 @@ dir = 1; icon_state = "pipe-c" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, /turf/simulated/floor/plasteel{ dir = 9; icon_state = "whitepurple" @@ -72486,12 +69876,8 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "whitepurple" @@ -72504,9 +69890,6 @@ dir = 2; icon_state = "pipe-c" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "whitepurplecorner" @@ -72515,9 +69898,6 @@ name = "Research Division" }) "cuo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/structure/sign/nosmoking_2{ pixel_y = 32 }, @@ -72533,9 +69913,6 @@ name = "Research Division" }) "cup" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, /obj/machinery/light{ dir = 1 }, @@ -72657,9 +70034,6 @@ /obj/structure/table/reinforced, /obj/item/folder/white, /obj/item/folder/white, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -72672,17 +70046,11 @@ dir = 1; pixel_y = 3 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /turf/simulated/floor/plasteel{ icon_state = "white" }, /area/toxins/explab) "cuB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /obj/structure/table/reinforced, /obj/item/wrench, /obj/item/crowbar, @@ -72697,20 +70065,15 @@ }, /area/toxins/explab) "cuC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /obj/machinery/hologram/holopad, /turf/simulated/floor/plasteel{ icon_state = "white" }, /area/toxins/explab) "cuD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, /obj/effect/decal/warning_stripes/south, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/toxins/explab) "cuE" = ( @@ -72762,8 +70125,8 @@ name = "The Gobbetting Barmaid" }, /turf/simulated/floor/wood{ - tag = "icon-wood-broken6"; - icon_state = "wood-broken6" + icon_state = "wood-broken6"; + tag = "icon-wood-broken6" }, /area/maintenance/aft{ name = "Aft Maintenance" @@ -72774,19 +70137,19 @@ d2 = 2; icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ icon_state = "white" }, /area/medical/reception) "cuL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "whitebluecorner" }, /area/medical/reception) "cuM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ dir = 3; icon_state = "whitebluecorner" @@ -72798,9 +70161,6 @@ name = "Test Chamber Blast Doors"; pixel_y = 25 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, /obj/structure/table/reinforced, /obj/item/reagent_containers/glass/bottle/epinephrine{ pixel_x = 7; @@ -72837,8 +70197,9 @@ /turf/simulated/floor/engine/insulated/vacuum, /area/maintenance/incinerator) "cuP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 + dir = 4 }, /turf/simulated/floor/plasteel{ dir = 2; @@ -72857,38 +70218,12 @@ }, /turf/simulated/floor/engine/insulated/vacuum, /area/maintenance/incinerator) -"cuR" = ( -/obj/effect/spawner/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/medical/reception) "cuS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ dir = 6; icon_state = "whiteblue" }, /area/medical/reception) -"cuT" = ( -/obj/structure/table, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 5 - }, -/obj/item/pen, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "whiteblue" - }, -/area/medical/reception) "cuU" = ( /obj/structure/table, /obj/machinery/computer/crew, @@ -72918,15 +70253,6 @@ icon_state = "white" }, /area/medical/surgery1) -"cuY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - level = 1 - }, -/turf/simulated/floor/plasteel{ - icon_state = "white" - }, -/area/medical/surgery1) "cuZ" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -72936,9 +70262,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -72979,8 +70302,8 @@ req_access_txt = "5" }, /turf/simulated/floor/plasteel{ - tag = "icon-whitebluefull"; - icon_state = "whitebluefull" + icon_state = "whitebluefull"; + tag = "icon-whitebluefull" }, /area/medical/exam_room) "cvd" = ( @@ -72994,23 +70317,8 @@ opacity = 0 }, /turf/simulated/floor/plasteel{ - tag = "icon-whitebluefull"; - icon_state = "whitebluefull" - }, -/area/medical/exam_room) -"cve" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters{ - density = 0; - dir = 2; - icon_state = "open"; - id_tag = "acute1"; - name = "Acute 1 Privacy Shutters"; - opacity = 0 - }, -/turf/simulated/floor/plasteel{ - tag = "icon-whitebluefull"; - icon_state = "whitebluefull" + icon_state = "whitebluefull"; + tag = "icon-whitebluefull" }, /area/medical/exam_room) "cvf" = ( @@ -73020,8 +70328,8 @@ req_access_txt = "5" }, /turf/simulated/floor/plasteel{ - tag = "icon-whitebluefull"; - icon_state = "whitebluefull" + icon_state = "whitebluefull"; + tag = "icon-whitebluefull" }, /area/medical/exam_room) "cvg" = ( @@ -73035,13 +70343,19 @@ d2 = 2; icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, /turf/simulated/floor/plasteel{ icon_state = "white" }, /area/medical/medbay3) "cvi" = ( /obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "whiteblue" @@ -73052,7 +70366,6 @@ /area/medical/chemistry) "cvk" = ( /obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "whiteblue" @@ -73073,13 +70386,6 @@ icon_state = "whitepurple" }, /area/toxins/lab) -"cvm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "purple" - }, -/area/hallway/primary/aft) "cvn" = ( /turf/simulated/floor/plasteel{ icon_state = "purplefull" @@ -73095,6 +70401,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ req_access_txt = 1 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ icon_state = "whitebluefull" }, @@ -73146,6 +70453,12 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -73160,6 +70473,12 @@ dir = 2; icon_state = "pipe-c" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "whitepurple" @@ -73176,6 +70495,12 @@ name = "Research and Development Lab"; req_access_txt = "47" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "whitepurplefull"; @@ -73188,6 +70513,12 @@ d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "whitepurple" @@ -73201,14 +70532,13 @@ d2 = 4; icon_state = "1-4" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, /obj/structure/cable/yellow{ d1 = 1; d2 = 8; icon_state = "1-8" }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -73225,6 +70555,9 @@ dir = 1 }, /obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -73245,6 +70578,9 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -73260,7 +70596,9 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -73281,20 +70619,8 @@ d2 = 8; icon_state = "2-8" }, -/turf/simulated/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"cvB" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -73314,13 +70640,16 @@ icon_state = "1-8" }, /obj/structure/disposalpipe/junction{ - tag = "icon-pipe-j2"; + dir = 2; icon_state = "pipe-j2"; - dir = 2 + tag = "icon-pipe-j2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 2 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -73339,6 +70668,9 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -73360,6 +70692,9 @@ /obj/effect/landmark{ name = "lightsout" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -73377,10 +70712,13 @@ icon_state = "pipe-j1"; tag = "icon-pipe-j1 (EAST)" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 2 }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 2; + initialize_directions = 11 + }, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -73400,6 +70738,9 @@ dir = 4; level = 1 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -73440,13 +70781,16 @@ d2 = 8; icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /obj/structure/disposalpipe/junction{ dir = 8; icon_state = "pipe-j2" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "whitepurple" @@ -73471,6 +70815,9 @@ name = "Experimentation Lab"; req_access_txt = "8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "whitepurplefull"; @@ -73490,6 +70837,9 @@ d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "whitepurple" @@ -73502,7 +70852,6 @@ name = "Medbay"; req_access_txt = "5" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ icon_state = "whitebluefull" }, @@ -73510,9 +70859,6 @@ "cvM" = ( /obj/structure/table, /obj/machinery/computer/crew, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "whiteblue" @@ -73538,8 +70884,8 @@ /area/medical/reception) "cvP" = ( /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + d2 = 2; + icon_state = "0-2" }, /obj/machinery/power/solar{ id = "aftport"; @@ -73565,10 +70911,6 @@ /area/solar/port) "cvR" = ( /obj/structure/chair/office/light, -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 8; - on = 1 - }, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "whiteblue" @@ -73584,17 +70926,6 @@ icon_state = "white" }, /area/medical/surgery1) -"cvT" = ( -/obj/structure/sink{ - dir = 4; - icon_state = "sink"; - pixel_x = 11 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plasteel{ - icon_state = "whitebluefull" - }, -/area/medical/reception) "cvU" = ( /obj/machinery/smartfridge/medbay, /obj/effect/decal/warning_stripes/yellow, @@ -73639,16 +70970,16 @@ "cvZ" = ( /obj/structure/chair/stool, /turf/simulated/floor/wood{ - tag = "icon-wood-broken7"; - icon_state = "wood-broken7" + icon_state = "wood-broken7"; + tag = "icon-wood-broken7" }, /area/maintenance/aft{ name = "Aft Maintenance" }) "cwa" = ( /turf/simulated/floor/wood{ - tag = "icon-wood-broken6"; - icon_state = "wood-broken6" + icon_state = "wood-broken6"; + tag = "icon-wood-broken6" }, /area/maintenance/aft{ name = "Aft Maintenance" @@ -73711,7 +71042,9 @@ icon_state = "pipe-c" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -73720,10 +71053,9 @@ /obj/structure/extinguisher_cabinet{ pixel_x = 27 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, /obj/effect/decal/warning_stripes/west, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/toxins/explab) "cwi" = ( @@ -73783,6 +71115,7 @@ d2 = 2; icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -73799,12 +71132,11 @@ "cwp" = ( /obj/machinery/vending/coffee, /turf/simulated/floor/plasteel{ - tag = "icon-whitebluefull"; - icon_state = "whitebluefull" + icon_state = "whitebluefull"; + tag = "icon-whitebluefull" }, /area/medical/medbay3) "cwq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "whiteblue" @@ -73821,12 +71153,9 @@ }, /area/medical/chemistry) "cws" = ( -/obj/machinery/atmospherics/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_Toxins = 0 - }, +/obj/machinery/atmospherics/unary/vent_scrubber, /obj/effect/decal/warning_stripes/east, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -73854,6 +71183,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ req_access_txt = 1 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ icon_state = "whitebluefull" }, @@ -73898,19 +71228,6 @@ icon_state = "bluecorner" }, /area/hallway/primary/aft) -"cwA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/preopen{ - dir = 8; - id_tag = "rndshutters"; - name = "research and development lab shutters" - }, -/obj/effect/spawner/window/reinforced, -/turf/simulated/floor/plating, -/area/toxins/lab) "cwB" = ( /obj/machinery/power/compressor{ comp_id = "incineratorturbine"; @@ -73953,7 +71270,6 @@ 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/machinery/light_switch{ pixel_x = 5; pixel_y = -27 @@ -73992,7 +71308,10 @@ }) "cwH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -74013,10 +71332,13 @@ name = "Aft Maintenance" }) "cwJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, /obj/effect/decal/warning_stripes/west, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 2 + }, /turf/simulated/floor/plasteel, /area/toxins/explab) "cwK" = ( @@ -74051,6 +71373,7 @@ "cwM" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -74078,10 +71401,6 @@ dir = 4; icon_state = "pipe-c" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8; - initialize_directions = 11 - }, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -74092,9 +71411,6 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; @@ -74110,10 +71426,6 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -74125,9 +71437,6 @@ dir = 8; icon_state = "pipe-c" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -74135,9 +71444,6 @@ name = "Research Division" }) "cwS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/machinery/camera{ c_tag = "Research Division Hallway - Starboard"; dir = 1; @@ -74151,10 +71457,6 @@ }) "cwT" = ( /obj/machinery/light, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 2; - initialize_directions = 11 - }, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -74162,13 +71464,13 @@ name = "Research Division" }) "cwU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/machinery/firealarm{ dir = 1; pixel_y = -24 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -74193,11 +71495,12 @@ d2 = 2; icon_state = "1-2" }, +/obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1; + dir = 4; initialize_directions = 11 }, -/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ dir = 6; icon_state = "whitepurple" @@ -74205,12 +71508,6 @@ /area/medical/research{ name = "Research Division" }) -"cwX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/wall, -/area/toxins/explab) "cwY" = ( /obj/machinery/door/firedoor, /obj/machinery/status_display{ @@ -74228,9 +71525,6 @@ dir = 1; on = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/machinery/power/apc{ dir = 2; name = "Experimentation Lab APC"; @@ -74242,9 +71536,6 @@ }, /area/toxins/explab) "cxa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/item/radio/intercom{ name = "Station Intercom (General)"; pixel_y = -29 @@ -74259,22 +71550,6 @@ icon_state = "white" }, /area/toxins/explab) -"cxb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/explab) -"cxc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/explab) "cxd" = ( /obj/machinery/atmospherics/unary/vent_scrubber{ dir = 1; @@ -74354,8 +71629,8 @@ }) "cxl" = ( /turf/simulated/floor/wood{ - tag = "icon-wood-broken4"; - icon_state = "wood-broken4" + icon_state = "wood-broken4"; + tag = "icon-wood-broken4" }, /area/maintenance/aft{ name = "Aft Maintenance" @@ -74385,21 +71660,14 @@ icon_state = "whiteblue" }, /area/medical/medbay3) -"cxq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - level = 1 - }, -/turf/simulated/floor/plasteel{ - dir = 2; - icon_state = "whiteblue" - }, -/area/medical/medbay3) "cxr" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6; level = 1 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, /turf/simulated/floor/plasteel{ dir = 3; icon_state = "whitebluecorner" @@ -74407,6 +71675,9 @@ /area/medical/medbay3) "cxs" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "whiteblue" @@ -74430,26 +71701,28 @@ dir = 4; level = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5; - level = 1 - }, /obj/machinery/light, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 2 + }, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "whiteblue" }, /area/medical/medbay3) "cxv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - level = 1 - }, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4; + initialize_directions = 11 + }, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -74460,7 +71733,7 @@ level = 1 }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 + dir = 2 }, /turf/simulated/floor/plasteel{ dir = 8; @@ -74470,18 +71743,19 @@ "cxx" = ( /obj/machinery/vending/cola, /obj/machinery/light{ - icon_state = "tube1"; - dir = 4 + dir = 4; + icon_state = "tube1" }, /turf/simulated/floor/plasteel{ - tag = "icon-whitebluefull"; - icon_state = "whitebluefull" + icon_state = "whitebluefull"; + tag = "icon-whitebluefull" }, /area/medical/medbay3) "cxy" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "whiteblue" @@ -74527,6 +71801,9 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ req_access_txt = 1 }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "whiteblue" @@ -74558,7 +71835,9 @@ }, /area/medical/reception) "cxF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "whiteblue" @@ -74590,8 +71869,8 @@ /area/medical/reception) "cxJ" = ( /obj/item/twohanded/required/kirbyplants{ - tag = "icon-plant-11"; - icon_state = "plant-11" + icon_state = "plant-11"; + tag = "icon-plant-11" }, /turf/simulated/floor/plasteel{ dir = 1; @@ -74610,15 +71889,19 @@ icon_state = "1-4" }, /obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4; + initialize_directions = 11 + }, /turf/simulated/floor/plasteel, /area/hallway/primary/aft) "cxL" = ( /obj/machinery/computer/security/telescreen/entertainment{ pixel_x = -30 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "whiteblue" @@ -74643,6 +71926,7 @@ req_access_txt = "8" }, /obj/effect/decal/warning_stripes/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel, /area/toxins/storage) "cxN" = ( @@ -74669,9 +71953,10 @@ /turf/simulated/floor/plasteel, /area/toxins/lab) "cxO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, /obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ dir = 5; icon_state = "whitehall" @@ -74694,7 +71979,6 @@ }) "cxQ" = ( /obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/door/firedoor, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -74966,9 +72250,6 @@ /obj/machinery/light_switch{ pixel_x = -23 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "whitepurplecorner" @@ -74990,9 +72271,6 @@ dir = 4; icon_state = "pipe-c" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; @@ -75003,6 +72281,12 @@ d2 = 4; icon_state = "1-4" }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -75030,19 +72314,14 @@ icon_state = "4-8" }, /turf/simulated/floor/plasteel{ - tag = "icon-whitebluefull"; - icon_state = "whitebluefull" + icon_state = "whitebluefull"; + tag = "icon-whitebluefull" }, /area/medical/medbay3) "cyw" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8; - initialize_directions = 11; - level = 1 - }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -75051,6 +72330,10 @@ d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4; + level = 1 + }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "whiteblue" @@ -75151,6 +72434,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ req_access_txt = 1 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -75227,21 +72511,21 @@ d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /obj/structure/disposalpipe/junction{ dir = 8; icon_state = "pipe-j1"; tag = "icon-pipe-j1 (EAST)" }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/hallway/primary/aft) "cyM" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -75342,6 +72626,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "whitehall" @@ -75360,18 +72645,6 @@ icon_state = "pipe-j2s"; sortType = 13 }, -/turf/simulated/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"cyY" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -75407,9 +72680,9 @@ dir = 4 }, /turf/simulated/floor/plasteel{ - tag = "icon-cafeteria (NORTHEAST)"; + dir = 5; icon_state = "cafeteria"; - dir = 5 + tag = "icon-cafeteria (NORTHEAST)" }, /area/crew_quarters/hor) "czd" = ( @@ -75537,10 +72810,6 @@ /turf/space, /area/space/nearstation) "czn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - level = 1 - }, /obj/structure/chair{ dir = 1 }, @@ -75548,31 +72817,44 @@ name = "Medical Doctor" }, /obj/effect/decal/warning_stripes/south, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/plasteel{ icon_state = "white" }, /area/medical/surgeryobs) "czo" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/chair{ dir = 1 }, /obj/effect/decal/warning_stripes/south, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -75673,7 +72955,6 @@ name = "Aft Hallway APC"; pixel_x = 24 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/yellow{ d2 = 8; icon_state = "0-8" @@ -75746,30 +73027,22 @@ /area/medical/genetics) "czD" = ( /obj/structure/disposalpipe/junction{ - tag = "icon-pipe-j2"; + dir = 2; icon_state = "pipe-j2"; - dir = 2 + tag = "icon-pipe-j2" }, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ icon_state = "white" }, /area/medical/medbay3) -"czE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "whiteblue" - }, -/area/medical/medbay3) "czF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - req_access_txt = 1 - }, /obj/machinery/door/firedoor, /turf/simulated/floor/plasteel{ dir = 8; @@ -75783,10 +73056,11 @@ icon_state = "1-2" }, /obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/hallway/primary/aft) "czH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/door/firedoor, /turf/simulated/floor/plasteel{ dir = 2; @@ -75807,8 +73081,8 @@ icon_state = "pipe-c" }, /turf/simulated/floor/plasteel{ - tag = "icon-whitebluefull"; - icon_state = "whitebluefull" + icon_state = "whitebluefull"; + tag = "icon-whitebluefull" }, /area/medical/medbay3) "czK" = ( @@ -75846,11 +73120,12 @@ name = "\improper Research Testing Range" }) "czO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/light{ - icon_state = "tube1"; - dir = 8 + dir = 8; + icon_state = "tube1" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ dir = 6; icon_state = "whitehall" @@ -75865,14 +73140,6 @@ icon_state = "1-2" }, /obj/structure/disposalpipe/segment, -/turf/simulated/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"czQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -75910,9 +73177,9 @@ }, /obj/item/radio/off, /turf/simulated/floor/plasteel{ - tag = "icon-cafeteria (NORTHEAST)"; + dir = 5; icon_state = "cafeteria"; - dir = 5 + tag = "icon-cafeteria (NORTHEAST)" }, /area/crew_quarters/hor) "czS" = ( @@ -75922,11 +73189,10 @@ /obj/effect/landmark/start{ name = "Research Director" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ - tag = "icon-cafeteria (NORTHEAST)"; + dir = 5; icon_state = "cafeteria"; - dir = 5 + tag = "icon-cafeteria (NORTHEAST)" }, /area/crew_quarters/hor) "czT" = ( @@ -75935,17 +73201,24 @@ dir = 4 }, /turf/simulated/floor/plasteel{ - tag = "icon-cafeteria (NORTHEAST)"; + dir = 5; icon_state = "cafeteria"; - dir = 5 + tag = "icon-cafeteria (NORTHEAST)" }, /area/crew_quarters/hor) "czU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - level = 1 - }, /obj/effect/decal/warning_stripes/southwestcorner, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -76097,7 +73370,6 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "whiteblue" @@ -76179,6 +73451,9 @@ dir = 5; level = 1 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -76214,6 +73489,9 @@ dir = 4; level = 1 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -76231,8 +73509,8 @@ }, /obj/structure/table/glass, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/medical/genetics) "cAr" = ( @@ -76240,6 +73518,9 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -76253,6 +73534,9 @@ dir = 4; level = 1 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -76266,6 +73550,9 @@ dir = 4; level = 1 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "whitehall"; @@ -76287,8 +73574,8 @@ }, /obj/structure/table/glass, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/medical/genetics) "cAv" = ( @@ -76296,9 +73583,12 @@ dir = 2; icon_state = "pipe-c" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4; - initialize_directions = 11 + level = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, /turf/simulated/floor/plasteel{ dir = 8; @@ -76379,7 +73669,6 @@ name = "Aft Maintenance" }) "cAA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/alarm{ dir = 8; icon_state = "alarm0"; @@ -76456,12 +73745,14 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /obj/effect/decal/warning_stripes/northwest, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel, /area/toxins/storage) "cAI" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ dir = 5; icon_state = "whitehall" @@ -76487,7 +73778,6 @@ name = "Research Division" }) "cAK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "whitebluecorner" @@ -76511,11 +73801,10 @@ /turf/simulated/floor/plasteel, /area/toxins/storage) "cAN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ - tag = "icon-cafeteria (NORTHEAST)"; + dir = 5; icon_state = "cafeteria"; - dir = 5 + tag = "icon-cafeteria (NORTHEAST)" }, /area/crew_quarters/hor) "cAO" = ( @@ -76524,9 +73813,9 @@ dir = 4 }, /turf/simulated/floor/plasteel{ - tag = "icon-cafeteria (NORTHEAST)"; + dir = 5; icon_state = "cafeteria"; - dir = 5 + tag = "icon-cafeteria (NORTHEAST)" }, /area/crew_quarters/hor) "cAP" = ( @@ -76538,16 +73827,9 @@ }, /obj/item/circuitboard/teleporter, /turf/simulated/floor/plasteel{ - tag = "icon-cafeteria (NORTHEAST)"; + dir = 5; icon_state = "cafeteria"; - dir = 5 - }, -/area/crew_quarters/hor) -"cAQ" = ( -/turf/simulated/floor/plasteel{ - tag = "icon-cafeteria (NORTHEAST)"; - icon_state = "cafeteria"; - dir = 5 + tag = "icon-cafeteria (NORTHEAST)" }, /area/crew_quarters/hor) "cAR" = ( @@ -76564,9 +73846,9 @@ pixel_x = 24 }, /turf/simulated/floor/plasteel{ - tag = "icon-cafeteria (NORTHEAST)"; + dir = 5; icon_state = "cafeteria"; - dir = 5 + tag = "icon-cafeteria (NORTHEAST)" }, /area/crew_quarters/hor) "cAS" = ( @@ -76575,20 +73857,24 @@ /turf/simulated/floor/plasteel, /area/toxins/storage) "cAT" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, /obj/machinery/hologram/holopad, /obj/effect/decal/warning_stripes/west, -/turf/simulated/floor/plasteel{ - icon_state = "white" +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" }, -/area/medical/surgeryobs) -"cAU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8; + initialize_directions = 11 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -76709,18 +73995,17 @@ network = list("RD"); pixel_y = 2 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/table/reinforced, /turf/simulated/floor/plasteel{ - tag = "icon-cafeteria (NORTHEAST)"; + dir = 5; icon_state = "cafeteria"; - dir = 5 + tag = "icon-cafeteria (NORTHEAST)" }, /area/crew_quarters/hor) "cBg" = ( /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + d2 = 4; + icon_state = "0-4" }, /obj/structure/lattice/catwalk, /turf/space, @@ -76764,6 +74049,9 @@ icon_state = "pipe-c" }, /obj/effect/decal/warning_stripes/west, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, /turf/simulated/floor/plasteel, /area/toxins/storage) "cBk" = ( @@ -76779,10 +74067,6 @@ name = "Aft Maintenance" }) "cBl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - level = 1 - }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "whitebluecorner" @@ -76803,18 +74087,11 @@ icon_state = "pipe-c" }, /obj/effect/decal/warning_stripes/east, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, /turf/simulated/floor/plasteel, /area/toxins/storage) -"cBn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - level = 1 - }, -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "whitebluecorner" - }, -/area/medical/medbay3) "cBo" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/medical/glass{ @@ -76822,10 +74099,6 @@ name = "Recovery Ward"; req_access_txt = "0" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - level = 1 - }, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -76850,9 +74123,8 @@ dir = 4; icon_state = "pipe-c" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "whiteblue" @@ -76917,9 +74189,9 @@ /area/medical/genetics_cloning) "cBw" = ( /obj/machinery/shower{ - tag = "icon-shower (EAST)"; + dir = 4; icon_state = "shower"; - dir = 4 + tag = "icon-shower (EAST)" }, /obj/machinery/door/window/southleft{ dir = 2; @@ -76929,8 +74201,8 @@ pixel_x = -28 }, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/medical/genetics_cloning) "cBx" = ( @@ -76946,8 +74218,8 @@ pixel_y = 28 }, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/medical/genetics_cloning) "cBy" = ( @@ -76961,8 +74233,8 @@ }, /obj/structure/window/reinforced, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/medical/genetics_cloning) "cBz" = ( @@ -77067,23 +74339,6 @@ /turf/simulated/floor/plasteel, /area/toxins/storage) "cBM" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, /obj/machinery/status_display{ density = 0; layer = 4 @@ -77097,7 +74352,12 @@ name = "\improper Toxins Lab" }) "cBO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "whitehall" @@ -77120,6 +74380,12 @@ dir = 1; icon_state = "pipe-c" }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -77135,9 +74401,11 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8; - initialize_directions = 11 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, /turf/simulated/floor/plasteel{ dir = 4; @@ -77164,10 +74432,13 @@ req_access_txt = "30"; req_one_access_txt = "0" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/plasteel{ - tag = "icon-cafeteria (NORTHEAST)"; + dir = 5; icon_state = "cafeteria"; - dir = 5 + tag = "icon-cafeteria (NORTHEAST)" }, /area/crew_quarters/hor) "cBS" = ( @@ -77182,15 +74453,18 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/plasteel{ - tag = "icon-cafeteria (NORTHEAST)"; + dir = 5; icon_state = "cafeteria"; - dir = 5 + tag = "icon-cafeteria (NORTHEAST)" }, /area/crew_quarters/hor) "cBT" = ( /obj/machinery/atmospherics/unary/vent_pump{ - dir = 1; + dir = 8; on = 1 }, /obj/structure/disposalpipe/segment{ @@ -77200,9 +74474,9 @@ dir = 4 }, /turf/simulated/floor/plasteel{ - tag = "icon-cafeteria (NORTHEAST)"; + dir = 5; icon_state = "cafeteria"; - dir = 5 + tag = "icon-cafeteria (NORTHEAST)" }, /area/crew_quarters/hor) "cBU" = ( @@ -77213,9 +74487,9 @@ dir = 4 }, /turf/simulated/floor/plasteel{ - tag = "icon-cafeteria (NORTHEAST)"; + dir = 5; icon_state = "cafeteria"; - dir = 5 + tag = "icon-cafeteria (NORTHEAST)" }, /area/crew_quarters/hor) "cBV" = ( @@ -77229,9 +74503,9 @@ icon_state = "pipe-c" }, /turf/simulated/floor/plasteel{ - tag = "icon-cafeteria (NORTHEAST)"; + dir = 5; icon_state = "cafeteria"; - dir = 5 + tag = "icon-cafeteria (NORTHEAST)" }, /area/crew_quarters/hor) "cBW" = ( @@ -77279,8 +74553,8 @@ dir = 1 }, /turf/simulated/floor/plasteel{ - tag = "icon-whitebluefull"; - icon_state = "whitebluefull" + icon_state = "whitebluefull"; + tag = "icon-whitebluefull" }, /area/medical/medbay3) "cCd" = ( @@ -77386,8 +74660,8 @@ pixel_y = 30 }, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/medical/genetics) "cCj" = ( @@ -77454,9 +74728,6 @@ }, /area/medical/reception) "cCp" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, /obj/item/radio/intercom{ frequency = 1459; name = "Station Intercom (General)"; @@ -77480,11 +74751,6 @@ dir = 5; max_integrity = 1e+007 }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, /turf/simulated/floor/grass, /area/medical/surgeryobs) "cCr" = ( @@ -77510,11 +74776,6 @@ dir = 5; max_integrity = 1e+007 }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, /turf/simulated/floor/grass, /area/medical/surgeryobs) "cCt" = ( @@ -77533,19 +74794,33 @@ d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/plasteel{ icon_state = "white" }, /area/medical/surgeryobs) "cCv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /obj/structure/chair, /obj/effect/landmark/start{ name = "Medical Doctor" }, /obj/effect/decal/warning_stripes/north, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -77561,6 +74836,12 @@ d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -77577,6 +74858,12 @@ d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -77628,6 +74915,12 @@ d2 = 8; icon_state = "2-8" }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "whiteblue" @@ -77646,7 +74939,6 @@ }, /area/medical/cmo) "cCH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/power/apc{ dir = 8; name = "Chemistry APC"; @@ -77692,33 +74984,45 @@ }, /area/medical/cmo) "cCL" = ( +/obj/structure/chair, +/obj/effect/decal/warning_stripes/north, /obj/structure/cable/yellow{ - d1 = 1; + d1 = 4; d2 = 8; - icon_state = "1-8" + icon_state = "4-8" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" + d1 = 2; + d2 = 8; + icon_state = "2-8" }, /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/structure/chair, -/obj/effect/decal/warning_stripes/north, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, /turf/simulated/floor/plasteel{ icon_state = "white" }, /area/medical/surgeryobs) "cCM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /obj/effect/decal/warning_stripes/northwestcorner, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -77744,6 +75048,8 @@ d2 = 2; icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -77751,7 +75057,6 @@ name = "Research Division" }) "cCP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/firealarm{ dir = 4; pixel_x = 24 @@ -77764,7 +75069,6 @@ name = "Research Division" }) "cCQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/extinguisher_cabinet{ pixel_x = 27 }, @@ -77816,9 +75120,9 @@ pixel_y = -29 }, /turf/simulated/floor/plasteel{ - tag = "icon-cafeteria (NORTHEAST)"; + dir = 5; icon_state = "cafeteria"; - dir = 5 + tag = "icon-cafeteria (NORTHEAST)" }, /area/crew_quarters/hor) "cCW" = ( @@ -77995,12 +75299,6 @@ }) "cDl" = ( /obj/machinery/atmospherics/unary/cryo_cell, -/obj/machinery/atmospherics/unary/vent_scrubber{ - dir = 2; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, /obj/effect/decal/warning_stripes/northeast, /turf/simulated/floor/plasteel, /area/medical/cryo) @@ -78026,19 +75324,6 @@ /area/maintenance/aft{ name = "Aft Maintenance" }) -"cDp" = ( -/obj/effect/spawner/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id_tag = "researchrangeshutters"; - name = "blast door" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/toxins/misc_lab{ - name = "\improper Research Testing Range" - }) "cDq" = ( /obj/machinery/light/small{ dir = 1 @@ -78057,8 +75342,8 @@ pixel_y = 32 }, /turf/simulated/floor/plasteel{ - icon_state = "whitehall"; - dir = 2 + dir = 2; + icon_state = "whitehall" }, /area/medical/medbreak) "cDs" = ( @@ -78071,9 +75356,6 @@ name = "\improper Research Testing Range" }) "cDt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, /obj/structure/cable/yellow{ d1 = 1; d2 = 8; @@ -78085,6 +75367,11 @@ icon_state = "4-8" }, /obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4; + level = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -78102,38 +75389,20 @@ }, /area/medical/genetics) "cDv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "whitebluecorner" }, /area/medical/medbay3) -"cDw" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical/glass{ - id_tag = null; - name = "Recovery Ward"; - req_access_txt = "0" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - icon_state = "white" - }, -/area/medical/surgeryobs) "cDx" = ( /obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "whiteblue" @@ -78151,6 +75420,7 @@ scrub_N2O = 0; scrub_Toxins = 0 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel, /area/hallway/primary/aft) "cDA" = ( @@ -78178,7 +75448,6 @@ icon_state = "1-2" }, /obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/assembly/chargebay) "cDD" = ( @@ -78224,11 +75493,6 @@ icon_state = "2-4" }, /obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/unary/vent_scrubber{ - dir = 2; - on = 1; - scrub_Toxins = 0 - }, /obj/structure/sign/nosmoking_2{ pixel_x = -28 }, @@ -78242,10 +75506,10 @@ req_access_txt = "8" }, /obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel, /area/toxins/storage) "cDJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/camera{ c_tag = "Research Division Hallway - Mech Bay"; dir = 4; @@ -78274,9 +75538,9 @@ }, /obj/item/twohanded/required/kirbyplants/dead, /turf/simulated/floor/plasteel{ - tag = "icon-cafeteria (NORTHEAST)"; + dir = 5; icon_state = "cafeteria"; - dir = 5 + tag = "icon-cafeteria (NORTHEAST)" }, /area/crew_quarters/hor) "cDL" = ( @@ -78288,9 +75552,9 @@ pixel_y = -32 }, /turf/simulated/floor/plasteel{ - tag = "icon-cafeteria (NORTHEAST)"; + dir = 5; icon_state = "cafeteria"; - dir = 5 + tag = "icon-cafeteria (NORTHEAST)" }, /area/crew_quarters/hor) "cDM" = ( @@ -78303,6 +75567,10 @@ }) "cDN" = ( /obj/effect/decal/warning_stripes/west, +/obj/machinery/atmospherics/unary/vent_scrubber{ + dir = 4; + on = 1 + }, /turf/simulated/floor/plasteel, /area/toxins/storage) "cDO" = ( @@ -78322,18 +75590,22 @@ pixel_y = -32 }, /turf/simulated/floor/plasteel{ - tag = "icon-cafeteria (NORTHEAST)"; + dir = 5; icon_state = "cafeteria"; - dir = 5 + tag = "icon-cafeteria (NORTHEAST)" }, /area/crew_quarters/hor) "cDQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/landmark/start{ name = "Scientist" }, /obj/structure/disposalpipe/segment, /obj/effect/decal/warning_stripes/east, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4; + initialize_directions = 11 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel, /area/toxins/storage) "cDR" = ( @@ -78410,7 +75682,13 @@ req_one_access_txt = "5" }, /obj/effect/mapping_helpers/airlock/unres{ - icon_state = "airlock_unres_helper"; + dir = 4; + icon_state = "airlock_unres_helper" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/plasteel{ @@ -78423,6 +75701,12 @@ d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "whiteblue" @@ -78453,6 +75737,9 @@ level = 1 }, /obj/effect/decal/warning_stripes/west, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/plasteel, /area/medical/cryo) "cEd" = ( @@ -78461,9 +75748,9 @@ pixel_y = -24 }, /turf/simulated/floor/plasteel{ - tag = "icon-cafeteria (NORTHEAST)"; + dir = 5; icon_state = "cafeteria"; - dir = 5 + tag = "icon-cafeteria (NORTHEAST)" }, /area/crew_quarters/hor) "cEe" = ( @@ -78529,6 +75816,7 @@ d2 = 2; icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "whiteblue" @@ -78550,14 +75838,17 @@ d2 = 4; icon_state = "1-4" }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, /turf/simulated/floor/plasteel{ icon_state = "white" }, /area/medical/medbay3) "cEm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - req_access_txt = 1 - }, /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=10.1-Central-from-Aft"; location = "10-Aft-To-Central" @@ -78578,33 +75869,23 @@ d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "whiteblue" }, /area/medical/cryo) "cEo" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8; - initialize_directions = 11 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 }, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "neutralcorner" }, /area/hallway/primary/aft) -"cEp" = ( -/obj/machinery/door/poddoor/shutters{ - dir = 8; - id_tag = "Skynet_launch"; - name = "Mech Bay" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/decal/warning_stripes/yellow, -/turf/simulated/floor/plasteel, -/area/assembly/chargebay) "cEq" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -78613,7 +75894,7 @@ }, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 + dir = 6 }, /turf/simulated/floor/plasteel, /area/assembly/chargebay) @@ -78630,8 +75911,8 @@ name = "Roboticist" }, /obj/machinery/light{ - icon_state = "tube1"; - dir = 4 + dir = 4; + icon_state = "tube1" }, /turf/simulated/floor/bluegrid, /area/assembly/chargebay) @@ -78646,6 +75927,9 @@ icon_state = "1-8" }, /obj/effect/decal/warning_stripes/east, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -78654,10 +75938,13 @@ /obj/machinery/atmospherics/pipe/simple/visible{ dir = 9 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, /obj/effect/decal/warning_stripes/east, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, /turf/simulated/floor/plasteel, /area/medical/cryo) "cEv" = ( @@ -78685,6 +75972,7 @@ on = 1; scrub_Toxins = 0 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -78710,6 +75998,12 @@ }) "cEz" = ( /obj/effect/decal/warning_stripes/west, +/obj/machinery/atmospherics/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -78718,6 +76012,9 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /obj/effect/decal/warning_stripes/east, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/plasteel, /area/toxins/storage) "cEB" = ( @@ -78734,9 +76031,6 @@ }, /area/maintenance/incinerator) "cED" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /obj/effect/decal/warning_stripes/east, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -78746,10 +76040,11 @@ /obj/machinery/atmospherics/pipe/simple/visible{ dir = 10 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, /obj/effect/decal/warning_stripes/east, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, /turf/simulated/floor/plasteel, /area/medical/cryo) "cEF" = ( @@ -78776,6 +76071,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /obj/effect/decal/warning_stripes/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel, /area/toxins/mixing{ name = "\improper Toxins Lab" @@ -78784,6 +76080,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /obj/effect/decal/warning_stripes/southeast, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel, /area/toxins/storage) "cEK" = ( @@ -78819,16 +76116,18 @@ name = "\improper Toxins Lab" }) "cEO" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8; - initialize_directions = 11; - level = 1 - }, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4; + level = 1 + }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "whiteblue" @@ -78871,16 +76170,15 @@ /area/medical/cryo) "cES" = ( /obj/machinery/atmospherics/pipe/simple/visible, -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 1; - on = 1 - }, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; icon_state = "4-8" }, /obj/effect/decal/warning_stripes/east, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, /turf/simulated/floor/plasteel, /area/medical/cryo) "cET" = ( @@ -78894,6 +76192,9 @@ /obj/machinery/atmospherics/pipe/manifold/visible{ dir = 8 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/plasteel, /area/medical/cryo) "cEU" = ( @@ -78903,6 +76204,12 @@ icon_state = "4-8" }, /obj/effect/decal/warning_stripes/west, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -78925,9 +76232,6 @@ }, /area/medical/genetics_cloning) "cEX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - req_access_txt = 1 - }, /obj/machinery/firealarm{ dir = 8; pixel_x = -24 @@ -78984,7 +76288,9 @@ icon_state = "sink"; pixel_x = 11 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -79030,8 +76336,8 @@ }, /obj/structure/table/glass, /turf/simulated/floor/plasteel{ - icon_state = "whitehall"; - dir = 2 + dir = 2; + icon_state = "whitehall" }, /area/medical/medbreak) "cFg" = ( @@ -79045,8 +76351,8 @@ dir = 1 }, /turf/simulated/floor/plasteel{ - icon_state = "whitehall"; - dir = 2 + dir = 2; + icon_state = "whitehall" }, /area/medical/medbreak) "cFh" = ( @@ -79057,8 +76363,8 @@ pixel_y = 32 }, /turf/simulated/floor/plasteel{ - icon_state = "whitehall"; - dir = 2 + dir = 2; + icon_state = "whitehall" }, /area/medical/medbreak) "cFi" = ( @@ -79067,39 +76373,23 @@ pixel_y = 32 }, /turf/simulated/floor/plasteel{ - icon_state = "whitehall"; - dir = 2 + dir = 2; + icon_state = "whitehall" }, /area/medical/medbreak) "cFj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ icon_state = "white" }, /area/medical/medbay3) -"cFk" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plasteel, -/area/hallway/primary/aft) "cFl" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4; - initialize_directions = 11 - }, /obj/machinery/door_control{ dir = 2; id = "Skynet_launch"; @@ -79136,6 +76426,7 @@ icon_state = "1-2" }, /obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/assembly/chargebay) "cFn" = ( @@ -79161,6 +76452,7 @@ name = "door"; req_access_txt = "0" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/toxins/misc_lab{ name = "\improper Research Testing Range" @@ -79173,9 +76465,6 @@ }, /area/medical/cryo) "cFs" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "whitepurplecorner" @@ -79189,8 +76478,10 @@ d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6; + level = 1 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -79199,9 +76490,8 @@ name = "Research Division" }) "cFu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 }, /turf/simulated/floor/plasteel{ dir = 2; @@ -79299,6 +76589,7 @@ "cFE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -79393,6 +76684,12 @@ req_access_txt = "8" }, /obj/effect/decal/warning_stripes/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ icon_state = "purplefull" }, @@ -79422,12 +76719,9 @@ scrub_N2O = 0; scrub_Toxins = 0 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, /obj/machinery/light{ - icon_state = "tube1"; - dir = 8 + dir = 8; + icon_state = "tube1" }, /turf/simulated/floor/plasteel{ dir = 8; @@ -79467,39 +76761,28 @@ }) "cFU" = ( /obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "whiteblue" }, /area/medical/cryo) -"cFV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "whiteblue" - }, -/area/medical/medbay3) "cFW" = ( /obj/structure/table, /obj/item/roller, /obj/item/reagent_containers/spray/cleaner, /obj/effect/decal/warning_stripes/west, +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 1; + on = 1 + }, /turf/simulated/floor/plasteel{ icon_state = "white" }, /area/medical/cryo) "cFX" = ( /obj/machinery/atmospherics/unary/vent_scrubber{ - dir = 2; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + dir = 4; + on = 1 }, /obj/effect/decal/warning_stripes/south, /turf/simulated/floor/plating, @@ -79513,9 +76796,6 @@ name = "\improper Research Testing Range" }) "cFZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /obj/machinery/hologram/holopad, /obj/machinery/atmospherics/pipe/manifold4w/visible, /turf/simulated/floor/plasteel, @@ -79549,17 +76829,14 @@ }, /area/medical/genetics_cloning) "cGe" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - req_access_txt = 1 - }, /obj/item/radio/intercom{ frequency = 1459; name = "Station Intercom (General)"; pixel_x = -26 }, /obj/machinery/light{ - icon_state = "tube1"; - dir = 8 + dir = 8; + icon_state = "tube1" }, /turf/simulated/floor/plasteel{ dir = 8; @@ -79577,8 +76854,8 @@ }, /obj/structure/table/glass, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/medical/genetics_cloning) "cGg" = ( @@ -79606,8 +76883,8 @@ pixel_x = 24 }, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/medical/genetics_cloning) "cGi" = ( @@ -79691,9 +76968,9 @@ pixel_x = 28 }, /turf/simulated/floor/plasteel{ - tag = "icon-cafeteria (NORTHEAST)"; + dir = 5; icon_state = "cafeteria"; - dir = 5 + tag = "icon-cafeteria (NORTHEAST)" }, /area/medical/medbreak) "cGn" = ( @@ -79741,16 +77018,21 @@ d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 }, /turf/simulated/floor/plasteel, /area/hallway/primary/aft) "cGr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "neutralcorner" @@ -79766,6 +77048,9 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel, /area/assembly/chargebay) "cGt" = ( @@ -79781,6 +77066,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/assembly/chargebay) "cGu" = ( @@ -79795,6 +77081,9 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel, /area/assembly/chargebay) "cGv" = ( @@ -79812,8 +77101,11 @@ dir = 2; icon_state = "pipe-c" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 + dir = 10 }, /turf/simulated/floor/plasteel, /area/assembly/chargebay) @@ -79879,28 +77171,15 @@ d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ icon_state = "purplefull" }, /area/toxins/misc_lab{ name = "\improper Research Testing Range" }) -"cGB" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "whitepurple" - }, -/area/medical/research{ - name = "Research Division" - }) "cGC" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -79917,6 +77196,8 @@ d2 = 8; icon_state = "1-8" }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -79929,7 +77210,12 @@ d2 = 8; icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "whitepurple" @@ -79954,6 +77240,9 @@ d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -79969,6 +77258,9 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 2 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -79984,6 +77276,9 @@ d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -79997,7 +77292,10 @@ icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -80015,6 +77313,12 @@ dir = 4; icon_state = "pipe-c" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -80022,9 +77326,6 @@ name = "\improper Toxins Lab" }) "cGL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, /obj/structure/cable/yellow{ d1 = 2; d2 = 8; @@ -80033,6 +77334,12 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -80040,9 +77347,6 @@ name = "\improper Toxins Lab" }) "cGM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/machinery/hologram/holopad, /obj/effect/landmark/start{ name = "Scientist" @@ -80057,14 +77361,12 @@ name = "\improper Toxins Lab" }) "cGN" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4; - initialize_directions = 11 - }, /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -80095,14 +77397,14 @@ name = "\improper Toxins Lab" }) "cGR" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + req_access_txt = 1 + }, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" }, @@ -80231,9 +77533,9 @@ /area/medical/medbreak) "cHb" = ( /obj/structure/disposalpipe/junction{ - tag = "icon-pipe-j2"; + dir = 2; icon_state = "pipe-j2"; - dir = 2 + tag = "icon-pipe-j2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/yellow{ @@ -80241,6 +77543,7 @@ d2 = 4; icon_state = "1-4" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "whiteblue" @@ -80257,9 +77560,9 @@ icon_state = "4-8" }, /turf/simulated/floor/plasteel{ - tag = "icon-cafeteria (NORTHEAST)"; + dir = 5; icon_state = "cafeteria"; - dir = 5 + tag = "icon-cafeteria (NORTHEAST)" }, /area/medical/medbreak) "cHd" = ( @@ -80277,9 +77580,9 @@ icon_state = "2-4" }, /turf/simulated/floor/plasteel{ - tag = "icon-cafeteria (NORTHEAST)"; + dir = 5; icon_state = "cafeteria"; - dir = 5 + tag = "icon-cafeteria (NORTHEAST)" }, /area/medical/medbreak) "cHe" = ( @@ -80295,9 +77598,9 @@ icon_state = "4-8" }, /turf/simulated/floor/plasteel{ - tag = "icon-cafeteria (NORTHEAST)"; + dir = 5; icon_state = "cafeteria"; - dir = 5 + tag = "icon-cafeteria (NORTHEAST)" }, /area/medical/medbreak) "cHf" = ( @@ -80311,9 +77614,9 @@ icon_state = "4-8" }, /turf/simulated/floor/plasteel{ - tag = "icon-cafeteria (NORTHEAST)"; + dir = 5; icon_state = "cafeteria"; - dir = 5 + tag = "icon-cafeteria (NORTHEAST)" }, /area/medical/medbreak) "cHh" = ( @@ -80357,14 +77660,13 @@ name = "Medical Doctor" }, /turf/simulated/floor/plasteel{ - tag = "icon-cafeteria (NORTHEAST)"; + dir = 5; icon_state = "cafeteria"; - dir = 5 + tag = "icon-cafeteria (NORTHEAST)" }, /area/medical/medbreak) "cHj" = ( /obj/effect/spawner/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/yellow{ d2 = 2; icon_state = "0-2" @@ -80372,10 +77674,6 @@ /turf/simulated/floor/plating, /area/medical/virology) "cHk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - level = 1 - }, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; @@ -80391,20 +77689,27 @@ d2 = 8; icon_state = "1-8" }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4; + initialize_directions = 11 + }, /turf/simulated/floor/plasteel{ icon_state = "white" }, /area/medical/medbay3) "cHl" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "whiteblue" @@ -80450,6 +77755,8 @@ }, /obj/structure/disposalpipe/segment, /obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/assembly/chargebay) "cHr" = ( @@ -80469,9 +77776,6 @@ name = "Port Maintenance" }) "cHs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, /obj/machinery/power/apc{ dir = 4; name = "Cloning Lab APC"; @@ -80507,47 +77811,7 @@ /area/toxins/misc_lab{ name = "\improper Research Testing Range" }) -"cHu" = ( -/obj/effect/spawner/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/yellow{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/plating, -/area/medical/virology) -"cHv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "whitepurplecorner" - }, -/area/medical/research{ - name = "Research Division" - }) -"cHw" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) "cHx" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4; - initialize_directions = 11 - }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "whitepurplecorner" @@ -80556,9 +77820,6 @@ name = "Research Division" }) "cHy" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; @@ -80570,10 +77831,10 @@ }, /area/medical/medbay3) "cHz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /obj/effect/decal/warning_stripes/west, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -80604,7 +77865,6 @@ /obj/item/target/syndicate, /obj/item/target/syndicate, /obj/item/target/syndicate, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/light_switch{ pixel_x = -25 }, @@ -80623,18 +77883,13 @@ icon_state = "2-4" }, /obj/effect/decal/warning_stripes/northeast, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel, /area/toxins/misc_lab{ name = "\improper Research Testing Range" }) -"cHE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/mixing{ - name = "\improper Toxins Lab" - }) "cHF" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel{ @@ -80644,12 +77899,13 @@ name = "\improper Toxins Lab" }) "cHG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -80657,10 +77913,7 @@ name = "\improper Toxins Lab" }) "cHH" = ( -/obj/machinery/atmospherics/unary/vent_scrubber{ - dir = 4; - on = 1 - }, +/obj/machinery/atmospherics/unary/vent_scrubber, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -80668,9 +77921,11 @@ name = "\improper Toxins Lab" }) "cHI" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 2; - initialize_directions = 11 + dir = 8 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -80683,6 +77938,9 @@ dir = 4 }, /obj/effect/decal/warning_stripes/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/plasteel, /area/toxins/mixing{ name = "\improper Toxins Lab" @@ -80693,6 +77951,9 @@ on = 1 }, /obj/effect/decal/warning_stripes/north, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, /turf/simulated/floor/plasteel, /area/toxins/misc_lab{ name = "\improper Research Testing Range" @@ -80704,6 +77965,12 @@ icon_state = "4-8" }, /obj/effect/decal/warning_stripes/west, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -80711,7 +77978,6 @@ name = "\improper Toxins Lab" }) "cHM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -80720,6 +77986,7 @@ d2 = 2; icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" }, @@ -80750,6 +78017,9 @@ req_access_txt = "8" }, /obj/effect/decal/warning_stripes/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/plasteel, /area/toxins/mixing{ name = "\improper Toxins Lab" @@ -80767,9 +78037,6 @@ /obj/machinery/light/small{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /obj/effect/decal/warning_stripes/southeastcorner, /turf/simulated/floor/plasteel, /area/toxins/mixing{ @@ -80798,7 +78065,6 @@ name = "\improper Toxins Lab" }) "cHT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/extinguisher_cabinet{ pixel_x = -27 }, @@ -80842,6 +78108,9 @@ dir = 4 }, /obj/effect/decal/warning_stripes/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/plasteel, /area/toxins/mixing{ name = "\improper Toxins Lab" @@ -80849,13 +78118,6 @@ "cHZ" = ( /turf/simulated/wall/r_wall, /area/medical/virology) -"cIa" = ( -/obj/effect/spawner/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/medical/virology) "cIb" = ( /obj/item/cigbutt, /obj/effect/spawner/lootdrop/maintenance, @@ -80891,20 +78153,15 @@ name = "\improper Toxins Lab" }) "cIf" = ( -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 2; - on = 1 - }, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8; - initialize_directions = 11; - level = 1 +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -80936,9 +78193,6 @@ d2 = 8; icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, /obj/structure/cable/yellow{ d1 = 2; d2 = 8; @@ -80947,6 +78201,9 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "whiteblue" @@ -80958,9 +78215,6 @@ d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, /obj/structure/cable/yellow{ d1 = 2; d2 = 8; @@ -81031,9 +78285,9 @@ /obj/item/reagent_containers/spray/cleaner, /obj/structure/table/glass, /turf/simulated/floor/plasteel{ - tag = "icon-cafeteria (NORTHEAST)"; + dir = 5; icon_state = "cafeteria"; - dir = 5 + tag = "icon-cafeteria (NORTHEAST)" }, /area/medical/medbreak) "cIq" = ( @@ -81054,7 +78308,6 @@ }, /area/medical/surgery2) "cIt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/item/radio/intercom{ frequency = 1459; name = "Station Intercom (General)"; @@ -81079,7 +78332,9 @@ icon_state = "pipe-c" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -81096,22 +78351,14 @@ req_access_txt = "29" }, /obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/assembly/chargebay) "cIx" = ( /turf/simulated/wall/r_wall, /area/assembly/robotics) "cIy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"cIz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/door/firedoor, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -81132,9 +78379,9 @@ }, /obj/structure/table/glass, /turf/simulated/floor/plasteel{ - tag = "icon-cafeteria (NORTHEAST)"; + dir = 5; icon_state = "cafeteria"; - dir = 5 + tag = "icon-cafeteria (NORTHEAST)" }, /area/medical/medbreak) "cIB" = ( @@ -81151,9 +78398,9 @@ network = list("SS13","Medbay") }, /turf/simulated/floor/plasteel{ - tag = "icon-cafeteria (NORTHEAST)"; + dir = 5; icon_state = "cafeteria"; - dir = 5 + tag = "icon-cafeteria (NORTHEAST)" }, /area/medical/medbreak) "cIC" = ( @@ -81179,7 +78426,6 @@ pixel_x = -27 }, /obj/item/folder/white, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/decal/warning_stripes/west, /turf/simulated/floor/plasteel, /area/toxins/misc_lab{ @@ -81209,14 +78455,17 @@ }, /area/medical/patient_a) "cIG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, /obj/structure/cable/yellow{ d1 = 1; d2 = 4; icon_state = "1-4" }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -81224,14 +78473,13 @@ name = "\improper Toxins Lab" }) "cIH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -81239,14 +78487,17 @@ name = "\improper Toxins Lab" }) "cII" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -81293,6 +78544,9 @@ dir = 4 }, /obj/effect/decal/warning_stripes/west, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/plasteel, /area/toxins/mixing{ name = "\improper Toxins Lab" @@ -81382,6 +78636,7 @@ "cIW" = ( /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 = "whiteblue" @@ -81393,9 +78648,9 @@ name = "Medical Doctor" }, /turf/simulated/floor/plasteel{ - tag = "icon-cafeteria (NORTHEAST)"; + dir = 5; icon_state = "cafeteria"; - dir = 5 + tag = "icon-cafeteria (NORTHEAST)" }, /area/medical/medbreak) "cIY" = ( @@ -81408,9 +78663,9 @@ }, /obj/structure/cable/yellow, /turf/simulated/floor/plasteel{ - tag = "icon-cafeteria (NORTHEAST)"; + dir = 5; icon_state = "cafeteria"; - dir = 5 + tag = "icon-cafeteria (NORTHEAST)" }, /area/medical/medbreak) "cIZ" = ( @@ -81418,18 +78673,18 @@ dir = 6 }, /turf/simulated/floor/plasteel{ - tag = "icon-cafeteria (NORTHEAST)"; + dir = 5; icon_state = "cafeteria"; - dir = 5 + tag = "icon-cafeteria (NORTHEAST)" }, /area/medical/medbreak) "cJa" = ( /obj/item/cigbutt, /obj/machinery/hologram/holopad, /turf/simulated/floor/plasteel{ - tag = "icon-cafeteria (NORTHEAST)"; + dir = 5; icon_state = "cafeteria"; - dir = 5 + tag = "icon-cafeteria (NORTHEAST)" }, /area/medical/medbreak) "cJb" = ( @@ -81457,6 +78712,9 @@ dir = 4 }, /obj/effect/decal/warning_stripes/east, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/plasteel, /area/toxins/mixing{ name = "\improper Toxins Lab" @@ -81466,6 +78724,9 @@ dir = 4 }, /obj/effect/decal/warning_stripes/southwest, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, /turf/simulated/floor/plasteel, /area/toxins/mixing{ name = "\improper Toxins Lab" @@ -81477,10 +78738,10 @@ name = "\improper Toxins Lab" }) "cJh" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "whiteblue" @@ -81536,6 +78797,8 @@ icon_state = "1-2" }, /obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/assembly/robotics) "cJm" = ( @@ -81565,10 +78828,6 @@ /turf/simulated/floor/plasteel, /area/assembly/robotics) "cJo" = ( -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 8; - on = 1 - }, /obj/item/radio/intercom{ broadcasting = 0; listening = 1; @@ -81582,6 +78841,9 @@ pixel_x = -23 }, /obj/effect/decal/warning_stripes/northwest, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, /turf/simulated/floor/plasteel, /area/toxins/mixing{ name = "\improper Toxins Lab" @@ -81590,10 +78852,9 @@ /turf/simulated/wall, /area/assembly/robotics) "cJq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/light{ - icon_state = "tube1"; - dir = 8 + dir = 8; + icon_state = "tube1" }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -81620,6 +78881,7 @@ name = "emergency shower"; tag = "icon-shower (EAST)" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -81724,6 +78986,9 @@ name = "Station Intercom (Medbay)"; pixel_x = 30 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -81768,7 +79033,9 @@ }, /area/medical/virology) "cJI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, /mob/living/carbon/human/monkey, /turf/simulated/floor/plasteel{ icon_state = "freezerfloor" @@ -81778,12 +79045,20 @@ /obj/effect/landmark{ name = "blobstart" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, /turf/simulated/floor/plasteel{ icon_state = "freezerfloor" }, /area/medical/virology) "cJK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, /mob/living/carbon/human/monkey, /turf/simulated/floor/plasteel{ icon_state = "freezerfloor" @@ -81807,6 +79082,10 @@ pixel_x = -25; req_access_txt = "0" }, +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 4; + on = 1 + }, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -81853,6 +79132,10 @@ pixel_x = 25; req_access_txt = "0" }, +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 8; + on = 1 + }, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -81911,9 +79194,6 @@ name = "Port Maintenance" }) "cJW" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "yellow" @@ -81934,14 +79214,6 @@ icon_state = "white" }, /area/medical/surgery2) -"cJZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/plasteel{ - icon_state = "white" - }, -/area/medical/surgery2) "cKa" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -81951,10 +79223,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5; - level = 1 - }, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -81999,6 +79267,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "whiteblue" @@ -82011,9 +79280,6 @@ name = "Station Intercom (General)"; pixel_y = -25 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, /obj/item/clothing/glasses/science, /obj/effect/decal/warning_stripes/southwest, /turf/simulated/floor/plasteel, @@ -82028,9 +79294,6 @@ pixel_y = -28 }, /obj/structure/table, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/structure/cable/yellow, /obj/effect/decal/warning_stripes/southeast, /turf/simulated/floor/plasteel, @@ -82040,9 +79303,9 @@ "cKj" = ( /obj/structure/chair/stool, /turf/simulated/floor/plasteel{ - tag = "icon-cafeteria (NORTHEAST)"; + dir = 5; icon_state = "cafeteria"; - dir = 5 + tag = "icon-cafeteria (NORTHEAST)" }, /area/medical/medbreak) "cKk" = ( @@ -82052,9 +79315,9 @@ }, /obj/structure/table/glass, /turf/simulated/floor/plasteel{ - tag = "icon-cafeteria (NORTHEAST)"; + dir = 5; icon_state = "cafeteria"; - dir = 5 + tag = "icon-cafeteria (NORTHEAST)" }, /area/medical/medbreak) "cKl" = ( @@ -82076,8 +79339,8 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/medical/genetics_cloning) "cKo" = ( @@ -82092,24 +79355,17 @@ }, /area/assembly/robotics) "cKq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - req_access_txt = 1 - }, /obj/item/radio/intercom{ frequency = 1459; name = "Station Intercom (General)"; pixel_x = -26 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "yellow" }, /area/hallway/primary/aft) "cKr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/item/radio/intercom{ broadcasting = 0; listening = 1; @@ -82127,9 +79383,6 @@ /obj/machinery/recharger{ pixel_y = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/machinery/door_control{ id = "researchrangeshutters"; name = "Blast Door Control"; @@ -82233,10 +79486,6 @@ /area/medical/surgery2) "cKA" = ( /obj/machinery/optable, -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 1; - on = 1 - }, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -82360,6 +79609,8 @@ name = "Test Subject Cell"; req_access_txt = "39" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ icon_state = "freezerfloor" }, @@ -82371,7 +79622,8 @@ icon_state = "pipe-c" }, /obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9 + dir = 4; + level = 1 }, /turf/simulated/floor/plating, /area/medical/virology) @@ -82423,9 +79675,6 @@ /area/medical/virology) "cKU" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, /obj/machinery/power/apc{ dir = 4; name = "CMO's Office APC"; @@ -82435,6 +79684,7 @@ d2 = 2; icon_state = "0-2" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -82468,13 +79718,13 @@ /obj/machinery/door/firedoor, /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 = "whiteblue" }, /area/medical/medbay3) "cKY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/alarm{ dir = 4; icon_state = "alarm0"; @@ -82512,10 +79762,6 @@ /obj/machinery/light/small{ dir = 8 }, -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 4; - on = 1 - }, /obj/machinery/light_switch{ pixel_y = -24 }, @@ -82535,10 +79781,6 @@ /obj/structure/table, /obj/item/folder/white, /obj/item/clothing/accessory/stethoscope, -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 8; - on = 1 - }, /obj/machinery/light_switch{ pixel_y = -24 }, @@ -82575,9 +79817,6 @@ dir = 4; network = list("SS13") }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "yellow" @@ -82614,6 +79853,9 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "whiteblue" @@ -82622,7 +79864,6 @@ "cLl" = ( /obj/structure/table, /obj/item/crowbar, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/item/wrench, /obj/item/clothing/mask/gas, /obj/effect/decal/warning_stripes/north, @@ -82701,6 +79942,7 @@ d2 = 2; icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -82708,7 +79950,6 @@ name = "Research Division" }) "cLu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "whitehall" @@ -82725,6 +79966,9 @@ dir = 5; level = 1 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "whitebluecorner" @@ -82747,10 +79991,14 @@ }, /area/medical/medbay3) "cLx" = ( -/obj/machinery/atmospherics/binary/dp_vent_pump/high_volume{ - dir = 2; - frequency = 1449; - id_tag = "tox_airlock_pump" +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 4; + external_pressure_bound = 0; + initialize_directions = 1; + internal_pressure_bound = 4000; + on = 1; + pressure_checks = 2; + pump_direction = 0 }, /turf/simulated/floor/plasteel, /area/toxins/mixing{ @@ -82766,6 +80014,9 @@ name = "Mixing Room Interior Airlock"; req_access_txt = "8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/plasteel, /area/toxins/mixing{ name = "\improper Toxins Lab" @@ -82861,38 +80112,19 @@ name = "\improper Toxins Lab" }) "cLH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "whitegreen" }, /area/medical/virology) "cLI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "whitegreen" - }, -/area/medical/virology) -"cLJ" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 2 - }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "whitegreen" @@ -82902,13 +80134,12 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6; - level = 1 - }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "whiteblue" @@ -82927,9 +80158,6 @@ "cLM" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "whitegreen" @@ -82941,25 +80169,17 @@ d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, /turf/simulated/floor/plasteel{ icon_state = "white" }, /area/medical/virology) "cLO" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 2 - }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ icon_state = "white" }, /area/medical/virology) "cLP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -82995,12 +80215,6 @@ /area/toxins/mixing{ name = "\improper Toxins Lab" }) -"cLR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/wall/r_wall, -/area/medical/virology) "cLS" = ( /obj/effect/spawner/window/reinforced, /obj/structure/cable/yellow{ @@ -83012,10 +80226,6 @@ name = "\improper Departure Lounge" }) "cLT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5; - level = 1 - }, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; @@ -83067,10 +80277,6 @@ dir = 2; icon_state = "pipe-c" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - level = 1 - }, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; @@ -83079,6 +80285,13 @@ /obj/effect/landmark/start{ name = "Medical Doctor" }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4; + initialize_directions = 11 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -83091,7 +80304,7 @@ dir = 4; level = 1 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/plasteel{ @@ -83141,6 +80354,9 @@ name = "Station Intercom (General)"; pixel_x = -28 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -83187,7 +80403,7 @@ /area/medical/morgue) "cMh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - req_access_txt = 1 + dir = 5 }, /turf/simulated/floor/plasteel{ dir = 1; @@ -83201,8 +80417,8 @@ pixel_y = 5 }, /obj/machinery/light{ - icon_state = "tube1"; - dir = 4 + dir = 4; + icon_state = "tube1" }, /obj/structure/table, /obj/item/wrench, @@ -83217,9 +80433,6 @@ /turf/simulated/floor/plasteel, /area/assembly/robotics) "cMj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -83229,6 +80442,12 @@ icon_state = "4-8" }, /obj/effect/decal/warning_stripes/north, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel, /area/assembly/robotics) "cMk" = ( @@ -83247,9 +80466,6 @@ /turf/simulated/floor/plasteel, /area/assembly/robotics) "cMm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" @@ -83260,6 +80476,12 @@ icon_state = "1-4" }, /obj/effect/decal/warning_stripes/north, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, /turf/simulated/floor/plasteel, /area/assembly/robotics) "cMn" = ( @@ -83276,20 +80498,7 @@ /obj/machinery/photocopier, /turf/simulated/floor/plasteel, /area/assembly/robotics) -"cMo" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) "cMp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; @@ -83298,6 +80507,10 @@ /obj/effect/landmark{ name = "lightsout" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -83305,7 +80518,6 @@ name = "Research Division" }) "cMq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/firealarm{ dir = 4; pixel_x = 24 @@ -83346,14 +80558,11 @@ /obj/item/radio/headset/headset_medsci, /obj/item/flashlight/pen, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/medical/genetics) "cMt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" @@ -83401,7 +80610,6 @@ /obj/machinery/light{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/decal/warning_stripes/northeast, /turf/simulated/floor/plasteel, /area/toxins/mixing{ @@ -83417,7 +80625,6 @@ d2 = 4; icon_state = "2-4" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "whitegreen" @@ -83427,7 +80634,6 @@ /obj/structure/chair/office/light{ dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/yellow{ d1 = 1; d2 = 4; @@ -83438,6 +80644,12 @@ d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -83448,6 +80660,9 @@ d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -83463,6 +80678,12 @@ d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -83478,7 +80699,12 @@ d2 = 8; icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "whitegreen" @@ -83495,6 +80721,12 @@ name = "Containment Cells"; req_access_txt = "39" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/plasteel{ icon_state = "whitegreenfull" }, @@ -83506,6 +80738,12 @@ icon_state = "4-8" }, /obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "whitegreen" @@ -83522,8 +80760,11 @@ d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 + dir = 4 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -83535,13 +80776,16 @@ d2 = 8; icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, /obj/effect/landmark{ name = "lightsout" }, /obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -83553,6 +80797,7 @@ icon_state = "4-8" }, /obj/machinery/atmospherics/unary/vent_scrubber{ + dir = 8; on = 1; scrub_N2O = 0; scrub_Toxins = 0 @@ -83570,6 +80815,9 @@ d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "whitegreen" @@ -83589,6 +80837,9 @@ name = "Virology Access"; req_access_txt = "39" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/plasteel{ icon_state = "whitegreenfull" }, @@ -83605,6 +80856,9 @@ /obj/machinery/light/small{ dir = 1 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -83618,6 +80872,9 @@ d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "whitegreen" @@ -83659,6 +80916,9 @@ pixel_y = 25; req_access_txt = "39" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/plasteel{ icon_state = "whitegreenfull" }, @@ -83742,11 +81002,18 @@ icon_state = "whitegreenfull" }, /area/medical/virology) +"cMS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/hallway/primary/central) "cMT" = ( /obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - req_access_txt = 1 - }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "yellowcorner" @@ -83824,7 +81091,6 @@ name = "Aft Maintenance" }) "cMZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/extinguisher_cabinet{ pixel_x = 27 }, @@ -83908,15 +81174,14 @@ pixel_x = -22 }, /obj/machinery/light{ - icon_state = "tube1"; - dir = 8 + dir = 8; + icon_state = "tube1" }, /obj/machinery/r_n_d/circuit_imprinter, /obj/effect/decal/warning_stripes/yellow/hollow, /turf/simulated/floor/plasteel, /area/assembly/robotics) "cNg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ d1 = 1; @@ -83942,9 +81207,6 @@ }, /area/medical/surgery2) "cNj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; @@ -83963,30 +81225,19 @@ d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/yellow{ d1 = 1; d2 = 8; icon_state = "1-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ icon_state = "white" }, /area/medical/research{ name = "Research Division" }) -"cNl" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8; - initialize_directions = 11 - }, -/turf/simulated/floor/plasteel{ - dir = 2; - icon_state = "whitebluecorner" - }, -/area/medical/research{ - name = "Research Division" - }) "cNm" = ( /obj/machinery/atmospherics/pipe/simple/insulated, /turf/simulated/wall/r_wall/coated, @@ -84008,14 +81259,6 @@ /area/toxins/server{ name = "\improper Research Division Server Room" }) -"cNp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/wall/r_wall, -/area/toxins/mixing{ - name = "\improper Toxins Lab" - }) "cNq" = ( /obj/machinery/atmospherics/pipe/simple/visible{ dir = 4 @@ -84034,17 +81277,10 @@ tag_interior_door = "tox_airlock_interior" }, /obj/effect/decal/warning_stripes/southwestcorner, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ icon_state = "white" }, -/area/toxins/mixing{ - name = "\improper Toxins Lab" - }) -"cNr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/wall/r_wall, /area/toxins/mixing{ name = "\improper Toxins Lab" }) @@ -84075,9 +81311,8 @@ /turf/simulated/floor/plasteel, /area/assembly/robotics) "cNv" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ icon_state = "whitegreen" }, @@ -84088,27 +81323,15 @@ pixel_y = -24 }, /obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/machinery/iv_drip, /turf/simulated/floor/plasteel{ icon_state = "whitegreen" }, /area/medical/virology) -"cNx" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/plasteel{ - icon_state = "whitegreen" - }, -/area/medical/virology) "cNy" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 27 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/camera{ c_tag = "Toxins - Mixing Area"; dir = 8; @@ -84126,9 +81349,6 @@ name = "\improper Secure Lab" }) "cNA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel{ dir = 10; @@ -84136,26 +81356,27 @@ }, /area/medical/virology) "cNB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /turf/simulated/floor/plasteel{ icon_state = "whitegreen" }, /area/medical/virology) "cNC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ icon_state = "whitegreen" }, /area/medical/virology) "cND" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 2; - initialize_directions = 11 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, /turf/simulated/floor/plasteel{ icon_state = "whitegreen" @@ -84166,10 +81387,6 @@ dir = 8; icon_state = "pipe-c" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - level = 1 - }, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; @@ -84180,6 +81397,13 @@ d2 = 8; icon_state = "1-8" }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4; + initialize_directions = 11 + }, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -84192,14 +81416,14 @@ dir = 4; level = 1 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "whiteblue" @@ -84210,6 +81434,9 @@ dir = 4 }, /obj/effect/decal/warning_stripes/southwest, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/plasteel, /area/hallway/secondary/exit{ name = "\improper Departure Lounge" @@ -84268,8 +81495,8 @@ /area/medical/medbay3) "cNO" = ( /obj/structure/sink{ - icon_state = "sink"; dir = 8; + icon_state = "sink"; pixel_x = -12; pixel_y = 2 }, @@ -84316,9 +81543,6 @@ name = "Aft Maintenance" }) "cNS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - req_access_txt = 1 - }, /obj/structure/extinguisher_cabinet{ pixel_x = -27 }, @@ -84350,6 +81574,8 @@ d2 = 2; icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -84377,7 +81603,7 @@ d2 = 8; icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/plasteel{ @@ -84396,12 +81622,13 @@ d2 = 8; icon_state = "2-8" }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/hallway/primary/aft) "cNY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; @@ -84457,7 +81684,6 @@ /turf/simulated/floor/plasteel, /area/assembly/robotics) "cOb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" @@ -84492,11 +81718,17 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/plasteel{ icon_state = "purplefull" }, /area/assembly/robotics) "cOf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -84518,10 +81750,8 @@ d2 = 4; icon_state = "1-4" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -84534,9 +81764,11 @@ d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4; - initialize_directions = 11 + dir = 1 }, /turf/simulated/floor/plasteel{ dir = 4; @@ -84557,6 +81789,12 @@ d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -84572,6 +81810,12 @@ /obj/machinery/light_switch{ pixel_y = 28 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -84641,13 +81885,6 @@ /area/toxins/server{ name = "\improper Research Division Server Room" }) -"cOq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "whitebluecorner" - }, -/area/medical/medbay3) "cOr" = ( /obj/machinery/atmospherics/pipe/simple/visible{ dir = 4 @@ -84771,6 +82008,7 @@ name = "Isolation B"; req_access_txt = "39" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ icon_state = "freezerfloor" }, @@ -84782,12 +82020,12 @@ name = "Isolation A"; req_access_txt = "39" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ icon_state = "freezerfloor" }, /area/medical/virology) "cOB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" @@ -84819,8 +82057,8 @@ /obj/item/reagent_containers/iv_bag/blood/random, /obj/item/reagent_containers/iv_bag/blood/random, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/medical/virology) "cOD" = ( @@ -84831,22 +82069,23 @@ icon_state = "pipe-c" }, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/medical/virology) "cOE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/medical/virology) "cOF" = ( /obj/structure/closet/secure_closet/medical1, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/medical/virology) "cOG" = ( @@ -84896,9 +82135,6 @@ /obj/machinery/shower{ dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, /obj/effect/decal/warning_stripes/northeast, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -84926,9 +82162,6 @@ }) "cOL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, /obj/machinery/power/apc{ dir = 8; name = "west bump"; @@ -84939,6 +82172,7 @@ d2 = 2; icon_state = "0-2" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -84956,9 +82190,6 @@ name = "Aft Maintenance" }) "cON" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - req_access_txt = 1 - }, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "escape" @@ -84970,13 +82201,14 @@ d2 = 2; icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "escape" }, /area/hallway/primary/aft) "cOP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/camera{ c_tag = "Aft Primary Hallway - Aft"; dir = 8; @@ -85032,6 +82264,12 @@ name = "Privacy Shutters Control"; pixel_y = 25 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/wood, /area/medical/psych) "cOV" = ( @@ -85039,6 +82277,9 @@ dir = 4 }, /obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/plasteel, /area/assembly/robotics) "cOW" = ( @@ -85063,36 +82304,21 @@ /area/medical/research{ name = "Research Division" }) -"cPa" = ( -/obj/machinery/atmospherics/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_Toxins = 0 - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) "cPb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, /obj/item/radio/intercom{ frequency = 1459; name = "Station Intercom (General)"; pixel_x = 29 }, /obj/machinery/light{ - icon_state = "tube1"; - dir = 4 + dir = 4; + icon_state = "tube1" + }, +/obj/machinery/atmospherics/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel{ dir = 4; @@ -85110,6 +82336,10 @@ /obj/machinery/light/small{ dir = 8 }, +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 1; + on = 1 + }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -85118,6 +82348,12 @@ }) "cPe" = ( /obj/structure/chair/office/light, +/obj/machinery/atmospherics/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -85179,6 +82415,9 @@ d2 = 8; icon_state = "0-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -85200,7 +82439,6 @@ /obj/machinery/atmospherics/unary/portables_connector{ dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/portable_atmospherics/canister, /obj/effect/decal/warning_stripes/southeast, /turf/simulated/floor/plasteel, @@ -85236,19 +82474,19 @@ /turf/simulated/floor/plasteel, /area/assembly/robotics) "cPp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/item/bedsheet/medical, /obj/structure/bed, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, /turf/simulated/floor/plasteel{ icon_state = "freezerfloor" }, /area/medical/virology) "cPq" = ( -/obj/machinery/atmospherics/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 }, /turf/simulated/floor/plasteel{ icon_state = "freezerfloor" @@ -85256,14 +82494,15 @@ /area/medical/virology) "cPr" = ( /obj/structure/bed, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/item/bedsheet/medical, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, /turf/simulated/floor/plasteel{ icon_state = "freezerfloor" }, /area/medical/virology) "cPs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/wall, /area/medical/virology) @@ -85274,6 +82513,7 @@ name = "Break Room"; req_access_txt = "39" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ icon_state = "whitegreenfull" }, @@ -85335,18 +82575,12 @@ icon_state = "1-2" }, /obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ icon_state = "white" }, /area/medical/medbay3) -"cPB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "whiteblue" - }, -/area/medical/medbay3) "cPC" = ( /obj/structure/table, /obj/machinery/camera{ @@ -85358,23 +82592,12 @@ department = "Research Director's Office" }, /turf/simulated/floor/plasteel{ - tag = "icon-cafeteria (NORTHEAST)"; + dir = 5; icon_state = "cafeteria"; - dir = 5 + tag = "icon-cafeteria (NORTHEAST)" }, /area/crew_quarters/hor) -"cPD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "whiteblue" - }, -/area/medical/medbay3) "cPE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, /obj/structure/cable/yellow{ d1 = 1; d2 = 4; @@ -85415,8 +82638,8 @@ "cPH" = ( /obj/structure/closet/firecloset, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/hallway/secondary/exit{ name = "\improper Departure Lounge" @@ -85424,8 +82647,8 @@ "cPI" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/hallway/secondary/exit{ name = "\improper Departure Lounge" @@ -85433,8 +82656,8 @@ "cPJ" = ( /obj/machinery/computer/arcade, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/hallway/secondary/exit{ name = "\improper Departure Lounge" @@ -85471,8 +82694,8 @@ pixel_y = 32 }, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/hallway/secondary/exit{ name = "\improper Departure Lounge" @@ -85485,16 +82708,13 @@ pixel_y = 32 }, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/hallway/secondary/exit{ name = "\improper Departure Lounge" }) "cPN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - req_access_txt = 1 - }, /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ name = "Departure Lounge" @@ -85516,12 +82736,13 @@ /obj/machinery/door/airlock/public/glass{ name = "Departure Lounge" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/hallway/secondary/exit{ name = "\improper Departure Lounge" }) "cPP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ name = "Departure Lounge" @@ -85694,7 +82915,6 @@ /obj/structure/window/reinforced{ dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/camera/motion{ c_tag = "AI Satellite Exterior South"; network = list("SS13","RD","AIUpload") @@ -85702,6 +82922,9 @@ /obj/machinery/light/small{ dir = 1 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -85756,9 +82979,6 @@ }, /area/medical/patient_b) "cQg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/machinery/door/poddoor/shutters/preopen{ dir = 2; id_tag = "toxins_blastdoor"; @@ -85779,9 +82999,6 @@ d2 = 8; icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" @@ -85852,6 +83069,12 @@ /obj/machinery/light/small{ dir = 4 }, +/obj/machinery/atmospherics/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, /turf/simulated/floor/plasteel{ icon_state = "freezerfloor" }, @@ -85860,6 +83083,12 @@ /obj/machinery/light/small{ dir = 8 }, +/obj/machinery/atmospherics/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, /turf/simulated/floor/plasteel{ icon_state = "freezerfloor" }, @@ -85904,6 +83133,7 @@ }) "cQs" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "whitegreen" @@ -85920,9 +83150,6 @@ frequency = 1439; pixel_y = 23 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, /obj/machinery/camera{ c_tag = "Virology - Cells"; dir = 4; @@ -85954,10 +83181,11 @@ /turf/simulated/floor/plasteel, /area/assembly/robotics) "cQw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, /obj/effect/decal/warning_stripes/south, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/assembly/robotics) "cQx" = ( @@ -85988,19 +83216,15 @@ shock_proof = 0 }, /obj/effect/decal/warning_stripes/east, -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, /turf/simulated/floor/plasteel{ icon_state = "white" }, /area/medical/surgeryobs) "cQA" = ( /obj/structure/morgue{ - tag = "icon-morgue1 (WEST)"; + dir = 8; icon_state = "morgue1"; - dir = 8 + tag = "icon-morgue1 (WEST)" }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -86011,6 +83235,9 @@ dir = 4 }, /obj/effect/decal/warning_stripes/southeast, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/plasteel, /area/assembly/robotics) "cQE" = ( @@ -86048,9 +83275,6 @@ pixel_y = 26 }, /obj/item/wrench, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, /obj/item/restraints/handcuffs/cable/zipties, /turf/simulated/floor/plasteel{ dir = 5; @@ -86059,7 +83283,7 @@ /area/medical/virology) "cQH" = ( /obj/structure/rack, -/obj/effect/landmark/costume/random, +/obj/effect/landmark/costume, /obj/effect/spawner/lootdrop/maintenance{ lootcount = 2; name = "2maintenance loot spawner" @@ -86121,9 +83345,6 @@ dir = 4; icon_state = "tube1" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /obj/machinery/computer/pandemic, /turf/simulated/floor/plasteel{ dir = 4; @@ -86192,10 +83413,13 @@ d2 = 2; icon_state = "0-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /obj/effect/decal/warning_stripes/north, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, /turf/simulated/floor/plasteel, /area/hallway/secondary/exit{ name = "\improper Departure Lounge" @@ -86215,15 +83439,6 @@ /area/maintenance/fpmaint2{ name = "Port Maintenance" }) -"cQT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/effect/decal/warning_stripes/north, -/turf/simulated/floor/plasteel, -/area/hallway/secondary/exit{ - name = "\improper Departure Lounge" - }) "cQU" = ( /obj/item/storage/box/lights/mixed, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -86266,13 +83481,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plating, /area/maintenance/starboardsolar) -"cQY" = ( -/obj/effect/spawner/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/plating, -/area/medical/virology) "cQZ" = ( /obj/structure/table/glass, /obj/item/reagent_containers/dropper, @@ -86292,22 +83500,12 @@ icon_state = "freezerfloor" }, /area/medical/virology) -"cRb" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/wall, -/area/medical/virology) "cRc" = ( /obj/structure/table/glass, /obj/item/paper_bin{ pixel_x = -2; pixel_y = 9 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "whitegreen" @@ -86326,21 +83524,15 @@ /area/medical/virology) "cRe" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 }, /turf/simulated/floor/plasteel{ icon_state = "white" }, /area/medical/virology) -"cRf" = ( -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/simulated/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) "cRg" = ( /obj/structure/closet/emcloset, /obj/item/radio/intercom{ @@ -86357,9 +83549,9 @@ "cRi" = ( /obj/machinery/door/airlock/centcom{ icon = 'icons/obj/doors/airlocks/station/maintenance.dmi'; - overlays_file = 'icons/obj/doors/airlocks/station/overlays.dmi'; name = "Crematorium Maintenance"; opacity = 1; + overlays_file = 'icons/obj/doors/airlocks/station/overlays.dmi'; req_access_txt = "27" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -86370,9 +83562,9 @@ "cRj" = ( /obj/machinery/door/airlock/centcom{ icon = 'icons/obj/doors/airlocks/station/maintenance.dmi'; - overlays_file = 'icons/obj/doors/airlocks/station/overlays.dmi'; name = "Chapel Office Maintenance"; opacity = 1; + overlays_file = 'icons/obj/doors/airlocks/station/overlays.dmi'; req_access_txt = "27" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -86382,6 +83574,7 @@ d2 = 2; icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plating, /area/maintenance/aft{ name = "Aft Maintenance" @@ -86391,6 +83584,9 @@ dir = 1 }, /obj/effect/decal/warning_stripes/north, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel, /area/hallway/secondary/exit{ name = "\improper Departure Lounge" @@ -86435,6 +83631,9 @@ dir = 4 }, /obj/effect/decal/warning_stripes/north, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel, /area/hallway/secondary/exit{ name = "\improper Departure Lounge" @@ -86447,14 +83646,13 @@ name = "Aft Maintenance" }) "cRp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/item/twohanded/required/kirbyplants{ - tag = "icon-plant-11"; - icon_state = "plant-11" + icon_state = "plant-11"; + tag = "icon-plant-11" }, /obj/machinery/light{ - icon_state = "tube1"; - dir = 8 + dir = 8; + icon_state = "tube1" }, /turf/simulated/floor/plasteel{ dir = 8; @@ -86469,6 +83667,9 @@ pixel_y = 32 }, /obj/effect/decal/warning_stripes/north, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel, /area/hallway/secondary/exit{ name = "\improper Departure Lounge" @@ -86487,6 +83688,9 @@ dir = 4 }, /obj/effect/decal/warning_stripes/north, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel, /area/hallway/secondary/exit{ name = "\improper Departure Lounge" @@ -86519,6 +83723,8 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/hallway/secondary/exit{ name = "\improper Departure Lounge" @@ -86558,19 +83764,6 @@ icon_state = "4-8" }, /turf/simulated/floor/plasteel, -/area/hallway/secondary/exit{ - name = "\improper Departure Lounge" - }) -"cRz" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/plasteel, /area/hallway/secondary/exit{ name = "\improper Departure Lounge" }) @@ -86581,14 +83774,14 @@ icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, /turf/simulated/floor/plasteel, /area/hallway/secondary/exit{ name = "\improper Departure Lounge" @@ -86604,10 +83797,15 @@ d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, /obj/effect/decal/warning_stripes/north, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4; + initialize_directions = 11 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4; + initialize_directions = 11 + }, /turf/simulated/floor/plasteel, /area/hallway/secondary/exit{ name = "\improper Departure Lounge" @@ -86630,10 +83828,13 @@ name = "Aft Maintenance" }) "cRD" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ +/obj/effect/decal/warning_stripes/north, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/effect/decal/warning_stripes/north, /turf/simulated/floor/plasteel, /area/hallway/secondary/exit{ name = "\improper Departure Lounge" @@ -86742,7 +83943,6 @@ name = "\improper Recreation Area" }) "cRL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "whitebluecorner" @@ -86780,9 +83980,6 @@ d2 = 8; icon_state = "2-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, /obj/machinery/firealarm{ dir = 4; pixel_x = 24 @@ -86895,6 +84092,9 @@ /area/medical/psych) "cRY" = ( /obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, /turf/simulated/floor/plasteel{ icon_state = "whitegreen" }, @@ -86930,8 +84130,8 @@ pixel_y = 32 }, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/hallway/secondary/exit{ name = "\improper Departure Lounge" @@ -86964,6 +84164,7 @@ d2 = 2; icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ icon_state = "grimy" }, @@ -86985,9 +84186,9 @@ req_access_txt = "22" }, /turf/simulated/floor/plasteel{ - tag = "icon-cult"; + dir = 2; icon_state = "cult"; - dir = 2 + tag = "icon-cult" }, /area/chapel/office) "cSh" = ( @@ -87000,11 +84201,15 @@ pixel_x = -2; pixel_y = 2 }, +/obj/item/nullrod{ + pixel_x = 4 + }, /obj/item/organ/internal/heart, +/obj/structure/closet/secure_closet/chaplain, /turf/simulated/floor/plasteel{ - tag = "icon-cult"; + dir = 2; icon_state = "cult"; - dir = 2 + tag = "icon-cult" }, /area/chapel/office) "cSi" = ( @@ -87019,6 +84224,7 @@ icon_state = "1-2" }, /obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plating, /area/maintenance/aft{ name = "Aft Maintenance" @@ -87034,15 +84240,11 @@ }) "cSk" = ( /obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel, /area/hallway/secondary/exit{ name = "\improper Departure Lounge" }) "cSl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, /obj/structure/disposalpipe/sortjunction{ dir = 8; icon_state = "pipe-j2s"; @@ -87053,10 +84255,14 @@ d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, /obj/effect/decal/warning_stripes/south, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4; + initialize_directions = 11 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, /turf/simulated/floor/plating, /area/maintenance/aft{ name = "Aft Maintenance" @@ -87072,14 +84278,14 @@ d2 = 4; icon_state = "2-4" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /obj/structure/disposalpipe/junction{ dir = 8; icon_state = "pipe-j2" }, /obj/effect/decal/warning_stripes/south, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, /turf/simulated/floor/plating, /area/maintenance/aft{ name = "Aft Maintenance" @@ -87087,17 +84293,6 @@ "cSo" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel, -/area/hallway/secondary/exit{ - name = "\improper Departure Lounge" - }) -"cSp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plasteel, /area/hallway/secondary/exit{ name = "\improper Departure Lounge" }) @@ -87168,8 +84363,8 @@ }) "cSv" = ( /obj/item/twohanded/required/kirbyplants{ - tag = "icon-plant-11"; - icon_state = "plant-11" + icon_state = "plant-11"; + tag = "icon-plant-11" }, /turf/simulated/floor/plasteel{ dir = 5; @@ -87192,8 +84387,8 @@ /area/assembly/robotics) "cSy" = ( /obj/machinery/power/terminal{ - icon_state = "term"; - dir = 1 + dir = 1; + icon_state = "term" }, /obj/structure/cable{ d2 = 8; @@ -87232,9 +84427,13 @@ /obj/machinery/atmospherics/unary/tank/air{ dir = 1 }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4; + level = 1 + }, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/medical/virology) "cSE" = ( @@ -87243,25 +84442,35 @@ name = "virology air connector port" }, /obj/machinery/portable_atmospherics/canister/air, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4; + level = 1 + }, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/medical/virology) "cSF" = ( /obj/item/trash/popcorn, /obj/structure/table/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 4 + }, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/medical/virology) "cSG" = ( /obj/item/reagent_containers/food/snacks/sosjerky, /obj/structure/table/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/medical/virology) "cSH" = ( @@ -87270,8 +84479,8 @@ }, /obj/structure/table/glass, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/medical/virology) "cSI" = ( @@ -87341,6 +84550,12 @@ d2 = 4; icon_state = "2-4" }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -87356,8 +84571,8 @@ "cSR" = ( /obj/structure/table/wood, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/chapel/main) "cSS" = ( @@ -87367,9 +84582,10 @@ icon_state = "1-2" }, /obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/chapel/main) "cST" = ( @@ -87385,8 +84601,8 @@ pixel_y = 29 }, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/chapel/main) "cSU" = ( @@ -87405,8 +84621,8 @@ req_access_txt = "0" }, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/chapel/main) "cSV" = ( @@ -87479,7 +84695,6 @@ /obj/structure/extinguisher_cabinet{ pixel_x = -25 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ dir = 10; icon_state = "whitegreen" @@ -87492,24 +84707,14 @@ /area/maintenance/aft{ name = "Aft Maintenance" }) -"cTb" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/plasteel, -/area/hallway/secondary/exit{ - name = "\improper Departure Lounge" - }) "cTc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel, /area/hallway/secondary/exit{ name = "\improper Departure Lounge" @@ -87523,15 +84728,11 @@ name = "Aft Maintenance" }) "cTe" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/sink{ dir = 4; icon_state = "sink"; @@ -87560,6 +84761,9 @@ icon_state = "sink"; pixel_x = 11 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, /turf/simulated/floor/plasteel{ dir = 6; icon_state = "whitegreen" @@ -87570,7 +84774,6 @@ dir = 4; icon_state = "pipe-c" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=10-Aft-To-Central"; location = "9.4-Escape-4" @@ -87587,8 +84790,8 @@ pixel_y = 32 }, /turf/simulated/floor/plasteel{ - icon_state = "red"; - dir = 1 + dir = 1; + icon_state = "red" }, /area/hallway/secondary/exit{ name = "\improper Departure Lounge" @@ -87609,8 +84812,8 @@ pixel_y = 32 }, /turf/simulated/floor/plasteel{ - icon_state = "red"; - dir = 5 + dir = 5; + icon_state = "red" }, /area/hallway/secondary/exit{ name = "\improper Departure Lounge" @@ -87672,8 +84875,8 @@ /area/maintenance/starboardsolar) "cTq" = ( /obj/machinery/light{ - icon_state = "tube1"; - dir = 8 + dir = 8; + icon_state = "tube1" }, /obj/machinery/camera{ c_tag = "Departure Lounge - Port Fore"; @@ -87723,8 +84926,8 @@ pixel_y = -30 }, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/medical/virology) "cTw" = ( @@ -87804,6 +85007,7 @@ codes_txt = "patrol;next_patrol=9.2-Escape-2"; location = "9.1-Escape-1" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel, /area/hallway/secondary/exit{ name = "\improper Departure Lounge" @@ -87850,12 +85054,6 @@ }, /turf/simulated/floor/carpet, /area/chapel/main) -"cTI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/carpet, -/area/chapel/main) "cTJ" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -87866,21 +85064,13 @@ dir = 1; icon_state = "pipe-c" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, /turf/simulated/floor/carpet, /area/chapel/main) "cTK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/carpet, -/area/chapel/main) -"cTL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -87892,9 +85082,6 @@ name = "Chapel"; opacity = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -87927,9 +85114,6 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /turf/simulated/floor/plasteel, /area/hallway/secondary/exit{ name = "\improper Departure Lounge" @@ -87939,9 +85123,6 @@ dir = 8; icon_state = "pipe-c" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, /turf/simulated/floor/plasteel, /area/hallway/secondary/exit{ name = "\improper Departure Lounge" @@ -87977,8 +85158,8 @@ icon_state = "2-8" }, /turf/simulated/floor/plasteel{ - icon_state = "red"; - dir = 8 + dir = 8; + icon_state = "red" }, /area/hallway/secondary/exit{ name = "\improper Departure Lounge" @@ -88108,9 +85289,6 @@ dir = 1; icon_state = "pipe-c" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; @@ -88122,6 +85300,10 @@ icon_state = "1-4" }, /obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -88203,15 +85385,15 @@ }, /area/chapel/office) "cUl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/plasteel{ icon_state = "grimy" }, @@ -88241,7 +85423,9 @@ }, /area/chapel/office) "cUo" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "whiteblue" @@ -88271,19 +85455,17 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8; - initialize_directions = 11; - level = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -88314,7 +85496,9 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/carpet, /area/chapel/main) "cUt" = ( @@ -88326,6 +85510,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" }, @@ -88335,6 +85522,9 @@ dir = 4 }, /obj/effect/decal/warning_stripes/northeastcorner, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel, /area/hallway/secondary/exit{ name = "\improper Departure Lounge" @@ -88352,6 +85542,9 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/plasteel, /area/hallway/secondary/exit{ name = "\improper Departure Lounge" @@ -88371,13 +85564,18 @@ }, /obj/structure/table/wood, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/chapel/main) "cUy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4; + initialize_directions = 11 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4; + initialize_directions = 11 }, /turf/simulated/floor/plasteel, /area/hallway/secondary/exit{ @@ -88402,14 +85600,12 @@ dir = 8; initialize_directions = 11 }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/plasteel, /area/hallway/secondary/exit{ name = "\improper Departure Lounge" }) "cUB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /obj/effect/decal/warning_stripes/east, /turf/simulated/floor/plasteel, /area/hallway/secondary/exit{ @@ -88429,6 +85625,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 = "redfull" }, @@ -88441,12 +85640,6 @@ d2 = 8; icon_state = "1-8" }, -/obj/machinery/atmospherics/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; @@ -88456,9 +85649,15 @@ dir = 1; pixel_y = -24 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ - icon_state = "red"; - dir = 10 + dir = 10; + icon_state = "red" }, /area/hallway/secondary/exit{ name = "\improper Departure Lounge" @@ -88469,6 +85668,15 @@ d2 = 8; icon_state = "2-8" }, +/obj/machinery/atmospherics/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, /turf/simulated/floor/plasteel{ icon_state = "red" }, @@ -88493,16 +85701,13 @@ }, /area/medical/medbay3) "cUG" = ( -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 8; - on = 1 - }, +/obj/machinery/atmospherics/unary/vent_pump, /obj/structure/reagent_dispensers/peppertank{ pixel_y = 28 }, /turf/simulated/floor/plasteel{ - icon_state = "red"; - dir = 1 + dir = 1; + icon_state = "red" }, /area/hallway/secondary/exit{ name = "\improper Departure Lounge" @@ -88580,9 +85785,6 @@ /obj/structure/chair/office/dark{ dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /obj/machinery/computer/security/telescreen{ desc = "Used for watching output from station security cameras."; name = "Security Camera Monitor"; @@ -88590,8 +85792,8 @@ pixel_y = 30 }, /turf/simulated/floor/plasteel{ - icon_state = "red"; - dir = 9 + dir = 9; + icon_state = "red" }, /area/hallway/secondary/exit{ name = "\improper Departure Lounge" @@ -88614,6 +85816,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ icon_state = "grimy" }, @@ -88666,7 +85869,6 @@ }, /area/chapel/main) "cUY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/chair/stool, /turf/simulated/floor/plasteel{ dir = 1; @@ -88691,10 +85893,11 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -88711,8 +85914,9 @@ name = "\improper Departure Lounge" }) "cVd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 2; + dir = 4; initialize_directions = 11 }, /turf/simulated/floor/plasteel, @@ -88735,9 +85939,6 @@ dir = 5; max_integrity = 1e+007 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /turf/simulated/floor/grass, /area/hallway/secondary/exit{ name = "\improper Departure Lounge" @@ -88761,7 +85962,7 @@ "cVh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 + dir = 6 }, /turf/simulated/floor/plasteel, /area/hallway/secondary/exit{ @@ -88800,13 +86001,6 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -88818,10 +86012,6 @@ /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 = "dark" }, @@ -88877,9 +86067,6 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /obj/effect/decal/warning_stripes/northwest, /turf/simulated/floor/plasteel, /area/hallway/secondary/exit{ @@ -88890,24 +86077,22 @@ dir = 2; icon_state = "pipe-c" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ icon_state = "dark" }, /area/medical/morgue) "cVv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 + dir = 5 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -88920,21 +86105,6 @@ icon_state = "chapel" }, /area/chapel/main) -"cVx" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plasteel{ - icon_state = "chapel" - }, -/area/chapel/main) -"cVy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/chair/stool, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "chapel" - }, -/area/chapel/main) "cVz" = ( /obj/structure/chair/stool, /turf/simulated/floor/plasteel{ @@ -88951,22 +86121,13 @@ icon_state = "chapel" }, /area/chapel/main) -"cVB" = ( +"cVC" = ( /obj/machinery/atmospherics/unary/vent_scrubber{ - dir = 4; + dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plasteel, -/area/hallway/secondary/exit{ - name = "\improper Departure Lounge" - }) -"cVC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, /turf/simulated/floor/plasteel, /area/hallway/secondary/exit{ name = "\improper Departure Lounge" @@ -88975,9 +86136,6 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /obj/effect/decal/warning_stripes/northwestcorner, /turf/simulated/floor/plasteel, /area/hallway/secondary/exit{ @@ -89102,10 +86260,6 @@ /obj/structure/table/wood, /turf/simulated/floor/carpet, /area/chapel/main) -"cVQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/wall, -/area/chapel/main) "cVR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ @@ -89140,29 +86294,6 @@ }, /area/chapel/main) "cVU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "chapel" - }, -/area/chapel/main) -"cVV" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "chapel" - }, -/area/chapel/main) -"cVW" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "chapel" @@ -89187,8 +86318,11 @@ name = "\improper Departure Lounge" }) "cWa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 2 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 }, /turf/simulated/floor/plasteel, /area/hallway/secondary/exit{ @@ -89199,6 +86333,9 @@ dir = 4 }, /obj/effect/decal/warning_stripes/northwestcorner, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel, /area/hallway/secondary/exit{ name = "\improper Departure Lounge" @@ -89248,6 +86385,9 @@ dir = 4 }, /obj/effect/decal/warning_stripes/southwestcorner, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/plasteel, /area/hallway/secondary/exit{ name = "\improper Departure Lounge" @@ -89302,8 +86442,9 @@ dir = 8; on = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4; + initialize_directions = 11 }, /turf/simulated/floor/plasteel, /area/hallway/primary/aft) @@ -89333,8 +86474,8 @@ }, /obj/item/restraints/handcuffs, /obj/machinery/light{ - icon_state = "tube1"; - dir = 4 + dir = 4; + icon_state = "tube1" }, /obj/item/radio/off, /obj/machinery/requests_console{ @@ -89343,8 +86484,8 @@ pixel_x = 30 }, /turf/simulated/floor/plasteel{ - icon_state = "red"; - dir = 4 + dir = 4; + icon_state = "red" }, /area/hallway/secondary/exit{ name = "\improper Departure Lounge" @@ -89370,6 +86511,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 2 }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -89378,11 +86520,8 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/machinery/atmospherics/unary/vent_scrubber{ - dir = 2; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -89397,6 +86536,9 @@ name = "Funeral Parlour"; opacity = 1 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -89411,10 +86553,12 @@ }, /area/chapel/main) "cWv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ icon_state = "chapel" }, @@ -89427,15 +86571,6 @@ icon_state = "chapel" }, /area/chapel/main) -"cWx" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 2 - }, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "chapel" - }, -/area/chapel/main) "cWy" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 @@ -89452,9 +86587,9 @@ /area/chapel/main) "cWA" = ( /obj/machinery/shower{ - tag = "icon-shower (EAST)"; + dir = 4; icon_state = "shower"; - dir = 4 + tag = "icon-shower (EAST)" }, /obj/effect/decal/warning_stripes/west, /turf/simulated/floor/plasteel{ @@ -89473,18 +86608,9 @@ dir = 4 }, /obj/effect/decal/warning_stripes/east, -/turf/simulated/floor/plasteel, -/area/hallway/secondary/exit{ - name = "\improper Departure Lounge" - }) -"cWD" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/effect/decal/warning_stripes/east, /turf/simulated/floor/plasteel, /area/hallway/secondary/exit{ name = "\improper Departure Lounge" @@ -89532,12 +86658,10 @@ name = "\improper Secure Lab" }) "cWG" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "neutralcorner" @@ -89551,10 +86675,6 @@ name = "\improper ROBOTICS!"; pixel_x = 32 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4; - initialize_directions = 11 - }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "purplecorner" @@ -89577,18 +86697,6 @@ /area/maintenance/aft{ name = "Aft Maintenance" }) -"cWJ" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/decal/warning_stripes/west, -/turf/simulated/floor/plasteel, -/area/hallway/secondary/exit{ - name = "\improper Departure Lounge" - }) "cWK" = ( /obj/structure/cable{ d1 = 4; @@ -89621,8 +86729,8 @@ pixel_y = -2 }, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/chapel/main) "cWO" = ( @@ -89633,21 +86741,16 @@ name = "Chaplain" }, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/chapel/main) "cWP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"cWQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/machinery/atmospherics/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -89664,6 +86767,7 @@ pixel_y = 5 }, /obj/structure/table/wood, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ icon_state = "grimy" }, @@ -89701,16 +86805,6 @@ /area/hallway/secondary/exit{ name = "\improper Departure Lounge" }) -"cWU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5; - level = 1 - }, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "whiteblue" - }, -/area/medical/medbay3) "cWV" = ( /obj/structure/table/wood, /turf/simulated/floor/plasteel{ @@ -89808,12 +86902,13 @@ }) "cXg" = ( /obj/structure/sink{ - icon_state = "sink"; dir = 8; + icon_state = "sink"; pixel_x = -12; pixel_y = 2 }, /obj/machinery/atmospherics/unary/vent_pump{ + dir = 4; on = 1 }, /obj/effect/decal/warning_stripes/southwest, @@ -89845,6 +86940,9 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/decal/warning_stripes/south, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -89947,6 +87045,7 @@ }) "cXr" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ dir = 3; icon_state = "whitebluecorner" @@ -89973,12 +87072,6 @@ icon_state = "whitepurplefull"; tag = "icon-whitehall (WEST)" }, -/area/toxins/xenobiology{ - name = "\improper Secure Lab" - }) -"cXu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/wall/r_wall, /area/toxins/xenobiology{ name = "\improper Secure Lab" }) @@ -90014,6 +87107,7 @@ pixel_x = -25; req_access_txt = "55" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "whitepurplefull"; @@ -90087,8 +87181,8 @@ pixel_y = -32 }, /turf/simulated/floor/plasteel{ - icon_state = "red"; - dir = 6 + dir = 6; + icon_state = "red" }, /area/hallway/secondary/exit{ name = "\improper Departure Lounge" @@ -90152,15 +87246,15 @@ /area/chapel/main) "cXJ" = ( /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/chapel/main) "cXK" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/chapel/main) "cXL" = ( @@ -90251,7 +87345,6 @@ pixel_x = -6; pixel_y = 26 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "whitepurple" @@ -90271,6 +87364,7 @@ d2 = 4; icon_state = "1-4" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "whitepurple" @@ -90345,8 +87439,8 @@ }) "cXY" = ( /obj/item/twohanded/required/kirbyplants{ - tag = "icon-plant-11"; - icon_state = "plant-11" + icon_state = "plant-11"; + tag = "icon-plant-11" }, /turf/simulated/floor/plasteel{ dir = 6; @@ -90383,20 +87477,8 @@ "cYb" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/crew_quarters/fitness{ - name = "\improper Recreation Area" - }) -"cYc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plasteel{ - icon_state = "vault"; - dir = 5 + dir = 5; + icon_state = "vault" }, /area/crew_quarters/fitness{ name = "\improper Recreation Area" @@ -90436,9 +87518,9 @@ dir = 1 }, /turf/simulated/floor/plasteel{ - tag = "icon-cult"; + dir = 2; icon_state = "cult"; - dir = 2 + tag = "icon-cult" }, /area/chapel/main) "cYh" = ( @@ -90447,9 +87529,9 @@ req_access_txt = "0" }, /turf/simulated/floor/plasteel{ - tag = "icon-cult"; + dir = 2; icon_state = "cult"; - dir = 2 + tag = "icon-cult" }, /area/chapel/main) "cYi" = ( @@ -90464,8 +87546,8 @@ "cYj" = ( /obj/structure/chair, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/chapel/main) "cYk" = ( @@ -90474,8 +87556,8 @@ name = "Chaplain" }, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/chapel/main) "cYl" = ( @@ -90490,8 +87572,8 @@ }, /obj/structure/table/wood, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/chapel/main) "cYm" = ( @@ -90533,16 +87615,6 @@ /area/toxins/xenobiology{ name = "\improper Secure Lab" }) -"cYs" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology{ - name = "\improper Secure Lab" - }) "cYt" = ( /obj/machinery/hologram/holopad, /obj/structure/cable/yellow{ @@ -90553,6 +87625,9 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -90607,15 +87682,14 @@ d2 = 8; icon_state = "2-8" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1; - initialize_directions = 11 - }, /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=14.8-Dorms-Lockers"; location = "14.5-Recreation" }, /obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel, /area/crew_quarters/fitness{ name = "\improper Recreation Area" @@ -90653,16 +87727,16 @@ "cYD" = ( /turf/space, /turf/simulated/shuttle/wall{ - tag = "icon-swall_f6"; + dir = 2; icon_state = "swall_f6"; - dir = 2 + tag = "icon-swall_f6" }, /area/shuttle/escape) "cYE" = ( /turf/simulated/shuttle/wall{ - tag = "icon-swall12"; + dir = 2; icon_state = "swall12"; - dir = 2 + tag = "icon-swall12" }, /area/shuttle/escape) "cYF" = ( @@ -90679,7 +87753,6 @@ d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/junction{ dir = 8 }, @@ -90689,17 +87762,17 @@ }) "cYH" = ( /turf/simulated/shuttle/wall{ - tag = "icon-swall14"; + dir = 2; icon_state = "swall14"; - dir = 2 + tag = "icon-swall14" }, /area/shuttle/escape) "cYI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/junction{ - tag = "icon-pipe-j2"; + dir = 2; icon_state = "pipe-j2"; - dir = 2 + tag = "icon-pipe-j2" }, /obj/structure/cable/yellow{ d1 = 1; @@ -90713,9 +87786,9 @@ "cYJ" = ( /turf/space, /turf/simulated/shuttle/wall{ - tag = "icon-swall_f10"; + dir = 2; icon_state = "swall_f10"; - dir = 2 + tag = "icon-swall_f10" }, /area/shuttle/escape) "cYK" = ( @@ -90725,9 +87798,9 @@ }, /obj/machinery/portable_atmospherics/canister/air, /turf/simulated/floor/plasteel{ - tag = "icon-whitepurple (SOUTHWEST)"; + dir = 10; icon_state = "whitepurple"; - dir = 10 + tag = "icon-whitepurple (SOUTHWEST)" }, /area/toxins/xenobiology{ name = "\improper Secure Lab" @@ -90750,6 +87823,9 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, /turf/simulated/floor/plasteel{ icon_state = "whitegreen" }, @@ -90764,7 +87840,6 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/decal/warning_stripes/south, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -90800,7 +87875,6 @@ master_tag = "tox_airlock_control"; pixel_y = 24 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/binary/pump{ dir = 4 }, @@ -90809,7 +87883,6 @@ name = "\improper Toxins Lab" }) "cYT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/sign/fire{ pixel_y = -32 }, @@ -90892,14 +87965,17 @@ dir = 8; network = list("SS13") }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, /turf/simulated/floor/plasteel{ icon_state = "grimy" }, /area/chapel/office) "cZb" = ( /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + d2 = 2; + icon_state = "0-2" }, /obj/machinery/power/solar{ id = "aftstarboard"; @@ -90944,9 +88020,9 @@ /area/solar/starboard) "cZe" = ( /turf/simulated/shuttle/wall{ - tag = "icon-swall3"; + dir = 2; icon_state = "swall3"; - dir = 2 + tag = "icon-swall3" }, /area/shuttle/escape) "cZf" = ( @@ -90997,10 +88073,6 @@ /turf/simulated/wall, /area/chapel/main) "cZl" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 2; - initialize_directions = 11 - }, /obj/item/twohanded/required/kirbyplants{ icon_state = "plant-24"; layer = 4.1; @@ -91010,13 +88082,6 @@ icon_state = "dark" }, /area/chapel/main) -"cZm" = ( -/obj/effect/spawner/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/medical/virology) "cZn" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -91103,7 +88168,6 @@ name = "Chapel Office APC"; pixel_y = -25 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/unary/vent_pump{ dir = 4; on = 1 @@ -91114,7 +88178,6 @@ }, /area/chapel/office) "cZu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/door/firedoor, /obj/effect/decal/warning_stripes/yellow, /turf/simulated/floor/plasteel{ @@ -91172,6 +88235,9 @@ /obj/effect/landmark/start{ name = "Medical Doctor" }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -91213,8 +88279,8 @@ /area/chapel/main) "cZD" = ( /obj/machinery/light{ - icon_state = "tube1"; - dir = 4 + dir = 4; + icon_state = "tube1" }, /obj/machinery/door/firedoor, /obj/effect/decal/warning_stripes/yellow, @@ -91261,6 +88327,9 @@ pixel_y = 3; tag = "icon-plant-21" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "whitegreencorner" @@ -91288,6 +88357,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/decal/warning_stripes/south, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -91297,15 +88367,6 @@ "cZL" = ( /obj/machinery/computer/camera_advanced/xenobio, /obj/effect/decal/warning_stripes/southwestcorner, -/turf/simulated/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology{ - name = "\improper Secure Lab" - }) -"cZM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/decal/warning_stripes/north, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -91327,10 +88388,22 @@ name = "Psych Office"; req_access_txt = "64" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/wood, /area/medical/psych) "cZQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 2; + initialize_directions = 11 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -91369,6 +88442,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{ icon_state = "white" }, @@ -91385,16 +88459,16 @@ /area/shuttle/escape) "cZW" = ( /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + d2 = 4; + icon_state = "0-4" }, /obj/structure/lattice/catwalk, /turf/space, /area/solar/starboard) "cZX" = ( /obj/machinery/light{ - icon_state = "tube1"; - dir = 8 + dir = 8; + icon_state = "tube1" }, /obj/machinery/alarm{ dir = 4; @@ -91414,14 +88488,6 @@ /area/maintenance/aft{ name = "Aft Maintenance" }) -"cZZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology{ - name = "\improper Secure Lab" - }) "daa" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ @@ -91430,6 +88496,7 @@ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -91460,8 +88527,8 @@ dir = 1 }, /obj/item/twohanded/required/kirbyplants{ - tag = "icon-plant-25"; - icon_state = "plant-25" + icon_state = "plant-25"; + tag = "icon-plant-25" }, /turf/simulated/floor/wood, /area/medical/psych) @@ -91489,6 +88556,10 @@ c_tag = "Medbay Surgery 1 North"; network = list("SS13") }, +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 8; + on = 1 + }, /turf/simulated/floor/wood, /area/medical/psych) "dag" = ( @@ -91502,21 +88573,21 @@ /area/chapel/main) "dah" = ( /turf/simulated/shuttle/wall{ - icon_state = "swallc2"; - dir = 2 + dir = 2; + icon_state = "swallc2" }, /area/shuttle/escape) "dai" = ( /turf/simulated/shuttle/wall{ - icon_state = "swall0"; - dir = 2 + dir = 2; + icon_state = "swall0" }, /area/shuttle/escape) "daj" = ( /obj/structure/sign/nosmoking_2, /turf/simulated/shuttle/wall{ - icon_state = "swall0"; - dir = 2 + dir = 2; + icon_state = "swall0" }, /area/shuttle/escape) "dak" = ( @@ -91530,8 +88601,8 @@ /area/medical/psych) "dal" = ( /turf/simulated/shuttle/wall{ - icon_state = "swall4"; - dir = 2 + dir = 2; + icon_state = "swall4" }, /area/shuttle/escape) "dam" = ( @@ -91559,17 +88630,15 @@ /area/maintenance/aft{ name = "Aft Maintenance" }) -"dao" = ( -/obj/effect/spawner/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating, -/area/medical/virology) "dap" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /obj/item/radio/beacon, /obj/effect/decal/warning_stripes/north, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel, /area/hallway/secondary/exit{ name = "\improper Departure Lounge" @@ -91602,6 +88671,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -91617,6 +88687,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/decal/warning_stripes/north, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -91654,8 +88725,8 @@ network = list("SS13") }, /obj/machinery/light{ - icon_state = "tube1"; - dir = 8 + dir = 8; + icon_state = "tube1" }, /obj/structure/extinguisher_cabinet{ pixel_x = -27 @@ -91681,6 +88752,9 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, /turf/simulated/floor/plasteel, /area/hallway/secondary/exit{ name = "\improper Departure Lounge" @@ -91705,6 +88779,9 @@ d2 = 8; icon_state = "2-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "whitegreen"; @@ -91730,9 +88807,9 @@ "daz" = ( /turf/space, /turf/simulated/shuttle/wall{ - tag = "icon-swall_f6"; + dir = 2; icon_state = "swall_f6"; - dir = 2 + tag = "icon-swall_f6" }, /turf/simulated/shuttle/wall{ dir = 8; @@ -91774,8 +88851,8 @@ /area/shuttle/escape) "daE" = ( /obj/structure/sink{ - icon_state = "sink"; dir = 8; + icon_state = "sink"; pixel_x = -12; pixel_y = 2 }, @@ -91810,7 +88887,6 @@ d2 = 8; icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/decal/warning_stripes/southwestcorner, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -91852,8 +88928,8 @@ }) "daJ" = ( /turf/simulated/shuttle/wall{ - icon_state = "swall1"; - dir = 2 + dir = 2; + icon_state = "swall1" }, /area/shuttle/escape) "daK" = ( @@ -91910,6 +88986,9 @@ name = "Virology Access"; req_access_txt = "39" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ icon_state = "whitegreenfull" }, @@ -91920,6 +88999,9 @@ d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "whitegreen" @@ -91934,7 +89016,7 @@ icon_state = "1-8" }, /obj/machinery/atmospherics/unary/vent_scrubber{ - dir = 4; + dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0 @@ -91949,6 +89031,9 @@ d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "whitegreen"; @@ -91956,31 +89041,27 @@ }, /area/medical/medbay3) "daP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, /turf/simulated/floor/plasteel{ icon_state = "white" }, /area/medical/medbay3) "daQ" = ( -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 2; - on = 1 - }, /obj/structure/cable/yellow{ d1 = 2; d2 = 4; icon_state = "2-4" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/wood, /area/medical/psych) "daR" = ( /obj/machinery/light{ - icon_state = "tube1"; - dir = 8 + dir = 8; + icon_state = "tube1" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/decal/warning_stripes/west, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -92018,19 +89099,25 @@ d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, /turf/simulated/floor/carpet, /area/medical/psych) "daW" = ( /turf/simulated/shuttle/wall{ - tag = "icon-swall7"; + dir = 2; icon_state = "swall7"; - dir = 2 + tag = "icon-swall7" }, /area/shuttle/escape) "daX" = ( /turf/simulated/shuttle/wall{ - icon_state = "swall8"; - dir = 2 + dir = 2; + icon_state = "swall8" }, /area/shuttle/escape) "daY" = ( @@ -92043,9 +89130,9 @@ /area/shuttle/escape) "daZ" = ( /obj/structure/shuttle/engine/heater{ - tag = "icon-heater (WEST)"; + dir = 8; icon_state = "heater"; - dir = 8 + tag = "icon-heater (WEST)" }, /obj/structure/window/reinforced{ dir = 4 @@ -92054,9 +89141,9 @@ /area/shuttle/escape) "dba" = ( /turf/simulated/shuttle/wall{ - tag = "icon-swall11"; + dir = 2; icon_state = "swall11"; - dir = 2 + tag = "icon-swall11" }, /area/shuttle/escape) "dbb" = ( @@ -92066,6 +89153,9 @@ icon_state = "4-8" }, /obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/carpet, /area/medical/psych) "dbc" = ( @@ -92082,6 +89172,7 @@ /obj/effect/landmark{ name = "lightsout" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -92125,9 +89216,9 @@ "dbh" = ( /obj/machinery/status_display, /turf/simulated/shuttle/wall{ - tag = "icon-swall3"; + dir = 2; icon_state = "swall3"; - dir = 2 + tag = "icon-swall3" }, /area/shuttle/escape) "dbi" = ( @@ -92204,6 +89295,7 @@ d2 = 8; icon_state = "1-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -92211,7 +89303,6 @@ name = "\improper Secure Lab" }) "dbo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/decal/warning_stripes/northwestcorner, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -92287,6 +89378,7 @@ d2 = 2; icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "whitegreen"; @@ -92307,7 +89399,9 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -92316,8 +89410,11 @@ /obj/structure/chair/comfy/black{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 + dir = 4 }, /turf/simulated/floor/plasteel{ dir = 1; @@ -92342,13 +89439,15 @@ }) "dbz" = ( /obj/structure/sink{ - icon_state = "sink"; dir = 8; + icon_state = "sink"; pixel_x = -12; pixel_y = 2 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/decal/warning_stripes/west, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -92565,16 +89664,16 @@ /area/medical/psych) "dbO" = ( /obj/structure/shuttle/engine/heater{ - tag = "icon-heater (WEST)"; + dir = 8; icon_state = "heater"; - dir = 8 + tag = "icon-heater (WEST)" }, /obj/structure/window/reinforced{ dir = 4 }, /obj/machinery/light{ - icon_state = "tube1"; - dir = 4 + dir = 4; + icon_state = "tube1" }, /turf/simulated/shuttle/plating, /area/shuttle/escape) @@ -92717,8 +89816,8 @@ req_access_txt = "0" }, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/chapel/main) "dbY" = ( @@ -92792,8 +89891,8 @@ /obj/item/clothing/head/hardhat, /obj/item/clothing/head/hardhat, /obj/machinery/light{ - icon_state = "tube1"; - dir = 4 + dir = 4; + icon_state = "tube1" }, /turf/simulated/shuttle/floor{ icon_state = "floor3" @@ -92939,8 +90038,8 @@ "dcm" = ( /obj/structure/extinguisher_cabinet, /turf/simulated/shuttle/wall{ - icon_state = "swall0"; - dir = 2 + dir = 2; + icon_state = "swall0" }, /area/shuttle/escape) "dcn" = ( @@ -92951,8 +90050,8 @@ /area/shuttle/escape) "dco" = ( /turf/simulated/shuttle/wall{ - icon_state = "swall2"; - dir = 2 + dir = 2; + icon_state = "swall2" }, /area/shuttle/escape) "dcp" = ( @@ -93002,8 +90101,8 @@ "dcu" = ( /obj/machinery/door/airlock/command{ icon = 'icons/obj/doors/airlocks/centcom/centcom.dmi'; - overlays_file = 'icons/obj/doors/airlocks/centcom/overlays.dmi'; name = "Test Chamber Maintenance"; + overlays_file = 'icons/obj/doors/airlocks/centcom/overlays.dmi'; req_access_txt = "47" }, /obj/structure/disposalpipe/segment{ @@ -93141,8 +90240,8 @@ "dcC" = ( /obj/machinery/door/airlock/command{ icon = 'icons/obj/doors/airlocks/centcom/centcom.dmi'; - overlays_file = 'icons/obj/doors/airlocks/centcom/overlays.dmi'; name = "Test Chamber Maintenance"; + overlays_file = 'icons/obj/doors/airlocks/centcom/overlays.dmi'; req_access_txt = "47" }, /turf/simulated/floor/plating, @@ -93169,9 +90268,9 @@ /area/shuttle/escape) "dcG" = ( /turf/simulated/shuttle/wall{ - tag = "icon-swall15"; + dir = 2; icon_state = "swall15"; - dir = 2 + tag = "icon-swall15" }, /area/shuttle/escape) "dcH" = ( @@ -93187,9 +90286,6 @@ /turf/simulated/shuttle/floor, /area/shuttle/escape) "dcK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /obj/machinery/atmospherics/pipe/simple/visible{ dir = 6; level = 2 @@ -93261,8 +90357,8 @@ /obj/item/stack/medical/ointment, /obj/item/stack/medical/bruise_pack, /obj/machinery/light{ - icon_state = "tube1"; - dir = 4 + dir = 4; + icon_state = "tube1" }, /turf/simulated/shuttle/floor{ icon_state = "floor3" @@ -93271,9 +90367,9 @@ "dcS" = ( /obj/structure/extinguisher_cabinet, /turf/simulated/shuttle/wall{ - tag = "icon-swall12"; + dir = 2; icon_state = "swall12"; - dir = 2 + tag = "icon-swall12" }, /area/shuttle/escape) "dcT" = ( @@ -93397,8 +90493,8 @@ "ddo" = ( /obj/machinery/sleeper, /obj/machinery/light{ - icon_state = "tube1"; - dir = 4 + dir = 4; + icon_state = "tube1" }, /turf/simulated/shuttle/floor, /area/shuttle/escape) @@ -93436,37 +90532,37 @@ /area/solar/starboard) "ddx" = ( /turf/simulated/shuttle/wall{ - tag = "icon-swall13"; + dir = 2; icon_state = "swall13"; - dir = 2 + tag = "icon-swall13" }, /area/shuttle/escape) "ddy" = ( /turf/space, /turf/simulated/shuttle/wall{ - tag = "icon-swall_f9"; + dir = 2; icon_state = "swall_f9"; - dir = 2 + tag = "icon-swall_f9" }, /area/shuttle/escape) "ddD" = ( /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + d2 = 2; + icon_state = "0-2" }, /obj/structure/lattice/catwalk, /turf/space, /area/solar/starboard) "ddE" = ( /turf/simulated/shuttle/wall{ - icon_state = "swall12"; - dir = 2 + dir = 2; + icon_state = "swall12" }, /area/shuttle/escape) "ddF" = ( /turf/simulated/shuttle/wall{ - icon_state = "swall11"; - dir = 2 + dir = 2; + icon_state = "swall11" }, /area/shuttle/escape) "ddG" = ( @@ -93564,8 +90660,8 @@ /area/space) "ddR" = ( /obj/machinery/light{ - icon_state = "tube1"; - dir = 4 + dir = 4; + icon_state = "tube1" }, /obj/structure/cable/yellow{ d1 = 2; @@ -93691,8 +90787,8 @@ anchored = 1 }, /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + d2 = 2; + icon_state = "0-2" }, /turf/simulated/floor/plating/airless, /area/space/nearstation) @@ -93711,8 +90807,8 @@ use_power = 0 }, /turf/simulated/shuttle/wall{ - icon_state = "swall0"; - dir = 2 + dir = 2; + icon_state = "swall0" }, /area/shuttle/escape) "dec" = ( @@ -93724,10 +90820,10 @@ /turf/simulated/floor/plating/airless, /area/space/nearstation) "ded" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /obj/machinery/dye_generator, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "barber" @@ -93760,6 +90856,7 @@ dir = 8; icon_state = "pipe-c" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/maintenance/aft{ name = "Aft Maintenance" @@ -93774,6 +90871,12 @@ name = "Aft Maintenance" }) "dei" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, /turf/simulated/floor/wood, /area/medical/psych) "dej" = ( @@ -93805,16 +90908,16 @@ /obj/item/candle, /obj/structure/table/wood, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/chapel/main) "dem" = ( /obj/structure/table/wood, /obj/effect/decal/cleanable/cobweb, /turf/simulated/floor/plasteel{ - tag = "icon-vault"; - icon_state = "vault" + icon_state = "vault"; + tag = "icon-vault" }, /area/chapel/main) "den" = ( @@ -93842,9 +90945,6 @@ pixel_x = -3; pixel_y = 5 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /turf/simulated/floor/plasteel, /area/hallway/secondary/exit{ name = "\improper Departure Lounge" @@ -93896,7 +90996,6 @@ }) "deu" = ( /obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/universal, /turf/simulated/wall/r_wall, /area/medical/virology) "dev" = ( @@ -94050,6 +91149,7 @@ icon_state = "1-2" }, /obj/structure/table/wood, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ icon_state = "grimy" }, @@ -94084,22 +91184,18 @@ "deN" = ( /turf/simulated/floor/carpet, /area/chapel/main) -"deO" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8; - initialize_directions = 11 - }, -/turf/simulated/floor/carpet, -/area/chapel/main) "deP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, /turf/simulated/floor/carpet, /area/chapel/main) "deQ" = ( @@ -94205,7 +91301,6 @@ /turf/simulated/wall/r_wall, /area/engine/mechanic_workshop) "deX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/chair/stool, /obj/structure/cable/yellow{ d1 = 4; @@ -94238,8 +91333,8 @@ "dfa" = ( /obj/machinery/computer/rdconsole/mechanics, /turf/simulated/floor/plasteel{ - icon_state = "vault"; - dir = 5 + dir = 5; + icon_state = "vault" }, /area/engine/mechanic_workshop) "dfb" = ( @@ -94251,8 +91346,8 @@ opacity = 0 }, /turf/simulated/floor/plasteel{ - icon_state = "vault"; - dir = 5 + dir = 5; + icon_state = "vault" }, /area/engine/mechanic_workshop) "dfc" = ( @@ -94262,15 +91357,15 @@ in_use = 1 }, /turf/simulated/floor/plasteel{ - icon_state = "vault"; - dir = 5 + dir = 5; + icon_state = "vault" }, /area/engine/mechanic_workshop) "dfd" = ( /obj/machinery/camera, /turf/simulated/floor/plasteel{ - icon_state = "vault"; - dir = 5 + dir = 5; + icon_state = "vault" }, /area/engine/mechanic_workshop) "dfe" = ( @@ -94281,8 +91376,8 @@ pixel_y = 12 }, /turf/simulated/floor/plasteel{ - icon_state = "vault"; - dir = 5 + dir = 5; + icon_state = "vault" }, /area/engine/mechanic_workshop) "dff" = ( @@ -94300,14 +91395,14 @@ pixel_y = 6 }, /turf/simulated/floor/plasteel{ - icon_state = "vault"; - dir = 5 + dir = 5; + icon_state = "vault" }, /area/engine/mechanic_workshop) "dfg" = ( /turf/simulated/floor/plasteel{ - icon_state = "vault"; - dir = 5 + dir = 5; + icon_state = "vault" }, /area/engine/mechanic_workshop) "dfh" = ( @@ -94322,8 +91417,8 @@ pixel_y = 3 }, /turf/simulated/floor/plasteel{ - icon_state = "vault"; - dir = 5 + dir = 5; + icon_state = "vault" }, /area/engine/mechanic_workshop) "dfi" = ( @@ -94352,23 +91447,18 @@ "dfl" = ( /obj/structure/spacepoddoor, /turf/simulated/floor/plasteel{ - icon_state = "vault"; - dir = 5 + dir = 5; + icon_state = "vault" }, /area/engine/mechanic_workshop) "dfm" = ( -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 7; - on = 1 - }, /obj/machinery/vending/cola, /turf/simulated/floor/plasteel{ - icon_state = "vault"; - dir = 5 + dir = 5; + icon_state = "vault" }, /area/engine/mechanic_workshop) "dfn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; @@ -94381,8 +91471,8 @@ name = "Security Officer" }, /turf/simulated/floor/plasteel{ - icon_state = "red"; - dir = 8 + dir = 8; + icon_state = "red" }, /area/security/main) "dfo" = ( @@ -94391,6 +91481,8 @@ d2 = 8; icon_state = "1-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -94398,14 +91490,14 @@ "dfp" = ( /turf/space, /turf/simulated/shuttle/wall{ - tag = "icon-swall_f5"; + dir = 2; icon_state = "swall_f5"; - dir = 2 + tag = "icon-swall_f5" }, /turf/simulated/shuttle/wall{ - tag = "icon-diagonalWall3"; + dir = 2; icon_state = "diagonalWall3"; - dir = 2 + tag = "icon-diagonalWall3" }, /area/shuttle/escape) "dfq" = ( @@ -94416,9 +91508,13 @@ /obj/effect/landmark/start{ name = "Mechanic" }, +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 7; + on = 1 + }, /turf/simulated/floor/plasteel{ - icon_state = "vault"; - dir = 5 + dir = 5; + icon_state = "vault" }, /area/engine/mechanic_workshop) "dfr" = ( @@ -94437,6 +91533,7 @@ req_access_txt = "27" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -94447,8 +91544,8 @@ initialize_directions = 11 }, /turf/simulated/floor/plasteel{ - icon_state = "vault"; - dir = 5 + dir = 5; + icon_state = "vault" }, /area/engine/mechanic_workshop) "dfu" = ( @@ -94478,9 +91575,6 @@ /turf/simulated/floor/plating, /area/chapel/main) "dfw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "chapel" @@ -94492,8 +91586,8 @@ level = 1 }, /turf/simulated/floor/plasteel{ - icon_state = "vault"; - dir = 5 + dir = 5; + icon_state = "vault" }, /area/engine/mechanic_workshop) "dfy" = ( @@ -94504,9 +91598,6 @@ /turf/simulated/floor/engine, /area/engine/mechanic_workshop) "dfz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/structure/cable/yellow{ d1 = 2; d2 = 8; @@ -94517,8 +91608,11 @@ d2 = 8; icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 }, /turf/simulated/floor/plasteel, /area/engine/break_room) @@ -94532,6 +91626,9 @@ d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel, /area/engine/break_room) "dfB" = ( @@ -94540,20 +91637,17 @@ d2 = 8; icon_state = "1-8" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4; - initialize_directions = 11 - }, /obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 - }, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 2; + initialize_directions = 11 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/plasteel, /area/engine/break_room) "dfC" = ( @@ -94616,7 +91710,12 @@ }, /area/shuttle/escape) "dfG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "chapel" @@ -94637,7 +91736,6 @@ name = "\improper Secure Lab" }) "dfI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4; level = 1 @@ -94647,9 +91745,12 @@ d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, /turf/simulated/floor/plasteel{ - icon_state = "vault"; - dir = 5 + dir = 5; + icon_state = "vault" }, /area/engine/mechanic_workshop) "dfJ" = ( @@ -94681,8 +91782,8 @@ pixel_y = -22 }, /turf/simulated/floor/plasteel{ - icon_state = "vault"; - dir = 5 + dir = 5; + icon_state = "vault" }, /area/engine/mechanic_workshop) "dfM" = ( @@ -94691,12 +91792,6 @@ icon_state = "floorgrime" }, /area/shuttle/escape) -"dfN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/wall, -/area/hallway/secondary/entry{ - name = "Arrivals" - }) "dfO" = ( /obj/structure/sign/redcross{ desc = "The Star of Life, a symbol of Medical Aid."; @@ -94705,29 +91800,10 @@ }, /turf/simulated/wall, /area/medical/psych) -"dfP" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "arrival" - }, -/area/hallway/secondary/entry{ - name = "Arrivals" - }) "dfQ" = ( /obj/structure/sink{ pixel_y = 28 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /obj/effect/decal/warning_stripes/north, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -94738,12 +91814,9 @@ pixel_y = 32 }, /obj/machinery/shower{ - tag = "icon-shower (EAST)"; + dir = 4; icon_state = "shower"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 + tag = "icon-shower (EAST)" }, /obj/effect/decal/warning_stripes/northwest, /turf/simulated/floor/plasteel{ @@ -94768,6 +91841,9 @@ d2 = 4; icon_state = "2-4" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "whitegreen"; @@ -94785,13 +91861,16 @@ d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/plasteel{ icon_state = "white" }, /area/medical/virology) "dfV" = ( /obj/machinery/atmospherics/unary/vent_pump{ - dir = 1; + dir = 8; on = 1 }, /obj/structure/cable/yellow{ @@ -94832,6 +91911,7 @@ d2 = 2; icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "whitegreen"; @@ -95004,9 +92084,6 @@ }, /area/shuttle/escape) "dgg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/machinery/camera{ c_tag = "Chapel - Port"; dir = 4; @@ -95047,17 +92124,18 @@ /obj/structure/rack, /obj/item/clothing/mask/gas, /obj/item/clothing/mask/gas, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/hallway/secondary/entry{ name = "Arrivals" }) "dgl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/light{ dir = 1; on = 1 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, /turf/simulated/floor/plasteel, /area/hallway/secondary/entry{ name = "Arrivals" @@ -95086,14 +92164,6 @@ /area/hallway/secondary/entry{ name = "Arrivals" }) -"dgp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/plasteel{ - icon_state = "chapel" - }, -/area/chapel/main) "dgq" = ( /obj/effect/decal/warning_stripes/yellow/hollow, /obj/machinery/portable_atmospherics/canister/oxygen, @@ -95134,7 +92204,7 @@ /obj/effect/decal/warning_stripes/south, /obj/structure/reagent_dispensers/watertank, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 + dir = 8 }, /turf/simulated/floor/plasteel, /area/hallway/secondary/entry{ @@ -95257,8 +92327,8 @@ /area/maintenance/starboard) "dgJ" = ( /obj/machinery/light{ - icon_state = "tube1"; - dir = 8 + dir = 8; + icon_state = "tube1" }, /obj/machinery/alarm{ dir = 4; @@ -95278,40 +92348,12 @@ dir = 4; icon_state = "tube1" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - level = 1 - }, /turf/simulated/floor/plasteel, /area/engine/break_room) -"dgM" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8; - initialize_directions = 11 - }, -/turf/simulated/floor/plasteel, -/area/engine/break_room) -"dgN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - level = 1 - }, -/turf/simulated/wall/r_wall, -/area/engine/break_room) "dgO" = ( /obj/structure/sign/pods, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - level = 1 - }, /turf/simulated/wall, /area/engine/break_room) -"dgP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/wall/r_wall, -/area/engine/break_room) "dgQ" = ( /obj/structure/table, /obj/item/restraints/handcuffs, @@ -95319,12 +92361,6 @@ icon_state = "floor4" }, /area/shuttle/escape) -"dgR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/wall, -/area/hallway/secondary/entry{ - name = "Arrivals" - }) "dgS" = ( /turf/simulated/wall/r_wall/coated, /area/toxins/mixing{ @@ -95425,18 +92461,15 @@ "dhh" = ( /turf/space, /turf/simulated/shuttle/wall{ - tag = "icon-swall_f5"; + dir = 2; icon_state = "swall_f5"; - dir = 2 + tag = "icon-swall_f5" }, /area/shuttle/escape) "dhi" = ( /obj/structure/chair/comfy/black{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "chapel" @@ -95459,6 +92492,9 @@ d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "whitegreen"; @@ -95485,6 +92521,9 @@ d2 = 8; icon_state = "1-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "whitegreen"; @@ -95713,12 +92752,104 @@ /obj/machinery/portable_atmospherics/canister/air, /turf/simulated/floor/plating, /area/security/permabrig) +"dmU" = ( +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/medical/surgery2) +"dnk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellowcorner" + }, +/area/hallway/primary/starboard) +"dqh" = ( +/obj/effect/decal/warning_stripes/south, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel, +/area/engine/break_room) +"dvV" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/atmos) +"dwC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/plasteel/dark, +/area/tcommsat/server) +"dxy" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5; + level = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutral" + }, +/area/hallway/primary/port) "dAH" = ( /obj/machinery/atmospherics/pipe/simple/visible{ dir = 5 }, /turf/simulated/floor/plating, /area/maintenance/starboard) +"dHm" = ( +/obj/machinery/atmospherics/unary/vent_pump, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "green" + }, +/area/hydroponics) +"dHr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/starboard) +"dJz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10; + initialize_directions = 10; + level = 1 + }, +/turf/simulated/floor/plasteel, +/area/construction) "dMV" = ( /obj/machinery/atmospherics/pipe/manifold/visible/cyan{ dir = 8; @@ -95728,17 +92859,177 @@ icon_state = "dark" }, /area/atmos) +"dOL" = ( +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 1; + on = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "redcorner" + }, +/area/security/permabrig) +"dPn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6; + level = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/bridge) "dRN" = ( /obj/machinery/light{ - icon_state = "tube1"; - dir = 4 + dir = 4; + icon_state = "tube1" }, /turf/simulated/floor/plasteel/dark, /area/tcommsat/server) +"dRX" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel, +/area/hallway/primary/aft) +"dSJ" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel, +/area/hallway/primary/aft) +"dTK" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"dUP" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/hallway/primary/central) +"dZe" = ( +/obj/effect/decal/warning_stripes/west, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/medical/cryo) +"edg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "green" + }, +/area/hydroponics) +"ehr" = ( +/obj/structure/chair/office/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood, +/area/library) +"elv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + dir = 2; + icon_state = "redcorner" + }, +/area/hallway/primary/fore) +"elA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4; + initialize_directions = 11 + }, +/turf/simulated/floor/plasteel, +/area/storage/primary) "elK" = ( /obj/effect/spawner/airlock/w_to_e, /turf/simulated/wall/r_wall, /area/security/permabrig) +"erQ" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/fitness{ + name = "\improper Recreation Area" + }) +"esj" = ( +/obj/machinery/atmospherics/unary/vent_scrubber{ + dir = 2; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/engine/break_room) +"eIn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "cafeteria"; + tag = "icon-cafeteria (NORTHEAST)" + }, +/area/crew_quarters/kitchen) +"eKN" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/quartermaster/storage) +"eKV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull" + }, +/area/medical/reception) "eSt" = ( /obj/structure/window/reinforced{ dir = 1 @@ -95746,6 +93037,48 @@ /obj/effect/spawner/airlock/e_to_w/long/square, /turf/space, /area/space/nearstation) +"eSB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4; + level = 1 + }, +/turf/simulated/floor/plasteel, +/area/crew_quarters/courtroom) +"eTd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/security/brig) +"faY" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) +"fgw" = ( +/obj/machinery/atmospherics/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_Toxins = 0 + }, +/turf/simulated/floor/plasteel, +/area/storage/primary) +"fhW" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Pod Bay" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/hallway/secondary/entry{ + name = "Arrivals" + }) "fmg" = ( /obj/effect/spawner/window/reinforced, /obj/effect/spawner/airlock, @@ -95766,12 +93099,125 @@ /area/maintenance/fpmaint2{ name = "Port Maintenance" }) +"fsY" = ( +/obj/machinery/atmospherics/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/medical/reception) +"fts" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"fyS" = ( +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) "fBB" = ( /obj/structure/lattice, /turf/space, /area/space) -"fZV" = ( +"fDi" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai_upload) +"fFk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "brown" + }, +/area/storage/primary) +"fFl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/starboard) +"fNU" = ( +/obj/machinery/atmospherics/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_Toxins = 0 + }, +/turf/simulated/floor/wood, +/area/security/vacantoffice) +"fPa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"fTe" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4; + level = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/plasteel, +/area/security/brig) +"fZa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6; + level = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/security/permabrig) +"fZu" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4; + level = 1 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/port) +"fZV" = ( /obj/structure/cable/yellow{ d1 = 1; d2 = 2; @@ -95780,18 +93226,130 @@ /obj/machinery/tcomms/core/station, /turf/simulated/floor/bluegrid, /area/tcommsat/server) +"gda" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/plasteel{ + dir = 2; + icon_state = "neutralcorner" + }, +/area/hallway/primary/starboard) +"gdk" = ( +/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 = "chapel" + }, +/area/chapel/main) +"gog" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "redfull" + }, +/area/security/main) +"gsn" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/aft) +"gGG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5; + level = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/courtroom) +"gHt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "redcorner" + }, +/area/security/brig) +"gIN" = ( +/obj/structure/chair/wood/wings{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/carpet, +/area/crew_quarters/theatre) +"gOD" = ( +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/fore) +"gQu" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/crew_quarters/sleep) "gRw" = ( /obj/effect/spawner/window/reinforced, /obj/effect/spawner/airlock/s_to_n, /turf/simulated/floor/plating, /area/maintenance/auxsolarstarboard) +"hnt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/crew_quarters/courtroom) +"hnL" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/landmark/start{ + name = "Civilian" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel, +/area/crew_quarters/fitness{ + name = "\improper Recreation Area" + }) "hxv" = ( /obj/machinery/camera{ c_tag = "Telecoms - Server Room - Aft"; dir = 1; network = list("SS13","tcomm") }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/yellow, /obj/machinery/power/apc{ dir = 2; @@ -95800,10 +93358,131 @@ }, /turf/simulated/floor/plasteel/dark, /area/tcommsat/server) +"hBn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + req_access_txt = 1 + }, +/obj/effect/decal/warning_stripes/west, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/entry{ + name = "Arrivals" + }) +"hBM" = ( +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 1; + external_pressure_bound = 0; + frequency = 1441; + id_tag = "n2_out"; + initialize_directions = 1; + internal_pressure_bound = 4000; + on = 1; + pressure_checks = 2; + pump_direction = 0 + }, +/turf/simulated/floor/plasteel, +/area/storage/primary) +"hEP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "chapel" + }, +/area/chapel/main) +"hHX" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/hallway/primary/aft) +"hIT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/security/armoury) +"hLH" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai) "hLL" = ( /obj/structure/lattice, /turf/simulated/wall, /area/space/nearstation) +"hNq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai_upload) +"hYZ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/universal{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 2; + icon_state = "neutralcorner" + }, +/area/atmos) +"hZZ" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/security/vacantoffice) +"ied" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/visible/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel, +/area/atmos) +"ihM" = ( +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/medical/surgery1) +"imQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "green" + }, +/area/hydroponics) +"izL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel, +/area/storage/primary) "iDw" = ( /obj/machinery/atmospherics/unary/portables_connector, /obj/machinery/portable_atmospherics/canister/air, @@ -95811,6 +93490,46 @@ /area/maintenance/aft{ name = "Aft Maintenance" }) +"iHk" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 2 + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 2; + initialize_directions = 11 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellowcorner" + }, +/area/hallway/primary/starboard) +"iHq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4; + level = 1 + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai_upload) +"iNq" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) "iTR" = ( /obj/effect/decal/warning_stripes/south, /obj/machinery/atmospherics/pipe/simple/visible{ @@ -95821,16 +93540,194 @@ /area/maintenance/aft{ name = "Aft Maintenance" }) +"iWi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"iWv" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -23 + }, +/turf/simulated/floor/plasteel/dark, +/area/tcommsat/server) +"iYb" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 2 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) "jap" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/maintenance/fpmaint2{ name = "Port Maintenance" }) +"jdi" = ( +/obj/effect/landmark/start{ + name = "Life Support Specialist" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel, +/area/atmos) +"jdX" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch{ + name = "MiniSat Transit Tube"; + req_one_access_txt = "32;19" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4; + level = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/engine/break_room) +"jeK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/morgue) +"jeY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/medical/virology) +"jmm" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 2 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/incinerator) +"jsQ" = ( +/obj/machinery/atmospherics/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/simulated/floor/plasteel/dark, +/area/tcommsat/server) +"jCT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes/north, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/entry{ + name = "Arrivals" + }) +"jLP" = ( +/obj/machinery/atmospherics/unary/vent_pump, +/turf/simulated/floor/plasteel, +/area/atmos) +"jZt" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/warning_stripes/east, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel, +/area/engine/engineering) +"koz" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/wood, +/area/security/vacantoffice) +"ksa" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/hallway/primary/port) +"ktI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "green" + }, +/area/hydroponics) +"kuf" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) "kwJ" = ( /obj/machinery/message_server, /turf/simulated/floor/bluegrid, /area/tcommsat/server) +"kxc" = ( +/obj/machinery/atmospherics/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/simulated/floor/bluegrid, +/area/assembly/chargebay) "kBq" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -95841,12 +93738,58 @@ }, /turf/space, /area/space/nearstation) +"kDt" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Primary Tool Storage" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + dir = 2; + icon_state = "brown" + }, +/area/storage/primary) +"kHS" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/library) +"kNc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/engine/gravitygenerator) "kNJ" = ( /turf/simulated/floor/plasteel{ dir = 1; icon_state = "whiteblue" }, /area/medical/paramedic) +"kOI" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/warning_stripes/east, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/plasteel, +/area/engine/engineering) "kSC" = ( /obj/machinery/atmospherics/unary/portables_connector{ dir = 4 @@ -95854,6 +93797,17 @@ /obj/machinery/portable_atmospherics/canister/air, /turf/simulated/floor/plasteel, /area/construction) +"kUj" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/starboard) "kWU" = ( /obj/machinery/atmospherics/pipe/simple/visible{ dir = 6; @@ -95870,6 +93824,41 @@ /area/maintenance/aft{ name = "Aft Maintenance" }) +"lfz" = ( +/obj/effect/decal/warning_stripes/west, +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/simulated/floor/plasteel, +/area/toxins/storage) +"lgv" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4; + level = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1; + initialize_directions = 11 + }, +/turf/simulated/floor/plasteel, +/area/security/brig) +"lhK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "redfull" + }, +/area/security/main) "lCt" = ( /obj/structure/window/reinforced{ dir = 4 @@ -95884,10 +93873,184 @@ /area/construction/hallway{ name = "\improper MiniSat Exterior" }) +"lFT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/engine, +/area/toxins/explab) +"lIR" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "green" + }, +/area/hydroponics) +"lPA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/entry{ + name = "Arrivals" + }) +"lUY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/exit{ + name = "\improper Departure Lounge" + }) +"lWo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4; + level = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4; + level = 1 + }, +/turf/simulated/floor/plasteel, +/area/security/brig) +"lYf" = ( +/obj/machinery/atmospherics/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai) +"mcn" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + req_access_txt = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/maintenance/starboard) +"mcP" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/space, +/area/construction/hallway{ + name = "\improper MiniSat Exterior" + }) +"mcY" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Security Pods"; + req_access_txt = "71" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/security/podbay) +"moJ" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/window/eastright{ + dir = 1; + name = "MiniSat Walkway Access"; + req_access_txt = "13;75" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/construction/hallway{ + name = "\improper MiniSat Exterior" + }) +"mpt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"mAt" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "cafeteria"; + tag = "icon-cafeteria (NORTHEAST)" + }, +/area/crew_quarters/kitchen) +"mGz" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/warning_stripes/northeastcorner, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4; + level = 1 + }, +/turf/simulated/floor/plasteel, +/area/quartermaster/storage) +"nbq" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/hallway/primary/fore) +"nbt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/atmos) "nbO" = ( /obj/effect/spawner/airlock/s_to_n, /turf/simulated/wall, /area/construction) +"nhZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 2; + icon_state = "neutralcorner" + }, +/area/crew_quarters/sleep) "nig" = ( /obj/effect/decal/warning_stripes/south, /obj/structure/disposalpipe/segment{ @@ -95895,35 +94058,416 @@ }, /turf/simulated/floor/plasteel, /area/quartermaster/storage) +"npj" = ( +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 4; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "redfull" + }, +/area/security/main) +"ntG" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology{ + name = "\improper Secure Lab" + }) +"nwx" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/construction/hallway{ + name = "\improper MiniSat Exterior" + }) +"nzK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel, +/area/assembly/robotics) +"nEe" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/construction/hallway{ + name = "\improper MiniSat Exterior" + }) +"nKy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6; + level = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/wood, +/area/ntrep) +"nKW" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/space, +/area/construction/hallway{ + name = "\improper MiniSat Exterior" + }) +"nLj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/courtroom) +"nUW" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1; + level = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4; + level = 1 + }, +/turf/simulated/floor/plasteel, +/area/security/brig) +"nVz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/locker/locker_toilet{ + name = "\improper Restrooms" + }) +"obL" = ( +/obj/effect/decal/warning_stripes/west, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing{ + name = "\improper Toxins Lab" + }) "odO" = ( /obj/machinery/blackbox_recorder, /turf/simulated/floor/bluegrid, /area/tcommsat/server) +"ofz" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/starboard) +"ogV" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/bridge) +"oiv" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology{ + name = "\improper Secure Lab" + }) +"okl" = ( +/obj/effect/landmark/start{ + name = "Cook" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) "onG" = ( /obj/effect/spawner/window/reinforced, /obj/effect/spawner/airlock/s_to_n, /turf/simulated/floor/plating, /area/maintenance/auxsolarport) +"oqV" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/bridge) +"oym" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/plasteel{ + dir = 2; + icon_state = "purplecorner" + }, +/area/hallway/primary/aft) "oAG" = ( /obj/effect/spawner/airlock/w_to_e, /turf/simulated/wall, /area/engine/engineering) +"oBY" = ( +/obj/machinery/atmospherics/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "green" + }, +/area/hydroponics) +"oGg" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8; + initialize_directions = 11; + level = 1 + }, +/turf/simulated/floor/plasteel, +/area/quartermaster/storage) +"oJA" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/aft) +"oMK" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/maintenance/starboard) +"oOT" = ( +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 1; + on = 1 + }, +/turf/simulated/floor/plasteel/dark, +/area/tcommsat/server) +"oRr" = ( +/obj/machinery/atmospherics/unary/vent_scrubber{ + dir = 4; + on = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay2{ + name = "Medbay Storage" + }) +"oUC" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel, +/area/hallway/primary/aft) +"pdC" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel, +/area/hallway/primary/aft) +"pdV" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) "pep" = ( /obj/effect/spawner/airlock/s_to_n, /turf/simulated/wall, /area/maintenance/starboard) +"pkf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plasteel, +/area/assembly/robotics) +"pkJ" = ( +/obj/effect/decal/warning_stripes/north, +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/simulated/floor/plasteel, +/area/toxins/mixing{ + name = "\improper Toxins Lab" + }) +"poN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) "ptc" = ( /turf/simulated/floor/plasteel{ dir = 2; icon_state = "whiteblue" }, /area/medical/paramedic) +"pue" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/exit{ + name = "\improper Departure Lounge" + }) +"pzX" = ( +/obj/effect/decal/warning_stripes/south, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/plasteel, +/area/assembly/robotics) +"pDi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/plasteel{ + dir = 2; + icon_state = "purplecorner" + }, +/area/hallway/primary/aft) +"pFi" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel, +/area/atmos) +"pJV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel, +/area/security/armoury) "pMx" = ( /obj/effect/spawner/airlock/w_to_e, /turf/simulated/wall, /area/maintenance/aft{ name = "Aft Maintenance" }) +"pOV" = ( +/obj/effect/decal/warning_stripes/south, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/entry{ + name = "Arrivals" + }) "pQx" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -95943,13 +94487,18 @@ /area/maintenance/aft{ name = "Aft Maintenance" }) -"pVq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +"pXI" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel, -/area/quartermaster/storage) +/area/hallway/primary/aft) "qaM" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -95969,10 +94518,128 @@ /obj/machinery/atmospherics/pipe/simple/visible, /turf/simulated/floor/plating, /area/construction) +"qcX" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"qhv" = ( +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/simulated/floor/plasteel, +/area/atmos) "qhx" = ( /obj/effect/spawner/airlock/w_to_e, /turf/simulated/wall/r_wall, /area/atmos) +"qiC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel, +/area/security/brig) +"qsd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/decal/warning_stripes/north, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/plasteel, +/area/assembly/robotics) +"qtw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/plasteel{ + dir = 2; + icon_state = "neutralcorner" + }, +/area/hallway/primary/aft) +"qAm" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/space, +/area/construction/hallway{ + name = "\improper MiniSat Exterior" + }) +"qAG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/crew_quarters/fitness{ + name = "\improper Recreation Area" + }) +"qBH" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/library) +"qBP" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/landmark{ + name = "lightsout" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) +"qCG" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/hallway/primary/central) "qFg" = ( /obj/machinery/space_heater, /obj/machinery/power/apc{ @@ -95986,6 +94653,52 @@ /area/maintenance/aft{ name = "Aft Maintenance" }) +"qHr" = ( +/obj/effect/decal/warning_stripes/south, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/toxins/misc_lab{ + name = "\improper Research Testing Range" + }) +"qQy" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/maintenance/starboard) +"qYF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5; + level = 1 + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai_upload) +"rjU" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/construction/hallway{ + name = "\improper MiniSat Exterior" + }) "rpg" = ( /obj/structure/lattice/catwalk, /obj/structure/cable{ @@ -95995,6 +94708,39 @@ }, /turf/space, /area/solar/starboard) +"rrO" = ( +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "open"; + id_tag = "transittube"; + name = "Transit Tube Blast Door"; + opacity = 0 + }, +/obj/effect/decal/warning_stripes/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4; + level = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/engine/break_room) +"rxV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 5 + }, +/turf/simulated/floor/plasteel{ + dir = 2; + icon_state = "neutralcorner" + }, +/area/atmos) "rzO" = ( /obj/machinery/portable_atmospherics/canister/air, /obj/machinery/atmospherics/unary/portables_connector{ @@ -96002,6 +94748,36 @@ }, /turf/simulated/floor/plating, /area/engine/engineering) +"rEw" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel, +/area/hallway/primary/aft) +"rHe" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4; + level = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4; + level = 1 + }, +/turf/simulated/floor/plasteel, +/area/security/brig) "rIq" = ( /obj/structure/table, /obj/item/clothing/mask/breath{ @@ -96012,6 +94788,30 @@ }, /turf/simulated/floor/plating, /area/maintenance/starboard) +"rKu" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/construction/hallway{ + name = "\improper MiniSat Exterior" + }) +"rOw" = ( +/obj/machinery/atmospherics/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/morgue) "rOZ" = ( /obj/structure/lattice/catwalk, /obj/structure/cable{ @@ -96021,6 +94821,64 @@ }, /turf/space, /area/solar/starboard) +"rPA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/hallway/primary/port) +"say" = ( +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/construction/hallway{ + name = "\improper MiniSat Exterior" + }) +"sdQ" = ( +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/incinerator) +"sfr" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/starboard) +"siL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/hallway/primary/aft) "sjF" = ( /obj/structure/window/reinforced{ dir = 1 @@ -96034,6 +94892,34 @@ icon_state = "dark" }, /area/space/nearstation) +"skc" = ( +/obj/machinery/atmospherics/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "cafeteria"; + tag = "icon-cafeteria (NORTHEAST)" + }, +/area/medical/research{ + name = "Research Division" + }) +"szt" = ( +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 8; + external_pressure_bound = 0; + frequency = 1441; + id_tag = "tox_out"; + initialize_directions = 1; + internal_pressure_bound = 4000; + on = 1; + pressure_checks = 2; + pump_direction = 0 + }, +/turf/simulated/floor/wood, +/area/security/vacantoffice) "sDC" = ( /obj/docking_port/stationary/whiteship{ dir = 8; @@ -96043,6 +94929,28 @@ }, /turf/space, /area/space) +"sEe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/morgue) +"sGi" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai_upload) "sJe" = ( /obj/structure/window/reinforced{ dir = 4 @@ -96057,6 +94965,34 @@ /area/construction/hallway{ name = "\improper MiniSat Exterior" }) +"sJj" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/construction/hallway{ + name = "\improper MiniSat Exterior" + }) +"sQp" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 2; + icon_state = "neutralcorner" + }, +/area/hallway/primary/central) "sRB" = ( /obj/machinery/atmospherics/pipe/simple/visible{ dir = 10 @@ -96065,12 +95001,73 @@ /area/maintenance/aft{ name = "Aft Maintenance" }) +"tay" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4; + level = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4; + level = 1 + }, +/turf/simulated/floor/plasteel, +/area/security/brig) +"tca" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4; + level = 1 + }, +/turf/simulated/floor/plasteel, +/area/quartermaster/storage) +"tdP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/quartermaster/storage) +"teY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"thz" = ( +/obj/effect/decal/warning_stripes/north, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/toxins/mixing{ + name = "\improper Toxins Lab" + }) "tlh" = ( /obj/machinery/atmospherics/pipe/simple/visible{ dir = 9 }, /turf/simulated/floor/plasteel, /area/construction) +"tvn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9; + pixel_y = 0 + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/security/detectives_office) "twD" = ( /obj/structure/disposalpipe/segment{ dir = 2; @@ -96080,6 +95077,41 @@ /area/maintenance/fpmaint2{ name = "Port Maintenance" }) +"tEL" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel, +/area/hallway/primary/aft) +"tNG" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/wood, +/area/library) +"tOU" = ( +/obj/machinery/atmospherics/unary/vent_scrubber, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/security/brig) +"tPc" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel, +/area/hallway/primary/aft) "tWl" = ( /obj/effect/spawner/window/reinforced, /obj/effect/spawner/airlock/e_to_w, @@ -96093,6 +95125,35 @@ }, /turf/simulated/shuttle/floor4/vox, /area/shuttle/vox) +"ugy" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/security/hos) +"ulS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "redcorner" + }, +/area/security/brig) +"umD" = ( +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 1; + on = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/crew_quarters/toilet{ + name = "\improper Auxiliary Restrooms" + }) "umT" = ( /obj/structure/closet/crate/freezer, /obj/item/reagent_containers/iv_bag, @@ -96109,6 +95170,36 @@ /area/medical/medbay2{ name = "Medbay Storage" }) +"upv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4; + level = 1 + }, +/turf/simulated/floor/plasteel, +/area/quartermaster/storage) +"uuE" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Captain's Quarters"; + req_access = null; + req_access_txt = "20" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/captain{ + name = "\improper Captain's Quarters" + }) +"uzt" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "green" + }, +/area/hydroponics) "uJn" = ( /obj/effect/spawner/airlock/w_to_e, /turf/simulated/wall/r_wall, @@ -96119,6 +95210,79 @@ /area/maintenance/fpmaint2{ name = "Port Maintenance" }) +"uMx" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay3) +"uQl" = ( +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 1; + on = 1 + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay3) +"uQo" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/medical/medbay3) +"uRT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/bridge) +"uTZ" = ( +/obj/machinery/atmospherics/unary/vent_scrubber{ + dir = 2; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/simulated/floor/plasteel, +/area/atmos) +"veh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10; + initialize_directions = 10; + level = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/courtroom) +"vgP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "redfull" + }, +/area/security/main) "vtP" = ( /obj/machinery/conveyor/west{ id = "garbage" @@ -96126,9 +95290,156 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/maintenance/disposal) +"vuE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull" + }, +/area/medical/reception) +"vBA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/bridge) +"vDW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/security/brig) +"vEp" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellowcorner" + }, +/area/hallway/primary/starboard) +"vFn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes/south, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/entry{ + name = "Arrivals" + }) +"vJx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/plasteel, +/area/storage/primary) +"vLz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai_upload) +"vLL" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "redcorner" + }, +/area/security/brig) +"vVo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel, +/area/crew_quarters/locker) +"vVE" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/morgue) +"vXU" = ( +/obj/machinery/atmospherics/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/simulated/floor/plasteel{ + icon_state = "redfull" + }, +/area/security/main) +"vYK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 2; + initialize_directions = 11 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"vZb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes/north, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/entry{ + name = "Arrivals" + }) "vZo" = ( /turf/simulated/floor/plating, /area/space/nearstation) +"wgm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitebluecorner" + }, +/area/medical/medbay3) +"wlG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/plasteel{ + dir = 2; + icon_state = "whiteblue" + }, +/area/medical/reception) "wvK" = ( /obj/structure/cable{ d1 = 1; @@ -96144,12 +95455,25 @@ /obj/structure/cable, /turf/simulated/floor/plating, /area/maintenance/starboardsolar) +"wxw" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 2; + initialize_directions = 11 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/morgue) "wyX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, /turf/simulated/floor/plasteel{ - tag = "icon-cafeteria (NORTHEAST)"; + dir = 5; icon_state = "cafeteria"; - dir = 5 + tag = "icon-cafeteria (NORTHEAST)" }, /area/medical/research{ name = "Research Division" @@ -96161,6 +95485,99 @@ }, /turf/simulated/floor/plating, /area/maintenance/starboard) +"wRS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai_upload) +"wSU" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5; + level = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel, +/area/security/brig) +"xbe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/security/podbay) +"xca" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 1; + scrub_Toxins = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/bridge/meeting_room{ + name = "\improper Command Hallway" + }) +"xhr" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/atmos) +"xla" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/simulated/floor/plasteel{ + dir = 2; + icon_state = "neutralcorner" + }, +/area/hallway/primary/starboard) +"xno" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "caution" + }, +/area/atmos) "xrG" = ( /obj/machinery/atmospherics/pipe/simple/visible{ dir = 5 @@ -96182,10 +95599,130 @@ /area/maintenance/fpmaint2{ name = "Port Maintenance" }) +"xvd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + req_access_txt = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/library) +"xyZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/carpet, +/area/crew_quarters/theatre) +"xBd" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel, +/area/hallway/primary/aft) +"xEi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/plasteel/dark, +/area/tcommsat/server) +"xFR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull" + }, +/area/medical/reception) +"xGP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/maintenance/starboard) +"xJS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 2; + icon_state = "neutralcorner" + }, +/area/hallway/primary/central) +"xOM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "stage_stairs"; + tag = "icon-stage_stairs" + }, +/area/security/podbay) +"xQq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai_upload) +"xQv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai_upload) +"xRI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5; + level = 1 + }, +/turf/simulated/floor/wood, +/area/security/vacantoffice) +"xXW" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/security/podbay) +"xYx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6; + level = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/security/permabrig) "xZq" = ( /obj/effect/spawner/window/reinforced, /turf/simulated/floor/plating, /area/solar/starboard) +"yij" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/construction) (1,1,1) = {" aaa @@ -107602,11 +107139,11 @@ aLB aLB aLB aLB -aWJ +aWI aXW -aZl -bbd -bch +aZm +bbF +bBt dgx bhb aUN @@ -107631,9 +107168,9 @@ bGX aUN baJ bUW -dgR +aWD dgk -dgo +bBt dgu dgz dgz @@ -107859,11 +107396,11 @@ aLB aLB aLB aLB -aLB +yij aML aZm -bbF -bci +vZb +dgo beO bhW aUN @@ -107877,7 +107414,7 @@ bio aUN bhb bzz -bch +dgo bFn aWD bGX @@ -107888,10 +107425,10 @@ bGX aWD bCx bUS -bQN -bBt -bBt -dgx +fhW +lPA +dgo +pOV dgz dgz dgz @@ -108116,7 +107653,7 @@ aLB aSt aLB aLB -aLB +yij aML aWD bbS @@ -108135,7 +107672,7 @@ aUN bDU bzy bBw -bDp +vFn aUN bHa bGY @@ -108145,7 +107682,7 @@ bOd aUN baJ bUQ -dfN +aWD dgl bsx dgw @@ -108373,11 +107910,11 @@ aLB aSu aLB aLB -aLB +yij aML aWD bdH -bcT +dgx aUN aUN aUN @@ -108391,7 +107928,7 @@ bio aUN aUN aUN -bBM +baJ bDK aWD abq @@ -108630,11 +108167,11 @@ aLB aSu aLB aLB -aLB +yij aXX aWD -bbF -bcT +jCT +dgx bdR aYg bdR @@ -108648,7 +108185,7 @@ bip bdR bzw bdR -bBM +baJ bFG aWD aUN @@ -108887,11 +108424,11 @@ aLB aSv aTP aUY -aUY +dJz aXY aZn bcf -bcT +dgx aUN aUN aUN @@ -108905,7 +108442,7 @@ bti aUN aUN aUN -bBM +baJ bES aWD bMT @@ -109148,7 +108685,7 @@ aWK bav aWD bce -bcU +bcR beP aUN aaa @@ -109162,11 +108699,11 @@ btj aaa aUN bzA -bCs +bBv bEJ brU -bLE -bMK +bky +hBn bMK bMK bMK @@ -109405,7 +108942,7 @@ aHk aHk aWD baM -bcm +bBt bhV aWD aWD @@ -109422,7 +108959,7 @@ bCx bBx bDt bnX -dfP +bgW bKR bNm bMB @@ -109670,7 +109207,7 @@ bky bky bky brU -bux +bky bky buD bxr @@ -109929,10 +109466,10 @@ blW bnX bpz brv -btl +dgj bzs bxK -btl +dgj bBz bDv bFo @@ -110180,7 +109717,7 @@ apf apf bfj bgX -biu +bgX bbL bgX bnY @@ -110190,7 +109727,7 @@ btm bxJ bxL btm -bBA +btm bFJ apf cwu @@ -110440,14 +109977,14 @@ bgX biv bkl blX -bnZ -bpB +bgX +bDC brx bfG bfG bfG bfG -bBB +bDC bpB apf bHd @@ -110704,7 +110241,7 @@ btn bvA bxM bzB -bBC +bpC bDx bFp bFp @@ -110963,9 +110500,9 @@ bvB bzC bBD bDy -bFq +bFp bJu -bIQ +bHf bKz bMD bOh @@ -111212,7 +110749,7 @@ biy bko bma brl -brV +dxy brA btp bvC @@ -111223,10 +110760,10 @@ bFW bFp bHf bHf -bHf +fNU bME -bHg -bQZ +hZZ +hZZ bRB bTn bUD @@ -111475,16 +111012,16 @@ bto bvB bvB bzC -bBF +bBD bDA bFr bHg bHg -bHg +koz bOP bOi bOi -bHf +xRI bHf bUE bFp @@ -111725,7 +111262,7 @@ bgX bmP bkq bmc -biu +bgX btD brC btq @@ -111741,7 +111278,7 @@ bKA bHf bOj bPT -bHf +szt bHf bHf bWj @@ -111982,15 +111519,15 @@ bgX bgX bkr bgX -biu +bgX bpB brx bfG bfG bfG bfG -bBB bDC +fZu bFp bJz bIS @@ -112042,7 +111579,7 @@ cIR cJJ cKO cLI -cMB +fts cNw cKM cKM @@ -112246,7 +111783,7 @@ btr bvE bxP bzD -bBH +bpC bDD bFp bHj @@ -112297,12 +111834,12 @@ aaa cHZ cIT cJK -cHu -cLJ +cHj +cLH cMC -cNx +cNv cOA -cPq +jeY cQo cRa cFv @@ -112812,13 +112349,13 @@ cHZ cHZ cGX cKM -cjW +cFv cME -clk +cFv cOB cPs cPs -cRb +cPs deu cKP cHZ @@ -113332,7 +112869,7 @@ cNB cOC cKM cVO -cRd +fyS cRW cSE cHZ @@ -113505,8 +113042,8 @@ aGf aHs aIP aKd -auK -aMV +ayK +aSm axX aSm aSm @@ -113528,13 +113065,13 @@ brK bpK aXi btw -bvI -bxU +bvH +bxT bzH -bBL +bBK bDI bFt -bHm +umD bIX bHm cgp @@ -113764,7 +113301,7 @@ aIQ aKe azT aMS -pVq +aOu aPJ aOu aSz @@ -113785,9 +113322,9 @@ boh bpL buu btx -bvJ -bxV -bzI +bvH +bxT +bzH bBK bDJ bBK @@ -113846,7 +113383,7 @@ cND cOF cKM cWe -cRf +cRd cRY cSG cHZ @@ -114021,7 +113558,7 @@ aMb aKf aCs aMT -aOr +aRo aPQ aRo aSN @@ -114040,8 +113577,8 @@ bpy bmk boi bpM -blv -bty +aXi +btw bvH bBp bfG @@ -114282,11 +113819,11 @@ aOs aPP aRp aSG -aRp +oGg aWS -aRp +aOs bar -aRp +aOs bcu bfg bea @@ -114354,7 +113891,7 @@ abq cHZ cHZ cHZ -cLR +cHZ cMK cHZ cHZ @@ -114535,11 +114072,11 @@ aJS aLo aLP aNb -aOt -aQF -aRo -aUc aRo +baT +tdP +baT +upv aYi aRo baT @@ -114555,7 +114092,7 @@ bpF bok bpO bfw -btw +ksa bvK bxY bzJ @@ -114611,7 +114148,7 @@ aaa aaa aaa aaa -cIa +cFv dhk cFv aaa @@ -114789,14 +114326,14 @@ aET cbm ccw aMq -aKh +aCu aPw aMW aOu -aQE -aOu +aYh +eKN aTL -aOu +tca aYh aOu bas @@ -114845,8 +114382,8 @@ coC cpV crE ctV -cuY crE +ihM crE cyo czs @@ -114856,8 +114393,8 @@ cCv czs cEZ cGo +dmU cGo -cJZ cKA cGo cKL @@ -114866,9 +114403,9 @@ cNT bZU abq aaa -cZm -dao -cQY +cFv +cFv +cFv dhk cFv aaa @@ -115050,14 +114587,14 @@ aCu aLS aMZ aOW -aPO +aOu aRq -aTE -aOW -aVj -aVj +beb +mGz +aOu +aOu aYk -aZv +aRo baV bcw bfq @@ -115123,7 +114660,7 @@ cog bZU abq abq -cIa +cFv dfT dfX dhm @@ -115308,14 +114845,14 @@ aLQ aNY aPM aQG -aSj +aQG aUd aVa aOu aWM aYl aOu -baW +aOu bcx bfp bhX @@ -115326,7 +114863,7 @@ bmp bsk btO bfw -btw +ksa bvN bxT bzK @@ -115366,7 +114903,7 @@ cyo czu cBl cCu -cAU +czs cEj cEZ cGO @@ -115380,7 +114917,7 @@ cog bZU abq aaa -cIa +cFv cMM cFv cFv @@ -115583,7 +115120,7 @@ bmq bon bpR aXi -btv +rPA bvH bxT bai @@ -115599,8 +115136,8 @@ bFw bRK bTt bai -bWq -bXM +bFw +bFw bZc bZZ bzK @@ -115623,7 +115160,7 @@ coC czp cBo cCy -cDw +cBo czp cEY cEY @@ -115637,7 +115174,7 @@ cQV bZU aaa aaa -cIa +cFv cMN cFv aaa @@ -115830,7 +115367,7 @@ aVl bfw bfw bcD -bbc +bfw bfw bfw bkK @@ -115840,7 +115377,7 @@ bmr boj bpS brJ -btv +rPA bvH bxT bzM @@ -115849,14 +115386,14 @@ bBQ bBQ bBQ bBQ -bKG -bJa -bJa -bJa -bJa +bBQ +bBQ +bBQ +bBQ +bBQ bTu bUI -bWr +bFw bXN cgv caa @@ -115878,7 +115415,7 @@ cwi cxp cwY czv -cBn +cYO cCx cDv cxp @@ -115894,7 +115431,7 @@ cog bZU bZU cHZ -cLR +cHZ cMO cHZ cHZ @@ -116105,8 +115642,8 @@ bBR bBR bFx bBR +xvd bBR -bKH bMM bBR bBR @@ -116114,7 +115651,7 @@ bRL bTv bUJ bWs -bXN +ehr bZe cab bzK @@ -116133,7 +115670,7 @@ cua cvd cwj cxr -cvk +uQo cxy cBq cCE @@ -116354,7 +115891,7 @@ bmt bss btR bfw -btv +rPA bvH bxT bai @@ -116362,8 +115899,8 @@ bBS bBS bzK bHs -bBQ bKI +bBQ bMN bOp bFw @@ -116371,9 +115908,9 @@ bRM bFw bai bWt -bWs -bHr +tNG bHr +kHS bzK ccA auy @@ -116389,7 +115926,7 @@ csE ctZ cvd cwj -cxq +cxt csJ cys cBp @@ -116605,7 +116142,7 @@ bcz bfw bfw bhi -baz +aXi aXi bqW bfw @@ -116619,8 +116156,8 @@ bzK bzK bzK bKw -bBQ bKI +bBQ bFw bOp bFw @@ -116630,7 +116167,7 @@ bzK bWu bWt bZf -bWs +qBH bzK chp auJ @@ -116862,7 +116399,7 @@ bcA bfw bjJ bkS -blu +bmi bmi bmv brX @@ -116876,8 +116413,8 @@ bBT bDO bFy bFw -bBQ bKI +bBQ bFw bOq bPY @@ -116898,12 +116435,12 @@ cjp cmX coi cpz -cre +coE csH cue -cve +cri cwj -cxq +cxt cys czw cBr @@ -117069,10 +116606,10 @@ adl acN acN abB -afc -afQ -afQ -afQ +abB +abB +abB +abB ahD aiy abB @@ -117100,7 +116637,7 @@ aCx aDE aEX aGn -aHz +aBb aaa aHj aLW @@ -117118,23 +116655,23 @@ apf apf apf bjg -bhk -biQ -bhk +bhl +bhl +bhl bmw -boq +bhl bpW brL btF -bvP -bxV +bvH +bxT bzK bDw bDP bzK bHu -bBQ bKI +bBQ bFw bOr bFw @@ -117155,10 +116692,10 @@ cdT cmX cok cpb -crg +crd csN cua -cve +cri cwl cxu csJ @@ -117329,8 +116866,8 @@ adC acN afP agp -agR -ahC +acN +ahG aiy abB aaa @@ -117357,8 +116894,8 @@ aCy aDF aEY aGo -aHA -aGa +aHC +aGu aHb aLX aNf @@ -117379,19 +116916,19 @@ bhl biR bhl bmx -bor +boq bpX brM btG bvQ -bBJ +bBp bzK bzK bzK bzK bKE -bBQ bKI +bBQ bFw bOs bPZ @@ -117447,8 +116984,8 @@ deI cWR cUl cZt -cVQ -cVQ +cSO +cSO dbw cWP cSO @@ -117585,7 +117122,7 @@ aep ado afd ado -ado +fZa agS ahF ahL @@ -117639,7 +117176,7 @@ bmy bos btS aAM -btH +btF bvR bxT bzK @@ -117648,7 +117185,7 @@ bDO bFz bHw bJa -bKJ +bBQ bFw bOt bRh @@ -117705,9 +117242,9 @@ cTD cZa cUR dfs -cVR +teY cWr -cWQ +cUX cSO dbL dbc @@ -117845,7 +117382,7 @@ afp agq acN ahE -aiy +dOL aiE abB aaa @@ -117875,7 +117412,7 @@ aHC aGu aHR aLW -aNh +aNe avx aYO bgk @@ -117896,7 +117433,7 @@ bmz bot bpZ aAM -btv +rPA bvR bxT bzK @@ -117905,7 +117442,7 @@ bDP bzK bHx bBQ -bKI +bBQ bMP bzK bzK @@ -118097,10 +117634,10 @@ ado acA aco aeO -aft -aft -agt -aft +acN +acN +acN +acN ahd aiB aiU @@ -118133,10 +117670,10 @@ aaa aIZ aLZ aNi -aOC -aPX -aRu -aRu +kDt +fFk +izL +vJx aRu aRu aWT @@ -118162,7 +117699,7 @@ bzK bzK bai bzM -bKK +bzM bai bzK bQb @@ -118178,34 +117715,34 @@ ccD cdT chU cgf -cgJ -cjt +chJ cjt +oRr cLT cpE -crk +cxI csS cuL cvi cwo cxw cxL -czE +cxp cNG -czE +cxp cpH cCH cFP cHl -czE -czE +cxp +cxp cKY cLY -cOq -cPB +cDv +cKW cRp cUo -cWU +cxp cYO cZI daO @@ -118390,11 +117927,11 @@ abq aIX aMa aNj -aKn -aPY -aRv -aSO +aOC +aPX aRu +aSO +hBM aRu aWT aYr @@ -118414,23 +117951,23 @@ btJ bvT byg bzP -bzP +byg bFZ bFA -bzP +byg bJb byg -bzP -bJb -bzP -bzP -bzP +byg +dUP +byg +byg +byg bUL -bzP +byg bFZ bZh -bzP -bzP +byg +cMS ccE cdT cfz @@ -118449,20 +117986,20 @@ cxv cyt czD cNF -cDe -cDe +uMx +uMx cEl cFj cHk -cDe -cDe -cDe +uMx +uMx +uMx cLX cNU cPA cNU cUe -cwn +uQl cDe cZy daN @@ -118477,7 +118014,7 @@ cRh cRh cSO cUX -cWp +cWs dgg dhj cSO @@ -118649,7 +118186,7 @@ aPx aNk avx aPZ -aRw +aRu aSP atJ bmK @@ -118677,7 +118214,7 @@ bfI bfI bJc bKL -bMQ +bfI bOu bfI bfI @@ -118702,25 +118239,25 @@ ctq cuM cvk cwq -cxy +cwq cyw cAh -cxy +cwq cwq cwq cEO -cFV +cwq cHy cwq cwq cwq -cxy cwq -cPD +cwq +cvk cRL cUq cXr -cRL +wgm cZQ daP dbG @@ -118871,9 +118408,9 @@ aeP acN afx agu -aft +acN ahI -aiz +aiy aiS abB abq @@ -118906,8 +118443,8 @@ aHG aNl aOA aQa -aRx -aSQ +aRu +aSP bmJ aVt aWV @@ -118919,32 +118456,32 @@ bej bfJ bhp biX -bkJ +bfS bpI -bkJ +bfS bqb brO -bkJ -bvV -bvV +bfS +bfS +bfS bzR -bkJ -bkJ -bkJ -bkJ +bfS +bfS +bfS +bfS bJd bKM bMR -bOv +bMR bRO -bOv +bMR bTC bUM bWz bXT -bOv -cah -cbz +bMR +bMR +bek ccG chM chM @@ -118992,7 +118529,7 @@ cZX cVU cWv dfG -dgp +cWz cXI cSO cYD @@ -119163,12 +118700,12 @@ cBa cDt aOA aQb -aRx -aSQ +aRu +aSP aRu aVu -aRu -aYu +fgw +aYr aZG aOF bcL @@ -119200,7 +118737,7 @@ bMS bMS bMS deE -cai +bMR bek ccI chM @@ -119211,8 +118748,8 @@ chM ciX cjD cdT -cjS -ctB +cxI +csS crP cvj cvj @@ -119246,8 +118783,8 @@ cTH deN deY cVw -cVV -cWu +cUY +gdk cWV cXm cXJ @@ -119385,7 +118922,7 @@ aeR acN afV agw -agR +acN ahK aiy ajd @@ -119420,11 +118957,11 @@ aMd aRN aOA aQc -aRx +aRu aSR aUg aUg -aUg +elA aYv aZH asL @@ -119468,8 +119005,8 @@ chM ciY clZ cjT -clL -cjY +cmq +ctq cnn cjQ cnp @@ -119499,12 +119036,12 @@ der dek bZU cSR -cTI -deO +cTH +deN deX -cVx -cVW -cWw +cVz +cUZ +hEP cWV cUX cXJ @@ -119641,7 +119178,7 @@ ado ado afv ado -ado +xYx agU ahN aiG @@ -119672,7 +119209,7 @@ aCC aGs aHE aAf -aKs +nbq aMe bTq aOA @@ -119686,8 +119223,8 @@ aYw bcd axg bcN -bem -bfL +bek +bfK bhr biZ bkL @@ -119759,9 +119296,9 @@ cSS cTJ deP dfo -cUX -cUX -cWp +fPa +fPa +iYb cWW cXn cXK @@ -119898,8 +119435,8 @@ aev aeT acN afA -agu -aft +agq +acN ahM aiF acN @@ -119933,7 +119470,7 @@ aKt aMf aKm aOF -aQe +aOF aOF aOF aOF @@ -119982,8 +119519,8 @@ chM cjx cjP ckI -clL -cjY +cmq +ctq cnn cjQ cwr @@ -120016,9 +119553,9 @@ cSR cTK cUs cUY -cVy +cVw cUY -cWx +cWu cWV cUX cXJ @@ -120170,8 +119707,8 @@ amx aoW aqa arj -aqH aqa +aqH aCT amx amx @@ -120190,7 +119727,7 @@ aKu aMf aaa aaa -aQf +abq aaa aaa aaa @@ -120199,10 +119736,10 @@ abq aaa aZJ bbg -bcP +bcN bek bjA -bhs +bhq bhK bkN bpQ @@ -120239,8 +119776,8 @@ chM ciY clZ cjT -clL -cjY +cmq +ctq ckt cvj cui @@ -120251,7 +119788,7 @@ cBd cDf dbl cEz -cEz +dZe cEU cFW cLd @@ -120270,8 +119807,8 @@ cRU cRm bZU cST -cTL -cTH +cTK +cUs cUZ cVz cUZ @@ -120425,8 +119962,8 @@ abq abq amx anS -aqa -aqa +tOU +eTd apj atM awr @@ -120447,7 +119984,7 @@ aKv aKk aaa aaa -aQg +aOG aOG aMg aMP @@ -120498,7 +120035,7 @@ cjR cdT ckM ckO -cnn +wlG cvj csX cpZ @@ -120527,8 +120064,8 @@ cRU cRm bZU cSU -cTL -cTH +cTK +cUs cVa cVA cVa @@ -120715,7 +120252,7 @@ aZJ bbi bcP beo -bfP +bfK bht bjc bkP @@ -120742,7 +120279,7 @@ bOB bOB bOB bMS -cam +bUM ben ccK chM @@ -120773,7 +120310,7 @@ cBv bTa clI cmc -cSB +jeK cVb cnE cIm @@ -120927,7 +120464,7 @@ aeU aeC afB agx -aft +acN ahP aiH ajf @@ -120936,13 +120473,13 @@ akG akR alN amY -amY -amY -amY -amY -ark +vLL +vLL +vLL +vLL +vLL asM -ark +vLL aws auh aqJ @@ -120962,8 +120499,8 @@ aMf abq aOG aQh -aRA -aRA +vLz +hNq aUk aVx aOG @@ -121030,7 +120567,7 @@ bRn cMd clQ cMd -cMd +wxw cnc cpJ cIm @@ -121193,21 +120730,21 @@ akK ajH alF aAs -aAs -aAs +qiC +qiC apm -aAs -aAs +qiC +qiC ats -aAs +qiC awt atq atq -atq +wSU axI ayR aAb -aBg +aRP aCG aDN aDN @@ -121219,16 +120756,16 @@ aMf aaa aOG aUP -aRA +wRS aSV aUl -aUk +sGi aZx aOG bcl -bbj +aZL bgF -bem +bek bfR bht bje @@ -121263,15 +120800,15 @@ cdW cDS cjF ckU -cmk -cni +cmq +cnn cma cpL crA ctK cuS cvL -cvT +cma cxF cyH cAp @@ -121285,7 +120822,7 @@ cHs cGh cDg bRt -cIo +rOw cIo cmu cVm @@ -121441,7 +120978,7 @@ aeU afy afZ agy -agR +acN ahR aiI ajG @@ -121455,14 +120992,14 @@ atr atr atr aqd -axJ +atr asV arZ atr -apn atr +gHt aII -apn +ulS aAc aBh azw @@ -121514,19 +121051,19 @@ bWE bZw bZA caM -cbB +bek bcX cdW cia cjE ckT -cmh +cjG ckf coo coo -crz +cia ctJ -cuR +cia coo coo cxE @@ -121544,7 +121081,7 @@ cBv bSE clV cmd -cIo +sEe cVl cIn cIm @@ -121716,10 +121253,10 @@ agB agB agB asS -auQ +agB asS axK -aNI +aqJ aAd aBi akD @@ -121733,10 +121270,10 @@ aMf aaa aOG aQk -aRA +qYF aSX aUl -aRA +iHq aWZ aOG bco @@ -121760,7 +121297,7 @@ bGa bAk aUi bJk -bKW +bKO bMY bPq bSk @@ -121777,14 +121314,14 @@ cdX cjj ckd clE -cmh +cmq cnm coo cpN crB ctM -cuT -bHV +crB +cuF coo cxH cyI @@ -121808,12 +121345,12 @@ cYW cQh bZU cPJ -cQT +cQM cTg cSk cSk cTQ -cUw +pue cVc cRt cVZ @@ -121969,30 +121506,30 @@ agA apo aqx arQ -att +amK auO awu ayt awH avd aqY -ayS -aAd +atr +lgv aBj ayL aDP aFg aAE aHI -aJg +gOD aNJ aMf abq aOG -aQl -aRA -aRA -aUk +aQh +xQv +xQq +fDi aVz aOG aOG @@ -122011,9 +121548,9 @@ brY btQ btQ bAe -bAc -bDr btQ +bDr +oqV bHD aPU bJj @@ -122028,19 +121565,19 @@ bMW bMW bMW caO -bem -bcY -cdY +bek +bcX +cdW cjh -cjG -clx -cml +cmq +clL +cmq cnl cia cpM cmq -crC -cmq +xFR +cmp cvM cia cxG @@ -122057,9 +121594,9 @@ cGj czC bSX bRr -cIo +cSB cmw -cnf +cIn com cIm cje @@ -122067,12 +121604,12 @@ bZU bZU cQR cRv -cRt -cRt -cRt +lUY +lUY +lUY cUy cVd -cRt +lUY cWa cTr cXb @@ -122220,8 +121757,8 @@ agA agA akW akW -amZ -aqG +hIT +ala aon app aqK @@ -122233,9 +121770,9 @@ ayV auT aDD ayq -aOP +alF aZa -aBk +aRP aCI aDN aDN @@ -122246,7 +121783,7 @@ aTi aMf aaa aOG -aQm +aOG aVA aSY aUn @@ -122255,7 +121792,7 @@ aOG aaa aZJ bbm -bcP +bcN bek bfS aYx @@ -122268,13 +121805,13 @@ brZ boE boE byq -bAd +byq byq bDX -bAd +byq bkW bLS -bKO +xca bMZ bOG bQn @@ -122284,7 +121821,7 @@ bWb bWG bYb bZl -cai +bMR bek bcX cdW @@ -122295,8 +121832,8 @@ cmq cmq cox cpP -crC -crC +eKV +vuE crC cvR cwx @@ -122313,8 +121850,8 @@ dhD cGk czC cQA -cmb -cme +cQA +cQA cna cnC coq @@ -122328,7 +121865,7 @@ cTs cTW cTW cTW -cWD +cTW cTW cUu cTr @@ -122490,7 +122027,7 @@ ayT auR aDg asS -aNZ +aqJ aYL aBh azw @@ -122503,7 +122040,7 @@ aNL aMf aaa aaa -aQm +aOG aOG aMg aNp @@ -122526,22 +122063,22 @@ boE byp byq bTh -boE -boE +dPn +ogV bFK bkW bLl cnj btk bOH -bQo +bSa bSa bSa bUX bWH bYJ bZl -cai +bMR bek bcX cdZ @@ -122552,7 +122089,7 @@ cmp cnn cia cpO -cmq +fsY crC cmq cvO @@ -122572,8 +122109,8 @@ czC bTb cIn cIn -cmw -cnD +vVE +cQA cos cIm cmY @@ -122732,8 +122269,8 @@ aiN aiN akc akr -ala -ala +pJV +pJV anL asa agA @@ -122760,7 +122297,7 @@ aKE aKk aaa aaa -aQn +abq aaa aaa aaa @@ -122782,7 +122319,7 @@ bsa boE byw byq -bAd +byq bDM bwi bFL @@ -122791,7 +122328,7 @@ bJp bKZ bxo bNb -bQo +bSa bSb bSa bUY @@ -122842,7 +122379,7 @@ cTt cUv cUv cUv -cWJ +cUv cUv cWb cTr @@ -123004,8 +122541,8 @@ ayW aAh axi asd -ayS -aAd +atr +lgv aBj ayL aDQ @@ -123017,7 +122554,7 @@ aKC aMf aKo aMf -aQo +aMf aMf aMf aMf @@ -123039,7 +122576,7 @@ bvW btU bwh byr -bAd +byq bDz bwi bFM @@ -123048,15 +122585,15 @@ bJn bLa bvl bNf -bQo bSa bSa -bUZ +bSa +bSa bWJ bYe bZm cas -bvT +faY ccM cea cjm @@ -123099,9 +122636,9 @@ cRt cRt cRt cRt -cUw cRt -cWa +cRt +pue cTr cXb cTX @@ -123263,7 +122800,7 @@ aqY agB azF baq -aBk +aRP aCJ aDN aDN @@ -123273,7 +122810,7 @@ aJj aKF aMh aNr -aOH +aMh aQp aRC aMh @@ -123285,7 +122822,7 @@ aZP bbq bcY ber -bfT +bfS aYx abq aEh @@ -123296,8 +122833,8 @@ bwf boE bwi bys -bAf -boE +byq +uRT bDY bFN bGk @@ -123315,7 +122852,7 @@ bZl car ccn ccN -ceb +cdW cfo cgw cgw @@ -123328,7 +122865,7 @@ cgw cgw ctQ cwz -cgw +siL cgw cAv cCp @@ -123343,7 +122880,7 @@ cLg cMT cns cns -cEX +hHX cWG cMh cNS @@ -123351,13 +122888,13 @@ cNW cON cPN cRD -cRz -cSo -cTb -cSo -cSo +cRy +cRt +cRt +cRt +cVZ cVh -cVB +lUY daw dbm cXp @@ -123504,7 +123041,7 @@ ajL akd akN alB -alV +alB anM aoc aoo @@ -123515,11 +123052,11 @@ atv auV awz awz -aAk +aqJ aFz amE -aNZ -aAc +aqJ +nUW aBm azw aDO @@ -123530,12 +123067,12 @@ aJg aKG aMi aNs -aOI -aKG +aMi +aMi aMi aMi aUp -aOI +aMi aXa aYz aZQ @@ -123554,7 +123091,7 @@ btV bwj byt bAg -boE +vBA bDZ bFO bGj @@ -123562,48 +123099,48 @@ bJq bay bNd bNd -bQq bNd bNd bNd -bWL +bNd +bNd bNd bZn car cbE -bcZ -bbr +qBP +kuf cfp cgx -cgx +pXI cjI ckV -ckV +tPc cnt -ckV -ckV -ckV -ckV +tPc +tPc +tPc +dSJ cub -ckV -ckV +dRX +pdC cxK cyL czG -cgx -cgx -cgx +tEL +tEL +oJA cDz +xBd cgx -cFk cGq -czG -cgx +rEw cgx cgx +gsn cWl -cgx -cgx +oUC +tEL cNX cOO cPO @@ -123611,7 +123148,7 @@ cRB cRA cTC cTc -cSp +cTc cUA cVi cVC @@ -123764,14 +123301,14 @@ aks alY anO aof -aos +atr api aqP -aos +atr atw auZ -awB -awB +atv +atv awB aFB ayw @@ -123784,15 +123321,15 @@ akD amx aKL aJk -aKH +aNt aMj aNt -aOJ -aNt +aMj +elv aMj aMj aUq -aOJ +aMj aMj aMj aZR @@ -123810,8 +123347,8 @@ bvW btW bwi bBU -bAh -bAk +byq +bCf bEa bFP bHy @@ -123826,15 +123363,15 @@ cgq bWM bYg bZn -cat +car cco -bcY -cec +ccN +cee cfq cgy -cgy +oym cjJ -cgy +pDi cmm cnu cmm @@ -123842,22 +123379,22 @@ cqk crI csT cuc -cvm -cvm +cuc +cuc czx cyM czH cAA cCQ -cmm +qtw cEv cEo cFl cGr czH cIt -cvm -cvm +cuc +cuc cWH cmm cmm @@ -124028,12 +123565,12 @@ aoq aoq auY awA -aos +atr aos aFA amE -ayU -aAi +atr +nUW aBo aCK aDR @@ -124049,7 +123586,7 @@ aMk aMk aMk aMk -aVC +aYA aXb aYA aZS @@ -124076,16 +123613,16 @@ bJr cpc bvy bOM -bQs +bSe bSe bSe bSe bWN -bSd +nKy bZo -car -bek -bcX +cas +faY +ccM ced cfr cft @@ -124098,7 +123635,7 @@ bWe cmo cmo cmo -cud +cvn cvn cwE cmo @@ -124108,7 +123645,7 @@ bZU cBJ cBJ cDb -cEp +cDb cBJ cGs cHn @@ -124290,25 +123827,25 @@ akD akD amx aPm -aAd -aBp +rHe +alF alM aDS aFl aCH aHP aJm -aKJ +aKI aMk aNu -aOL -aQq +aNA +aNA aRD -aSZ +aNA aNq aVD -aXc -aYB +aNC +aNC aMk beH bcX @@ -124333,14 +123870,14 @@ bJs bLe bxp bON -bQt +bSe bSf -bTM +bSe bVc bWO bYn -bZp -cau +bZn +car bek bcX cee @@ -124355,7 +123892,7 @@ cqe cqv csi cmo -cwA +cyK cxR cyK cmo @@ -124590,14 +124127,14 @@ bJt bLf bCD bPs -bQs +bSe bSe bTN bVd bWP bYN bZn -cav +bNp bek bcX cef @@ -124612,7 +124149,7 @@ cnB cqf crr csU -cuf +crr cvp cxN cmo @@ -124622,7 +124159,7 @@ cAC cBJ cCI cDD -cEr +kxc cCI cGu cHo @@ -124639,7 +124176,7 @@ cIx cmY bZU cUG -cRt +cSo cUE cSV abq @@ -124854,7 +124391,7 @@ bWw bWQ bYj bZn -cav +bNp bek bdb cee @@ -124869,7 +124406,7 @@ coP cqh crL csV -cug +crL cvq cxZ cmo @@ -125062,7 +124599,7 @@ aFX aKc aQy bfk -bmI +aFA amE aDU aFn @@ -125073,7 +124610,7 @@ aOb aMl aNx aUa -aNA +hnt aNA aTc aNq @@ -125118,7 +124655,7 @@ ceg cfu cgC cif -cjK +iWi ckZ cmo cng @@ -125126,7 +124663,7 @@ coJ cpd crM cuq -cuh +crM cvr cxX cmo @@ -125318,12 +124855,12 @@ amE amE amx aUx -aAd -aBt -azz -aDV +tay +aWo +amE +aDX aFo -anx +alM aHT aJq aOi @@ -125334,9 +124871,9 @@ aQs aSy aTd aUs -aNC +nLj aXd -aNC +gGG aZT aMk bdc @@ -125373,7 +124910,7 @@ cbG ccP ceh cfv -cgD +czP cig cjL cla @@ -125399,11 +124936,11 @@ czM czM cIx cJn -cMj -cLo -cLo -cLo -cQv +qsd +nzK +nzK +nzK +pzX cOX cPW cSs @@ -125564,7 +125101,7 @@ amy apA dfn dfn -apw +dfn aqU ash atx @@ -125574,7 +125111,7 @@ akD aAo aGr aKb -aSL +aPc aAm aBu aAN @@ -125587,13 +125124,13 @@ aOh aMl aNz avB -aNA +eSB aNA aTc aNq aVE aVE -aNC +veh aZU aYA bdd @@ -125631,7 +125168,7 @@ ccQ cee cOm cgE -cih +cic cjM clb coA @@ -125656,7 +125193,7 @@ cHC cKh cIx cJm -cMj +pkf cLr cMl cNh @@ -125831,9 +125368,9 @@ akD aAn aAn aKB -aVM +aRP bfF -aBv +aFz amE aDX aFq @@ -125872,8 +125409,8 @@ bEi bFV bhw bJo -bLk -bNk +bLi +bNh bQe bRx bTG @@ -125884,17 +125421,17 @@ bZk bNh caz bek -ccQ +xJS cee cft cgF -cih +cic cjN ckE cmr cmo cmo -byS +bWe cmo cmo bWe @@ -125907,7 +125444,7 @@ cAG cBi cAG cDF -cFY +qHr cFq cHK cKs @@ -126077,7 +125614,7 @@ amP aoe apC apC -apC +npj atD aqV asm @@ -126088,9 +125625,9 @@ akD aFg aGE aKc -aUS +aQy bfA -aBw +aFz amE aDY aFr @@ -126104,10 +125641,10 @@ aOR aNA aRI aTf -aOo -aVF -aXe -baS +aNq +aVE +aVE +aNC aNC aYA bdc @@ -126127,7 +125664,7 @@ bAm bCn bEj bHz -bEh +uuE bJy bOK bNh @@ -126141,7 +125678,7 @@ bYP bNh cbb bek -ccQ +xJS cei cOm cgG @@ -126331,10 +125868,10 @@ ajO akB akY amQ -amC +aoe apD ara -apC +lhK atE aqV aqj @@ -126346,7 +125883,7 @@ akD akD akD azG -aAd +fTe aCl aCO aCO @@ -126370,7 +125907,7 @@ aMk bdc bek bfY -bhx +bhw bnA bla bmV @@ -126402,7 +125939,7 @@ ccR bZu cfw cgu -bUx +cic bUz clc clm @@ -126424,7 +125961,7 @@ czM czM cxS cGA -cDp +cxS cIx cJp cJp @@ -126592,8 +126129,8 @@ amB apE arb aoH -apC -apC +gog +gog aso axL avs @@ -126602,7 +126139,7 @@ ayY aAp aGF aKO -aNI +aqJ bgl bnu aCO @@ -126643,7 +126180,7 @@ bEl bHC bhw bJo -bLn +bLi bHB bNh bQB @@ -126655,7 +126192,7 @@ bZz bZX caM bek -ccQ +xJS bbg bZU bZU @@ -126677,16 +126214,16 @@ czO cAI cBO cDJ -cgC +cic cHT cFs -cGB -cHv +cvv +cuv cIy cJq -cgC +mpt cLs -cMo +cjK cNj cOf cOZ @@ -126702,17 +126239,17 @@ cVG daE cWA cXg -cXu +cVG cXS -cYs +cYr cYP cZu -cZM -cZZ +daq +dab daG daR dbo -cZZ +dab daG dbz dcg @@ -126844,11 +126381,11 @@ aiZ akb alA alu -amS +amQ amF anU arc -apC +vgP atG aqV ass @@ -126859,7 +126396,7 @@ aza aAt aGI aMo -aXq +aPb bgI aBw aCP @@ -126912,7 +126449,7 @@ bZz bZX caM bek -ccQ +xJS bbi bZU cfE @@ -126934,19 +126471,19 @@ czP cAJ cBP cCO -cCO +pdV cEw cFt cGC -cHw -cxP cCO +iNq cCO +qcX cLt cMp cNk cOg -cPa +cPY cPY cQQ cRJ @@ -126967,11 +126504,11 @@ cZU das daa dar -daH -daH +oiv +oiv dbd dbn -daH +ntG daH dbJ dbU @@ -127098,14 +126635,14 @@ agC adg aib aja -ajY +ugy akU als amT -amD -apC +amF apC apC +vXU apy aqV asr @@ -127123,7 +126660,7 @@ aCQ aEb aFu aIR -bHc +tvn aMJ aKR aMn @@ -127132,14 +126669,14 @@ aOU beL aRL aUO -cjd +con aVI -aXf +aTn aYH -aZX +aTn bby bdg -bew +beu bjD bhw bjj @@ -127155,9 +126692,9 @@ bAq bCr bEn bHH -bhx +bhw bJB -bLp +bLi bNl bNh bQD @@ -127169,7 +126706,7 @@ bZD bZX caM bek -ccQ +xJS bbi bZU bVI @@ -127186,8 +126723,8 @@ cup cvz cwO cxQ -cyY -czQ +cwR +cic cAK cBQ cCP @@ -127196,12 +126733,12 @@ cEx cFu cGD cHx -cIz -czQ +cIy +cic cMZ cLu cMq -cNl +cAK cOh cPb cic @@ -127373,10 +126910,10 @@ azd aAv aHf aKO -ayS -aAs -aBA -aCR +atr +lWo +aFz +aCP aEc aFv byD @@ -127393,7 +126930,7 @@ aUv aVJ aXg aYI -aTr +vVo bbz bdh bek @@ -127450,7 +126987,7 @@ cBR cxU cxU cEy -cbZ +cdM cFL cdM cEy @@ -127637,7 +127174,7 @@ aCO aFH aFw aGG -bIb +bHc bNV aLM aMn @@ -127648,7 +127185,7 @@ aVB aTk con aVK -aXh +aTo aYJ aZY ayu @@ -127697,7 +127234,7 @@ cqp crU cmz cvX -cvB +cvz cwQ bYI bNN @@ -127878,7 +127415,7 @@ asp asp aod apG -are +asp asx atK atb @@ -127887,9 +127424,9 @@ azx azx aHh awd -aXD +amx blZ -aBC +amx aCO aEe aFx @@ -127938,9 +127475,9 @@ bht bht bht deF -cav +bNp bek -ccO +sQp cek chd dhd @@ -128145,7 +127682,7 @@ avk atK atK aXC -aze +vDW aBD aCS aCS @@ -128169,22 +127706,22 @@ bbB bdc bek bgb -bhy +bfV bjm blf -bhy +bfV bsV -bqt +bfV bvs buj -bhy +bfV byF bCB -bhy +bfV bEp -bhy +bfV bHL -bJE +bcN bLs bNp bNp @@ -128194,8 +127731,8 @@ bTW bVn bXP bYr -bZs -caE +bNp +bNp cbA ccU bZu @@ -128212,7 +127749,7 @@ ctE cmz cus cvD -cih +cic cxU czc czT @@ -128425,7 +127962,7 @@ aZZ beS bdi bex -bgc +bfI bfI bjn bfI @@ -128443,7 +127980,7 @@ bbr bHM bJF bLt -bNq +bbr bOV bQG bbr @@ -128469,7 +128006,7 @@ cmz cmz cic cvE -cih +cic cxU cAB cBb @@ -128640,9 +128177,9 @@ aui aui awx azt -agj -azE -bPL +mcY +xbe +xXW alJ azE aid @@ -128698,16 +128235,16 @@ bhz bhz bhz bhz -bwx +qCG bLu bNr bOW bQH -bOW +bNr bTX -bOW -bOW -bOW +bNr +bNr +bNr bZt caF cbK @@ -128730,7 +128267,7 @@ cwS cxU cze cAY -cAQ +cAN cBV cDP cxU @@ -128896,7 +128433,7 @@ aol asZ ava aww -azt +xOM agj azE bPL @@ -128947,7 +128484,7 @@ bnd boQ bqw bZi -boA +blC bsm blC bsm @@ -128957,7 +128494,7 @@ bsp bHA bJG bLv -bLG +bHA bsp bQI bQI @@ -128988,13 +128525,13 @@ cxU cBh cBc cAR -cAQ +cAN cCV cxU cGU cFB cGJ -cHE +cHA cKr cJr cYS @@ -129154,7 +128691,7 @@ asZ asZ aww ajv -afs +afr aBK bTg deG @@ -129214,7 +128751,7 @@ bID bHO bCy bLw -bNt +bCy bQC bQI bTD @@ -129234,7 +128771,7 @@ bZv clj cmz cny -cqt +cnI cqt crZ cOm @@ -129436,9 +128973,9 @@ akD aEg aFT aFy -aHd +aJw aJv -aKY +aJw aMp aJw aOZ @@ -129471,12 +129008,12 @@ bGd bHO bJH bLx -bNu +bCy bQE bQI bVs -bUa -bVq +eIn +okl bXd bYE bZv @@ -129492,7 +129029,7 @@ cmZ cmA cnI coU -cqt +skc csa cfw cic @@ -129512,9 +129049,9 @@ cHG cIG cJt cNq -cIE +obL cOr -cNp +cEK cln clN chy @@ -129694,7 +129231,7 @@ aDd alW aWv aGJ -aJw +nVz aKZ aPS aPS @@ -129714,7 +129251,7 @@ bgg bhC bjr aOD -bne +vEp boR bqx blC @@ -129728,13 +129265,13 @@ bGe bHO bCy bLy -bNt +bCy bHO bNn bSt bUb bXc -bXd +mAt bZd bZv caQ @@ -129759,7 +129296,7 @@ cxM cAH cBj cDN -cDN +lfz cEH cxV cGV @@ -129970,9 +129507,9 @@ bez bjF bhD bjs -bkR +bkk bng -boT +boR bqz bsm bsm @@ -129985,20 +129522,20 @@ bGd bHP bJI bLy -bNv -bOZ +bCy +bHO bQJ -bSu -bUc +bSt +bSt bYt -bXe +mAt bSt bZv cbn cbN cdb cfD -cdf +uzt cgS cjf bZv @@ -130011,7 +129548,7 @@ cmB cte cte cvJ -cwX +cte cxV cAM cBm @@ -130028,7 +129565,7 @@ cLl cMy cNy cPm -cNr +cEK cOs bZU bZU @@ -130206,8 +129743,8 @@ aBI aQd aRt aTe -aGK -aHe +aBI +aGJ aIe aLa aMr @@ -130217,7 +129754,7 @@ aQI aRT aTt aTo -aVS +aTq aTp aYK bac @@ -130246,9 +129783,9 @@ bNw bPa bQL bSv -bUd +bSt bYs -bXf +mAt cba bZv cbd @@ -130466,7 +130003,7 @@ aFD aGL aIh aJz -aLb +aJw aBI aBI aBI @@ -130505,13 +130042,13 @@ bRU bSw bSt bVu -bXg +mAt bZj bZv cbt -cbP +dHm cdd -cit +cdh cdh bYA chm @@ -130762,14 +130299,14 @@ bQK bSw bSt bVq -bXh -bUc +mAt +bSt caG -cbp -cbQ +cbW +cbO cde ces -cde +lIR bYz cjf bZv @@ -130778,7 +130315,7 @@ cmB cnK coX cqx -bAN +bIO cto cuz cwH @@ -130978,7 +130515,7 @@ avr aBI aBI aBI -aIj +aBI aJB aBI aBI @@ -130999,8 +130536,8 @@ bks bhG aoG blm -bne -boR +dnk +xla bqx bsp bus @@ -131025,7 +130562,7 @@ bZy cbW cbR cdf -cdf +oBY cfD bYC cjZ @@ -131034,12 +130571,12 @@ clj cmB cnL coY -cnK +lFT bIO cuj cuA +cwH cha -cxb cyP cmB cfY @@ -131244,8 +130781,8 @@ bVm aQJ aVH aTx -aUA -aVS +aTp +aTq aTp bbu aZZ @@ -131277,12 +130814,12 @@ bSy bUf bXb bXX -bNy +bSw bZv cbv cbS -cdg -cix +cdh +cdh cdh bYB cjf @@ -131291,12 +130828,12 @@ clj cmB cnM cnK -cnK +lFT bIO ctS cuB -cgZ -cxc +cwH +cha cyO cmB clP @@ -131501,10 +131038,10 @@ bWp aQK aRX aTy -aUB -aVW -aXl -aYR +aTo +aTo +aTp +aYK bag aoG bdr @@ -131537,7 +131074,7 @@ bQI bNB bZv ccs -cbP +cbS cdh cdh cdh @@ -131752,7 +131289,7 @@ aGO aIp aJF aLf -aMv +aNP aNP bVo aQL @@ -131794,11 +131331,11 @@ bXk bNA bZv cbF -cbO -cde +ktI +imQ cet -cde -bYz +imQ +edg cku bZv clj @@ -131990,7 +131527,7 @@ cXo aki alc amb -ane +amb amb apT ajp @@ -132000,7 +131537,7 @@ avr awo awo avr -ayJ +awo aBN avr avv @@ -132009,13 +131546,13 @@ aGP aIn aJF aLg -azl +avv aNQ aNQ aNQ aRZ aTA -aUD +aRZ aNQ aNQ aNQ @@ -132077,7 +131614,7 @@ bZU bZU bZU bGQ -cHS +thz cJu cBN cMr @@ -132247,17 +131784,17 @@ cWS akj ald amc -anf +amc aoy apU arm asD atR aBy -awR +gQu ayc azZ -aAF +awR aBM aCW aEo @@ -132265,7 +131802,7 @@ aFI aGQ aJF aJE -aLf +nhZ aMy aNQ aUf @@ -132334,7 +131871,7 @@ cDa chy cEM cEN -cHS +pkJ cJf cBN cLq @@ -132504,7 +132041,7 @@ amN cXD cXZ cYb -cYc +cYb cYb cYe cYx @@ -132523,7 +132060,7 @@ aGR aJG aJG aLh -aLm +aMy aNQ aPq aQN @@ -132551,11 +132088,11 @@ aoG bAz bCG bEz -bEv -bCH +poN +dTK bJM -bCH -bIL +dTK +vYK bEv bQS bQI @@ -132759,10 +132296,10 @@ cZi aij ajn akl -ald +erQ amd -ang -aoz +amc +amc apW aro asF @@ -132775,11 +132312,11 @@ aAH aye aCY aEq -aGz +aJE aGS aJE aJE -aJH +aGS aMw aNQ aPh @@ -132799,7 +132336,7 @@ bhJ bjw beC bnn -boZ +boR bqE aoG buy @@ -133015,14 +132552,14 @@ cKl aik aik amW -akm +qAG ale ame ame ame apX -arp -asG +apY +aki auP avv avv @@ -133065,7 +132602,7 @@ aoG aoG aoG bEB -bGm +bHU bHU bHU bLH @@ -133272,14 +132809,14 @@ aik aik ain ajp -akm +qAG akm amf amj aoA apY -arp -asG +apY +aki auH avv axP @@ -133314,15 +132851,15 @@ bjx bbH bne boR -bqF -bsr -buA +bqx +aoG +arr bwN aLC bZJ aoG bEC -bGn +bHW bLI bJO bTd @@ -133336,10 +132873,10 @@ bXo bEG cap cdi -cbU -cbU +mcn +mcn cex -cbU +mcn chD clq cbU @@ -133530,13 +133067,13 @@ ahg aio ajp akn -alf -amg +akh +akh anh -amg -amg -arq -asG +akh +akh +akh +aki atW avv awV @@ -133569,7 +133106,7 @@ bgp bhM bjy bbH -bno +bnf bpa bqG bmB @@ -133580,11 +133117,11 @@ bAB aoG bED bGo -bHW -bEC +xyZ +gIN bLJ bKm -bPf +bHW bQU bTQ bUl @@ -133593,12 +133130,12 @@ bXp bEG bXi bYy -cbV -cbV -cey -bgJ -cbV -cfJ +asJ +asJ +sfr +asJ +asJ +asJ cjX cnQ asJ @@ -133787,13 +133324,13 @@ afb ajb ajp ako -alg +ajp amh amh -aoB +aki apZ apZ -asH +aki avJ avv ayp @@ -133853,7 +133390,7 @@ caX asI asI cez -cfI +bxI asI aoG aoG @@ -134040,18 +133577,18 @@ cKI afH agi afH -ahh -aiv -aiv -aiv +afb +aeN +aeN +aeN alh aeN aeN -aoC -aqD -aqD -aqD -atY +alh +aeN +aeN +aeN +afb avv avv avv @@ -134078,17 +133615,17 @@ aNQ bak bbH bdv -beF +beE bgr -bhO +bhN bnJ -blp -bng -bpc -bqH +bbH +dnk +xla +bqx aoG aoG -bwQ +bwK aoG buy aoG @@ -134105,12 +133642,12 @@ bUn bVD bXr bEG -asJ -cdo +fFl +kUj arr asI -cdo -ceC +sfr +asJ cis buC cmx @@ -134297,7 +133834,7 @@ acJ afH ajD afH -ahj +aeN air air air @@ -134308,7 +133845,7 @@ air air air air -atZ +afb aDe buC ath @@ -134316,7 +133853,7 @@ axR aAL aBT aoG -aBW +dHr aoG aoG aoG @@ -134340,14 +133877,14 @@ bgs bhP bjB blq -bnj +iHk boV bqx aoG arr -bzq -byR -bAD +bwZ +aub +asJ aoG bEG bEG @@ -134363,11 +133900,11 @@ bVE bEG bEG bZF -aCa +ofz bdl asI -cdo -ceC +sfr +asJ cir buC clR @@ -134554,7 +134091,7 @@ abe afI agk agI -ahj +aeN air air air @@ -134565,7 +134102,7 @@ air air air air -atZ +afb aoG aoG buC @@ -134619,12 +134156,12 @@ bNF bWT bNF bNF -aCa +oMK caZ cbX asI -cdo -ceC +sfr +asJ cfK cfK cfK @@ -134822,13 +134359,13 @@ air air air air -atZ +afb axb asJ ayk asI aoG -aBW +dHr asI axh axh @@ -134880,8 +134417,8 @@ aoG aoG asI asI -cdo -ceC +sfr +asJ cfK ciD cka @@ -135068,7 +134605,7 @@ abe abq abe abq -ahj +aeN air air air @@ -135079,13 +134616,13 @@ air air air air -atZ +afb avy aub ayl asJ aoG -aBW +dHr arr axh aHH @@ -135114,9 +134651,9 @@ bam bno bpe bqK -bsu +bqx bwo -bsu +bqx byT bAG bEQ @@ -135138,7 +134675,7 @@ aoG cbX cdm ceA -ceC +asJ cfK chs ckb @@ -135325,7 +134862,7 @@ aaa aaa abf aaa -ahj +aeN air air air @@ -135336,7 +134873,7 @@ air air air air -atZ +afb avz asJ aym @@ -135375,12 +134912,12 @@ bsv buF bwT bwT -bAH +bwT bCK bwT -bGs -bGs bJR +bGs +gda bLP bkU bTK @@ -135393,9 +134930,9 @@ bUr bZH aoG azp -cdo -ceB -cfJ +sfr +asJ +asJ cfK ciF ckc @@ -135582,24 +135119,24 @@ aaa aaa abe aaa -ahy -aiv -aiv -akp -ali aeN aeN -aoD -aqb -aqb -aqb -aua +aeN +afb +alh +aeN +aeN +alh +afb +afb +afb +afb aoG asI ayn asJ aoG -aBW +dHr asI axh aIz @@ -135632,12 +135169,12 @@ bsw buG bzb byU -bAI +byU bFa bGv bGt bIa -byU +bGt bLQ bNI bGR @@ -135650,14 +135187,14 @@ asJ bZI aoG bef -cdo -ceC +sfr +asJ cfK cfK chQ aRQ cly -cly +sdQ cor clA clA @@ -135856,12 +135393,12 @@ aoG aoG aoG aoG -aBW +dHr aDa axh akP aHg -aIx +ccH aJM aLr aCg @@ -135889,14 +135426,14 @@ bbf bjM bnt bnt -bAJ +bbG bCM bCM bDT bNj bDT bNK -bNJ +bCM bPm bCM axh @@ -135914,7 +135451,7 @@ ciu ciH bhv biB -biB +jmm bul clB cqr @@ -136101,19 +135638,19 @@ abq aaa afb alk -amj +hnL anj aoF aqc aqt -asJ +xGP ayv -asJ +xGP ayv -asJ +xGP ayv -asJ -aBW +xGP +qQy dgI axh aIS @@ -136146,7 +135683,7 @@ bsy bwH bwV bjN -bAK +asJ bCN bEK bIM @@ -136165,7 +135702,7 @@ bYH awL ayo cfy -ceC +asJ cfK cgW chX @@ -136376,7 +135913,7 @@ axh aFR aCM aJR -aGv +aCM aFR aFR aPK @@ -136400,18 +135937,18 @@ brb bpi bqP bsz -bwH +dqh bzr bjN -bAK +asJ bCN bGz bGw -bId +hYZ bId bLT bOD -bQj +bOD bCM cBF cBG @@ -136422,7 +135959,7 @@ ckg bXt aoG ceR -ceC +asJ cfK chf ciJ @@ -136631,9 +136168,9 @@ aBW axh aEA aGc -aDs +aIA aIE -aKT +aIA aOX aMR aIA @@ -136656,11 +136193,11 @@ bam bnw bpi bqQ -bsA +bqR bwH bAs bjN -bAM +bxI bCN bEM bGx @@ -136668,7 +136205,7 @@ bIe bJT bLU bOQ -bQw +bOQ bCM asJ asJ @@ -136679,7 +136216,7 @@ asJ bCM bCM cds -bPm +bCM bCM bCM bCM @@ -136887,23 +136424,23 @@ aoG dgE axh aEA -aFW +aHg aHc aIB -aJP +aMF aLt -aMF -aMF +ccH +ccH aPo -aMF -aMF +ccH +ccH aQY -aMF +ccH aYS -aXA -aZf +aQY +aJO bbO -bbN +aFR bfy big bkt @@ -136913,16 +136450,16 @@ bmu bnx bpj bqR -bsB -bwJ +bpn +bwH bAr bjN -bAK +asJ bCN bEN bGy bIf -bId +rxV bLV bOF bQl @@ -137144,18 +136681,18 @@ atA aCa axh aFM -aFW +aHg bCj aMX aLs -aLs -aLs +kOI +jZt aOv aPp aSE -aLs +jZt aUR -aLs +jZt aZc ccz baw @@ -137174,16 +136711,16 @@ bqS buJ bzv byV -aNW +asJ bCN bGP bIY bIg bJU bLW -bNO -bPr -bQY +bCM +bCM +bCM bCM bCM bCM @@ -137193,7 +136730,7 @@ bCM bCM bjK cdu -ceG +bGG cfN chh ciL @@ -137401,7 +136938,7 @@ axh aEx axh aGb -aFW +aHg bAL aIF aJU @@ -137414,8 +136951,8 @@ aVN aWp aVh aYW -ccy -bbw +ccH +aJO bcq aFR bho @@ -137435,12 +136972,12 @@ bAO bCM bCM bCM -bHF -bJV bzL -bNP +bJV +bNa +bCM bQz -bNO +bCM bSJ bSJ bVN @@ -137658,7 +137195,7 @@ axh aEy aEz aFN -aFW +aHg bAL aIF aJZ @@ -137693,7 +137230,7 @@ bCM bHb bGA bIi -bJW +xno bLX bNQ bPt @@ -137707,7 +137244,7 @@ bJW bJW ccd cdw -bGG +bGF cfP bGG ciN @@ -137907,15 +137444,15 @@ amk amk amk amk -avE -awY +amk +amk ayN ayI -awY +amk aCd -aDs +aIA aEE -aFU +aPn bAL aIF aJV @@ -137938,7 +137475,7 @@ aAO aHw baE bhZ -bnB +bnz dfz bqT bsD @@ -137955,10 +137492,10 @@ bLY bNR bPu bRa -bSL +bNR bVv -bRa -bRa +ied +ied bNR caf bNR @@ -138160,7 +137697,7 @@ abq amk ank aoI -aqf +ank art asj aue @@ -138197,8 +137734,8 @@ bck bgE bnC dfB -dgM -bqU +bpn +bpn aZo bxd byX @@ -138210,8 +137747,8 @@ bIk bJY bLZ bGI -bPv -bRb +bPw +bGG bSM bCN bWU @@ -138220,7 +137757,7 @@ bWU bCN biz ccf -bGG +nbt bPw bIn chi @@ -138417,7 +137954,7 @@ abf amk anl aoJ -aqg +ann aru asg avR @@ -138456,17 +137993,17 @@ bnD dfA dgL bvt -blk +bpn bqU bCu -bFE -bCP +bFD +bCN bGD bLc bIl bJZ bMa -bGF +bGG bPw bGG bUo @@ -138477,7 +138014,7 @@ bCN bCN cDd ccf -bGG +nbt bPw bGG bIq @@ -138675,7 +138212,7 @@ amk apJ ank aqh -ank +kNc asQ awk avI @@ -138714,10 +138251,10 @@ blj dgO bjN bAP -bAP +rrO bnt -bAS -bCQ +bnt +bCM bzL bzL bzL @@ -138734,7 +138271,7 @@ bZG bCN biA ccf -bGG +qhv bPw bGG bIq @@ -138931,9 +138468,9 @@ abq amk ann aoJ -aqi +anl arv -asO +asj avV avH axM @@ -138968,10 +138505,10 @@ deW dff dfm bsZ -dgN +bnt bnt bxf -bxf +jdX bnt bCL bCR @@ -138979,7 +138516,7 @@ bEU bGE bIm bKa -bMc +xhr bMi bPx bRd @@ -139190,7 +138727,7 @@ ank aoK asK arw -asP +asg awn awU ayz @@ -139225,18 +138762,18 @@ avP dfh dft dfI -dgP +bnt bvu bly bxg byZ bAU -bCS +bCM bEV -bGF -bIn +uTZ +jdi bKb -bIo +dvV bNc bPy bRe @@ -139485,8 +139022,8 @@ bta anq bsG bza -bxh bza +esj bAV bCT bEW @@ -139745,7 +139282,7 @@ bvk bAt bCw bCY -bCU +bCM bEX bGH bIp @@ -140002,10 +139539,10 @@ bwr aWC bzc bAX -bCV +bCM bEY -bGI -bIq +jLP +pFi bKe bMf bNa @@ -148724,18 +148261,18 @@ aXH aXH bgM bcb -bgT -bdM -bdM -bdM -bdM -bdM +moJ +bsf +nwx +nEe +sJj +bsf blN bic beW beW bsT -buR +buP bxu bBf bGO @@ -148976,16 +148513,16 @@ aaa abd aUU bcb -bdM -bdM -bdM -bdM +bsf +bsf +bsf +bsf bfc bic beW -beW -beW -beW +mcP +qAm +nKW beW bfb beX @@ -148999,15 +148536,15 @@ brc beX bvh bKq -bdM -bdM -bdM -bdM -bdM +bsf +nwx +nEe +sJj +bsf bUA -bdM -bdM -cer +bsf +bsf +bKp bPH abd aaa @@ -149232,7 +148769,7 @@ aaa aaa abd aUU -bca +rjU bdK beW beW @@ -149249,22 +148786,22 @@ beX beX aXL aXL -bBe +aXL bxw -bBh +aXL aXL beX beX bfb beW -beW -beW -beW +mcP +qAm +nKW bfb beW beW bKk -bMr +bKo bsd abd aaa @@ -149489,7 +149026,7 @@ aaa aaa abd aUU -bca +rjU bdN beX beX @@ -149521,7 +149058,7 @@ bgN beX beX bvh -bMr +bKo bsd abd aaa @@ -149746,7 +149283,7 @@ aaa aaa abd aUU -bca +rjU bdN beX beX @@ -149778,7 +149315,7 @@ bgN beX beX bvh -bMr +bKo bsd abd aaa @@ -150003,7 +149540,7 @@ abd abd abd aUV -bca +rjU bdN beX beX @@ -150035,7 +149572,7 @@ aXL beX beX bvh -bMr +bKo bPH abd abd @@ -150260,7 +149797,7 @@ abd aaa aXH aXN -bca +rjU bdN beX beX @@ -150279,7 +149816,7 @@ bdI bri bri bxA -bBo +bri bri bDb bHi @@ -150292,7 +149829,7 @@ aXL beX beX bvh -bMr +bKo bNY aXH aaa @@ -150517,7 +150054,7 @@ abd aUU aXI bbX -bzh +say bdN beX aXL @@ -150532,7 +150069,7 @@ bil bil bpt brm -blH +bdI bvf buY bxD @@ -150542,14 +150079,14 @@ bDf bFi bIz bKl -bOa +iWv bOb odO bKl aXL beX bvh -cLL +rKu bbX cer bsd @@ -150774,7 +150311,7 @@ abd aUU aWB bbW -bzh +say bdN beX aXL @@ -150787,26 +150324,26 @@ bjX bdI bdI bmT -bdL -bif -blH +hLH +lYf +bdI bvd buX bxC bCX -bIC +bri bDd bFj bIA bHN -bOa -bOa +dwC +oOT bOa bKl aXL beX bvh -cLL +rKu cUI bzh bsd @@ -151032,10 +150569,10 @@ aUU aXJ bbY bdJ -bdO -bdO -aXM -bfa +bdN +beX +aXL +aXL bgP bih bnQ @@ -151059,10 +150596,10 @@ bRq bRs fZV hxv -cep -aXM -bdO -bdO +bKl +aXL +beX +bvh cQc cUM cWj @@ -151292,7 +150829,7 @@ bzh bdN beX aXL -bpv +aXL bbJ bdw bim @@ -151307,14 +150844,14 @@ bdI bvg buZ bxE -bCZ +bCX bri bDg bGT bIB bHN -bOa -bOa +xEi +jsQ bOa bKl aXL @@ -151821,7 +151358,7 @@ bdI brk bvb bzf -bDc +brk brk bDh bFd diff --git a/_maps/map_files/MetaStation/z2.dmm b/_maps/map_files/MetaStation/z2.dmm index 0d5b4fdb20e..a6c9869ef7c 100644 --- a/_maps/map_files/MetaStation/z2.dmm +++ b/_maps/map_files/MetaStation/z2.dmm @@ -6264,10 +6264,6 @@ icon_state = "dark" }, /area/centcom/ferry) -"Dq" = ( -/obj/effect/landmark/ai_multicam_room, -/turf/unsimulated/ai_visible, -/area/ai_multicam_room) "EE" = ( /obj/machinery/light/small, /obj/structure/chair/comfy/shuttle{ @@ -6315,12 +6311,6 @@ icon_state = "floor4" }, /area/shuttle/escape) -"HX" = ( -/turf/unsimulated/ai_visible, -/area/ai_multicam_room) -"It" = ( -/turf/unsimulated/wall, -/area/ai_multicam_room) "Iz" = ( /obj/structure/chair/comfy/brown{ dir = 1 @@ -54344,27 +54334,27 @@ ab ab ab ab -It -It -It -It -It -It -It -It -It -It -It -It -It -It -It -It -It -It -It -It -It +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab ab ab ab @@ -54601,27 +54591,27 @@ ab ab ab ab -It -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -It +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab ab ab ab @@ -54858,27 +54848,27 @@ ab ab ab ab -It -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -It +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab ab ab ab @@ -55115,27 +55105,27 @@ ab ab ab ab -It -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -It +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab ab ab ab @@ -55372,27 +55362,27 @@ ab ab ab ab -It -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -It +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab ab ab ab @@ -55629,27 +55619,27 @@ ab ab ab ab -It -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -It +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab ab ab ab @@ -55886,27 +55876,27 @@ ab ab ab ab -It -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -It +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab ab ab ab @@ -56143,27 +56133,27 @@ ab ab ab ab -It -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -It +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab ab ab ab @@ -56400,27 +56390,27 @@ ab ab ab ab -It -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -It +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab ab ab ab @@ -56657,27 +56647,27 @@ ab ab ab ab -It -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -It +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab ab ab ab @@ -56914,27 +56904,27 @@ ab ab ab ab -It -HX -HX -HX -HX -HX -HX -HX -HX -HX -Dq -HX -HX -HX -HX -HX -HX -HX -HX -HX -It +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab ab ab ab @@ -57171,27 +57161,27 @@ ab ab ab ab -It -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -It +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab ab ab ab @@ -57428,27 +57418,27 @@ ab ab ab ab -It -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -It +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab ab ab ab @@ -57685,27 +57675,27 @@ ab ab ab ab -It -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -It +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab ab ab ab @@ -57942,27 +57932,27 @@ ab ab ab ab -It -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -It +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab ab ab ab @@ -58199,27 +58189,27 @@ ab ab ab ab -It -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -It +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab ab ab ab @@ -58456,27 +58446,27 @@ ab ab ab ab -It -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -It +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab ab ab ab @@ -58713,27 +58703,27 @@ ab ab ab ab -It -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -It +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab ab ab ab @@ -58970,27 +58960,27 @@ ab ab ab ab -It -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -It +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab ab ab ab @@ -59227,27 +59217,27 @@ ab ab ab ab -It -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -HX -It +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab ab ab ab @@ -59484,27 +59474,27 @@ ab ab ab ab -It -It -It -It -It -It -It -It -It -It -It -It -It -It -It -It -It -It -It -It -It +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab ab ab ab diff --git a/_maps/map_files/cyberiad/cyberiad.dmm b/_maps/map_files/cyberiad/cyberiad.dmm index d7ce034ee74..6458f106529 100644 --- a/_maps/map_files/cyberiad/cyberiad.dmm +++ b/_maps/map_files/cyberiad/cyberiad.dmm @@ -46,10 +46,10 @@ }, /obj/structure/grille, /obj/structure/shuttle/window{ - dir = 2; + tag = "icon-window5_mid"; icon = 'icons/turf/shuttle.dmi'; icon_state = "window5_mid"; - tag = "icon-window5_mid" + dir = 2 }, /turf/simulated/shuttle/plating, /area/shuttle/syndicate) @@ -69,10 +69,10 @@ }, /obj/structure/grille, /obj/structure/shuttle/window{ - dir = 2; + tag = "icon-window5_end"; icon = 'icons/turf/shuttle.dmi'; icon_state = "window5_end"; - tag = "icon-window5_end" + dir = 2 }, /turf/simulated/shuttle/plating, /area/shuttle/syndicate) @@ -87,10 +87,10 @@ }, /obj/structure/grille, /obj/structure/shuttle/window{ - dir = 1; + tag = "icon-window5_end (NORTH)"; icon = 'icons/turf/shuttle.dmi'; icon_state = "window5_end"; - tag = "icon-window5_end (NORTH)" + dir = 1 }, /turf/simulated/shuttle/plating, /area/shuttle/syndicate) @@ -214,9 +214,9 @@ /area/shuttle/syndicate) "acf" = ( /obj/machinery/light/spot{ - dir = 4; + tag = "icon-tube1 (EAST)"; icon_state = "tube1"; - tag = "icon-tube1 (EAST)" + dir = 4 }, /turf/simulated/shuttle/floor{ icon_state = "floor4" @@ -284,8 +284,8 @@ /obj/effect/decal/warning_stripes/southwest, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "redcorner" + icon_state = "redcorner"; + dir = 4 }, /area/security/range) "acp" = ( @@ -321,23 +321,23 @@ "act" = ( /obj/effect/decal/warning_stripes/southeast, /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "redcorner" + icon_state = "redcorner"; + dir = 1 }, /area/security/range) "acu" = ( /obj/effect/decal/warning_stripes/southwest, /turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "redcorner" + icon_state = "redcorner"; + dir = 4 }, /area/security/range) "acv" = ( /obj/effect/decal/warning_stripes/southeast, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "redcorner" + icon_state = "redcorner"; + dir = 1 }, /area/security/range) "acw" = ( @@ -376,9 +376,9 @@ /area/shuttle/syndicate) "acB" = ( /obj/machinery/shower{ - dir = 8; + tag = "icon-shower (WEST)"; icon_state = "shower"; - tag = "icon-shower (WEST)" + dir = 8 }, /obj/structure/curtain/open/shower/security, /turf/simulated/floor/plasteel{ @@ -392,9 +392,9 @@ /obj/item/target, /obj/item/target, /obj/structure/cable{ - d2 = 2; icon_state = "0-2"; - pixel_y = 1 + pixel_y = 1; + d2 = 2 }, /turf/simulated/floor/plasteel, /area/security/range) @@ -802,7 +802,6 @@ name = "Bathroom"; req_access_txt = "0" }, -/obj/structure/snow, /turf/simulated/floor/plasteel{ icon_state = "freezerfloor" }, @@ -978,8 +977,8 @@ pixel_y = -24 }, /obj/structure/cable{ - d2 = 4; - icon_state = "0-4" + icon_state = "0-4"; + d2 = 4 }, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" @@ -1085,16 +1084,9 @@ icon_state = "alarm0"; pixel_x = 24 }, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, /turf/simulated/floor/plasteel, /area/security/prisonershuttle) "adN" = ( -/obj/item/decorations/sticky_decorations/flammable/tinsel/red{ - pixel_y = 19 - }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "barber" @@ -1157,9 +1149,9 @@ /area/security/range) "adS" = ( /obj/machinery/light/spot{ - dir = 8; + tag = "icon-tube1 (WEST)"; icon_state = "tube1"; - tag = "icon-tube1 (WEST)" + dir = 8 }, /obj/machinery/suit_storage_unit/syndicate/secure, /turf/simulated/shuttle/floor{ @@ -1178,9 +1170,9 @@ /area/shuttle/syndicate) "adU" = ( /obj/machinery/light/spot{ - dir = 8; + tag = "icon-tube1 (WEST)"; icon_state = "tube1"; - tag = "icon-tube1 (WEST)" + dir = 8 }, /turf/simulated/shuttle/floor{ icon_state = "floor4" @@ -1208,19 +1200,15 @@ }, /area/shuttle/syndicate) "adX" = ( +/obj/structure/chair/stool, /obj/structure/cable{ d1 = 1; d2 = 4; icon_state = "1-4" }, -/obj/item/gift, -/obj/item/clothing/head/cowboyhat/black, -/obj/structure/snow, -/obj/item/toy/figure/secofficer, -/obj/item/gun/projectile/automatic/toy/pistol, -/obj/item/clothing/head/helmet/justice, -/obj/item/nanomob_card, -/obj/item/ammo_box/magazine/toy/pistol, +/obj/effect/landmark/start{ + name = "Detective" + }, /turf/simulated/floor/plasteel, /area/security/main) "adY" = ( @@ -1230,7 +1218,6 @@ icon_state = "2-8"; tag = "" }, -/obj/structure/snow, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "redcorner" @@ -1294,10 +1281,6 @@ dir = 4; pixel_x = 24 }, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, /turf/simulated/floor/plasteel, /area/security/prisonershuttle) "aee" = ( @@ -1384,12 +1367,9 @@ pixel_x = 0; pixel_y = 30 }, -/obj/item/decorations/sticky_decorations/flammable/christmas_stocking{ - pixel_y = 17 - }, /turf/simulated/floor/plasteel{ - dir = 9; - icon_state = "red" + icon_state = "red"; + dir = 9 }, /area/security/main) "aek" = ( @@ -1462,9 +1442,9 @@ /obj/machinery/disposal, /obj/structure/disposalpipe/trunk, /turf/simulated/floor/plasteel{ - dir = 9; + tag = "icon-whiteblue (NORTHWEST)"; icon_state = "whiteblue"; - tag = "icon-whiteblue (NORTHWEST)" + dir = 9 }, /area/security/medbay) "aeq" = ( @@ -1490,9 +1470,9 @@ pixel_y = 0 }, /turf/simulated/floor/plasteel{ - dir = 1; + tag = "icon-whiteblue (NORTH)"; icon_state = "whiteblue"; - tag = "icon-whiteblue (NORTH)" + dir = 1 }, /area/security/medbay) "aes" = ( @@ -1529,16 +1509,16 @@ scrub_Toxins = 1 }, /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "red" + icon_state = "red"; + dir = 1 }, /area/security/range) "aev" = ( /obj/effect/decal/warning_stripes/north, /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "red" + icon_state = "red"; + dir = 1 }, /area/security/range) "aew" = ( @@ -1563,13 +1543,6 @@ /area/shuttle/syndicate_sit) "aey" = ( /obj/machinery/computer/brigcells, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, -/obj/structure/snow{ - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel{ dir = 9; icon_state = "darkred" @@ -1629,9 +1602,6 @@ /obj/structure/rack, /obj/item/tank/oxygen, /obj/item/tank/jetpack/oxygen, -/obj/item/decorations/sticky_decorations/flammable/tinsel/red{ - pixel_y = 19 - }, /turf/simulated/floor/plasteel, /area/security/podbay) "aeF" = ( @@ -1680,9 +1650,9 @@ /obj/item/reagent_containers/syringe/charcoal, /obj/item/reagent_containers/glass/bottle/epinephrine, /turf/simulated/floor/plasteel{ - dir = 9; + tag = "icon-whiteblue (NORTHWEST)"; icon_state = "whiteblue"; - tag = "icon-whiteblue (NORTHWEST)" + dir = 9 }, /area/security/medbay) "aeK" = ( @@ -1708,9 +1678,9 @@ pixel_y = 30 }, /turf/simulated/floor/plasteel{ - dir = 1; + tag = "icon-whiteblue (NORTH)"; icon_state = "whiteblue"; - tag = "icon-whiteblue (NORTH)" + dir = 1 }, /area/security/medbay) "aeM" = ( @@ -1829,9 +1799,9 @@ pixel_y = 32 }, /turf/simulated/floor/plasteel{ - dir = 1; + tag = "icon-whiteblue (NORTH)"; icon_state = "whiteblue"; - tag = "icon-whiteblue (NORTH)" + dir = 1 }, /area/security/medbay) "aeU" = ( @@ -1846,7 +1816,6 @@ dir = 8; pixel_x = -24 }, -/obj/structure/snow, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "darkred" @@ -1982,9 +1951,9 @@ dir = 8 }, /turf/simulated/floor/plasteel{ - dir = 8; + tag = "icon-whiteblue (WEST)"; icon_state = "whiteblue"; - tag = "icon-whiteblue (WEST)" + dir = 8 }, /area/security/medbay) "afe" = ( @@ -2062,7 +2031,6 @@ shock_proof = 0 }, /obj/machinery/photocopier, -/obj/structure/snow, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "darkred" @@ -2084,10 +2052,6 @@ pixel_y = -28; req_access_txt = "2" }, -/obj/structure/snow{ - dir = 10; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -2106,10 +2070,6 @@ /obj/effect/landmark/start{ name = "Brig Physician" }, -/obj/structure/snow{ - dir = 10; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel, /area/security/main) "afo" = ( @@ -2185,16 +2145,13 @@ icon_state = "1-2" }, /turf/simulated/floor/plasteel{ - dir = 8; + tag = "icon-whitebluecorner (WEST)"; icon_state = "whitebluecorner"; - tag = "icon-whitebluecorner (WEST)" + dir = 8 }, /area/security/medbay) "afv" = ( /obj/structure/closet/secure_closet/brigdoc, -/obj/item/decorations/sticky_decorations/flammable/christmas_stocking{ - pixel_x = 19 - }, /turf/simulated/floor/plasteel{ dir = 6; icon_state = "whiteblue"; @@ -2321,18 +2278,12 @@ /obj/effect/landmark/start{ name = "Security Officer" }, -/obj/structure/chair/stool, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/security/main) "afK" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, -/obj/structure/snow{ - dir = 8; - icon_state = "snow_surround" - }, /turf/simulated/floor/plasteel{ dir = 6; icon_state = "red" @@ -2386,9 +2337,9 @@ req_access_txt = "150" }, /obj/machinery/light/spot{ - dir = 1; + tag = "icon-tube1 (NORTH)"; icon_state = "tube1"; - tag = "icon-tube1 (NORTH)" + dir = 1 }, /turf/simulated/shuttle/floor{ icon_state = "floor4" @@ -2400,9 +2351,9 @@ req_access_txt = "150" }, /obj/machinery/light/spot{ - dir = 1; + tag = "icon-tube1 (NORTH)"; icon_state = "tube1"; - tag = "icon-tube1 (NORTH)" + dir = 1 }, /turf/simulated/shuttle/floor{ icon_state = "floor4" @@ -2494,9 +2445,9 @@ icon_state = "1-2" }, /turf/simulated/floor/plasteel{ - dir = 8; + tag = "icon-whiteblue (WEST)"; icon_state = "whiteblue"; - tag = "icon-whiteblue (WEST)" + dir = 8 }, /area/security/medbay) "afZ" = ( @@ -2578,9 +2529,9 @@ /area/shuttle/vox) "agf" = ( /obj/machinery/light/spot{ - dir = 8; + tag = "icon-tube1 (WEST)"; icon_state = "tube1"; - tag = "icon-tube1 (WEST)" + dir = 8 }, /obj/machinery/sleeper/syndie{ dir = 4 @@ -2783,9 +2734,9 @@ req_access_txt = "152" }, /obj/machinery/light/spot{ - dir = 4; + tag = "icon-tube1 (EAST)"; icon_state = "tube1"; - tag = "icon-tube1 (EAST)" + dir = 4 }, /turf/simulated/shuttle/plating/vox, /area/shuttle/vox) @@ -2808,10 +2759,10 @@ }, /obj/structure/grille, /obj/structure/shuttle/window{ - dir = 2; + tag = "icon-window5_end"; icon = 'icons/turf/shuttle.dmi'; icon_state = "window5_end"; - tag = "icon-window5_end" + dir = 2 }, /turf/simulated/shuttle/plating/vox, /area/shuttle/vox) @@ -2826,10 +2777,10 @@ }, /obj/structure/grille, /obj/structure/shuttle/window{ - dir = 1; + tag = "icon-window5_end (NORTH)"; icon = 'icons/turf/shuttle.dmi'; icon_state = "window5_end"; - tag = "icon-window5_end (NORTH)" + dir = 1 }, /turf/simulated/shuttle/plating/vox, /area/shuttle/vox) @@ -2844,10 +2795,10 @@ }, /obj/structure/grille, /obj/structure/shuttle/window{ - dir = 2; + tag = "icon-window5_mid"; icon = 'icons/turf/shuttle.dmi'; icon_state = "window5_mid"; - tag = "icon-window5_mid" + dir = 2 }, /turf/simulated/shuttle/plating/vox, /area/shuttle/vox) @@ -2859,9 +2810,9 @@ req_access_txt = "152" }, /obj/machinery/light/spot{ - dir = 8; + tag = "icon-tube1 (WEST)"; icon_state = "tube1"; - tag = "icon-tube1 (WEST)" + dir = 8 }, /turf/simulated/shuttle/plating/vox, /area/shuttle/vox) @@ -2869,10 +2820,6 @@ /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, -/obj/structure/snow{ - dir = 10; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -2969,10 +2916,6 @@ scrub_N2O = 1; scrub_Toxins = 1 }, -/obj/structure/snow{ - dir = 8; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -2986,10 +2929,6 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/snow{ - dir = 1; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -3096,9 +3035,9 @@ /area/security/securearmoury) "agT" = ( /obj/structure/cable{ - d2 = 2; icon_state = "0-2"; - pixel_y = 1 + pixel_y = 1; + d2 = 2 }, /obj/machinery/power/apc{ dir = 1; @@ -3157,10 +3096,6 @@ /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, -/obj/structure/snow{ - dir = 8; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel, /area/security/seceqstorage) "agY" = ( @@ -3233,12 +3168,9 @@ scrub_N2O = 1; scrub_Toxins = 1 }, -/obj/structure/snow{ - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel{ - dir = 9; - icon_state = "red" + icon_state = "red"; + dir = 9 }, /area/security/main) "ahg" = ( @@ -3324,10 +3256,10 @@ }, /obj/structure/grille, /obj/structure/shuttle/window{ - dir = 8; + tag = "icon-window5_end (WEST)"; icon = 'icons/turf/shuttle.dmi'; icon_state = "window5_end"; - tag = "icon-window5_end (WEST)" + dir = 8 }, /turf/simulated/shuttle/plating/vox, /area/shuttle/vox) @@ -3354,10 +3286,10 @@ }, /obj/structure/grille, /obj/structure/shuttle/window{ - dir = 8; + tag = "icon-window5_end (WEST)"; icon = 'icons/turf/shuttle.dmi'; icon_state = "window5_end"; - tag = "icon-window5_end (WEST)" + dir = 8 }, /turf/simulated/shuttle/plating/vox, /area/shuttle/vox) @@ -3470,10 +3402,6 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/snow{ - dir = 5; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "darkredcorners" @@ -3513,8 +3441,8 @@ dir = 1 }, /turf/simulated/floor/plasteel{ - dir = 9; - icon_state = "red" + icon_state = "red"; + dir = 9 }, /area/security/armoury) "ahI" = ( @@ -3536,10 +3464,10 @@ }, /obj/structure/grille, /obj/structure/shuttle/window{ - dir = 4; + tag = "icon-window5_end (EAST)"; icon = 'icons/turf/shuttle.dmi'; icon_state = "window5_end"; - tag = "icon-window5_end (EAST)" + dir = 4 }, /turf/simulated/shuttle/plating/vox, /area/shuttle/vox) @@ -3565,17 +3493,17 @@ }, /obj/structure/grille, /obj/structure/shuttle/window{ - dir = 4; + tag = "icon-window5_end (EAST)"; icon = 'icons/turf/shuttle.dmi'; icon_state = "window5_end"; - tag = "icon-window5_end (EAST)" + dir = 4 }, /turf/simulated/shuttle/plating/vox, /area/shuttle/vox) "ahN" = ( /obj/structure/shuttle/engine/propulsion{ - icon_state = "propulsion_l"; - tag = "icon-propulsion_l" + tag = "icon-propulsion_l"; + icon_state = "propulsion_l" }, /turf/simulated/shuttle/plating, /area/shuttle/syndicate) @@ -3585,8 +3513,8 @@ /area/shuttle/syndicate) "ahP" = ( /obj/structure/shuttle/engine/propulsion{ - icon_state = "propulsion_r"; - tag = "icon-propulsion_r" + tag = "icon-propulsion_r"; + icon_state = "propulsion_r" }, /turf/simulated/shuttle/plating, /area/shuttle/syndicate) @@ -3613,8 +3541,8 @@ dir = 1 }, /turf/simulated/floor/plasteel{ - dir = 5; - icon_state = "red" + icon_state = "red"; + dir = 5 }, /area/security/armoury) "ahS" = ( @@ -3626,8 +3554,8 @@ dir = 1 }, /turf/simulated/floor/plasteel{ - dir = 5; - icon_state = "red" + icon_state = "red"; + dir = 5 }, /area/security/armoury) "ahT" = ( @@ -3639,8 +3567,8 @@ dir = 1 }, /turf/simulated/floor/plasteel{ - dir = 9; - icon_state = "red" + icon_state = "red"; + dir = 9 }, /area/security/armoury) "ahU" = ( @@ -3785,8 +3713,8 @@ pixel_y = 0 }, /turf/simulated/floor/plasteel{ - dir = 10; - icon_state = "red" + icon_state = "red"; + dir = 10 }, /area/security/armoury) "aig" = ( @@ -3855,8 +3783,8 @@ dir = 8 }, /turf/simulated/floor/plasteel{ - dir = 10; - icon_state = "red" + icon_state = "red"; + dir = 10 }, /area/security/armoury) "aio" = ( @@ -3866,8 +3794,8 @@ dir = 8 }, /obj/structure/cable{ - d2 = 2; - icon_state = "0-2" + icon_state = "0-2"; + d2 = 2 }, /obj/machinery/power/apc{ cell_type = 5000; @@ -4010,8 +3938,8 @@ network = list("SS13") }, /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "redcorner" + icon_state = "redcorner"; + dir = 1 }, /area/security/armoury) "aix" = ( @@ -4049,8 +3977,8 @@ pixel_x = 24 }, /turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "redcorner" + icon_state = "redcorner"; + dir = 4 }, /area/security/armoury) "aiA" = ( @@ -4357,10 +4285,6 @@ pixel_y = -25 }, /obj/machinery/light, -/obj/structure/snow{ - dir = 1; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "darkredcorners" @@ -4553,8 +4477,8 @@ /obj/vehicle/secway, /obj/item/key/security, /turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "redcorner" + icon_state = "redcorner"; + dir = 4 }, /area/security/armoury) "ajl" = ( @@ -5050,9 +4974,9 @@ /obj/item/harpoon, /obj/item/tank/nitrogen, /obj/machinery/light/spot{ - dir = 4; + tag = "icon-tube1 (EAST)"; icon_state = "tube1"; - tag = "icon-tube1 (EAST)" + dir = 4 }, /turf/simulated/shuttle/floor4/vox, /area/shuttle/vox) @@ -5279,8 +5203,8 @@ /area/security/podbay) "akp" = ( /obj/structure/shuttle/engine/propulsion{ - icon_state = "propulsion_l"; - tag = "icon-propulsion_l" + tag = "icon-propulsion_l"; + icon_state = "propulsion_l" }, /turf/simulated/shuttle/plating, /area/shuttle/vox) @@ -5339,7 +5263,16 @@ /area/security/securearmoury) "akv" = ( /obj/structure/table, -/obj/structure/snow, +/obj/item/taperecorder{ + pixel_y = 0 + }, +/obj/machinery/light_switch{ + pixel_x = -25 + }, +/obj/item/radio/intercom/department/security{ + pixel_x = 0; + pixel_y = 28 + }, /turf/simulated/floor/plasteel, /area/security/main) "akw" = ( @@ -5429,25 +5362,14 @@ pixel_y = 24 }, /obj/structure/cable{ - d2 = 2; icon_state = "0-2"; - pixel_y = 1 + pixel_y = 1; + d2 = 2 }, -/obj/item/gift, -/obj/item/clothing/head/cowboyhat/pink, -/obj/structure/snow, -/obj/item/toy/figure/hos, -/obj/item/toy/prize/gygax, -/obj/item/nanomob_card, -/obj/item/gun/projectile/automatic/toy, -/obj/item/ammo_box/magazine/toy/smg, /turf/simulated/floor/plasteel, /area/security/main) "akG" = ( /obj/structure/chair/stool, -/obj/item/decorations/sticky_decorations/flammable/tinsel/red{ - pixel_y = 19 - }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "barber" @@ -5456,9 +5378,9 @@ "akH" = ( /obj/effect/spawner/window/reinforced, /obj/structure/cable{ - d2 = 2; icon_state = "0-2"; - pixel_y = 1 + pixel_y = 1; + d2 = 2 }, /turf/simulated/floor/plating, /area/security/hos) @@ -5541,10 +5463,10 @@ "akP" = ( /obj/structure/grille, /obj/structure/shuttle/window{ - dir = 1; + tag = "icon-window5_end (NORTH)"; icon = 'icons/turf/shuttle.dmi'; icon_state = "window5_end"; - tag = "icon-window5_end (NORTH)" + dir = 1 }, /turf/simulated/shuttle/plating/vox, /area/shuttle/vox) @@ -5565,18 +5487,18 @@ "akR" = ( /obj/structure/grille, /obj/structure/shuttle/window{ - dir = 2; + tag = "icon-window5_end"; icon = 'icons/turf/shuttle.dmi'; icon_state = "window5_end"; - tag = "icon-window5_end" + dir = 2 }, /turf/simulated/shuttle/plating/vox, /area/shuttle/vox) "akS" = ( /obj/structure/bed, /turf/simulated/floor/plasteel{ - dir = 5; - icon_state = "red" + icon_state = "red"; + dir = 5 }, /area/security/permabrig) "akT" = ( @@ -5587,8 +5509,8 @@ tag = "" }, /turf/simulated/floor/plasteel{ - dir = 9; - icon_state = "red" + icon_state = "red"; + dir = 9 }, /area/security/permabrig) "akU" = ( @@ -5756,9 +5678,9 @@ opacity = 0 }, /turf/simulated/floor/plasteel{ - dir = 2; + tag = "icon-cult"; icon_state = "cult"; - tag = "icon-cult" + dir = 2 }, /area/lawoffice) "ale" = ( @@ -5782,30 +5704,30 @@ pixel_x = -28 }, /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "redcorner" + icon_state = "redcorner"; + dir = 1 }, /area/security/armoury) "alg" = ( /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "redcorner" + icon_state = "redcorner"; + dir = 1 }, /area/security/armoury) "alh" = ( /obj/effect/decal/warning_stripes/red/hollow, /obj/structure/closet/l3closet/security, /turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "redcorner" + icon_state = "redcorner"; + dir = 4 }, /area/security/armoury) "ali" = ( /obj/effect/decal/warning_stripes/red/hollow, /obj/structure/closet/bombclosetsecurity, /turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "redcorner" + icon_state = "redcorner"; + dir = 4 }, /area/security/armoury) "alj" = ( @@ -5909,6 +5831,17 @@ }, /area/security/brig) "alp" = ( +/obj/structure/table, +/obj/item/ashtray/bronze{ + pixel_x = -1; + pixel_y = 1 + }, +/obj/item/storage/fancy/cigarettes/cigpack_robust, +/obj/machinery/alarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, /obj/machinery/light{ dir = 8 }, @@ -5917,11 +5850,6 @@ dir = 4; network = list("SS13") }, -/obj/item/decorations/sticky_decorations/flammable/tinsel/red{ - pixel_y = 19 - }, -/obj/structure/flora/tree/pine/xmas, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/security/main) "alq" = ( @@ -5931,7 +5859,6 @@ icon_state = "4-8"; pixel_x = 0 }, -/obj/structure/snow, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "redcorner" @@ -5979,7 +5906,6 @@ icon_state = "4-8"; pixel_x = 0 }, -/obj/structure/snow, /turf/simulated/floor/plasteel{ icon_state = "red" }, @@ -6023,16 +5949,16 @@ tag = "" }, /obj/structure/cable{ - d2 = 2; icon_state = "0-2"; - pixel_y = 1 + pixel_y = 1; + d2 = 2 }, /turf/simulated/floor/plating, /area/security/hos) "alD" = ( /obj/structure/cable{ - d2 = 2; - icon_state = "0-2" + icon_state = "0-2"; + d2 = 2 }, /obj/machinery/power/tracker, /obj/structure/lattice/catwalk, @@ -6042,6 +5968,15 @@ /obj/structure/closet/secure_closet/brig, /turf/simulated/floor/plasteel, /area/security/prisonlockers) +"alF" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/landmark/start{ + name = "Security Officer" + }, +/turf/simulated/floor/plasteel, +/area/security/main) "alG" = ( /obj/machinery/vending/cigarette, /obj/machinery/status_display{ @@ -6050,7 +5985,6 @@ pixel_x = -32; pixel_y = 0 }, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/security/main) "alH" = ( @@ -6234,7 +6168,6 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/snow, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -6326,12 +6259,9 @@ dir = 1; on = 1 }, -/obj/item/decorations/sticky_decorations/flammable/christmas_stocking{ - pixel_y = 17 - }, /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "red" + icon_state = "red"; + dir = 1 }, /area/security/main) "amd" = ( @@ -6339,12 +6269,9 @@ /obj/machinery/alarm{ pixel_y = 23 }, -/obj/item/decorations/sticky_decorations/flammable/christmas_stocking{ - pixel_y = 17 - }, /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "red" + icon_state = "red"; + dir = 1 }, /area/security/main) "ame" = ( @@ -6372,12 +6299,9 @@ name = "station intercom (General)"; pixel_y = 25 }, -/obj/item/decorations/sticky_decorations/flammable/christmas_stocking{ - pixel_y = 17 - }, /turf/simulated/floor/plasteel{ - dir = 5; - icon_state = "red" + icon_state = "red"; + dir = 5 }, /area/security/main) "amg" = ( @@ -6437,27 +6361,20 @@ icon_state = "1-2"; tag = "" }, -/obj/structure/snow{ - dir = 1; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel{ - dir = 10; - icon_state = "red" + icon_state = "red"; + dir = 10 }, /area/security/main) "amn" = ( +/obj/structure/table/reinforced, +/obj/item/folder/red{ + pixel_y = 3 + }, +/obj/item/book/manual/sop_legal, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, -/obj/structure/table/reinforced, -/obj/item/taperecorder{ - pixel_y = 0 - }, -/obj/structure/snow{ - dir = 1; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel, /area/security/main) "amo" = ( @@ -6494,18 +6411,19 @@ "amq" = ( /obj/effect/spawner/window/reinforced, /obj/structure/cable{ - d2 = 2; icon_state = "0-2"; - pixel_y = 1 + pixel_y = 1; + d2 = 2 }, /turf/simulated/floor/plating, /area/security/main) "amr" = ( -/obj/structure/chair/stool, -/obj/effect/landmark/start{ - name = "Detective" +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Head of Security" }, -/obj/structure/snow, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "redfull"; @@ -6610,9 +6528,6 @@ dir = 2; network = list("SS13") }, -/obj/structure/snow{ - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "darkred" @@ -6637,9 +6552,6 @@ pixel_x = 0; pixel_y = 32 }, -/obj/item/decorations/sticky_decorations/flammable/christmas_stocking{ - pixel_y = 17 - }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "darkred" @@ -6648,22 +6560,14 @@ "amD" = ( /obj/effect/spawner/window/reinforced, /obj/structure/cable{ - d2 = 2; icon_state = "0-2"; - pixel_y = 1 + pixel_y = 1; + d2 = 2 }, /turf/simulated/floor/plating, /area/security/warden) "amE" = ( /obj/machinery/computer/prisoner, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, -/obj/structure/snow{ - dir = 6; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel{ dir = 5; icon_state = "darkred" @@ -6678,8 +6582,8 @@ "amG" = ( /obj/machinery/vending/security, /turf/simulated/floor/plasteel{ - dir = 9; - icon_state = "red" + icon_state = "red"; + dir = 9 }, /area/security/seceqstorage) "amH" = ( @@ -6701,8 +6605,8 @@ }, /obj/item/flash, /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "red" + icon_state = "red"; + dir = 1 }, /area/security/seceqstorage) "amI" = ( @@ -6723,8 +6627,8 @@ dir = 1 }, /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "red" + icon_state = "red"; + dir = 1 }, /area/security/seceqstorage) "amK" = ( @@ -6737,18 +6641,17 @@ /area/maintenance/fsmaint) "amL" = ( /obj/machinery/shower{ - dir = 8; + tag = "icon-shower (WEST)"; icon_state = "shower"; - tag = "icon-shower (WEST)" + dir = 8 }, /obj/structure/curtain/open/shower, /turf/simulated/floor/plating, /area/maintenance/fsmaint) "amM" = ( -/obj/structure/snow, /turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "red" + icon_state = "red"; + dir = 4 }, /area/security/main) "amN" = ( @@ -6772,17 +6675,12 @@ }, /area/security/main) "amO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/table/reinforced, -/obj/item/ashtray/bronze{ - pixel_x = -1; - pixel_y = 1 - }, -/obj/item/storage/fancy/cigarettes/cigpack_robust, -/obj/structure/snow{ - dir = 8; - icon_state = "snow_corner" +/obj/item/folder/red{ + pixel_y = 3 }, +/obj/item/book/manual/security_space_law, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel, /area/security/main) "amP" = ( @@ -6804,8 +6702,8 @@ icon_state = "1-8" }, /turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "red" + icon_state = "red"; + dir = 8 }, /area/security/main) "amQ" = ( @@ -6830,10 +6728,6 @@ dir = 8; network = list("SS13") }, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -6866,8 +6760,8 @@ /area/security/hos) "amU" = ( /obj/structure/cable{ - d2 = 2; - icon_state = "0-2" + icon_state = "0-2"; + d2 = 2 }, /obj/machinery/power/tracker, /obj/structure/lattice/catwalk, @@ -6953,6 +6847,11 @@ /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/plating, /area/security/permabrig) +"anf" = ( +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/security/permabrig) "ang" = ( /obj/structure/cable{ d1 = 1; @@ -7030,8 +6929,8 @@ tag = "" }, /turf/simulated/floor/plasteel{ - dir = 10; - icon_state = "red" + icon_state = "red"; + dir = 10 }, /area/security/permabrig) "anp" = ( @@ -7107,9 +7006,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, -/obj/structure/snow{ - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -7163,10 +7059,6 @@ initialize_directions = 11; level = 1 }, -/obj/item/decorations/sticky_decorations/flammable/tinsel/red{ - pixel_y = 19 - }, -/obj/structure/snow, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -7179,10 +7071,6 @@ dir = 4; level = 1 }, -/obj/structure/snow{ - dir = 4; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -7202,10 +7090,6 @@ d2 = 8; icon_state = "1-8" }, -/obj/structure/snow{ - dir = 4; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -7249,7 +7133,6 @@ name = "Warden's Desk"; req_access_txt = "3" }, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/security/warden) "anE" = ( @@ -7259,7 +7142,6 @@ icon_state = "4-8"; pixel_x = 0 }, -/obj/structure/snow, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "darkred" @@ -7341,9 +7223,6 @@ /area/security/main) "anM" = ( /obj/structure/chair/stool, -/obj/effect/landmark/start{ - name = "Head of Security" - }, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "redfull"; @@ -7399,7 +7278,6 @@ dir = 4; level = 1 }, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/security/main) "anR" = ( @@ -7418,10 +7296,6 @@ dir = 4; level = 1 }, -/obj/structure/snow{ - dir = 4; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel, /area/security/main) "anS" = ( @@ -7429,10 +7303,9 @@ dir = 4; level = 1 }, -/obj/structure/snow, /turf/simulated/floor/plasteel{ - dir = 5; - icon_state = "red" + icon_state = "red"; + dir = 5 }, /area/security/main) "anT" = ( @@ -7449,22 +7322,17 @@ }, /area/security/permabrig) "anU" = ( +/obj/structure/table/reinforced, +/obj/item/folder/red{ + pixel_y = 3 + }, +/obj/item/book/manual/sop_security, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1; initialize_directions = 11; level = 1 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/table/reinforced, -/obj/item/book/manual/sop_legal, -/obj/item/book/manual/security_space_law, -/obj/item/folder/red{ - pixel_y = 3 - }, -/obj/structure/snow{ - dir = 8; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel, /area/security/main) "anV" = ( @@ -7514,9 +7382,9 @@ pixel_y = 2 }, /turf/simulated/floor/plasteel{ - dir = 2; + tag = "icon-cult"; icon_state = "cult"; - tag = "icon-cult" + dir = 2 }, /area/lawoffice) "aoa" = ( @@ -7534,13 +7402,10 @@ dir = 1; in_use = 1 }, -/obj/structure/snow{ - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel{ - dir = 2; + tag = "icon-cult"; icon_state = "cult"; - tag = "icon-cult" + dir = 2 }, /area/lawoffice) "aob" = ( @@ -7549,9 +7414,9 @@ name = "Internal Affairs Agent" }, /turf/simulated/floor/plasteel{ - dir = 2; + tag = "icon-cult"; icon_state = "cult"; - tag = "icon-cult" + dir = 2 }, /area/lawoffice) "aoc" = ( @@ -7581,9 +7446,9 @@ /obj/structure/table/reinforced, /obj/item/flashlight/lamp, /turf/simulated/floor/plasteel{ - dir = 2; + tag = "icon-cult"; icon_state = "cult"; - tag = "icon-cult" + dir = 2 }, /area/lawoffice) "aof" = ( @@ -7635,9 +7500,9 @@ "aoj" = ( /obj/effect/spawner/window/reinforced, /obj/structure/cable{ - d2 = 2; icon_state = "0-2"; - pixel_y = 1 + pixel_y = 1; + d2 = 2 }, /obj/machinery/door/poddoor{ density = 0; @@ -7652,8 +7517,8 @@ /obj/structure/table, /obj/item/book/manual/security_space_law, /turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "red" + icon_state = "red"; + dir = 4 }, /area/security/lobby) "aol" = ( @@ -7693,8 +7558,8 @@ /area/security/lobby) "aoo" = ( /obj/machinery/light{ - dir = 8; - icon_state = "tube1" + icon_state = "tube1"; + dir = 8 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ @@ -7720,15 +7585,15 @@ }, /obj/item/pen, /turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "red" + icon_state = "red"; + dir = 8 }, /area/security/lobby) "aoq" = ( /obj/structure/cable{ - d2 = 2; icon_state = "0-2"; - pixel_y = 1 + pixel_y = 1; + d2 = 2 }, /obj/machinery/door/poddoor{ density = 0; @@ -7752,7 +7617,6 @@ d2 = 4; icon_state = "1-4" }, -/obj/structure/snow, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -7768,7 +7632,6 @@ /obj/effect/landmark/start{ name = "Warden" }, -/obj/structure/snow, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -7789,7 +7652,6 @@ /obj/machinery/hologram/holopad, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/snow, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -7801,9 +7663,6 @@ icon_state = "4-8"; pixel_x = 0 }, -/obj/structure/snow{ - icon_state = "snow_surround" - }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -7813,10 +7672,6 @@ /obj/effect/landmark/start{ name = "Warden" }, -/obj/structure/snow{ - dir = 6; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -7828,17 +7683,12 @@ pixel_y = 28 }, /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "redcorner" + icon_state = "redcorner"; + dir = 1 }, /area/security/prison/cell_block/A) "aox" = ( /obj/machinery/computer/secure_data, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, -/obj/structure/snow, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "darkred" @@ -7864,8 +7714,8 @@ /obj/item/crowbar, /obj/item/radio, /turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "red" + icon_state = "red"; + dir = 8 }, /area/security/seceqstorage) "aoA" = ( @@ -7962,9 +7812,17 @@ d2 = 4; icon_state = "1-4" }, -/obj/structure/snow{ - dir = 4; - icon_state = "snow_corner" +/turf/simulated/floor/plasteel, +/area/security/main) +"aoI" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, /turf/simulated/floor/plasteel, /area/security/main) @@ -8012,7 +7870,6 @@ d2 = 8; icon_state = "4-8" }, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/security/main) "aoM" = ( @@ -8025,10 +7882,9 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/structure/snow, /turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "redcorner" + icon_state = "redcorner"; + dir = 4 }, /area/security/main) "aoN" = ( @@ -8037,10 +7893,9 @@ d2 = 8; icon_state = "1-8" }, -/obj/structure/snow, /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "redcorner" + icon_state = "redcorner"; + dir = 1 }, /area/security/main) "aoO" = ( @@ -8080,15 +7935,9 @@ initialize_directions = 11; level = 1 }, -/obj/item/decorations/sticky_decorations/flammable/tinsel/red{ - pixel_y = 19 - }, -/obj/structure/snow{ - icon_state = "snow_surround" - }, /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "red" + icon_state = "red"; + dir = 1 }, /area/security/main) "aoQ" = ( @@ -8099,11 +7948,6 @@ "aoR" = ( /obj/structure/table, /obj/item/storage/fancy/donut_box, -/obj/item/book/manual/sop_security, -/obj/item/folder/red{ - pixel_y = 3 - }, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/security/main) "aoS" = ( @@ -8138,8 +7982,8 @@ network = list("SS13") }, /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "redcorner" + icon_state = "redcorner"; + dir = 1 }, /area/security/prison/cell_block/A) "aoV" = ( @@ -8166,8 +8010,8 @@ icon_state = "0-2" }, /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "redcorner" + icon_state = "redcorner"; + dir = 1 }, /area/security/prison/cell_block/A) "aoX" = ( @@ -8276,7 +8120,6 @@ pixel_x = -28; pixel_y = -10 }, -/obj/structure/snow, /turf/simulated/floor/plasteel{ dir = 10; icon_state = "darkred" @@ -8288,7 +8131,6 @@ pixel_x = -3; pixel_y = 5 }, -/obj/structure/snow, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "darkred" @@ -8299,15 +8141,12 @@ /obj/item/book/manual/sop_legal, /obj/item/paper/armory, /obj/item/clipboard, -/obj/structure/snow, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "darkred" }, /area/security/warden) "aph" = ( -/obj/item/decorations/sticky_decorations/flammable/snowman, -/obj/structure/snow, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "darkred" @@ -8317,7 +8156,6 @@ /obj/structure/table/reinforced, /obj/item/folder/red, /obj/item/megaphone, -/obj/structure/snow, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "darkred" @@ -8325,7 +8163,6 @@ /area/security/warden) "apj" = ( /obj/structure/table/reinforced, -/obj/structure/snow, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "darkred" @@ -8335,11 +8172,6 @@ /obj/machinery/computer/security{ network = list("SS13","Research Outpost","Mining Outpost") }, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, -/obj/structure/snow, /turf/simulated/floor/plasteel{ dir = 6; icon_state = "darkred" @@ -8395,8 +8227,8 @@ /area/space/nearstation) "app" = ( /obj/structure/cable{ - d2 = 4; - icon_state = "0-4" + icon_state = "0-4"; + d2 = 4 }, /obj/machinery/power/solar{ id = "portsolar"; @@ -8421,22 +8253,22 @@ /area/solar/auxstarboard) "apr" = ( /turf/simulated/shuttle/wall{ - dir = 2; - icon_state = "swall12" + icon_state = "swall12"; + dir = 2 }, /area/shuttle/trade/sol) "aps" = ( /turf/space, /turf/simulated/shuttle/wall{ - dir = 2; + tag = "icon-swall_f6"; icon_state = "swall_f6"; - tag = "icon-swall_f6" + dir = 2 }, /area/shuttle/trade/sol) "apt" = ( /turf/simulated/shuttle/wall{ - dir = 2; - icon_state = "swall14" + icon_state = "swall14"; + dir = 2 }, /area/shuttle/trade/sol) "apu" = ( @@ -8455,8 +8287,8 @@ "apv" = ( /turf/space, /turf/simulated/shuttle/wall{ - dir = 2; - icon_state = "swall_f10" + icon_state = "swall_f10"; + dir = 2 }, /area/shuttle/trade/sol) "apw" = ( @@ -8466,8 +8298,8 @@ /area/shuttle/trade/sol) "apx" = ( /turf/simulated/shuttle/wall{ - dir = 2; - icon_state = "swall3" + icon_state = "swall3"; + dir = 2 }, /area/shuttle/trade/sol) "apy" = ( @@ -8517,8 +8349,8 @@ network = list("SS13") }, /turf/simulated/floor/plasteel{ - dir = 10; - icon_state = "red" + icon_state = "red"; + dir = 10 }, /area/security/seceqstorage) "apB" = ( @@ -8582,9 +8414,9 @@ /area/security/medbay) "apG" = ( /obj/machinery/light/small{ - dir = 4; + tag = "icon-bulb1 (EAST)"; icon_state = "bulb1"; - tag = "icon-bulb1 (EAST)" + dir = 4 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -8595,9 +8427,6 @@ /obj/structure/window/reinforced{ dir = 8 }, -/obj/item/decorations/sticky_decorations/flammable/christmas_stocking{ - pixel_y = -16 - }, /turf/simulated/floor/plasteel{ dir = 10; icon_state = "red" @@ -8617,9 +8446,6 @@ /area/security/main) "apJ" = ( /obj/structure/closet/secure_closet/security, -/obj/item/decorations/sticky_decorations/flammable/christmas_stocking{ - pixel_y = -16 - }, /turf/simulated/floor/plasteel{ icon_state = "red" }, @@ -8635,9 +8461,6 @@ /obj/structure/window/reinforced{ dir = 4 }, -/obj/item/decorations/sticky_decorations/flammable/christmas_stocking{ - pixel_y = -16 - }, /turf/simulated/floor/plasteel{ dir = 6; icon_state = "red" @@ -8647,14 +8470,6 @@ /obj/structure/table, /obj/item/storage/fancy/donut_box, /obj/machinery/light, -/obj/item/reagent_containers/food/snacks/candy/confectionery/toffee{ - pixel_x = -10 - }, -/obj/item/reagent_containers/food/snacks/candy/confectionery/toffee{ - pixel_x = 9 - }, -/obj/item/reagent_containers/food/snacks/candy/confectionery/toffee, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/security/main) "apN" = ( @@ -8666,7 +8481,6 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/security/main) "apO" = ( @@ -8676,7 +8490,6 @@ /obj/effect/landmark/start{ name = "Security Pod Pilot" }, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/security/main) "apP" = ( @@ -8708,9 +8521,9 @@ tag = "" }, /obj/structure/cable{ - d2 = 2; icon_state = "0-2"; - pixel_y = 1 + pixel_y = 1; + d2 = 2 }, /turf/simulated/floor/plating, /area/security/main) @@ -8729,7 +8542,6 @@ name = "Security Office"; req_access_txt = "63" }, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/security/main) "apU" = ( @@ -8808,9 +8620,9 @@ "apY" = ( /obj/structure/bed, /obj/machinery/light/small{ - dir = 4; + tag = "icon-bulb1 (EAST)"; icon_state = "bulb1"; - tag = "icon-bulb1 (EAST)" + dir = 4 }, /turf/simulated/floor/plating, /area/maintenance/fsmaint) @@ -8857,9 +8669,9 @@ /area/shuttle/trade/sol) "aqg" = ( /obj/machinery/light/spot{ - dir = 1; + tag = "icon-tube1 (NORTH)"; icon_state = "tube1"; - tag = "icon-tube1 (NORTH)" + dir = 1 }, /obj/effect/spawner/lootdrop/trade_sol/donksoft, /obj/structure/closet, @@ -8880,9 +8692,9 @@ /area/shuttle/trade/sol) "aqj" = ( /obj/machinery/light/spot{ - dir = 1; + tag = "icon-tube1 (NORTH)"; icon_state = "tube1"; - tag = "icon-tube1 (NORTH)" + dir = 1 }, /turf/simulated/shuttle/floor, /area/shuttle/trade/sol) @@ -9052,9 +8864,9 @@ tag = "" }, /obj/structure/cable{ - d2 = 2; icon_state = "0-2"; - pixel_y = 1 + pixel_y = 1; + d2 = 2 }, /turf/simulated/floor/plating, /area/security/main) @@ -9092,7 +8904,6 @@ name = "Security Office"; req_access_txt = "63" }, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/security/main) "aqE" = ( @@ -9257,9 +9068,9 @@ }, /obj/item/pen, /obj/machinery/light/small{ - dir = 4; + tag = "icon-bulb1 (EAST)"; icon_state = "bulb1"; - tag = "icon-bulb1 (EAST)" + dir = 4 }, /turf/simulated/floor/plating, /area/security/permabrig) @@ -9323,23 +9134,39 @@ /area/security/brig) "aqY" = ( /obj/structure/chair/stool, -/obj/item/decorations/sticky_decorations/flammable/tinsel/red{ - pixel_y = 19 - }, -/obj/structure/snow{ - dir = 10; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel{ - dir = 2; + tag = "icon-cult"; icon_state = "cult"; - tag = "icon-cult" + dir = 2 }, /area/lawoffice) "aqZ" = ( /obj/structure/lattice/catwalk, /turf/space, /area/solar/auxstarboard) +"ara" = ( +/obj/structure/table/reinforced, +/obj/item/folder{ + pixel_x = -4 + }, +/obj/item/folder/red{ + pixel_y = 3 + }, +/obj/item/folder/blue{ + pixel_x = 5 + }, +/obj/item/folder/yellow{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/stamp/law, +/obj/item/pen/multi, +/turf/simulated/floor/plasteel{ + tag = "icon-cult"; + icon_state = "cult"; + dir = 2 + }, +/area/lawoffice) "arb" = ( /obj/structure/cable, /obj/structure/lattice/catwalk, @@ -9348,9 +9175,9 @@ "arc" = ( /obj/effect/spawner/window/reinforced, /obj/structure/cable{ - d2 = 2; icon_state = "0-2"; - pixel_y = 1 + pixel_y = 1; + d2 = 2 }, /obj/structure/cable{ d1 = 1; @@ -9422,8 +9249,8 @@ dir = 8 }, /turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "red" + icon_state = "red"; + dir = 4 }, /area/security/lobby) "ark" = ( @@ -9452,9 +9279,9 @@ tag = "" }, /obj/structure/cable{ - d2 = 2; icon_state = "0-2"; - pixel_y = 1 + pixel_y = 1; + d2 = 2 }, /obj/machinery/door/poddoor{ density = 0; @@ -9485,8 +9312,8 @@ }, /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "redcorner" + icon_state = "redcorner"; + dir = 1 }, /area/security/prison/cell_block/A) "aro" = ( @@ -9507,8 +9334,8 @@ dir = 4 }, /turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "red" + icon_state = "red"; + dir = 8 }, /area/security/lobby) "arq" = ( @@ -9608,8 +9435,8 @@ opacity = 0 }, /obj/structure/cable{ - d2 = 4; - icon_state = "0-4" + icon_state = "0-4"; + d2 = 4 }, /obj/effect/spawner/window/reinforced, /turf/simulated/floor/plating, @@ -9619,10 +9446,9 @@ /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, -/obj/structure/snow, /turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "redcorner" + icon_state = "redcorner"; + dir = 4 }, /area/security/processing) "arw" = ( @@ -9675,8 +9501,8 @@ dir = 10 }, /turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "redcorner" + icon_state = "redcorner"; + dir = 4 }, /area/security/processing) "arz" = ( @@ -9690,10 +9516,6 @@ dir = 5; level = 1 }, -/obj/structure/snow{ - dir = 8; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel, /area/security/processing) "arA" = ( @@ -9752,12 +9574,9 @@ pixel_x = 25; pixel_y = -7 }, -/obj/item/decorations/sticky_decorations/flammable/tinsel/red{ - pixel_y = 19 - }, /turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "redcorner" + icon_state = "redcorner"; + dir = 4 }, /area/security/processing) "arF" = ( @@ -9767,12 +9586,9 @@ icon_state = "2-8"; tag = "" }, -/obj/item/decorations/sticky_decorations/flammable/tinsel/red{ - pixel_y = 19 - }, /turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "redcorner" + icon_state = "redcorner"; + dir = 4 }, /area/security/processing) "arG" = ( @@ -9796,8 +9612,8 @@ dir = 4 }, /turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "red" + icon_state = "red"; + dir = 4 }, /area/security/permabrig) "arI" = ( @@ -9837,8 +9653,8 @@ shock_proof = 0 }, /obj/structure/cable{ - d2 = 2; - icon_state = "0-2" + icon_state = "0-2"; + d2 = 2 }, /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ @@ -9965,8 +9781,8 @@ /area/maintenance/fsmaint) "arU" = ( /obj/structure/cable{ - d2 = 4; - icon_state = "0-4" + icon_state = "0-4"; + d2 = 4 }, /obj/structure/lattice/catwalk, /turf/space, @@ -9986,8 +9802,8 @@ /area/shuttle/trade/sol) "arX" = ( /obj/structure/cable{ - d2 = 2; - icon_state = "0-2" + icon_state = "0-2"; + d2 = 2 }, /obj/machinery/power/solar{ id = "auxsolareast"; @@ -10109,8 +9925,8 @@ /obj/item/seeds/wheat/rice, /obj/item/seeds/wheat/rice, /turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "green" + icon_state = "green"; + dir = 8 }, /area/security/permabrig) "asj" = ( @@ -10133,6 +9949,10 @@ icon_state = "dark" }, /area/security/brig) +"asl" = ( +/obj/structure/chair/stool, +/turf/simulated/floor/plasteel, +/area/security/permabrig) "asm" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -10224,10 +10044,6 @@ /obj/item/radio/intercom/department/security{ pixel_x = -28 }, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, /turf/simulated/floor/plasteel, /area/security/permabrig) "ast" = ( @@ -10266,10 +10082,6 @@ dir = 4; pixel_x = 0 }, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, /turf/simulated/floor/plasteel, /area/security/permabrig) "asv" = ( @@ -10309,10 +10121,6 @@ pixel_x = 0; pixel_y = 30 }, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, /turf/simulated/floor/plasteel, /area/security/permabrig) "asx" = ( @@ -10535,9 +10343,6 @@ dir = 4; level = 1 }, -/obj/item/decorations/sticky_decorations/flammable/tinsel/red{ - pixel_y = 19 - }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -10561,16 +10366,16 @@ "asJ" = ( /turf/space, /turf/simulated/shuttle/wall{ - dir = 2; + tag = "icon-swall_f5"; icon_state = "swall_f5"; - tag = "icon-swall_f5" + dir = 2 }, /area/shuttle/trade/sol) "asK" = ( /turf/space, /turf/simulated/shuttle/wall{ - dir = 2; - icon_state = "swall_f9" + icon_state = "swall_f9"; + dir = 2 }, /area/shuttle/trade/sol) "asL" = ( @@ -10613,7 +10418,6 @@ /turf/space, /area/solar/auxport) "asN" = ( -/obj/structure/snow, /turf/simulated/floor/carpet, /area/lawoffice) "asO" = ( @@ -10621,38 +10425,26 @@ req_access = null; req_access_txt = "2" }, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, -/obj/structure/snow, /turf/simulated/floor/plasteel{ - dir = 2; + tag = "icon-cult"; icon_state = "cult"; - tag = "icon-cult" + dir = 2 }, /area/lawoffice) "asP" = ( -/obj/structure/chair/comfy/green{ +/obj/structure/chair/comfy/brown{ dir = 1 }, -/obj/item/decorations/sticky_decorations/flammable/tinsel/red{ - pixel_y = 19 - }, -/obj/structure/snow{ - dir = 8; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel{ - dir = 2; + tag = "icon-cult"; icon_state = "cult"; - tag = "icon-cult" + dir = 2 }, /area/lawoffice) "asQ" = ( /obj/machinery/light{ - dir = 8; - icon_state = "tube1" + icon_state = "tube1"; + dir = 8 }, /obj/machinery/alarm{ dir = 4; @@ -10673,8 +10465,8 @@ "asS" = ( /turf/space, /turf/simulated/shuttle/wall{ - dir = 2; - icon_state = "swall_f6" + icon_state = "swall_f6"; + dir = 2 }, /area/shuttle/siberia) "asT" = ( @@ -10695,9 +10487,9 @@ "asV" = ( /turf/space, /turf/simulated/shuttle/wall{ - dir = 2; + tag = "icon-swall_f10"; icon_state = "swall_f10"; - tag = "icon-swall_f10" + dir = 2 }, /area/shuttle/siberia) "asW" = ( @@ -10806,6 +10598,19 @@ icon_state = "bluecorner" }, /area/hallway/primary/fore) +"atd" = ( +/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{ + icon_state = "redcorner"; + dir = 1 + }, +/area/security/prison/cell_block/A) "ate" = ( /obj/structure/closet/secure_closet/brig{ id = "Cell 3"; @@ -10824,10 +10629,6 @@ scrub_N2O = 1; scrub_Toxins = 1 }, -/obj/structure/snow{ - dir = 8; - icon_state = "snow_surround" - }, /turf/simulated/floor/carpet, /area/lawoffice) "atg" = ( @@ -10857,15 +10658,9 @@ /obj/structure/chair{ dir = 1 }, -/obj/item/decorations/sticky_decorations/flammable/tinsel/red{ - pixel_y = 19 - }, -/obj/structure/snow{ - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "redcorner" + icon_state = "redcorner"; + dir = 1 }, /area/security/processing) "atj" = ( @@ -10899,10 +10694,6 @@ /obj/structure/table, /obj/item/flashlight/lamp, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/snow{ - dir = 8; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel, /area/security/processing) "atm" = ( @@ -10925,9 +10716,6 @@ icon_state = "2-8"; tag = "" }, -/obj/structure/snow{ - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel, /area/security/processing) "atn" = ( @@ -10952,9 +10740,6 @@ pixel_y = 0; tag = "" }, -/obj/structure/snow{ - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel, /area/security/processing) "ato" = ( @@ -11034,10 +10819,6 @@ scrub_N2O = 1; scrub_Toxins = 1 }, -/obj/structure/snow{ - dir = 6; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel, /area/security/processing) "atw" = ( @@ -11107,8 +10888,8 @@ /obj/item/seeds/corn, /obj/item/seeds/corn, /turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "green" + icon_state = "green"; + dir = 8 }, /area/security/permabrig) "atB" = ( @@ -11195,8 +10976,8 @@ /area/maintenance/fsmaint) "atH" = ( /obj/machinery/light{ - dir = 4; - icon_state = "tube1" + icon_state = "tube1"; + dir = 4 }, /obj/structure/rack, /obj/item/plant_analyzer, @@ -11206,8 +10987,8 @@ /area/security/permabrig) "atI" = ( /turf/simulated/shuttle/wall{ - dir = 2; - icon_state = "swall3" + icon_state = "swall3"; + dir = 2 }, /area/shuttle/siberia) "atJ" = ( @@ -11236,11 +11017,19 @@ icon_state = "floor4" }, /area/shuttle/siberia) +"atM" = ( +/obj/effect/spawner/window/reinforced, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/simulated/floor/plating, +/area/security/prisonershuttle) "atN" = ( /obj/effect/spawner/window/reinforced, /obj/structure/cable{ - d2 = 4; - icon_state = "0-4" + icon_state = "0-4"; + d2 = 4 }, /obj/structure/cable{ d2 = 8; @@ -11262,8 +11051,8 @@ icon_state = "0-8" }, /obj/structure/cable{ - d2 = 4; - icon_state = "0-4" + icon_state = "0-4"; + d2 = 4 }, /turf/simulated/floor/plating, /area/security/prisonershuttle) @@ -11272,8 +11061,8 @@ /obj/item/dice/d20, /obj/item/instrument/harmonica, /obj/machinery/light{ - dir = 8; - icon_state = "tube1" + icon_state = "tube1"; + dir = 8 }, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" @@ -11537,9 +11326,9 @@ "aui" = ( /obj/effect/spawner/window/reinforced, /obj/structure/cable{ - d2 = 2; icon_state = "0-2"; - pixel_y = 1 + pixel_y = 1; + d2 = 2 }, /turf/simulated/floor/plating, /area/security/seceqstorage) @@ -11633,10 +11422,6 @@ scrub_N2O = 1; scrub_Toxins = 1 }, -/obj/structure/snow{ - dir = 6; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "darkredcorners" @@ -11676,38 +11461,34 @@ /area/maintenance/fsmaint) "auq" = ( /turf/simulated/shuttle/wall{ - dir = 2; + tag = "icon-swall12"; icon_state = "swall12"; - tag = "icon-swall12" + dir = 2 }, /area/shuttle/pod_3) "aur" = ( /obj/structure/filingcabinet/employment, -/obj/structure/snow, /turf/simulated/floor/plasteel{ - dir = 2; + tag = "icon-cult"; icon_state = "cult"; - tag = "icon-cult" + dir = 2 }, /area/lawoffice) "aus" = ( /turf/space, /turf/simulated/shuttle/wall{ - dir = 2; - icon_state = "swall_f10" + icon_state = "swall_f10"; + dir = 2 }, /area/shuttle/pod_3) "aut" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 }, -/obj/structure/snow{ - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel{ - dir = 2; + tag = "icon-cult"; icon_state = "cult"; - tag = "icon-cult" + dir = 2 }, /area/lawoffice) "auu" = ( @@ -11814,8 +11595,8 @@ "auF" = ( /obj/item/twohanded/required/kirbyplants, /turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "red" + icon_state = "red"; + dir = 4 }, /area/security/lobby) "auG" = ( @@ -11906,8 +11687,8 @@ "auL" = ( /obj/item/twohanded/required/kirbyplants, /turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "red" + icon_state = "red"; + dir = 8 }, /area/security/lobby) "auM" = ( @@ -11924,8 +11705,8 @@ dir = 4 }, /turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "redcorner" + icon_state = "redcorner"; + dir = 4 }, /area/security/lobby) "auN" = ( @@ -12096,7 +11877,6 @@ /obj/item/radio/intercom/department/security{ pixel_x = -28 }, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/security/processing) "auU" = ( @@ -12123,7 +11903,6 @@ pixel_x = 24 }, /obj/structure/cable, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/security/processing) "auX" = ( @@ -12136,7 +11915,6 @@ pixel_y = 0; tag = "" }, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/security/processing) "auY" = ( @@ -12178,8 +11956,8 @@ /area/maintenance/fsmaint) "avd" = ( /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "redcorner" + icon_state = "redcorner"; + dir = 1 }, /area/security/lobby) "ave" = ( @@ -12219,8 +11997,8 @@ /obj/item/seeds/chili, /obj/item/seeds/chili, /turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "green" + icon_state = "green"; + dir = 8 }, /area/security/permabrig) "avh" = ( @@ -12274,9 +12052,6 @@ pixel_x = 0; tag = "" }, -/obj/item/decorations/sticky_decorations/flammable/tinsel/red{ - pixel_y = 19 - }, /turf/simulated/floor/plasteel, /area/security/permabrig) "avl" = ( @@ -12417,8 +12192,8 @@ dir = 4 }, /turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "red" + icon_state = "red"; + dir = 4 }, /area/security/permabrig) "avs" = ( @@ -12483,9 +12258,9 @@ "avz" = ( /obj/effect/spawner/window/reinforced, /obj/structure/cable{ - d2 = 2; icon_state = "0-2"; - pixel_y = 1 + pixel_y = 1; + d2 = 2 }, /obj/machinery/door/poddoor/shutters{ density = 0; @@ -12499,19 +12274,12 @@ /area/security/processing) "avA" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/snow{ - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel, /area/security/processing) "avB" = ( -/obj/structure/snow{ - dir = 4; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "redcorner" + icon_state = "redcorner"; + dir = 1 }, /area/security/processing) "avC" = ( @@ -12700,10 +12468,6 @@ /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, -/obj/structure/snow{ - dir = 8; - icon_state = "snow_surround" - }, /turf/simulated/floor/carpet, /area/lawoffice) "avO" = ( @@ -12748,11 +12512,10 @@ network = list("SS13") }, /obj/machinery/photocopier, -/obj/structure/snow, /turf/simulated/floor/plasteel{ - dir = 2; + tag = "icon-cult"; icon_state = "cult"; - tag = "icon-cult" + dir = 2 }, /area/lawoffice) "avR" = ( @@ -12762,16 +12525,14 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, -/obj/structure/snow, /turf/simulated/floor/plasteel{ - dir = 2; + tag = "icon-cult"; icon_state = "cult"; - tag = "icon-cult" + dir = 2 }, /area/lawoffice) "avS" = ( /obj/machinery/hologram/holopad, -/obj/structure/snow, /turf/simulated/floor/carpet, /area/lawoffice) "avT" = ( @@ -12783,10 +12544,6 @@ dir = 4; level = 1 }, -/obj/structure/snow{ - dir = 8; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel, /area/security/lobby) "avV" = ( @@ -12812,13 +12569,24 @@ dir = 4; level = 1 }, -/obj/structure/snow, /turf/simulated/floor/plasteel{ - dir = 2; + tag = "icon-cult"; icon_state = "cult"; - tag = "icon-cult" + dir = 2 }, /area/lawoffice) +"avX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/security/prison/cell_block/A) "avY" = ( /turf/simulated/floor/plasteel{ dir = 4; @@ -12875,8 +12643,8 @@ req_access_txt = "63" }, /obj/effect/mapping_helpers/airlock/unres{ - dir = 4; - icon_state = "airlock_unres_helper" + icon_state = "airlock_unres_helper"; + dir = 4 }, /turf/simulated/floor/plasteel{ dir = 1; @@ -12923,7 +12691,6 @@ pixel_x = 0; tag = "" }, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/security/processing) "awf" = ( @@ -12939,10 +12706,9 @@ req_access = null; req_access_txt = "63" }, -/obj/structure/snow, /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "redcorner" + icon_state = "redcorner"; + dir = 1 }, /area/security/processing) "awg" = ( @@ -12977,8 +12743,8 @@ dir = 8 }, /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "redcorner" + icon_state = "redcorner"; + dir = 1 }, /area/security/processing) "awi" = ( @@ -12989,10 +12755,9 @@ pixel_x = 0; tag = "" }, -/obj/structure/snow, /turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "redcorner" + icon_state = "redcorner"; + dir = 4 }, /area/security/processing) "awj" = ( @@ -13009,7 +12774,6 @@ icon_state = "2-8"; tag = "" }, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/security/processing) "awk" = ( @@ -13023,9 +12787,9 @@ req_access_txt = "13" }, /obj/structure/cable{ - d2 = 2; icon_state = "0-2"; - pixel_y = 1 + pixel_y = 1; + d2 = 2 }, /obj/structure/lattice/catwalk, /turf/space, @@ -13036,8 +12800,8 @@ "awm" = ( /turf/space, /turf/simulated/shuttle/wall{ - dir = 2; - icon_state = "swall_f9" + icon_state = "swall_f9"; + dir = 2 }, /area/shuttle/pod_3) "awn" = ( @@ -13059,7 +12823,6 @@ level = 1 }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/security/processing) "awo" = ( @@ -13071,17 +12834,17 @@ /area/shuttle/syndicate_elite) "awp" = ( /obj/structure/shuttle/engine/propulsion{ - dir = 1; + tag = "icon-propulsion (NORTH)"; icon_state = "propulsion"; - tag = "icon-propulsion (NORTH)" + dir = 1 }, /turf/simulated/shuttle/plating, /area/shuttle/syndicate_elite) "awq" = ( /obj/structure/shuttle/engine/propulsion{ - dir = 1; + tag = "icon-propulsion_r (NORTH)"; icon_state = "propulsion_r"; - tag = "icon-propulsion_r (NORTH)" + dir = 1 }, /turf/simulated/shuttle/plating, /area/shuttle/syndicate_elite) @@ -13094,9 +12857,9 @@ /area/shuttle/syndicate_elite) "aws" = ( /obj/structure/shuttle/engine/propulsion{ - dir = 1; + tag = "icon-propulsion_l (NORTH)"; icon_state = "propulsion_l"; - tag = "icon-propulsion_l (NORTH)" + dir = 1 }, /turf/simulated/shuttle/plating, /area/shuttle/syndicate_elite) @@ -13109,17 +12872,17 @@ /area/shuttle/syndicate_sit) "awu" = ( /obj/structure/shuttle/engine/propulsion{ - dir = 1; + tag = "icon-propulsion (NORTH)"; icon_state = "propulsion"; - tag = "icon-propulsion (NORTH)" + dir = 1 }, /turf/simulated/shuttle/plating, /area/shuttle/syndicate_sit) "awv" = ( /obj/structure/shuttle/engine/propulsion{ - dir = 1; + tag = "icon-propulsion_r (NORTH)"; icon_state = "propulsion_r"; - tag = "icon-propulsion_r (NORTH)" + dir = 1 }, /turf/simulated/shuttle/plating, /area/shuttle/syndicate_sit) @@ -13132,9 +12895,9 @@ /area/shuttle/syndicate_sit) "awx" = ( /obj/structure/shuttle/engine/propulsion{ - dir = 1; + tag = "icon-propulsion_l (NORTH)"; icon_state = "propulsion_l"; - tag = "icon-propulsion_l (NORTH)" + dir = 1 }, /turf/simulated/shuttle/plating, /area/shuttle/syndicate_sit) @@ -13170,13 +12933,9 @@ d2 = 8; icon_state = "2-8" }, -/obj/item/decorations/sticky_decorations/flammable/tinsel/red{ - pixel_y = 19 - }, -/obj/structure/snow, /turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "redcorner" + icon_state = "redcorner"; + dir = 4 }, /area/security/processing) "awB" = ( @@ -13214,10 +12973,9 @@ pixel_x = 0; pixel_y = -22 }, -/obj/structure/snow, /turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "redcorner" + icon_state = "redcorner"; + dir = 4 }, /area/security/processing) "awD" = ( @@ -13235,6 +12993,11 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/fsmaint) +"awG" = ( +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/security/detectives_office) "awH" = ( /obj/structure/table, /obj/item/dice/d20, @@ -13324,8 +13087,8 @@ dir = 4 }, /obj/effect/mapping_helpers/airlock/unres{ - dir = 4; - icon_state = "airlock_unres_helper" + icon_state = "airlock_unres_helper"; + dir = 4 }, /turf/simulated/floor/plasteel{ dir = 8; @@ -13420,8 +13183,8 @@ pixel_y = 0 }, /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "red" + icon_state = "red"; + dir = 1 }, /area/security/permabrig) "axa" = ( @@ -13446,8 +13209,8 @@ pixel_y = -32 }, /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "red" + icon_state = "red"; + dir = 1 }, /area/security/permabrig) "axb" = ( @@ -13543,9 +13306,9 @@ "axj" = ( /obj/structure/window/reinforced, /obj/structure/shuttle/engine/heater{ - dir = 1; + tag = "icon-heater (NORTH)"; icon_state = "heater"; - tag = "icon-heater (NORTH)" + dir = 1 }, /turf/simulated/shuttle/plating, /area/shuttle/syndicate_elite) @@ -13558,9 +13321,9 @@ "axl" = ( /obj/structure/window/reinforced, /obj/structure/shuttle/engine/heater{ - dir = 1; + tag = "icon-heater (NORTH)"; icon_state = "heater"; - tag = "icon-heater (NORTH)" + dir = 1 }, /turf/simulated/shuttle/plating, /area/shuttle/syndicate_sit) @@ -13609,13 +13372,13 @@ pixel_y = 0 }, /obj/machinery/light{ - dir = 8; - icon_state = "tube1" + icon_state = "tube1"; + dir = 8 }, /turf/simulated/floor/plasteel{ - dir = 2; + tag = "icon-cult"; icon_state = "cult"; - tag = "icon-cult" + dir = 2 }, /area/lawoffice) "axq" = ( @@ -13633,14 +13396,10 @@ dir = 9; pixel_y = 0 }, -/obj/structure/snow{ - dir = 1; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel{ - dir = 2; + tag = "icon-cult"; icon_state = "cult"; - tag = "icon-cult" + dir = 2 }, /area/lawoffice) "axs" = ( @@ -13749,8 +13508,8 @@ pixel_y = 0 }, /turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "redcorner" + icon_state = "redcorner"; + dir = 4 }, /area/security/lobby) "axC" = ( @@ -13779,9 +13538,9 @@ /area/security/evidence) "axD" = ( /obj/structure/disposalpipe/junction{ - dir = 4; + tag = "icon-pipe-j1 (EAST)"; icon_state = "pipe-j1"; - tag = "icon-pipe-j1 (EAST)" + dir = 4 }, /turf/simulated/floor/plasteel, /area/security/lobby) @@ -13908,7 +13667,6 @@ /area/security/prison/cell_block/A) "axK" = ( /obj/structure/disposalpipe/segment, -/obj/structure/snow, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "darkredcorners" @@ -13940,10 +13698,6 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4 }, -/obj/structure/snow{ - dir = 4; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "darkredcorners" @@ -13957,7 +13711,6 @@ pixel_y = 0; tag = "" }, -/obj/structure/snow, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "redcorner" @@ -13970,7 +13723,6 @@ req_access = null; req_access_txt = "63" }, -/obj/structure/snow, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "redcorner" @@ -13983,8 +13735,6 @@ pixel_x = 0; pixel_y = -28 }, -/obj/item/decorations/sticky_decorations/flammable/snowman, -/obj/structure/snow, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "redcorner" @@ -13997,7 +13747,6 @@ icon_state = "1-2"; tag = "" }, -/obj/structure/snow, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "redcorner" @@ -14011,7 +13760,6 @@ pixel_y = 0; tag = "" }, -/obj/structure/snow, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "redcorner" @@ -14026,7 +13774,6 @@ icon_state = "1-2"; pixel_y = 0 }, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/security/processing) "axU" = ( @@ -14050,7 +13797,6 @@ pixel_y = 0; tag = "" }, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/security/processing) "axV" = ( @@ -14090,8 +13836,8 @@ /area/maintenance/fsmaint) "axZ" = ( /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "red" + icon_state = "red"; + dir = 1 }, /area/security/lobby) "aya" = ( @@ -14164,8 +13910,8 @@ "ayj" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "redcorner" + icon_state = "redcorner"; + dir = 1 }, /area/security/lobby) "ayk" = ( @@ -14212,8 +13958,8 @@ dir = 4 }, /turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "redcorner" + icon_state = "redcorner"; + dir = 4 }, /area/security/processing) "ayq" = ( @@ -14221,10 +13967,6 @@ /obj/item/taperecorder{ pixel_y = 0 }, -/obj/structure/snow{ - dir = 10; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel, /area/security/processing) "ayr" = ( @@ -14374,7 +14116,6 @@ }, /obj/item/pen/multi, /obj/item/reagent_containers/food/drinks/flask/detflask, -/obj/structure/snow, /turf/simulated/floor/plasteel{ icon_state = "grimy" }, @@ -14480,23 +14221,18 @@ pixel_y = 0 }, /obj/machinery/vending/coffee/free, -/obj/structure/snow, /turf/simulated/floor/plasteel{ - dir = 2; + tag = "icon-cult"; icon_state = "cult"; - tag = "icon-cult" + dir = 2 }, /area/lawoffice) "ayI" = ( -/obj/structure/chair/comfy/red, -/obj/structure/snow{ - dir = 10; - icon_state = "snow_corner" - }, +/obj/structure/chair/comfy/brown, /turf/simulated/floor/plasteel{ - dir = 2; + tag = "icon-cult"; icon_state = "cult"; - tag = "icon-cult" + dir = 2 }, /area/lawoffice) "ayJ" = ( @@ -14527,8 +14263,8 @@ pixel_y = 0 }, /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "redcorner" + icon_state = "redcorner"; + dir = 1 }, /area/security/lobby) "ayL" = ( @@ -14735,8 +14471,6 @@ }, /area/security/prison/cell_block/A) "ayV" = ( -/obj/item/decorations/sticky_decorations/flammable/snowman, -/obj/structure/snow, /turf/simulated/floor/carpet, /area/security/detectives_office) "ayW" = ( @@ -14745,10 +14479,6 @@ dir = 4; pixel_x = 24 }, -/obj/structure/snow{ - dir = 1; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "darkredcorners" @@ -14787,10 +14517,6 @@ /area/security/processing) "ayZ" = ( /obj/machinery/computer/shuttle/labor, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, /turf/simulated/floor/plasteel, /area/security/prisonershuttle) "aza" = ( @@ -14837,16 +14563,15 @@ icon_state = "1-2"; pixel_y = 0 }, -/obj/structure/snow, /turf/simulated/floor/plasteel{ icon_state = "dark" }, /area/security/interrogation) "aze" = ( /obj/machinery/light/spot{ - dir = 8; + tag = "icon-tube1 (WEST)"; icon_state = "tube1"; - tag = "icon-tube1 (WEST)" + dir = 8 }, /obj/structure/chair/comfy/shuttle{ dir = 4 @@ -14857,9 +14582,9 @@ /area/shuttle/syndicate_elite) "azf" = ( /obj/machinery/light/spot{ - dir = 8; + tag = "icon-tube1 (WEST)"; icon_state = "tube1"; - tag = "icon-tube1 (WEST)" + dir = 8 }, /obj/structure/window/reinforced, /obj/structure/chair/comfy/shuttle{ @@ -14975,8 +14700,8 @@ pixel_y = 0 }, /turf/simulated/floor/plasteel{ - dir = 5; - icon_state = "red" + icon_state = "red"; + dir = 5 }, /area/security/permabrig) "azu" = ( @@ -14988,8 +14713,8 @@ tag = "" }, /turf/simulated/floor/plasteel{ - dir = 9; - icon_state = "red" + icon_state = "red"; + dir = 9 }, /area/security/permabrig) "azv" = ( @@ -15051,8 +14776,8 @@ dir = 1 }, /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "redcorner" + icon_state = "redcorner"; + dir = 1 }, /area/security/prison/cell_block/A) "azy" = ( @@ -15104,11 +14829,10 @@ icon_state = "4-8"; tag = "" }, -/obj/structure/snow, /turf/simulated/floor/plasteel{ - dir = 2; + tag = "icon-cult"; icon_state = "cult"; - tag = "icon-cult" + dir = 2 }, /area/lawoffice) "azB" = ( @@ -15122,14 +14846,10 @@ d2 = 4; icon_state = "0-4" }, -/obj/structure/snow{ - dir = 5; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel{ - dir = 2; + tag = "icon-cult"; icon_state = "cult"; - tag = "icon-cult" + dir = 2 }, /area/lawoffice) "azC" = ( @@ -15138,14 +14858,10 @@ d2 = 8; icon_state = "2-8" }, -/obj/structure/snow{ - dir = 1; - icon_state = "snow_surround" - }, /turf/simulated/floor/plasteel{ - dir = 2; + tag = "icon-cult"; icon_state = "cult"; - tag = "icon-cult" + dir = 2 }, /area/lawoffice) "azD" = ( @@ -15161,8 +14877,8 @@ dir = 1 }, /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "redcorner" + icon_state = "redcorner"; + dir = 1 }, /area/security/lobby) "azF" = ( @@ -15179,8 +14895,8 @@ /area/magistrateoffice) "azG" = ( /obj/machinery/light{ - dir = 8; - icon_state = "tube1" + icon_state = "tube1"; + dir = 8 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/sign/poster/official/random{ @@ -15249,8 +14965,8 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "redcorner" + icon_state = "redcorner"; + dir = 1 }, /area/security/prison/cell_block/A) "azL" = ( @@ -15280,8 +14996,8 @@ network = list("SS13") }, /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "redcorner" + icon_state = "redcorner"; + dir = 1 }, /area/security/prison/cell_block/A) "azO" = ( @@ -15303,8 +15019,8 @@ /obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "redcorner" + icon_state = "redcorner"; + dir = 1 }, /area/security/lobby) "azQ" = ( @@ -15329,8 +15045,8 @@ "azR" = ( /obj/machinery/door/firedoor, /turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "redcorner" + icon_state = "redcorner"; + dir = 4 }, /area/security/lobby) "azS" = ( @@ -15419,10 +15135,6 @@ pixel_y = 0 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/snow{ - dir = 1; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -15462,8 +15174,8 @@ "aAe" = ( /turf/space, /turf/simulated/shuttle/wall{ - dir = 2; - icon_state = "swall_f5" + icon_state = "swall_f5"; + dir = 2 }, /area/shuttle/siberia) "aAf" = ( @@ -15490,8 +15202,8 @@ "aAj" = ( /turf/space, /turf/simulated/shuttle/wall{ - dir = 2; - icon_state = "swall_f9" + icon_state = "swall_f9"; + dir = 2 }, /area/shuttle/siberia) "aAk" = ( @@ -15530,9 +15242,9 @@ /area/security/permabrig) "aAo" = ( /obj/machinery/shower{ - dir = 4; + tag = "icon-shower (EAST)"; icon_state = "shower"; - tag = "icon-shower (EAST)" + dir = 4 }, /obj/structure/curtain/open/shower, /turf/simulated/floor/plasteel{ @@ -15549,6 +15261,11 @@ icon_state = "bcarpet05" }, /area/security/permabrig) +"aAr" = ( +/turf/simulated/floor/plasteel{ + icon_state = "bcarpet05" + }, +/area/security/permabrig) "aAs" = ( /obj/structure/cable{ d1 = 1; @@ -15593,8 +15310,8 @@ tag = "" }, /turf/simulated/floor/plasteel{ - dir = 10; - icon_state = "red" + icon_state = "red"; + dir = 10 }, /area/security/permabrig) "aAw" = ( @@ -15620,8 +15337,8 @@ /area/security/execution) "aAz" = ( /turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "redcorner" + icon_state = "redcorner"; + dir = 4 }, /area/security/lobby) "aAA" = ( @@ -15673,17 +15390,10 @@ /area/security/interrogation) "aAD" = ( /obj/structure/closet/lawcloset, -/obj/item/decorations/sticky_decorations/flammable/christmas_stocking{ - pixel_y = -16 - }, -/obj/structure/snow{ - dir = 1; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel{ - dir = 2; + tag = "icon-cult"; icon_state = "cult"; - tag = "icon-cult" + dir = 2 }, /area/lawoffice) "aAE" = ( @@ -15704,8 +15414,8 @@ pixel_y = -5 }, /obj/machinery/light{ - dir = 8; - icon_state = "tube1" + icon_state = "tube1"; + dir = 8 }, /obj/machinery/light_switch{ pixel_x = -25; @@ -15716,15 +15426,12 @@ pixel_y = -24 }, /turf/simulated/floor/plasteel{ - dir = 2; + tag = "icon-cult"; icon_state = "cult"; - tag = "icon-cult" + dir = 2 }, /area/lawoffice) "aAF" = ( -/obj/structure/snow{ - icon_state = "snow_surround" - }, /turf/simulated/floor/plasteel, /area/security/processing) "aAG" = ( @@ -15734,14 +15441,10 @@ /obj/effect/landmark/start{ name = "Internal Affairs Agent" }, -/obj/item/decorations/sticky_decorations/flammable/tinsel/red{ - pixel_y = 19 - }, -/obj/structure/snow, /turf/simulated/floor/plasteel{ - dir = 2; + tag = "icon-cult"; icon_state = "cult"; - tag = "icon-cult" + dir = 2 }, /area/lawoffice) "aAH" = ( @@ -15750,14 +15453,10 @@ d2 = 2; icon_state = "1-2" }, -/obj/structure/snow{ - dir = 4; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel{ - dir = 2; + tag = "icon-cult"; icon_state = "cult"; - tag = "icon-cult" + dir = 2 }, /area/lawoffice) "aAI" = ( @@ -15770,9 +15469,9 @@ }, /obj/item/paper_bin/nanotrasen, /turf/simulated/floor/plasteel{ - dir = 2; + tag = "icon-cult"; icon_state = "cult"; - tag = "icon-cult" + dir = 2 }, /area/lawoffice) "aAJ" = ( @@ -15784,9 +15483,9 @@ /area/maintenance/fsmaint) "aAK" = ( /obj/machinery/atmospherics/binary/valve/open{ - dir = 4; + tag = "icon-map_valve1 (EAST)"; icon_state = "map_valve1"; - tag = "icon-map_valve1 (EAST)" + dir = 4 }, /turf/simulated/floor/plating, /area/maintenance/fsmaint) @@ -15828,9 +15527,6 @@ pixel_x = 28; pixel_y = 5 }, -/obj/structure/snow{ - icon_state = "snow_corner" - }, /turf/simulated/floor/carpet, /area/magistrateoffice) "aAO" = ( @@ -16044,17 +15740,17 @@ /area/maintenance/abandonedbar) "aBd" = ( /obj/structure/chair/wood/wings{ - dir = 4; + tag = "icon-wooden_chair_wings (EAST)"; icon_state = "wooden_chair_wings"; - tag = "icon-wooden_chair_wings (EAST)" + dir = 4 }, /turf/simulated/floor/plating, /area/maintenance/abandonedbar) "aBe" = ( /obj/structure/chair/wood/wings{ - dir = 8; + tag = "icon-wooden_chair_wings (WEST)"; icon_state = "wooden_chair_wings"; - tag = "icon-wooden_chair_wings (WEST)" + dir = 8 }, /turf/simulated/floor/wood{ broken = 1; @@ -16063,9 +15759,9 @@ /area/maintenance/abandonedbar) "aBf" = ( /obj/structure/chair/wood/wings{ - dir = 4; + tag = "icon-wooden_chair_wings (EAST)"; icon_state = "wooden_chair_wings"; - tag = "icon-wooden_chair_wings (EAST)" + dir = 4 }, /turf/simulated/floor/wood, /area/maintenance/abandonedbar) @@ -16250,14 +15946,14 @@ pixel_y = 12 }, /obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + tag_airpump = "solar_tool_pump"; + tag_exterior_door = "solar_tool_outer"; frequency = 1379; id_tag = "solar_tool_airlock"; + tag_interior_door = "solar_tool_inner"; pixel_x = 25; req_access_txt = "13"; - tag_airpump = "solar_tool_pump"; - tag_chamber_sensor = "solar_tool_sensor"; - tag_exterior_door = "solar_tool_outer"; - tag_interior_door = "solar_tool_inner" + tag_chamber_sensor = "solar_tool_sensor" }, /obj/structure/cable{ d1 = 1; @@ -16294,9 +15990,9 @@ "aBH" = ( /obj/item/soap, /obj/machinery/light/small{ - dir = 4; + tag = "icon-bulb1 (EAST)"; icon_state = "bulb1"; - tag = "icon-bulb1 (EAST)" + dir = 4 }, /turf/simulated/floor/plasteel{ icon_state = "freezerfloor" @@ -16423,8 +16119,8 @@ "aBY" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "redcorner" + icon_state = "redcorner"; + dir = 1 }, /area/hallway/primary/fore) "aBZ" = ( @@ -16436,8 +16132,8 @@ pixel_x = 32 }, /turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "redcorner" + icon_state = "redcorner"; + dir = 4 }, /area/hallway/primary/fore) "aCb" = ( @@ -16464,9 +16160,9 @@ icon_state = "1-2" }, /turf/simulated/floor/plasteel{ - dir = 2; + tag = "icon-cult"; icon_state = "cult"; - tag = "icon-cult" + dir = 2 }, /area/lawoffice) "aCd" = ( @@ -16479,9 +16175,9 @@ pixel_y = 32 }, /turf/simulated/floor/plasteel{ - dir = 2; + tag = "icon-cult"; icon_state = "cult"; - tag = "icon-cult" + dir = 2 }, /area/magistrateoffice) "aCe" = ( @@ -16500,14 +16196,10 @@ pixel_x = -25; pixel_y = 0 }, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, /turf/simulated/floor/plasteel{ - dir = 2; + tag = "icon-cult"; icon_state = "cult"; - tag = "icon-cult" + dir = 2 }, /area/magistrateoffice) "aCf" = ( @@ -16520,9 +16212,9 @@ dir = 1 }, /turf/simulated/floor/plasteel{ - dir = 2; + tag = "icon-cult"; icon_state = "cult"; - tag = "icon-cult" + dir = 2 }, /area/magistrateoffice) "aCh" = ( @@ -16533,17 +16225,12 @@ /obj/structure/table/reinforced, /obj/item/book/manual/security_space_law, /obj/item/pen/multi/gold, -/obj/structure/snow, /turf/simulated/floor/carpet, /area/magistrateoffice) "aCj" = ( /obj/structure/table/reinforced, /obj/item/stamp/magistrate, /obj/item/paper_bin/nanotrasen, -/obj/structure/snow{ - dir = 6; - icon_state = "snow_corner" - }, /turf/simulated/floor/carpet, /area/magistrateoffice) "aCk" = ( @@ -16560,14 +16247,10 @@ /area/magistrateoffice) "aCl" = ( /obj/structure/closet/secure_closet/magistrate, -/obj/item/decorations/sticky_decorations/flammable/christmas_stocking{ - pixel_y = 17 - }, -/obj/structure/snow, /turf/simulated/floor/plasteel{ - dir = 2; + tag = "icon-cult"; icon_state = "cult"; - tag = "icon-cult" + dir = 2 }, /area/magistrateoffice) "aCm" = ( @@ -16584,7 +16267,6 @@ scrub_N2O = 1; scrub_Toxins = 1 }, -/obj/structure/snow, /turf/simulated/floor/carpet, /area/magistrateoffice) "aCn" = ( @@ -16594,7 +16276,6 @@ icon_state = "2-8" }, /obj/machinery/atmospherics/unary/vent_pump/on, -/obj/structure/snow, /turf/simulated/floor/carpet, /area/magistrateoffice) "aCo" = ( @@ -16642,8 +16323,8 @@ }, /obj/structure/cable/yellow, /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "redcorner" + icon_state = "redcorner"; + dir = 1 }, /area/security/prison/cell_block/A) "aCs" = ( @@ -16686,11 +16367,6 @@ pixel_y = 0; tag = "" }, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, -/obj/structure/snow, /turf/simulated/floor/plasteel{ dir = 6; icon_state = "green" @@ -16706,8 +16382,8 @@ scrub_Toxins = 1 }, /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "redcorner" + icon_state = "redcorner"; + dir = 1 }, /area/hallway/primary/fore) "aCw" = ( @@ -16724,8 +16400,8 @@ /area/security/prison/cell_block/A) "aCx" = ( /turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "redcorner" + icon_state = "redcorner"; + dir = 4 }, /area/hallway/primary/fore) "aCy" = ( @@ -16943,9 +16619,9 @@ /area/maintenance/abandonedbar) "aCT" = ( /obj/machinery/light/spot{ - dir = 8; + tag = "icon-tube1 (WEST)"; icon_state = "tube1"; - tag = "icon-tube1 (WEST)" + dir = 8 }, /turf/simulated/shuttle/floor{ icon_state = "floor4" @@ -16988,9 +16664,9 @@ /area/shuttle/syndicate_elite) "aCY" = ( /obj/machinery/light/spot{ - dir = 8; + tag = "icon-tube1 (WEST)"; icon_state = "tube1"; - tag = "icon-tube1 (WEST)" + dir = 8 }, /turf/simulated/shuttle/floor{ icon_state = "floor4" @@ -16999,12 +16675,12 @@ "aCZ" = ( /obj/structure/disposalpipe/segment, /obj/machinery/light{ - dir = 8; - icon_state = "tube1" + icon_state = "tube1"; + dir = 8 }, /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "redcorner" + icon_state = "redcorner"; + dir = 1 }, /area/hallway/primary/fore) "aDa" = ( @@ -17097,33 +16773,23 @@ /obj/structure/chair/office/dark{ dir = 1 }, -/obj/item/decorations/sticky_decorations/flammable/tinsel/red{ - pixel_y = 19 - }, -/obj/structure/snow{ - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel{ - dir = 2; + tag = "icon-cult"; icon_state = "cult"; - tag = "icon-cult" + dir = 2 }, /area/magistrateoffice) "aDi" = ( /turf/simulated/floor/plasteel{ - dir = 2; + tag = "icon-cult"; icon_state = "cult"; - tag = "icon-cult" + dir = 2 }, /area/magistrateoffice) "aDj" = ( /obj/structure/chair/comfy/black{ dir = 1 }, -/obj/item/decorations/sticky_decorations/flammable/tinsel/red{ - pixel_y = 19 - }, -/obj/structure/snow, /turf/simulated/floor/carpet, /area/magistrateoffice) "aDk" = ( @@ -17162,8 +16828,8 @@ icon_state = "0-4" }, /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "redcorner" + icon_state = "redcorner"; + dir = 1 }, /area/hallway/primary/fore) "aDn" = ( @@ -17251,12 +16917,8 @@ track = 0 }, /obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 + icon_state = "0-4"; + d2 = 4 }, /turf/simulated/floor/plating, /area/maintenance/auxsolarport) @@ -17343,9 +17005,9 @@ "aDE" = ( /obj/item/seeds/ambrosia, /obj/machinery/light/small{ - dir = 4; + tag = "icon-bulb1 (EAST)"; icon_state = "bulb1"; - tag = "icon-bulb1 (EAST)" + dir = 4 }, /obj/structure/toilet{ dir = 4 @@ -17454,11 +17116,10 @@ d2 = 4; icon_state = "2-4" }, -/obj/structure/snow, /turf/simulated/floor/plasteel{ - dir = 2; + tag = "icon-cult"; icon_state = "cult"; - tag = "icon-cult" + dir = 2 }, /area/magistrateoffice) "aDS" = ( @@ -17485,13 +17146,10 @@ icon_state = "4-8"; tag = "" }, -/obj/structure/snow{ - icon_state = "snow_surround" - }, /turf/simulated/floor/plasteel{ - dir = 2; + tag = "icon-cult"; icon_state = "cult"; - tag = "icon-cult" + dir = 2 }, /area/magistrateoffice) "aDV" = ( @@ -17550,7 +17208,6 @@ icon_state = "4-8"; tag = "" }, -/obj/structure/snow, /turf/simulated/floor/carpet, /area/magistrateoffice) "aEe" = ( @@ -17570,11 +17227,10 @@ /area/shuttle/syndicate_sit) "aEg" = ( /obj/structure/filingcabinet, -/obj/structure/snow, /turf/simulated/floor/plasteel{ - dir = 2; + tag = "icon-cult"; icon_state = "cult"; - tag = "icon-cult" + dir = 2 }, /area/magistrateoffice) "aEh" = ( @@ -17611,7 +17267,6 @@ scrub_N2O = 1; scrub_Toxins = 1 }, -/obj/structure/snow, /turf/simulated/floor/carpet, /area/security/detectives_office) "aEl" = ( @@ -17640,9 +17295,6 @@ pixel_x = 25; pixel_y = 25 }, -/obj/structure/snow{ - icon_state = "snow_corner" - }, /turf/simulated/floor/carpet, /area/security/detectives_office) "aEo" = ( @@ -17807,9 +17459,6 @@ /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, -/obj/structure/snow{ - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel{ icon_state = "grimy" }, @@ -18073,8 +17722,8 @@ /area/shuttle/syndicate_elite) "aFh" = ( /obj/machinery/light{ - dir = 8; - icon_state = "tube1" + icon_state = "tube1"; + dir = 8 }, /turf/simulated/floor/plasteel{ dir = 1; @@ -18089,8 +17738,8 @@ /area/shuttle/syndicate_sit) "aFj" = ( /obj/machinery/light{ - dir = 4; - icon_state = "tube1" + icon_state = "tube1"; + dir = 4 }, /turf/simulated/floor/plasteel{ dir = 1; @@ -18126,11 +17775,10 @@ pixel_y = -24 }, /obj/structure/cable, -/obj/structure/snow, /turf/simulated/floor/plasteel{ - dir = 2; + tag = "icon-cult"; icon_state = "cult"; - tag = "icon-cult" + dir = 2 }, /area/magistrateoffice) "aFn" = ( @@ -18148,11 +17796,10 @@ dir = 1; pixel_y = -24 }, -/obj/structure/snow, /turf/simulated/floor/plasteel{ - dir = 2; + tag = "icon-cult"; icon_state = "cult"; - tag = "icon-cult" + dir = 2 }, /area/magistrateoffice) "aFp" = ( @@ -18166,11 +17813,10 @@ dir = 5; level = 1 }, -/obj/structure/snow, /turf/simulated/floor/plasteel{ - dir = 2; + tag = "icon-cult"; icon_state = "cult"; - tag = "icon-cult" + dir = 2 }, /area/magistrateoffice) "aFq" = ( @@ -18182,11 +17828,10 @@ pixel_x = -3; pixel_y = 7 }, -/obj/structure/snow, /turf/simulated/floor/plasteel{ - dir = 2; + tag = "icon-cult"; icon_state = "cult"; - tag = "icon-cult" + dir = 2 }, /area/magistrateoffice) "aFr" = ( @@ -18203,22 +17848,20 @@ d2 = 2; icon_state = "1-2" }, -/obj/structure/snow, /turf/simulated/floor/plasteel{ - dir = 2; + tag = "icon-cult"; icon_state = "cult"; - tag = "icon-cult" + dir = 2 }, /area/magistrateoffice) "aFs" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/structure/snow, /turf/simulated/floor/plasteel{ - dir = 2; + tag = "icon-cult"; icon_state = "cult"; - tag = "icon-cult" + dir = 2 }, /area/magistrateoffice) "aFt" = ( @@ -18227,17 +17870,16 @@ dir = 8 }, /obj/machinery/light{ - dir = 4; - icon_state = "tube1" + icon_state = "tube1"; + dir = 4 }, /obj/machinery/newscaster{ pixel_y = -32 }, -/obj/structure/snow, /turf/simulated/floor/plasteel{ - dir = 2; + tag = "icon-cult"; icon_state = "cult"; - tag = "icon-cult" + dir = 2 }, /area/magistrateoffice) "aFu" = ( @@ -18294,8 +17936,8 @@ /area/hallway/primary/fore) "aFy" = ( /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "redcorner" + icon_state = "redcorner"; + dir = 1 }, /area/hallway/primary/fore) "aFz" = ( @@ -18327,7 +17969,6 @@ /obj/structure/table/wood, /obj/item/book/manual/security_space_law, /obj/item/clothing/glasses/sunglasses, -/obj/structure/snow, /turf/simulated/floor/carpet, /area/security/detectives_office) "aFC" = ( @@ -18341,10 +17982,6 @@ d2 = 8; icon_state = "2-8" }, -/obj/structure/snow{ - dir = 6; - icon_state = "snow_corner" - }, /turf/simulated/floor/carpet, /area/security/detectives_office) "aFD" = ( @@ -18359,10 +17996,6 @@ /obj/item/radio/intercom/department/security{ pixel_x = 28 }, -/obj/structure/snow{ - dir = 8; - icon_state = "snow_corner" - }, /turf/simulated/floor/carpet, /area/security/detectives_office) "aFE" = ( @@ -18447,8 +18080,8 @@ dir = 1 }, /obj/structure/cable{ - d2 = 4; - icon_state = "0-4" + icon_state = "0-4"; + d2 = 4 }, /obj/machinery/power/apc{ dir = 8; @@ -18612,8 +18245,8 @@ "aGl" = ( /obj/structure/chair/stool, /turf/simulated/floor/wood{ - icon_state = "wood-broken"; - tag = "icon-wood-broken" + tag = "icon-wood-broken"; + icon_state = "wood-broken" }, /area/maintenance/fpmaint) "aGm" = ( @@ -18631,8 +18264,8 @@ "aGp" = ( /obj/machinery/vending/coffee/free, /turf/simulated/floor/wood{ - icon_state = "wood-broken6"; - tag = "icon-wood-broken6" + tag = "icon-wood-broken6"; + icon_state = "wood-broken6" }, /area/maintenance/fpmaint) "aGq" = ( @@ -18654,8 +18287,8 @@ /obj/structure/table/reinforced, /obj/item/reagent_containers/glass/beaker/waterbottle, /turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "red" + icon_state = "red"; + dir = 4 }, /area/crew_quarters/courtroom) "aGs" = ( @@ -18664,10 +18297,18 @@ pixel_x = 0 }, /turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "red" + icon_state = "red"; + dir = 8 }, /area/crew_quarters/courtroom) +"aGt" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/courtroom) "aGu" = ( /obj/item/twohanded/required/kirbyplants, /turf/simulated/floor/wood, @@ -18694,10 +18335,6 @@ icon_state = "4-8"; tag = "" }, -/obj/item/decorations/sticky_decorations/flammable/tinsel/red{ - pixel_y = 19 - }, -/obj/structure/snow, /turf/simulated/floor/carpet, /area/security/detectives_office) "aGz" = ( @@ -18717,7 +18354,6 @@ d2 = 4; icon_state = "2-4" }, -/obj/structure/snow, /turf/simulated/floor/carpet, /area/security/detectives_office) "aGA" = ( @@ -18743,13 +18379,6 @@ icon_state = "4-8"; tag = "" }, -/obj/item/decorations/sticky_decorations/flammable/tinsel/red{ - pixel_y = 19 - }, -/obj/structure/snow{ - dir = 10; - icon_state = "snow_corner" - }, /turf/simulated/floor/carpet, /area/security/detectives_office) "aGC" = ( @@ -18781,20 +18410,12 @@ pixel_x = 0; pixel_y = 32 }, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, /turf/simulated/floor/plasteel{ icon_state = "grimy" }, /area/security/detectives_office) "aGF" = ( /obj/machinery/computer/secure_data, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, /turf/simulated/floor/plasteel{ icon_state = "grimy" }, @@ -18817,9 +18438,9 @@ /area/maintenance/fsmaint) "aGH" = ( /obj/machinery/light/small{ - dir = 4; + tag = "icon-bulb1 (EAST)"; icon_state = "bulb1"; - tag = "icon-bulb1 (EAST)" + dir = 4 }, /turf/simulated/floor/plating, /area/maintenance/fsmaint) @@ -18896,6 +18517,9 @@ /turf/simulated/floor/carpet/arcade, /area/crew_quarters/arcade) "aGP" = ( +/obj/structure/chair/comfy/black{ + dir = 4 + }, /obj/machinery/camera{ c_tag = "Arcade"; dir = 2; @@ -18905,9 +18529,6 @@ dir = 2; pixel_y = 24 }, -/obj/structure/chair/comfy/red{ - dir = 4 - }, /turf/simulated/floor/carpet/arcade, /area/crew_quarters/arcade) "aGQ" = ( @@ -18917,7 +18538,7 @@ /turf/simulated/floor/carpet/arcade, /area/crew_quarters/arcade) "aGR" = ( -/obj/structure/chair/comfy/green{ +/obj/structure/chair/comfy/black{ dir = 8 }, /turf/simulated/floor/carpet/arcade, @@ -18960,8 +18581,8 @@ track = 0 }, /obj/structure/cable{ - d2 = 4; - icon_state = "0-4" + icon_state = "0-4"; + d2 = 4 }, /obj/structure/sign/securearea{ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; @@ -18971,10 +18592,6 @@ pixel_x = 0; pixel_y = 32 }, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, /turf/simulated/floor/plating, /area/maintenance/auxsolarstarboard) "aGV" = ( @@ -19036,9 +18653,9 @@ "aHd" = ( /obj/item/toy/crayon/white, /obj/machinery/light/small{ - dir = 8; + tag = "icon-bulb1 (WEST)"; icon_state = "bulb1"; - tag = "icon-bulb1 (WEST)" + dir = 8 }, /turf/simulated/floor/plating, /area/maintenance/fsmaint2) @@ -19099,8 +18716,8 @@ "aHm" = ( /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/wood{ - icon_state = "wood-broken7"; - tag = "icon-wood-broken7" + tag = "icon-wood-broken7"; + icon_state = "wood-broken7" }, /area/maintenance/fpmaint2) "aHn" = ( @@ -19115,7 +18732,6 @@ scrub_N2O = 1; scrub_Toxins = 1 }, -/obj/structure/snow, /turf/simulated/floor/carpet, /area/crew_quarters/courtroom) "aHp" = ( @@ -19169,8 +18785,8 @@ req_access_txt = "2" }, /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "red" + icon_state = "red"; + dir = 1 }, /area/crew_quarters/courtroom) "aHx" = ( @@ -19183,8 +18799,8 @@ pixel_y = 0 }, /turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "redcorner" + icon_state = "redcorner"; + dir = 4 }, /area/crew_quarters/courtroom) "aHy" = ( @@ -19193,13 +18809,9 @@ pixel_x = 0 }, /obj/structure/window/reinforced, -/obj/structure/snow{ - dir = 4; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "redcorner" + icon_state = "redcorner"; + dir = 1 }, /area/crew_quarters/courtroom) "aHz" = ( @@ -19281,8 +18893,8 @@ "aHH" = ( /obj/item/twohanded/required/kirbyplants, /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "redcorner" + icon_state = "redcorner"; + dir = 1 }, /area/hallway/primary/fore) "aHI" = ( @@ -19371,7 +18983,6 @@ d2 = 2; icon_state = "1-2" }, -/obj/structure/snow, /turf/simulated/floor/carpet, /area/security/detectives_office) "aHX" = ( @@ -19379,10 +18990,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/structure/snow{ - dir = 10; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel{ icon_state = "grimy" }, @@ -19547,6 +19154,7 @@ /turf/simulated/wall, /area/lawoffice) "aIp" = ( +/obj/structure/chair/comfy/black, /obj/effect/landmark/start{ name = "Civilian" }, @@ -19558,7 +19166,6 @@ icon_state = "alarm0"; pixel_x = -22 }, -/obj/structure/chair/comfy/green, /turf/simulated/floor/carpet/arcade, /area/crew_quarters/arcade) "aIq" = ( @@ -19635,8 +19242,8 @@ /area/maintenance/fpmaint2) "aIy" = ( /turf/simulated/floor/wood{ - icon_state = "wood-broken7"; - tag = "icon-wood-broken7" + tag = "icon-wood-broken7"; + icon_state = "wood-broken7" }, /area/maintenance/fpmaint2) "aIz" = ( @@ -19665,8 +19272,8 @@ /area/maintenance/auxsolarstarboard) "aIB" = ( /obj/structure/cable{ - d2 = 4; - icon_state = "0-4" + icon_state = "0-4"; + d2 = 4 }, /obj/machinery/power/apc{ dir = 8; @@ -19717,8 +19324,8 @@ /area/maintenance/fpmaint2) "aIH" = ( /turf/simulated/floor/wood{ - icon_state = "wood-broken3"; - tag = "icon-wood-broken3" + tag = "icon-wood-broken3"; + icon_state = "wood-broken3" }, /area/maintenance/fpmaint2) "aII" = ( @@ -19737,8 +19344,8 @@ /area/maintenance/fpmaint2) "aIL" = ( /turf/simulated/floor/wood{ - icon_state = "wood-broken6"; - tag = "icon-wood-broken6" + tag = "icon-wood-broken6"; + icon_state = "wood-broken6" }, /area/maintenance/fpmaint2) "aIM" = ( @@ -19748,9 +19355,9 @@ req_access_txt = "74" }, /turf/simulated/floor/plasteel{ - dir = 2; + tag = "icon-cult"; icon_state = "cult"; - tag = "icon-cult" + dir = 2 }, /area/magistrateoffice) "aIN" = ( @@ -19769,8 +19376,8 @@ pixel_x = 24 }, /obj/machinery/light{ - dir = 4; - icon_state = "tube1" + icon_state = "tube1"; + dir = 4 }, /turf/simulated/floor/plasteel{ icon_state = "bluecorner" @@ -19778,9 +19385,6 @@ /area/hallway/primary/fore) "aIP" = ( /obj/structure/closet/secure_closet/clown, -/obj/item/decorations/sticky_decorations/flammable/christmas_stocking{ - pixel_x = -17 - }, /turf/simulated/floor/wood, /area/clownoffice) "aIQ" = ( @@ -19831,10 +19435,6 @@ /obj/structure/window/reinforced{ dir = 8 }, -/obj/structure/snow{ - dir = 10; - icon_state = "snow_corner" - }, /turf/simulated/floor/carpet, /area/crew_quarters/courtroom) "aIY" = ( @@ -19850,7 +19450,6 @@ d2 = 2; icon_state = "1-2" }, -/obj/structure/snow, /turf/simulated/floor/carpet, /area/crew_quarters/courtroom) "aJa" = ( @@ -19864,8 +19463,8 @@ dir = 8 }, /turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "blue" + icon_state = "blue"; + dir = 4 }, /area/crew_quarters/courtroom) "aJc" = ( @@ -19873,8 +19472,8 @@ dir = 8 }, /turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "blue" + icon_state = "blue"; + dir = 8 }, /area/crew_quarters/courtroom) "aJd" = ( @@ -19889,8 +19488,8 @@ /obj/structure/table, /obj/item/book/manual/security_space_law, /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "redcorner" + icon_state = "redcorner"; + dir = 1 }, /area/hallway/primary/fore) "aJf" = ( @@ -19912,14 +19511,14 @@ pixel_y = 12 }, /obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + tag_airpump = "arrivals_pump"; + tag_exterior_door = "arrivals_outer"; frequency = 1379; id_tag = "arrivals_airlock"; + tag_interior_door = "arrivals_inner"; pixel_x = 25; req_access_txt = "13"; - tag_airpump = "arrivals_pump"; - tag_chamber_sensor = "arrivals_sensor"; - tag_exterior_door = "arrivals_outer"; - tag_interior_door = "arrivals_inner" + tag_chamber_sensor = "arrivals_sensor" }, /turf/simulated/floor/plating, /area/maintenance/fpmaint2) @@ -19941,7 +19540,6 @@ /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, -/obj/structure/snow, /turf/simulated/floor/carpet, /area/crew_quarters/courtroom) "aJj" = ( @@ -19971,7 +19569,6 @@ icon_state = "1-8"; tag = "" }, -/obj/structure/snow, /turf/simulated/floor/plasteel{ icon_state = "grimy" }, @@ -19981,7 +19578,6 @@ /obj/machinery/light_switch{ pixel_y = -25 }, -/obj/structure/snow, /turf/simulated/floor/plasteel{ icon_state = "grimy" }, @@ -19994,18 +19590,17 @@ /obj/item/camera_film, /obj/item/camera_film, /obj/item/camera{ - desc = "A one use - polaroid camera. 30 photos left."; name = "detectives camera"; - pictures_left = 30; + desc = "A one use - polaroid camera. 30 photos left."; pixel_x = 0; - pixel_y = 0 + pixel_y = 0; + pictures_left = 30 }, /obj/machinery/requests_console{ name = "Detective Requests Console"; pixel_x = 0; pixel_y = -30 }, -/obj/structure/snow, /turf/simulated/floor/plasteel{ icon_state = "grimy" }, @@ -20016,11 +19611,6 @@ icon_state = "alarm0"; pixel_y = -22 }, -/obj/structure/snow, -/obj/item/gift, -/obj/item/toy/figure/detective, -/obj/item/gun/projectile/revolver/capgun, -/obj/item/lighter/zippo/engraved, /turf/simulated/floor/plasteel{ icon_state = "grimy" }, @@ -20251,22 +19841,22 @@ "aJP" = ( /turf/space, /turf/simulated/shuttle/wall{ - dir = 2; - icon_state = "swall_f6" + icon_state = "swall_f6"; + dir = 2 }, /area/shuttle/pod_1) "aJQ" = ( /turf/space, /turf/simulated/shuttle/wall{ - dir = 2; - icon_state = "swall_f10" + icon_state = "swall_f10"; + dir = 2 }, /area/shuttle/pod_1) "aJR" = ( /turf/space, /turf/simulated/shuttle/wall{ - dir = 2; - icon_state = "swall_f6" + icon_state = "swall_f6"; + dir = 2 }, /area/shuttle/pod_2) "aJS" = ( @@ -20277,8 +19867,8 @@ "aJT" = ( /turf/space, /turf/simulated/shuttle/wall{ - dir = 2; - icon_state = "swall_f10" + icon_state = "swall_f10"; + dir = 2 }, /area/shuttle/pod_2) "aJU" = ( @@ -20300,8 +19890,8 @@ /area/shuttle/pod_2) "aJW" = ( /turf/simulated/floor/wood{ - icon_state = "wood-broken3"; - tag = "icon-wood-broken3" + tag = "icon-wood-broken3"; + icon_state = "wood-broken3" }, /area/maintenance/fpmaint) "aJX" = ( @@ -20344,8 +19934,8 @@ pixel_y = 24 }, /obj/structure/cable{ - d2 = 4; - icon_state = "0-4" + icon_state = "0-4"; + d2 = 4 }, /turf/simulated/floor/plating, /area/maintenance/fpmaint2) @@ -20399,21 +19989,15 @@ pixel_x = -32; pixel_y = 0 }, -/obj/structure/snow{ - dir = 6; - icon_state = "snow_corner" - }, /turf/simulated/floor/carpet, /area/crew_quarters/courtroom) "aKk" = ( /obj/structure/table/wood, /obj/item/folder/blue, /obj/item/megaphone, -/obj/structure/snow, /turf/simulated/floor/carpet, /area/crew_quarters/courtroom) "aKl" = ( -/obj/structure/snow, /turf/simulated/floor/carpet, /area/crew_quarters/courtroom) "aKm" = ( @@ -20435,23 +20019,19 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/structure/snow{ - dir = 10; - icon_state = "snow_corner" - }, /turf/simulated/floor/carpet, /area/crew_quarters/courtroom) "aKr" = ( /turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "blue" + icon_state = "blue"; + dir = 4 }, /area/crew_quarters/courtroom) "aKs" = ( /turf/simulated/floor/plasteel{ - dir = 2; + tag = "icon-cult"; icon_state = "cult"; - tag = "icon-cult" + dir = 2 }, /area/lawoffice) "aKt" = ( @@ -20488,14 +20068,10 @@ /area/crew_quarters/courtroom) "aKw" = ( /obj/structure/filingcabinet/chestdrawer, -/obj/item/decorations/sticky_decorations/flammable/tinsel/red{ - pixel_y = 19 - }, -/obj/structure/snow, /turf/simulated/floor/plasteel{ - dir = 2; + tag = "icon-cult"; icon_state = "cult"; - tag = "icon-cult" + dir = 2 }, /area/lawoffice) "aKx" = ( @@ -20512,11 +20088,10 @@ d2 = 2; icon_state = "1-2" }, -/obj/structure/snow, /turf/simulated/floor/plasteel{ - dir = 2; + tag = "icon-cult"; icon_state = "cult"; - tag = "icon-cult" + dir = 2 }, /area/magistrateoffice) "aKy" = ( @@ -20554,9 +20129,6 @@ /obj/structure/closet/secure_closet/detective, /obj/item/restraints/handcuffs, /obj/item/flash, -/obj/item/decorations/sticky_decorations/flammable/christmas_stocking{ - pixel_y = -16 - }, /turf/simulated/floor/plasteel{ icon_state = "grimy" }, @@ -20606,8 +20178,8 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/light{ - dir = 4; - icon_state = "tube1" + icon_state = "tube1"; + dir = 4 }, /obj/machinery/hologram/holopad, /obj/structure/cable{ @@ -20634,7 +20206,7 @@ /turf/simulated/floor/plating, /area/maintenance/fsmaint) "aKI" = ( -/obj/structure/chair/comfy/red{ +/obj/structure/chair/comfy/black{ dir = 1 }, /turf/simulated/floor/carpet/arcade, @@ -20733,8 +20305,8 @@ pixel_y = 24 }, /obj/structure/cable{ - d2 = 4; - icon_state = "0-4" + icon_state = "0-4"; + d2 = 4 }, /turf/simulated/floor/plating, /area/maintenance/fsmaint2) @@ -20774,8 +20346,8 @@ /area/maintenance/fsmaint2) "aLa" = ( /turf/simulated/shuttle/wall{ - dir = 2; - icon_state = "swall3" + icon_state = "swall3"; + dir = 2 }, /area/shuttle/pod_1) "aLb" = ( @@ -20804,8 +20376,8 @@ /area/hallway/secondary/entry) "aLe" = ( /turf/simulated/shuttle/wall{ - dir = 2; - icon_state = "swall3" + icon_state = "swall3"; + dir = 2 }, /area/shuttle/pod_2) "aLf" = ( @@ -20840,7 +20412,6 @@ req_access = null; req_access_txt = "4" }, -/obj/structure/snow, /turf/simulated/floor/plasteel{ icon_state = "grimy" }, @@ -20918,8 +20489,8 @@ }, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/wood{ - icon_state = "wood-broken3"; - tag = "icon-wood-broken3" + tag = "icon-wood-broken3"; + icon_state = "wood-broken3" }, /area/maintenance/fpmaint2) "aLo" = ( @@ -21076,10 +20647,6 @@ /area/maintenance/fpmaint) "aLE" = ( /obj/machinery/hologram/holopad, -/obj/structure/snow{ - dir = 6; - icon_state = "snow_corner" - }, /turf/simulated/floor/carpet, /area/magistrateoffice) "aLF" = ( @@ -21122,8 +20689,8 @@ /area/maintenance/fpmaint) "aLL" = ( /turf/simulated/floor/wood{ - icon_state = "wood-broken7"; - tag = "icon-wood-broken7" + tag = "icon-wood-broken7"; + icon_state = "wood-broken7" }, /area/maintenance/fpmaint) "aLM" = ( @@ -21137,22 +20704,20 @@ pixel_y = 0 }, /obj/machinery/light{ - dir = 8; - icon_state = "tube1" + icon_state = "tube1"; + dir = 8 }, /obj/machinery/camera{ c_tag = "Courtroom "; dir = 4; network = list("SS13") }, -/obj/structure/snow, /turf/simulated/floor/carpet, /area/crew_quarters/courtroom) "aLO" = ( /obj/structure/table/wood, /obj/item/gavelblock, /obj/item/gavelhammer, -/obj/structure/snow, /turf/simulated/floor/carpet, /area/crew_quarters/courtroom) "aLP" = ( @@ -21169,20 +20734,17 @@ pixel_y = 0; req_one_access_txt = "74;3" }, -/obj/structure/snow, /turf/simulated/floor/carpet, /area/crew_quarters/courtroom) "aLR" = ( /obj/machinery/hologram/holopad, -/obj/structure/snow, /turf/simulated/floor/carpet, /area/crew_quarters/courtroom) "aLS" = ( /obj/machinery/light{ - dir = 4; - icon_state = "tube1" + icon_state = "tube1"; + dir = 4 }, -/obj/structure/snow, /turf/simulated/floor/carpet, /area/crew_quarters/courtroom) "aLT" = ( @@ -21293,8 +20855,8 @@ dir = 4 }, /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "redcorner" + icon_state = "redcorner"; + dir = 1 }, /area/hallway/primary/fore) "aMa" = ( @@ -21653,9 +21215,9 @@ /obj/item/pen, /obj/item/paper_bin/nanotrasen, /turf/simulated/floor/plasteel{ - dir = 2; + tag = "icon-cult"; icon_state = "cult"; - tag = "icon-cult" + dir = 2 }, /area/lawoffice) "aMP" = ( @@ -21728,10 +21290,6 @@ pixel_x = -32; pixel_y = 0 }, -/obj/structure/snow{ - dir = 5; - icon_state = "snow_corner" - }, /turf/simulated/floor/carpet, /area/crew_quarters/courtroom) "aNb" = ( @@ -21742,7 +21300,6 @@ /obj/item/reagent_containers/glass/beaker/waterbottle{ pixel_x = 5 }, -/obj/structure/snow, /turf/simulated/floor/carpet, /area/crew_quarters/courtroom) "aNc" = ( @@ -21767,7 +21324,6 @@ d2 = 2; icon_state = "1-2" }, -/obj/structure/snow, /turf/simulated/floor/carpet, /area/crew_quarters/courtroom) "aNf" = ( @@ -21839,7 +21395,6 @@ icon_state = "4-8"; tag = "" }, -/obj/structure/snow, /turf/simulated/floor/carpet, /area/crew_quarters/courtroom) "aNm" = ( @@ -21865,20 +21420,16 @@ "aNp" = ( /obj/machinery/mech_bay_recharge_port, /obj/structure/cable{ - d2 = 2; - icon_state = "0-2" + icon_state = "0-2"; + d2 = 2 }, /turf/simulated/floor/plating, /area/maintenance/electrical) "aNq" = ( /obj/machinery/computer/mech_bay_power_console, /obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 + icon_state = "0-2"; + d2 = 2 }, /turf/simulated/floor/bluegrid, /area/maintenance/electrical) @@ -22076,15 +21627,15 @@ scrub_Toxins = 1 }, /turf/simulated/floor/plasteel{ - dir = 2; - icon_state = "neutralcorner" + icon_state = "neutralcorner"; + dir = 2 }, /area/crew_quarters/dorms) "aNM" = ( /obj/structure/disposalpipe/junction{ - dir = 4; + tag = "icon-pipe-j2 (EAST)"; icon_state = "pipe-j2"; - tag = "icon-pipe-j2 (EAST)" + dir = 4 }, /turf/simulated/floor/plasteel{ icon_state = "bluecorner" @@ -22119,8 +21670,8 @@ "aNQ" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/plasteel{ - dir = 2; - icon_state = "neutralcorner" + icon_state = "neutralcorner"; + dir = 2 }, /area/crew_quarters/dorms) "aNR" = ( @@ -22187,8 +21738,8 @@ scrub_Toxins = 1 }, /turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "caution" + icon_state = "caution"; + dir = 4 }, /area/crew_quarters/dorms) "aNW" = ( @@ -22217,9 +21768,6 @@ /obj/structure/disposalpipe/trunk{ dir = 4 }, -/obj/item/decorations/sticky_decorations/flammable/tinsel/green{ - pixel_y = 19 - }, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "barber" @@ -22414,6 +21962,15 @@ }, /turf/simulated/floor/plating, /area/maintenance/fpmaint) +"aOu" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/courtroom) "aOv" = ( /obj/machinery/door/airlock/maintenance{ name = "Courtroom Maintenance"; @@ -22442,10 +21999,6 @@ /obj/structure/window/reinforced{ dir = 8 }, -/obj/structure/snow{ - dir = 9; - icon_state = "snow_corner" - }, /turf/simulated/floor/carpet, /area/crew_quarters/courtroom) "aOx" = ( @@ -22460,7 +22013,6 @@ icon_state = "1-8"; tag = "" }, -/obj/structure/snow, /turf/simulated/floor/carpet, /area/crew_quarters/courtroom) "aOy" = ( @@ -22469,10 +22021,6 @@ /obj/structure/window/reinforced{ dir = 1 }, -/obj/structure/snow{ - dir = 1; - icon_state = "snow_corner" - }, /turf/simulated/floor/carpet, /area/crew_quarters/courtroom) "aOz" = ( @@ -22597,10 +22145,6 @@ name = "Courtroom Privacy Shutters"; opacity = 0 }, -/obj/structure/snow{ - dir = 8; - icon_state = "snow_corner" - }, /turf/simulated/floor/wood, /area/crew_quarters/courtroom) "aOP" = ( @@ -22643,10 +22187,6 @@ /area/maintenance/fpmaint2) "aOV" = ( /obj/structure/computerframe, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, /turf/simulated/floor/plating, /area/maintenance/fpmaint2) "aOW" = ( @@ -22791,8 +22331,8 @@ "aPk" = ( /obj/structure/chair/stool, /turf/simulated/floor/plasteel{ - dir = 2; - icon_state = "neutralcorner" + icon_state = "neutralcorner"; + dir = 2 }, /area/crew_quarters/dorms) "aPm" = ( @@ -22801,8 +22341,8 @@ "aPn" = ( /obj/structure/reagent_dispensers/water_cooler, /turf/simulated/floor/plasteel{ - dir = 2; - icon_state = "neutralcorner" + icon_state = "neutralcorner"; + dir = 2 }, /area/crew_quarters/dorms) "aPs" = ( @@ -22852,10 +22392,6 @@ d2 = 8; icon_state = "2-8" }, -/obj/structure/snow{ - dir = 8; - icon_state = "snow_corner" - }, /turf/simulated/floor/wood, /area/crew_quarters/courtroom) "aPz" = ( @@ -22865,7 +22401,6 @@ icon_state = "1-4"; tag = "90Curve" }, -/obj/structure/snow, /turf/simulated/floor/wood, /area/crew_quarters/courtroom) "aPA" = ( @@ -22892,8 +22427,8 @@ dir = 8 }, /turf/simulated/floor/plasteel{ - dir = 10; - icon_state = "blue" + icon_state = "blue"; + dir = 10 }, /area/crew_quarters/courtroom) "aPD" = ( @@ -23059,9 +22594,9 @@ /area/hallway/secondary/entry) "aPS" = ( /obj/structure/cable{ - d2 = 2; icon_state = "0-2"; - pixel_y = 1 + pixel_y = 1; + d2 = 2 }, /obj/machinery/power/apc{ dir = 1; @@ -23167,8 +22702,8 @@ pixel_y = 24 }, /obj/structure/cable{ - d2 = 2; - icon_state = "0-2" + icon_state = "0-2"; + d2 = 2 }, /turf/simulated/floor/plasteel{ icon_state = "whitegreenfull"; @@ -23204,8 +22739,8 @@ dir = 4 }, /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "neutralcorner" + icon_state = "neutralcorner"; + dir = 1 }, /area/crew_quarters/dorms) "aQl" = ( @@ -23223,8 +22758,8 @@ icon_state = "pipe-c" }, /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "neutralcorner" + icon_state = "neutralcorner"; + dir = 1 }, /area/crew_quarters/dorms) "aQn" = ( @@ -23238,8 +22773,8 @@ icon_state = "pipe-y" }, /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "neutralcorner" + icon_state = "neutralcorner"; + dir = 1 }, /area/crew_quarters/dorms) "aQo" = ( @@ -23252,15 +22787,15 @@ pixel_y = 32 }, /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "neutralcorner" + icon_state = "neutralcorner"; + dir = 1 }, /area/crew_quarters/dorms) "aQp" = ( /obj/structure/chair, /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "neutralcorner" + icon_state = "neutralcorner"; + dir = 1 }, /area/crew_quarters/dorms) "aQq" = ( @@ -23268,8 +22803,8 @@ pixel_y = 30 }, /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "neutralcorner" + icon_state = "neutralcorner"; + dir = 1 }, /area/crew_quarters/dorms) "aQr" = ( @@ -23286,8 +22821,8 @@ /obj/structure/table, /obj/item/stack/tape_roll, /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "neutralcorner" + icon_state = "neutralcorner"; + dir = 1 }, /area/crew_quarters/dorms) "aQs" = ( @@ -23313,8 +22848,8 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "neutralcorner" + icon_state = "neutralcorner"; + dir = 1 }, /area/crew_quarters/dorms) "aQu" = ( @@ -23326,15 +22861,15 @@ level = 1 }, /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "neutralcorner" + icon_state = "neutralcorner"; + dir = 1 }, /area/crew_quarters/dorms) "aQv" = ( /turf/simulated/floor/plasteel{ - dir = 1; + tag = "icon-siding1 (NORTH)"; icon_state = "bluered"; - tag = "icon-siding1 (NORTH)" + dir = 1 }, /area/crew_quarters/dorms) "aQw" = ( @@ -23354,8 +22889,8 @@ pixel_y = 30 }, /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "neutralcorner" + icon_state = "neutralcorner"; + dir = 1 }, /area/crew_quarters/dorms) "aQy" = ( @@ -23366,17 +22901,17 @@ dir = 10 }, /turf/simulated/floor/plasteel{ - dir = 5; - icon_state = "arrival" + icon_state = "arrival"; + dir = 5 }, /area/hallway/secondary/entry) "aQz" = ( /obj/structure/table, /obj/item/storage/firstaid/regular, /turf/simulated/floor/plasteel{ - dir = 1; + tag = "icon-siding1 (NORTH)"; icon_state = "bluered"; - tag = "icon-siding1 (NORTH)" + dir = 1 }, /area/crew_quarters/dorms) "aQA" = ( @@ -23386,9 +22921,9 @@ in_use = 1 }, /turf/simulated/floor/plasteel{ - dir = 1; + tag = "icon-siding1 (NORTH)"; icon_state = "bluered"; - tag = "icon-siding1 (NORTH)" + dir = 1 }, /area/crew_quarters/dorms) "aQB" = ( @@ -23401,9 +22936,9 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel{ - dir = 1; + tag = "icon-siding1 (NORTH)"; icon_state = "bluered"; - tag = "icon-siding1 (NORTH)" + dir = 1 }, /area/crew_quarters/dorms) "aQC" = ( @@ -23442,8 +22977,8 @@ req_access_txt = "0" }, /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "neutralcorner" + icon_state = "neutralcorner"; + dir = 1 }, /area/crew_quarters/dorms) "aQG" = ( @@ -23455,15 +22990,15 @@ in_use = 1 }, /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "neutralcorner" + icon_state = "neutralcorner"; + dir = 1 }, /area/crew_quarters/dorms) "aQH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "neutralcorner" + icon_state = "neutralcorner"; + dir = 1 }, /area/crew_quarters/dorms) "aQI" = ( @@ -23784,8 +23319,8 @@ /obj/structure/shuttle/engine/propulsion/burst, /turf/simulated/floor/plating, /turf/simulated/shuttle/wall{ - dir = 2; - icon_state = "swall_f5" + icon_state = "swall_f5"; + dir = 2 }, /area/shuttle/pod_1) "aRn" = ( @@ -23921,8 +23456,8 @@ /area/ai_monitored/storage/eva) "aRx" = ( /turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "neutralcorner" + icon_state = "neutralcorner"; + dir = 4 }, /area/crew_quarters/dorms) "aRy" = ( @@ -23935,8 +23470,8 @@ /obj/structure/shuttle/engine/propulsion/burst, /turf/simulated/floor/plating, /turf/simulated/shuttle/wall{ - dir = 2; - icon_state = "swall_f9" + icon_state = "swall_f9"; + dir = 2 }, /area/shuttle/pod_1) "aRA" = ( @@ -24027,10 +23562,10 @@ }, /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/plasteel{ + icon_state = "tranquillite"; dir = 4; - icon_plating = "plating"; icon_regular_floor = "yellowsiding"; - icon_state = "tranquillite" + icon_plating = "plating" }, /area/mimeoffice) "aRI" = ( @@ -24071,8 +23606,11 @@ /area/maintenance/fsmaint2) "aRL" = ( /obj/structure/cable{ - d2 = 4; - icon_state = "0-4" + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/chair/comfy/brown{ + dir = 4 }, /obj/machinery/power/apc{ dir = 1; @@ -24080,9 +23618,6 @@ pixel_x = 0; pixel_y = 24 }, -/obj/structure/chair/comfy/red{ - dir = 4 - }, /turf/simulated/floor/carpet, /area/crew_quarters/bar) "aRM" = ( @@ -24101,7 +23636,7 @@ dir = 2; pixel_y = 24 }, -/obj/structure/chair/comfy/green{ +/obj/structure/chair/comfy/brown{ dir = 8 }, /turf/simulated/floor/carpet, @@ -24133,10 +23668,6 @@ /area/crew_quarters/courtroom) "aRR" = ( /obj/structure/reagent_dispensers/water_cooler, -/obj/structure/snow{ - dir = 1; - icon_state = "snow_corner" - }, /turf/simulated/floor/wood, /area/crew_quarters/courtroom) "aRS" = ( @@ -24164,14 +23695,14 @@ /obj/structure/shuttle/engine/propulsion/burst, /turf/simulated/floor/plating, /turf/simulated/shuttle/wall{ - dir = 2; - icon_state = "swall_f5" + icon_state = "swall_f5"; + dir = 2 }, /area/shuttle/pod_2) "aRW" = ( /obj/machinery/light{ - dir = 4; - icon_state = "tube1" + icon_state = "tube1"; + dir = 4 }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4 @@ -24191,8 +23722,8 @@ /obj/structure/shuttle/engine/propulsion/burst, /turf/simulated/floor/plating, /turf/simulated/shuttle/wall{ - dir = 2; - icon_state = "swall_f9" + icon_state = "swall_f9"; + dir = 2 }, /area/shuttle/pod_2) "aRZ" = ( @@ -24285,8 +23816,8 @@ "aSk" = ( /obj/machinery/vending/coffee, /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "neutralcorner" + icon_state = "neutralcorner"; + dir = 1 }, /area/crew_quarters/dorms) "aSl" = ( @@ -24364,16 +23895,16 @@ icon_state = "0-8" }, /obj/structure/cable{ - d2 = 4; - icon_state = "0-4" + icon_state = "0-4"; + d2 = 4 }, /turf/simulated/floor/plating, /area/maintenance/fpmaint) "aSw" = ( /obj/effect/spawner/window/reinforced, /obj/structure/cable{ - d2 = 4; - icon_state = "0-4" + icon_state = "0-4"; + d2 = 4 }, /turf/simulated/floor/plating, /area/maintenance/fpmaint) @@ -24580,8 +24111,8 @@ level = 1 }, /turf/simulated/floor/plasteel{ - dir = 2; - icon_state = "neutralcorner" + icon_state = "neutralcorner"; + dir = 2 }, /area/crew_quarters/dorms) "aSS" = ( @@ -24614,7 +24145,7 @@ /turf/simulated/floor/plasteel, /area/hallway/primary/starboard/east) "aSW" = ( -/obj/structure/chair/comfy/green, +/obj/structure/chair/comfy/beige, /turf/simulated/floor/plasteel{ icon_state = "grimy" }, @@ -24642,8 +24173,8 @@ pixel_y = -28 }, /turf/simulated/floor/plasteel{ - dir = 2; - icon_state = "neutralcorner" + icon_state = "neutralcorner"; + dir = 2 }, /area/crew_quarters/dorms) "aTa" = ( @@ -24655,8 +24186,8 @@ /area/hallway/primary/central/ne) "aTb" = ( /turf/simulated/floor/plasteel{ - dir = 2; - icon_state = "neutralcorner" + icon_state = "neutralcorner"; + dir = 2 }, /area/crew_quarters/dorms) "aTc" = ( @@ -24666,8 +24197,8 @@ pixel_y = -32 }, /turf/simulated/floor/plasteel{ - dir = 2; - icon_state = "neutralcorner" + icon_state = "neutralcorner"; + dir = 2 }, /area/crew_quarters/dorms) "aTd" = ( @@ -24677,8 +24208,8 @@ pixel_y = -24 }, /turf/simulated/floor/plasteel{ - dir = 2; - icon_state = "neutralcorner" + icon_state = "neutralcorner"; + dir = 2 }, /area/crew_quarters/dorms) "aTe" = ( @@ -24719,23 +24250,23 @@ scrub_Toxins = 1 }, /turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "neutralcorner" + icon_state = "neutralcorner"; + dir = 4 }, /area/crew_quarters/dorms) "aTj" = ( /obj/machinery/power/terminal, /obj/structure/cable{ - d2 = 4; - icon_state = "0-4" + icon_state = "0-4"; + d2 = 4 }, /turf/simulated/floor/plating, /area/maintenance/electrical) "aTk" = ( /obj/structure/cable{ - d2 = 2; icon_state = "0-2"; - pixel_y = 1 + pixel_y = 1; + d2 = 2 }, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, @@ -24749,8 +24280,8 @@ /area/maintenance/electrical) "aTm" = ( /obj/structure/cable{ - d2 = 4; - icon_state = "0-4" + icon_state = "0-4"; + d2 = 4 }, /obj/machinery/light_switch{ pixel_y = -25 @@ -24788,10 +24319,10 @@ scrub_Toxins = 1 }, /turf/simulated/floor/plasteel{ + icon_state = "tranquillite"; dir = 4; - icon_plating = "plating"; icon_regular_floor = "yellowsiding"; - icon_state = "tranquillite" + icon_plating = "plating" }, /area/mimeoffice) "aTr" = ( @@ -24834,8 +24365,8 @@ dir = 9 }, /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "vault" + icon_state = "vault"; + dir = 1 }, /area/gateway) "aTw" = ( @@ -24851,8 +24382,8 @@ dir = 5 }, /turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "vault" + icon_state = "vault"; + dir = 4 }, /area/gateway) "aTy" = ( @@ -24860,8 +24391,8 @@ dir = 1 }, /turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "vault" + icon_state = "vault"; + dir = 8 }, /area/gateway) "aTz" = ( @@ -24924,8 +24455,8 @@ dir = 4 }, /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "neutralcorner" + icon_state = "neutralcorner"; + dir = 1 }, /area/crew_quarters/dorms) "aTE" = ( @@ -24946,8 +24477,8 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "caution" + icon_state = "caution"; + dir = 4 }, /area/crew_quarters/dorms) "aTG" = ( @@ -24991,24 +24522,24 @@ scrub_Toxins = 1 }, /turf/simulated/floor/plasteel{ - dir = 6; - icon_state = "vault" + icon_state = "vault"; + dir = 6 }, /area/security/nuke_storage) "aTL" = ( /obj/machinery/door/firedoor, /turf/simulated/floor/plasteel{ - dir = 8; + tag = "icon-whiteblue (WEST)"; icon_state = "whiteblue"; - tag = "icon-whiteblue (WEST)" + dir = 8 }, /area/medical/reception) "aTM" = ( /obj/machinery/door/firedoor, /turf/simulated/floor/plasteel{ - dir = 4; + tag = "icon-whiteblue (EAST)"; icon_state = "whiteblue"; - tag = "icon-whiteblue (EAST)" + dir = 4 }, /area/medical/reception) "aTN" = ( @@ -25086,7 +24617,10 @@ "aTS" = ( /obj/structure/disposalpipe/trunk, /obj/machinery/disposal, -/obj/structure/snow, +/obj/structure/extinguisher_cabinet{ + pixel_x = -5; + pixel_y = 30 + }, /turf/simulated/floor/plasteel{ dir = 5; icon_state = "whiteblue"; @@ -25094,22 +24628,22 @@ }, /area/medical/reception) "aTT" = ( -/obj/structure/table, -/obj/structure/snow, +/obj/item/twohanded/required/kirbyplants, /turf/simulated/floor/plasteel{ - dir = 9; + tag = "icon-whiteblue (NORTHWEST)"; icon_state = "whiteblue"; - tag = "icon-whiteblue (NORTHWEST)" + dir = 9 }, /area/medical/reception) "aTU" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/drinks/britcup, /obj/machinery/newscaster{ pixel_y = 32 }, -/obj/structure/snow, /turf/simulated/floor/plasteel{ - icon_state = "whitebluefull"; - tag = "icon-whitebluefull" + tag = "icon-whitebluefull"; + icon_state = "whitebluefull" }, /area/medical/reception) "aTV" = ( @@ -25119,31 +24653,24 @@ /obj/item/radio/intercom/department/medbay{ pixel_y = 25 }, -/obj/structure/table, -/obj/item/storage/box/cups{ - pixel_x = 6; - pixel_y = 6 +/obj/structure/chair/comfy/teal{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Civilian" }, -/obj/item/roller, -/obj/structure/snow, /turf/simulated/floor/plasteel{ - icon_state = "whitebluefull"; - tag = "icon-whitebluefull" + tag = "icon-whitebluefull"; + icon_state = "whitebluefull" }, /area/medical/reception) "aTW" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/drinks/britcup, -/obj/machinery/vending/wallmed{ - name = "Emergency NanoMed"; - pixel_x = 0; - pixel_y = 28; - req_access_txt = "0" +/obj/structure/chair/comfy/teal{ + dir = 4 }, -/obj/structure/snow, /turf/simulated/floor/plasteel{ - icon_state = "whitebluefull"; - tag = "icon-whitebluefull" + tag = "icon-whitebluefull"; + icon_state = "whitebluefull" }, /area/medical/reception) "aTX" = ( @@ -25155,19 +24682,15 @@ /turf/simulated/floor/plating, /area/maintenance/fsmaint2) "aTY" = ( +/obj/structure/chair/comfy/teal{ + dir = 8 + }, /obj/machinery/alarm{ pixel_y = 25 }, -/obj/structure/chair/comfy/green{ - dir = 4 - }, -/obj/effect/landmark/start{ - name = "Civilian" - }, -/obj/structure/snow, /turf/simulated/floor/plasteel{ - icon_state = "whitebluefull"; - tag = "icon-whitebluefull" + tag = "icon-whitebluefull"; + icon_state = "whitebluefull" }, /area/medical/reception) "aTZ" = ( @@ -25222,8 +24745,8 @@ /area/maintenance/electrical) "aUg" = ( /obj/structure/cable{ - d2 = 4; - icon_state = "0-4" + icon_state = "0-4"; + d2 = 4 }, /obj/machinery/power/smes{ charge = 0 @@ -25232,8 +24755,8 @@ /area/maintenance/electrical) "aUh" = ( /obj/structure/cable{ - d2 = 4; - icon_state = "0-4" + icon_state = "0-4"; + d2 = 4 }, /obj/structure/cable, /obj/structure/cable{ @@ -25364,8 +24887,8 @@ dir = 4 }, /turf/simulated/floor/plasteel{ - dir = 2; - icon_state = "neutralcorner" + icon_state = "neutralcorner"; + dir = 2 }, /area/crew_quarters/dorms) "aUx" = ( @@ -25404,9 +24927,6 @@ icon_state = "2-4" }, /obj/machinery/atmospherics/unary/vent_pump/on, -/obj/item/decorations/sticky_decorations/flammable/tinsel/yellow{ - pixel_y = 19 - }, /turf/simulated/floor/wood, /area/clownoffice) "aUB" = ( @@ -25429,8 +24949,8 @@ dir = 8 }, /turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "vault" + icon_state = "vault"; + dir = 8 }, /area/gateway) "aUD" = ( @@ -25438,8 +24958,8 @@ dir = 4 }, /turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "vault" + icon_state = "vault"; + dir = 8 }, /area/gateway) "aUE" = ( @@ -25501,9 +25021,9 @@ }, /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/plasteel{ - dir = 2; + tag = "icon-cult"; icon_state = "cult"; - tag = "icon-cult" + dir = 2 }, /area/chapel/office) "aUM" = ( @@ -25534,9 +25054,9 @@ }, /obj/structure/closet/walllocker/emerglocker/north, /turf/simulated/floor/plasteel{ - dir = 9; + tag = "icon-whiteblue (NORTHWEST)"; icon_state = "whiteblue"; - tag = "icon-whiteblue (NORTHWEST)" + dir = 9 }, /area/medical/reception) "aUP" = ( @@ -25551,13 +25071,9 @@ }, /obj/structure/table, /obj/item/folder/white, -/obj/structure/snow{ - dir = 8; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel{ - icon_state = "whitebluefull"; - tag = "icon-whitebluefull" + tag = "icon-whitebluefull"; + icon_state = "whitebluefull" }, /area/medical/reception) "aUQ" = ( @@ -25579,12 +25095,6 @@ /obj/structure/window/reinforced{ dir = 1 }, -/obj/item/gift, -/obj/structure/snow, -/obj/item/toy/figure/assistant, -/obj/item/toy/syndicateballoon, -/obj/item/toy/sword, -/obj/item/nanomob_card, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -25596,8 +25106,8 @@ /area/maintenance/fsmaint2) "aUV" = ( /obj/machinery/light{ - dir = 8; - icon_state = "tube1" + icon_state = "tube1"; + dir = 8 }, /obj/effect/decal/warning_stripes/west, /turf/simulated/floor/plasteel, @@ -25706,8 +25216,8 @@ pixel_y = 32 }, /turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "vault" + icon_state = "vault"; + dir = 8 }, /area/security/nuke_storage) "aVl" = ( @@ -25722,8 +25232,8 @@ icon_state = "0-8" }, /turf/simulated/floor/plasteel{ - dir = 10; - icon_state = "vault" + icon_state = "vault"; + dir = 10 }, /area/security/nuke_storage) "aVm" = ( @@ -25758,8 +25268,8 @@ pixel_y = 0 }, /turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "vault" + icon_state = "vault"; + dir = 8 }, /area/security/nuke_storage) "aVo" = ( @@ -25771,7 +25281,6 @@ }, /obj/structure/table/wood, /obj/item/instrument/eguitar, -/obj/structure/snow, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -25780,7 +25289,7 @@ /obj/structure/window/reinforced{ dir = 1 }, -/obj/structure/snow, +/obj/structure/table/wood, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -25804,8 +25313,8 @@ name = "JoinLateGateway" }, /turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "vault" + icon_state = "vault"; + dir = 8 }, /area/gateway) "aVs" = ( @@ -25815,8 +25324,8 @@ /obj/structure/window/reinforced{ dir = 1 }, -/obj/item/decorations/sticky_decorations/flammable/snowman, -/obj/structure/snow, +/obj/structure/table/wood, +/obj/item/instrument/piano_synth, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -25857,8 +25366,8 @@ dir = 9 }, /obj/machinery/light{ - dir = 4; - icon_state = "tube1" + icon_state = "tube1"; + dir = 4 }, /obj/machinery/camera{ c_tag = "Dormitory East"; @@ -25866,8 +25375,8 @@ network = list("SS13") }, /turf/simulated/floor/plasteel{ - dir = 2; - icon_state = "neutralcorner" + icon_state = "neutralcorner"; + dir = 2 }, /area/crew_quarters/dorms) "aVx" = ( @@ -25878,9 +25387,9 @@ }, /obj/structure/closet/walllocker/emerglocker/north, /turf/simulated/floor/plasteel{ - dir = 5; + tag = "icon-whiteblue (NORTHEAST)"; icon_state = "whiteblue"; - tag = "icon-whiteblue (NORTHEAST)" + dir = 5 }, /area/medical/reception) "aVy" = ( @@ -26017,7 +25526,6 @@ /area/maintenance/fpmaint) "aVG" = ( /obj/machinery/vending/coffee, -/obj/structure/snow, /turf/simulated/floor/wood, /area/crew_quarters/bar) "aVH" = ( @@ -26159,8 +25667,8 @@ /area/ai_monitored/storage/eva) "aVS" = ( /turf/simulated/shuttle/wall{ - dir = 2; - icon_state = "swall12" + icon_state = "swall12"; + dir = 2 }, /area/shuttle/arrival/station) "aVT" = ( @@ -26185,17 +25693,17 @@ "aVV" = ( /turf/space, /turf/simulated/shuttle/wall{ - dir = 2; + tag = "icon-swall_f6"; icon_state = "swall_f6"; - tag = "icon-swall_f6" + dir = 2 }, /area/shuttle/arrival/station) "aVW" = ( /turf/space, /turf/simulated/shuttle/wall{ - dir = 2; + tag = "icon-swall_f10"; icon_state = "swall_f10"; - tag = "icon-swall_f10" + dir = 2 }, /area/shuttle/arrival/station) "aVX" = ( @@ -26218,8 +25726,8 @@ /area/shuttle/arrival/station) "aWa" = ( /turf/simulated/shuttle/wall{ - dir = 2; - icon_state = "swall14" + icon_state = "swall14"; + dir = 2 }, /area/shuttle/arrival/station) "aWb" = ( @@ -26243,8 +25751,8 @@ icon_state = "0-2" }, /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "red" + icon_state = "red"; + dir = 1 }, /area/security/checkpoint2) "aWd" = ( @@ -26257,8 +25765,8 @@ pixel_y = 24 }, /turf/simulated/floor/plasteel{ - dir = 9; - icon_state = "red" + icon_state = "red"; + dir = 9 }, /area/security/checkpoint2) "aWe" = ( @@ -26284,13 +25792,9 @@ /obj/machinery/computer/security{ network = list("SS13","Research Outpost","Mining Outpost") }, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "red" + icon_state = "red"; + dir = 1 }, /area/security/checkpoint2) "aWg" = ( @@ -26310,17 +25814,13 @@ /obj/machinery/computer/secure_data, /obj/machinery/requests_console{ department = "Security"; - departmentType = 5; name = "Security Requests Console"; + departmentType = 5; pixel_y = 30 }, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "red" + icon_state = "red"; + dir = 1 }, /area/security/checkpoint2) "aWi" = ( @@ -26433,8 +25933,8 @@ /area/storage/primary) "aWs" = ( /turf/simulated/floor/plasteel{ - dir = 6; - icon_state = "vault" + icon_state = "vault"; + dir = 6 }, /area/security/nuke_storage) "aWt" = ( @@ -26443,14 +25943,14 @@ /area/storage/primary) "aWu" = ( /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "vault" + icon_state = "vault"; + dir = 1 }, /area/security/nuke_storage) "aWv" = ( /turf/simulated/floor/plasteel{ - dir = 10; - icon_state = "vault" + icon_state = "vault"; + dir = 10 }, /area/security/nuke_storage) "aWw" = ( @@ -26464,14 +25964,14 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "vault" + icon_state = "vault"; + dir = 8 }, /area/security/nuke_storage) "aWx" = ( /turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "vault" + icon_state = "vault"; + dir = 4 }, /area/security/nuke_storage) "aWy" = ( @@ -26532,8 +26032,8 @@ dir = 8 }, /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "neutralcorner" + icon_state = "neutralcorner"; + dir = 1 }, /area/crew_quarters/dorms) "aWC" = ( @@ -26619,9 +26119,9 @@ /area/crew_quarters/dorms) "aWN" = ( /obj/structure/cable{ - d2 = 2; icon_state = "0-2"; - pixel_y = 1 + pixel_y = 1; + d2 = 2 }, /obj/machinery/power/apc{ dir = 1; @@ -26655,8 +26155,8 @@ "aWP" = ( /obj/structure/chair/stool, /turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "caution" + icon_state = "caution"; + dir = 4 }, /area/crew_quarters/dorms) "aWQ" = ( @@ -26693,13 +26193,16 @@ }, /turf/simulated/floor/plasteel, /area/medical/chemistry) +"aWT" = ( +/turf/simulated/floor/plasteel{ + tag = "icon-vault"; + icon_state = "vault" + }, +/area/crew_quarters/dorms) "aWU" = ( /obj/structure/window/reinforced{ dir = 8 }, -/obj/structure/table/wood, -/obj/item/instrument/piano_synth, -/obj/structure/snow, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -26714,7 +26217,6 @@ /obj/structure/window/reinforced{ dir = 4 }, -/obj/structure/snow, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -26794,9 +26296,9 @@ dir = 4 }, /turf/simulated/floor/plasteel{ - dir = 2; + tag = "icon-cult"; icon_state = "cult"; - tag = "icon-cult" + dir = 2 }, /area/chapel/office) "aXd" = ( @@ -26811,9 +26313,9 @@ dir = 4 }, /turf/simulated/floor/plasteel{ - dir = 2; + tag = "icon-cult"; icon_state = "cult"; - tag = "icon-cult" + dir = 2 }, /area/maintenance/fsmaint2) "aXe" = ( @@ -26821,9 +26323,9 @@ dir = 4 }, /turf/simulated/floor/plasteel{ - dir = 2; + tag = "icon-cult"; icon_state = "cult"; - tag = "icon-cult" + dir = 2 }, /area/chapel/office) "aXf" = ( @@ -26844,9 +26346,9 @@ dir = 4 }, /turf/simulated/floor/plasteel{ - dir = 2; + tag = "icon-cult"; icon_state = "cult"; - tag = "icon-cult" + dir = 2 }, /area/chapel/office) "aXh" = ( @@ -26863,10 +26365,10 @@ /area/chapel/main) "aXi" = ( /turf/simulated/floor/plasteel{ + icon_state = "tranquillite"; dir = 4; - icon_plating = "plating"; icon_regular_floor = "yellowsiding"; - icon_state = "tranquillite" + icon_plating = "plating" }, /area/mimeoffice) "aXj" = ( @@ -26880,9 +26382,9 @@ name = "revenantspawn" }, /turf/simulated/floor/plasteel{ - dir = 2; + tag = "icon-cult"; icon_state = "cult"; - tag = "icon-cult" + dir = 2 }, /area/chapel/office) "aXk" = ( @@ -26890,9 +26392,9 @@ pixel_y = 25 }, /turf/simulated/floor/plasteel{ - dir = 2; + tag = "icon-cult"; icon_state = "cult"; - tag = "icon-cult" + dir = 2 }, /area/chapel/office) "aXl" = ( @@ -26906,8 +26408,8 @@ /area/chapel/main) "aXm" = ( /turf/simulated/shuttle/wall{ - dir = 2; - icon_state = "swall11" + icon_state = "swall11"; + dir = 2 }, /area/shuttle/arrival/station) "aXn" = ( @@ -26926,15 +26428,15 @@ scrub_Toxins = 1 }, /turf/simulated/floor/plasteel{ - dir = 2; + tag = "icon-cult"; icon_state = "cult"; - tag = "icon-cult" + dir = 2 }, /area/chapel/office) "aXp" = ( /turf/simulated/shuttle/wall{ - dir = 2; - icon_state = "swall7" + icon_state = "swall7"; + dir = 2 }, /area/shuttle/arrival/station) "aXq" = ( @@ -27024,8 +26526,8 @@ /obj/item/crowbar, /obj/item/flash, /turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "red" + icon_state = "red"; + dir = 8 }, /area/security/checkpoint2) "aXC" = ( @@ -27046,8 +26548,8 @@ pixel_x = 28 }, /turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "red" + icon_state = "red"; + dir = 4 }, /area/security/checkpoint2) "aXF" = ( @@ -27137,9 +26639,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/item/decorations/sticky_decorations/flammable/tinsel/red{ - pixel_y = 19 - }, /turf/simulated/floor/plasteel, /area/storage/primary) "aXN" = ( @@ -27177,8 +26676,8 @@ }, /obj/item/storage/belt/champion, /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "vault" + icon_state = "vault"; + dir = 1 }, /area/security/nuke_storage) "aXP" = ( @@ -27220,8 +26719,8 @@ name = "Silver Crate" }, /turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "vault" + icon_state = "vault"; + dir = 4 }, /area/security/nuke_storage) "aXU" = ( @@ -27236,10 +26735,10 @@ icon_state = "0-8" }, /turf/simulated/floor/plasteel{ + icon_state = "tranquillite"; dir = 4; - icon_plating = "plating"; icon_regular_floor = "yellowsiding"; - icon_state = "tranquillite" + icon_plating = "plating" }, /area/mimeoffice) "aXV" = ( @@ -27249,10 +26748,10 @@ icon_state = "2-4" }, /turf/simulated/floor/plasteel{ + icon_state = "tranquillite"; dir = 4; - icon_plating = "plating"; icon_regular_floor = "yellowsiding"; - icon_state = "tranquillite" + icon_plating = "plating" }, /area/mimeoffice) "aXW" = ( @@ -27345,18 +26844,12 @@ /area/crew_quarters/bar) "aYf" = ( /obj/machinery/computer/card, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, -/obj/structure/snow, /turf/simulated/floor/plasteel{ dir = 10; icon_state = "green" }, /area/bridge) "aYg" = ( -/obj/structure/snow, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "greencorner" @@ -27393,9 +26886,6 @@ scrub_N2O = 1; scrub_Toxins = 1 }, -/obj/item/decorations/sticky_decorations/flammable/tinsel/green{ - pixel_y = 19 - }, /turf/simulated/floor/plasteel, /area/storage/primary) "aYk" = ( @@ -27449,8 +26939,8 @@ pixel_y = 9 }, /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "redcorner" + icon_state = "redcorner"; + dir = 1 }, /area/security/armoury) "aYn" = ( @@ -27461,9 +26951,6 @@ scrub_N2O = 1; scrub_Toxins = 1 }, -/obj/item/decorations/sticky_decorations/flammable/tinsel/green{ - pixel_y = 19 - }, /turf/simulated/floor/plasteel, /area/storage/office) "aYo" = ( @@ -27502,9 +26989,6 @@ /obj/structure/closet/wardrobe/coroner, /obj/item/reagent_containers/glass/bottle/reagent/formaldehyde, /obj/item/reagent_containers/dropper, -/obj/item/decorations/sticky_decorations/flammable/christmas_stocking{ - pixel_y = 17 - }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -27609,9 +27093,9 @@ name = "revenantspawn" }, /turf/simulated/floor/plasteel{ - dir = 2; + tag = "icon-cult"; icon_state = "cult"; - tag = "icon-cult" + dir = 2 }, /area/chapel/office) "aYy" = ( @@ -27632,15 +27116,15 @@ network = list("SS13") }, /turf/simulated/floor/plasteel{ - dir = 5; - icon_state = "vault" + icon_state = "vault"; + dir = 5 }, /area/chapel/main) "aYA" = ( /obj/structure/table, /turf/simulated/floor/plasteel{ - dir = 5; - icon_state = "vault" + icon_state = "vault"; + dir = 5 }, /area/chapel/main) "aYB" = ( @@ -27661,8 +27145,8 @@ "aYD" = ( /turf/space, /turf/simulated/shuttle/wall{ - dir = 2; - icon_state = "swall_f6" + icon_state = "swall_f6"; + dir = 2 }, /area/shuttle/escape) "aYE" = ( @@ -27750,14 +27234,14 @@ "aYM" = ( /turf/simulated/shuttle/floor, /turf/simulated/shuttle/wall{ - dir = 2; - icon_state = "swall_f9" + icon_state = "swall_f9"; + dir = 2 }, /area/shuttle/arrival/station) "aYN" = ( /turf/simulated/shuttle/wall{ - dir = 2; - icon_state = "swall3" + icon_state = "swall3"; + dir = 2 }, /area/shuttle/arrival/station) "aYO" = ( @@ -27800,8 +27284,8 @@ /area/shuttle/escape) "aYV" = ( /obj/structure/shuttle/engine/heater{ - dir = 4; - icon_state = "heater" + icon_state = "heater"; + dir = 4 }, /obj/structure/window/reinforced{ dir = 8 @@ -27883,8 +27367,8 @@ }, /obj/machinery/hologram/holopad, /turf/simulated/floor/plasteel{ - dir = 6; - icon_state = "red" + icon_state = "red"; + dir = 6 }, /area/security/checkpoint2) "aZc" = ( @@ -27914,8 +27398,8 @@ "aZe" = ( /obj/structure/table, /obj/machinery/light{ - dir = 8; - icon_state = "tube1" + icon_state = "tube1"; + dir = 8 }, /obj/item/stack/cable_coil{ pixel_x = 2; @@ -27960,8 +27444,8 @@ "aZi" = ( /mob/living/simple_animal/mouse/brown/Tom, /turf/simulated/floor/plasteel{ - dir = 6; - icon_state = "vault" + icon_state = "vault"; + dir = 6 }, /area/security/nuke_storage) "aZj" = ( @@ -27981,8 +27465,8 @@ "aZk" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "vault" + icon_state = "vault"; + dir = 1 }, /area/security/nuke_storage) "aZl" = ( @@ -27994,8 +27478,8 @@ scrub_Toxins = 1 }, /turf/simulated/floor/plasteel{ - dir = 5; - icon_state = "vault" + icon_state = "vault"; + dir = 5 }, /area/chapel/main) "aZm" = ( @@ -28018,8 +27502,8 @@ dir = 8 }, /turf/simulated/floor/plasteel{ - dir = 10; - icon_state = "vault" + icon_state = "vault"; + dir = 10 }, /area/security/nuke_storage) "aZp" = ( @@ -28052,8 +27536,8 @@ amount = 100000 }, /turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "vault" + icon_state = "vault"; + dir = 4 }, /area/security/nuke_storage) "aZr" = ( @@ -28066,8 +27550,8 @@ /area/storage/primary) "aZs" = ( /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "neutralcorner" + icon_state = "neutralcorner"; + dir = 1 }, /area/crew_quarters/dorms) "aZt" = ( @@ -28075,9 +27559,6 @@ /area/crew_quarters/dorms) "aZu" = ( /obj/machinery/hologram/holopad, -/obj/item/decorations/sticky_decorations/flammable/tinsel/green{ - pixel_y = 19 - }, /turf/simulated/floor/carpet, /area/crew_quarters/dorms) "aZv" = ( @@ -28119,9 +27600,6 @@ /obj/structure/chair{ dir = 4 }, -/obj/effect/landmark/start{ - name = "Civilian" - }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "arrival" @@ -28135,10 +27613,6 @@ /area/crew_quarters/dorms) "aZB" = ( /obj/machinery/computer/card/minor/ce, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "neutralfull" @@ -28152,6 +27626,9 @@ /area/crew_quarters/dorms) "aZD" = ( /obj/effect/decal/warning_stripes/white, +/obj/effect/landmark/start{ + name = "Civilian" + }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -28177,10 +27654,6 @@ }, /area/chapel/main) "aZG" = ( -/obj/structure/snow{ - dir = 1; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -28199,8 +27672,8 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/hologram/holopad, /turf/simulated/floor/plasteel{ - dir = 2; - icon_state = "neutralcorner" + icon_state = "neutralcorner"; + dir = 2 }, /area/crew_quarters/dorms) "aZJ" = ( @@ -28225,10 +27698,10 @@ /obj/item/paper_bin, /obj/item/toy/crayon/mime, /turf/simulated/floor/plasteel{ + icon_state = "tranquillite"; dir = 4; - icon_plating = "plating"; icon_regular_floor = "yellowsiding"; - icon_state = "tranquillite" + icon_plating = "plating" }, /area/mimeoffice) "aZM" = ( @@ -28237,10 +27710,10 @@ pixel_x = 24 }, /turf/simulated/floor/plasteel{ + icon_state = "tranquillite"; dir = 4; - icon_plating = "plating"; icon_regular_floor = "yellowsiding"; - icon_state = "tranquillite" + icon_plating = "plating" }, /area/mimeoffice) "aZN" = ( @@ -28308,6 +27781,10 @@ icon_state = "dark" }, /area/medical/morgue) +"aZV" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) "aZW" = ( /obj/structure/cable{ d1 = 1; @@ -28341,8 +27818,8 @@ pixel_x = -22 }, /turf/simulated/floor/plasteel{ - dir = 10; - icon_state = "red" + icon_state = "red"; + dir = 10 }, /area/security/checkpoint2) "aZZ" = ( @@ -28574,8 +28051,8 @@ /area/library) "bay" = ( /turf/simulated/floor/plasteel{ - dir = 5; - icon_state = "vault" + icon_state = "vault"; + dir = 5 }, /area/chapel/main) "baz" = ( @@ -28584,12 +28061,9 @@ "baA" = ( /obj/structure/rack, /obj/item/storage/fancy/candle_box/full, -/obj/item/decorations/sticky_decorations/flammable/tinsel/green{ - pixel_y = 19 - }, /turf/simulated/floor/plasteel{ - dir = 5; - icon_state = "vault" + icon_state = "vault"; + dir = 5 }, /area/chapel/main) "baB" = ( @@ -28886,9 +28360,9 @@ tag = "" }, /obj/structure/disposalpipe/junction{ - dir = 4; + tag = "icon-pipe-j2 (EAST)"; icon_state = "pipe-j2"; - tag = "icon-pipe-j2 (EAST)" + dir = 4 }, /obj/structure/cable{ d1 = 1; @@ -28931,8 +28405,8 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ - dir = 5; - icon_state = "vault" + icon_state = "vault"; + dir = 5 }, /area/security/nuke_storage) "bbg" = ( @@ -28981,8 +28455,8 @@ network = list("SS13") }, /turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "neutralcorner" + icon_state = "neutralcorner"; + dir = 4 }, /area/crew_quarters/dorms) "bbj" = ( @@ -29056,9 +28530,9 @@ tag = "" }, /obj/structure/disposalpipe/junction{ - dir = 4; + tag = "icon-pipe-j1 (EAST)"; icon_state = "pipe-j1"; - tag = "icon-pipe-j1 (EAST)" + dir = 4 }, /obj/structure/cable{ d1 = 2; @@ -29101,8 +28575,8 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ - dir = 2; - icon_state = "neutralcorner" + icon_state = "neutralcorner"; + dir = 2 }, /area/crew_quarters/dorms) "bby" = ( @@ -29146,26 +28620,23 @@ dir = 8 }, /turf/simulated/floor/plasteel{ + icon_state = "tranquillite"; dir = 4; - icon_plating = "plating"; icon_regular_floor = "yellowsiding"; - icon_state = "tranquillite" + icon_plating = "plating" }, /area/mimeoffice) "bbB" = ( /obj/structure/closet/secure_closet/mime, /obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/item/decorations/sticky_decorations/flammable/christmas_stocking{ - pixel_x = 19 + icon_state = "tube1"; + dir = 4 }, /turf/simulated/floor/plasteel{ + icon_state = "tranquillite"; dir = 4; - icon_plating = "plating"; icon_regular_floor = "yellowsiding"; - icon_state = "tranquillite" + icon_plating = "plating" }, /area/mimeoffice) "bbC" = ( @@ -29203,10 +28674,10 @@ }, /obj/machinery/hologram/holopad, /turf/simulated/floor/plasteel{ + icon_state = "tranquillite"; dir = 4; - icon_plating = "plating"; icon_regular_floor = "yellowsiding"; - icon_state = "tranquillite" + icon_plating = "plating" }, /area/mimeoffice) "bbE" = ( @@ -29426,8 +28897,8 @@ on = 1 }, /turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "neutralcorner" + icon_state = "neutralcorner"; + dir = 4 }, /area/crew_quarters/dorms) "bca" = ( @@ -29439,8 +28910,8 @@ icon_state = "1-2" }, /turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "neutralcorner" + icon_state = "neutralcorner"; + dir = 4 }, /area/crew_quarters/dorms) "bcb" = ( @@ -29526,9 +28997,6 @@ dir = 4; icon_state = "pipe-c" }, -/obj/item/decorations/sticky_decorations/flammable/tinsel/red{ - pixel_y = 19 - }, /turf/simulated/floor/wood, /area/library) "bcj" = ( @@ -29599,9 +29067,6 @@ pixel_x = 0; pixel_y = 32 }, -/obj/item/decorations/sticky_decorations/flammable/christmas_stocking{ - pixel_y = 17 - }, /turf/simulated/floor/plasteel{ icon_state = "grimy" }, @@ -29609,17 +29074,14 @@ "bcr" = ( /turf/simulated/shuttle/floor, /turf/simulated/shuttle/wall{ - dir = 2; - icon_state = "swall_f10" + icon_state = "swall_f10"; + dir = 2 }, /area/shuttle/arrival/station) "bcs" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/item/decorations/sticky_decorations/flammable/tinsel/green{ - pixel_y = 19 - }, /turf/simulated/floor/wood, /area/library) "bct" = ( @@ -29701,6 +29163,11 @@ icon_state = "arrival" }, /area/crew_quarters/dorms) +"bcz" = ( +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) "bcA" = ( /obj/effect/spawner/lootdrop/maintenance, /obj/structure/cable{ @@ -29725,9 +29192,6 @@ /obj/machinery/light_switch{ pixel_y = 25 }, -/obj/structure/snow{ - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel{ icon_state = "grimy" }, @@ -29737,9 +29201,6 @@ pixel_x = -5; pixel_y = 30 }, -/obj/structure/snow{ - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel{ icon_state = "grimy" }, @@ -29770,8 +29231,8 @@ step_size = 0 }, /turf/simulated/floor/plasteel{ - dir = 5; - icon_state = "vault" + icon_state = "vault"; + dir = 5 }, /area/chapel/main) "bcG" = ( @@ -29867,8 +29328,8 @@ pixel_x = 28 }, /turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "green" + icon_state = "green"; + dir = 4 }, /area/hallway/secondary/construction{ name = "\improper Garden" @@ -29977,8 +29438,8 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ - dir = 5; - icon_state = "vault" + icon_state = "vault"; + dir = 5 }, /area/hallway/primary/port) "bda" = ( @@ -30086,8 +29547,8 @@ pixel_y = 0 }, /turf/simulated/floor/plasteel{ - dir = 2; - icon_state = "neutralcorner" + icon_state = "neutralcorner"; + dir = 2 }, /area/crew_quarters/dorms) "bdn" = ( @@ -30142,10 +29603,10 @@ network = list("SS13") }, /turf/simulated/floor/plasteel{ + icon_state = "tranquillite"; dir = 4; - icon_plating = "plating"; icon_regular_floor = "yellowsiding"; - icon_state = "tranquillite" + icon_plating = "plating" }, /area/mimeoffice) "bdt" = ( @@ -30156,17 +29617,17 @@ pixel_y = -22 }, /turf/simulated/floor/plasteel{ + icon_state = "tranquillite"; dir = 4; - icon_plating = "plating"; icon_regular_floor = "yellowsiding"; - icon_state = "tranquillite" + icon_plating = "plating" }, /area/mimeoffice) "bdu" = ( /obj/structure/reagent_dispensers/watertank, /turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "green" + icon_state = "green"; + dir = 8 }, /area/hallway/secondary/construction{ name = "\improper Garden" @@ -30179,9 +29640,9 @@ /area/hallway/primary/central/north) "bdw" = ( /obj/structure/cable{ - d2 = 2; icon_state = "0-2"; - pixel_y = 1 + pixel_y = 1; + d2 = 2 }, /obj/item/flag/nt, /obj/machinery/power/apc{ @@ -30202,12 +29663,12 @@ /obj/item/reagent_containers/glass/bottle/nutrient/ez, /obj/item/reagent_containers/glass/bottle/nutrient/rh, /obj/machinery/light{ - dir = 4; - icon_state = "tube1" + icon_state = "tube1"; + dir = 4 }, /turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "green" + icon_state = "green"; + dir = 4 }, /area/hallway/secondary/construction{ name = "\improper Garden" @@ -30274,9 +29735,9 @@ /area/hallway/primary/central/north) "bdE" = ( /obj/machinery/light/small{ - dir = 4; + tag = "icon-bulb1 (EAST)"; icon_state = "bulb1"; - tag = "icon-bulb1 (EAST)" + dir = 4 }, /obj/structure/rack, /obj/item/tank/emergency_oxygen, @@ -30337,12 +29798,6 @@ pixel_y = 25 }, /obj/structure/closet/chefcloset, -/obj/item/decorations/sticky_decorations/flammable/christmas_stocking{ - pixel_y = 17 - }, -/obj/structure/snow{ - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel{ icon_state = "showroomfloor" }, @@ -30399,8 +29854,8 @@ dir = 4 }, /turf/simulated/floor/plasteel{ - dir = 2; - icon_state = "neutralcorner" + icon_state = "neutralcorner"; + dir = 2 }, /area/crew_quarters/dorms) "bdO" = ( @@ -30448,8 +29903,8 @@ tag = "" }, /turf/simulated/floor/plasteel{ - dir = 2; - icon_state = "neutralcorner" + icon_state = "neutralcorner"; + dir = 2 }, /area/crew_quarters/dorms) "bdR" = ( @@ -30473,8 +29928,8 @@ icon_state = "1-4" }, /turf/simulated/floor/plasteel{ - dir = 2; - icon_state = "neutralcorner" + icon_state = "neutralcorner"; + dir = 2 }, /area/crew_quarters/dorms) "bdT" = ( @@ -30511,9 +29966,9 @@ "bdW" = ( /obj/structure/table, /obj/structure/cable{ - d2 = 2; icon_state = "0-2"; - pixel_y = 1 + pixel_y = 1; + d2 = 2 }, /obj/machinery/reagentgrinder, /obj/machinery/power/apc{ @@ -30698,9 +30153,9 @@ "beh" = ( /turf/space, /turf/simulated/shuttle/wall{ - dir = 2; + tag = "icon-swall_f5"; icon_state = "swall_f5"; - tag = "icon-swall_f5" + dir = 2 }, /area/shuttle/arrival/station) "bei" = ( @@ -30713,8 +30168,8 @@ /area/hydroponics) "bej" = ( /turf/simulated/shuttle/wall{ - dir = 2; - icon_state = "swall13" + icon_state = "swall13"; + dir = 2 }, /area/shuttle/arrival/station) "bek" = ( @@ -30784,9 +30239,6 @@ /obj/effect/landmark/start{ name = "Chaplain" }, -/obj/structure/snow{ - icon_state = "snow_corner" - }, /turf/simulated/floor/carpet/black, /area/chapel/office) "beu" = ( @@ -30876,7 +30328,7 @@ }, /area/crew_quarters/toilet) "beF" = ( -/obj/structure/chair/comfy/green{ +/obj/structure/chair/comfy/brown{ dir = 4 }, /turf/simulated/floor/carpet, @@ -30975,8 +30427,8 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ - dir = 5; - icon_state = "vault" + icon_state = "vault"; + dir = 5 }, /area/hallway/primary/port) "beP" = ( @@ -31061,8 +30513,8 @@ dir = 4 }, /turf/simulated/floor/plasteel{ - dir = 2; - icon_state = "neutralcorner" + icon_state = "neutralcorner"; + dir = 2 }, /area/crew_quarters/dorms) "beX" = ( @@ -31091,21 +30543,21 @@ dir = 4 }, /turf/simulated/floor/plasteel{ - dir = 2; - icon_state = "neutralcorner" + icon_state = "neutralcorner"; + dir = 2 }, /area/crew_quarters/dorms) "beZ" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/structure/disposalpipe/junction{ - dir = 4; + tag = "icon-pipe-j2 (EAST)"; icon_state = "pipe-j2"; - tag = "icon-pipe-j2 (EAST)" + dir = 4 }, /turf/simulated/floor/plasteel{ - dir = 2; - icon_state = "neutralcorner" + icon_state = "neutralcorner"; + dir = 2 }, /area/crew_quarters/dorms) "bfa" = ( @@ -31115,10 +30567,10 @@ req_access_txt = "46" }, /turf/simulated/floor/plasteel{ + icon_state = "tranquillite"; dir = 4; - icon_plating = "plating"; icon_regular_floor = "yellowsiding"; - icon_state = "tranquillite" + icon_plating = "plating" }, /area/mimeoffice) "bfb" = ( @@ -31138,8 +30590,8 @@ srange = 7 }, /turf/simulated/floor/plasteel{ - dir = 2; - icon_state = "neutralcorner" + icon_state = "neutralcorner"; + dir = 2 }, /area/crew_quarters/dorms) "bfc" = ( @@ -31164,8 +30616,8 @@ dir = 4 }, /turf/simulated/floor/plasteel{ - dir = 2; - icon_state = "neutralcorner" + icon_state = "neutralcorner"; + dir = 2 }, /area/crew_quarters/dorms) "bfe" = ( @@ -31220,8 +30672,8 @@ dir = 4 }, /turf/simulated/floor/plasteel{ - dir = 2; - icon_state = "neutralcorner" + icon_state = "neutralcorner"; + dir = 2 }, /area/crew_quarters/dorms) "bfj" = ( @@ -31240,15 +30692,15 @@ dir = 4 }, /turf/simulated/floor/plasteel{ - dir = 2; - icon_state = "neutralcorner" + icon_state = "neutralcorner"; + dir = 2 }, /area/crew_quarters/dorms) "bfk" = ( /obj/machinery/requests_console{ department = "Bar"; - departmentType = 2; name = "Bar Requests Console"; + departmentType = 2; pixel_x = 0; pixel_y = 30 }, @@ -31259,12 +30711,12 @@ }, /area/crew_quarters/bar) "bfl" = ( +/obj/structure/chair/comfy/brown{ + dir = 8 + }, /obj/machinery/light{ dir = 4 }, -/obj/structure/chair/comfy/red{ - dir = 8 - }, /turf/simulated/floor/carpet, /area/crew_quarters/bar) "bfm" = ( @@ -31297,9 +30749,9 @@ dir = 4 }, /obj/structure/disposalpipe/junction{ - dir = 4; + tag = "icon-pipe-j1 (EAST)"; icon_state = "pipe-j1"; - tag = "icon-pipe-j1 (EAST)" + dir = 4 }, /turf/simulated/floor/plasteel, /area/crew_quarters/dorms) @@ -31307,9 +30759,9 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/structure/disposalpipe/junction{ - dir = 4; + tag = "icon-pipe-j2 (EAST)"; icon_state = "pipe-j2"; - tag = "icon-pipe-j2 (EAST)" + dir = 4 }, /turf/simulated/floor/plasteel, /area/crew_quarters/dorms) @@ -31330,8 +30782,8 @@ dir = 4 }, /turf/simulated/floor/plasteel{ - dir = 2; - icon_state = "neutralcorner" + icon_state = "neutralcorner"; + dir = 2 }, /area/crew_quarters/dorms) "bfr" = ( @@ -31354,8 +30806,8 @@ icon_state = "pipe-c" }, /turf/simulated/floor/plasteel{ - dir = 2; - icon_state = "neutralcorner" + icon_state = "neutralcorner"; + dir = 2 }, /area/crew_quarters/dorms) "bfs" = ( @@ -31403,8 +30855,8 @@ dir = 4 }, /turf/simulated/floor/plasteel{ - dir = 2; - icon_state = "neutralcorner" + icon_state = "neutralcorner"; + dir = 2 }, /area/crew_quarters/dorms) "bfw" = ( @@ -31437,8 +30889,8 @@ dir = 4 }, /turf/simulated/floor/plasteel{ - dir = 2; - icon_state = "neutralcorner" + icon_state = "neutralcorner"; + dir = 2 }, /area/crew_quarters/dorms) "bfy" = ( @@ -31454,8 +30906,8 @@ pixel_y = -32 }, /turf/simulated/floor/plasteel{ - dir = 2; - icon_state = "neutralcorner" + icon_state = "neutralcorner"; + dir = 2 }, /area/crew_quarters/dorms) "bfz" = ( @@ -31471,8 +30923,8 @@ pixel_y = -24 }, /turf/simulated/floor/plasteel{ - dir = 2; - icon_state = "neutralcorner" + icon_state = "neutralcorner"; + dir = 2 }, /area/crew_quarters/dorms) "bfA" = ( @@ -31491,9 +30943,6 @@ d2 = 8; icon_state = "0-8" }, -/obj/item/decorations/sticky_decorations/flammable/tinsel/yellow{ - pixel_y = 19 - }, /turf/simulated/floor/wood, /area/clownoffice) "bfB" = ( @@ -31504,7 +30953,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/structure/snow, /turf/simulated/floor/plasteel{ icon_state = "showroomfloor" }, @@ -31521,9 +30969,6 @@ pixel_x = 0; tag = "" }, -/obj/item/decorations/sticky_decorations/flammable/christmas_stocking{ - pixel_y = 17 - }, /turf/simulated/floor/plasteel{ icon_state = "hydrofloor" }, @@ -31546,9 +30991,6 @@ /obj/machinery/atmospherics/binary/pump{ dir = 1 }, -/obj/item/decorations/sticky_decorations/flammable/christmas_stocking{ - pixel_y = 17 - }, /turf/simulated/floor/plasteel{ icon_state = "hydrofloor" }, @@ -31658,9 +31100,6 @@ icon_state = "1-8"; tag = "" }, -/obj/item/decorations/sticky_decorations/flammable/tinsel/green{ - pixel_y = 19 - }, /turf/simulated/floor/plasteel{ icon_state = "hydrofloor" }, @@ -31761,10 +31200,6 @@ pixel_x = -24; shock_proof = 0 }, -/obj/structure/snow{ - dir = 6; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel{ icon_state = "grimy" }, @@ -31786,10 +31221,6 @@ pixel_y = 10 }, /obj/item/eftpos, -/obj/structure/snow{ - dir = 10; - icon_state = "snow_corner" - }, /turf/simulated/floor/carpet/black, /area/chapel/office) "bgb" = ( @@ -31821,9 +31252,9 @@ "bge" = ( /turf/space, /turf/simulated/shuttle/wall{ - dir = 2; + tag = "icon-swall_f9"; icon_state = "swall_f9"; - tag = "icon-swall_f9" + dir = 2 }, /area/shuttle/arrival/station) "bgf" = ( @@ -32053,8 +31484,8 @@ /area/hallway/secondary/entry) "bgH" = ( /obj/machinery/light{ - dir = 8; - icon_state = "tube1" + icon_state = "tube1"; + dir = 8 }, /obj/item/radio/intercom{ dir = 0; @@ -32098,8 +31529,8 @@ dir = 8 }, /turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "vault" + icon_state = "vault"; + dir = 4 }, /area/gateway) "bgL" = ( @@ -32113,8 +31544,8 @@ dir = 4 }, /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "vault" + icon_state = "vault"; + dir = 1 }, /area/gateway) "bgM" = ( @@ -32129,8 +31560,8 @@ pixel_x = -24 }, /turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "green" + icon_state = "green"; + dir = 8 }, /area/hallway/secondary/construction{ name = "\improper Garden" @@ -32244,8 +31675,8 @@ tag = "" }, /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "neutralcorner" + icon_state = "neutralcorner"; + dir = 1 }, /area/crew_quarters/dorms) "bgY" = ( @@ -32264,8 +31695,8 @@ "bgZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ - dir = 2; - icon_state = "neutralcorner" + icon_state = "neutralcorner"; + dir = 2 }, /area/crew_quarters/dorms) "bha" = ( @@ -32294,27 +31725,27 @@ dir = 1 }, /turf/simulated/floor/plasteel{ - dir = 2; - icon_state = "neutralcorner" + icon_state = "neutralcorner"; + dir = 2 }, /area/crew_quarters/dorms) "bhf" = ( /obj/machinery/vending/cola, /turf/simulated/floor/plasteel{ - dir = 2; - icon_state = "neutralcorner" + icon_state = "neutralcorner"; + dir = 2 }, /area/crew_quarters/dorms) "bhg" = ( /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "neutralcorner" + icon_state = "neutralcorner"; + dir = 1 }, /area/hallway/primary/central/ne) "bhh" = ( /turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "blue" + icon_state = "blue"; + dir = 4 }, /area/hallway/primary/central/north) "bhi" = ( @@ -32443,12 +31874,9 @@ /turf/simulated/floor/plating, /area/maintenance/fsmaint2) "bhv" = ( -/obj/structure/chair/comfy/red{ +/obj/structure/chair/comfy/beige{ dir = 8 }, -/obj/item/decorations/sticky_decorations/flammable/tinsel/green{ - pixel_y = 19 - }, /turf/simulated/floor/plasteel{ icon_state = "grimy" }, @@ -32501,15 +31929,10 @@ /area/storage/office) "bhA" = ( /obj/machinery/hologram/holopad, -/obj/structure/snow, /turf/simulated/floor/carpet/black, /area/chapel/office) "bhB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/snow{ - dir = 6; - icon_state = "snow_corner" - }, /turf/simulated/floor/carpet/black, /area/chapel/office) "bhC" = ( @@ -32540,8 +31963,8 @@ dir = 4 }, /turf/simulated/floor/plasteel{ - dir = 2; - icon_state = "neutralcorner" + icon_state = "neutralcorner"; + dir = 2 }, /area/hallway/secondary/entry) "bhF" = ( @@ -32756,10 +32179,6 @@ initialize_directions = 11; level = 1 }, -/obj/structure/snow{ - dir = 4; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel{ icon_state = "showroomfloor" }, @@ -32772,10 +32191,6 @@ scrub_N2O = 1; scrub_Toxins = 1 }, -/obj/structure/snow{ - dir = 10; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel{ icon_state = "showroomfloor" }, @@ -32807,9 +32222,6 @@ dir = 8; pixel_x = -24 }, -/obj/item/decorations/sticky_decorations/flammable/tinsel/green{ - pixel_y = 19 - }, /turf/simulated/floor/wood, /area/library) "bib" = ( @@ -32822,8 +32234,8 @@ /area/hydroponics) "bic" = ( /turf/simulated/shuttle/wall{ - dir = 2; - icon_state = "swall3" + icon_state = "swall3"; + dir = 2 }, /area/shuttle/escape) "bid" = ( @@ -32859,9 +32271,6 @@ tag = "" }, /obj/structure/closet/secure_closet/hydroponics, -/obj/item/decorations/sticky_decorations/flammable/christmas_stocking{ - pixel_y = 17 - }, /turf/simulated/floor/plasteel{ icon_state = "hydrofloor" }, @@ -32899,8 +32308,8 @@ "bim" = ( /obj/machinery/status_display, /turf/simulated/shuttle/wall{ - dir = 2; - icon_state = "swall12" + icon_state = "swall12"; + dir = 2 }, /area/shuttle/escape) "bin" = ( @@ -32927,10 +32336,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/structure/snow{ - dir = 4; - icon_state = "snow_corner" - }, /turf/simulated/floor/plating, /area/maintenance/fsmaint2) "bip" = ( @@ -32973,7 +32378,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/structure/snow, /turf/simulated/floor/plasteel{ icon_state = "grimy" }, @@ -32998,7 +32402,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/structure/snow, /turf/simulated/floor/plating, /area/maintenance/fsmaint2) "bis" = ( @@ -33008,10 +32411,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/item/decorations/sticky_decorations/flammable/tinsel/green{ - pixel_y = 19 - }, -/obj/structure/snow, /turf/simulated/floor/plasteel{ icon_state = "grimy" }, @@ -33043,7 +32442,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/structure/snow, /turf/simulated/floor/plasteel{ icon_state = "grimy" }, @@ -33052,7 +32450,6 @@ /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, -/obj/structure/snow, /turf/simulated/floor/plasteel{ icon_state = "grimy" }, @@ -33064,7 +32461,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, -/obj/structure/snow, /turf/simulated/floor/plasteel{ icon_state = "grimy" }, @@ -33081,8 +32477,8 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "neutral" + icon_state = "neutral"; + dir = 8 }, /area/hallway/secondary/entry) "biB" = ( @@ -33236,8 +32632,8 @@ pixel_y = 4 }, /obj/machinery/light{ - dir = 4; - icon_state = "tube1" + icon_state = "tube1"; + dir = 4 }, /obj/structure/extinguisher_cabinet{ pixel_x = 27; @@ -33314,8 +32710,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/item/decorations/sticky_decorations/flammable/snowman, -/obj/structure/snow, /turf/simulated/floor/plasteel{ icon_state = "showroomfloor" }, @@ -33343,10 +32737,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, -/obj/structure/snow{ - dir = 6; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel{ icon_state = "showroomfloor" }, @@ -33361,8 +32751,8 @@ tag = "" }, /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "neutralcorner" + icon_state = "neutralcorner"; + dir = 1 }, /area/crew_quarters/dorms) "biX" = ( @@ -33395,10 +32785,6 @@ initialize_directions = 10; level = 1 }, -/obj/structure/snow{ - dir = 10; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel{ icon_state = "showroomfloor" }, @@ -33419,8 +32805,8 @@ /area/crew_quarters/bar) "bja" = ( /obj/structure/sink{ - dir = 8; icon_state = "sink"; + dir = 8; pixel_x = -12; pixel_y = 2 }, @@ -33467,8 +32853,8 @@ /area/crew_quarters/bar) "bjd" = ( /obj/structure/sink{ - dir = 8; icon_state = "sink"; + dir = 8; pixel_x = -12; pixel_y = 2 }, @@ -33489,9 +32875,6 @@ /area/clownoffice) "bjf" = ( /obj/structure/reagent_dispensers/beerkeg, -/obj/item/decorations/sticky_decorations/flammable/christmas_stocking{ - pixel_y = 17 - }, /turf/simulated/floor/wood, /area/crew_quarters/bar) "bjg" = ( @@ -33602,7 +32985,6 @@ /obj/structure/disposalpipe/trunk{ dir = 1 }, -/obj/structure/snow, /turf/simulated/floor/plasteel{ icon_state = "grimy" }, @@ -33678,8 +33060,8 @@ /area/hydroponics) "bjC" = ( /turf/simulated/shuttle/wall{ - dir = 2; - icon_state = "swall12" + icon_state = "swall12"; + dir = 2 }, /area/shuttle/escape) "bjD" = ( @@ -33698,8 +33080,8 @@ /area/library) "bjG" = ( /turf/simulated/shuttle/wall{ - dir = 2; - icon_state = "swall13" + icon_state = "swall13"; + dir = 2 }, /area/shuttle/escape) "bjI" = ( @@ -33941,9 +33323,9 @@ /area/hallway/primary/port) "bkh" = ( /obj/structure/disposalpipe/junction{ - dir = 4; + tag = "icon-pipe-j2 (EAST)"; icon_state = "pipe-j2"; - tag = "icon-pipe-j2 (EAST)" + dir = 4 }, /turf/simulated/floor/plasteel, /area/hallway/primary/port) @@ -34007,9 +33389,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/item/decorations/sticky_decorations/flammable/tinsel/red{ - pixel_y = 19 - }, /turf/simulated/floor/wood, /area/library) "bko" = ( @@ -34115,7 +33494,6 @@ /area/hallway/primary/central/nw) "bkx" = ( /obj/machinery/door/firedoor, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/crew_quarters/locker) "bky" = ( @@ -34299,9 +33677,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/item/decorations/sticky_decorations/flammable/tinsel/green{ - pixel_y = 19 - }, /turf/simulated/floor/wood, /area/library) "bkM" = ( @@ -34417,9 +33792,9 @@ name = "Forbidden Knowledge" }, /turf/simulated/floor/plasteel{ - dir = 2; + tag = "icon-cult"; icon_state = "cult"; - tag = "icon-cult" + dir = 2 }, /area/library) "bkY" = ( @@ -34444,9 +33819,9 @@ /obj/item/stack/tape_roll, /obj/item/pen/multi, /turf/simulated/floor/plasteel{ - dir = 2; + tag = "icon-cult"; icon_state = "cult"; - tag = "icon-cult" + dir = 2 }, /area/library) "bla" = ( @@ -34472,13 +33847,13 @@ }, /area/hydroponics) "bld" = ( +/obj/structure/chair/comfy/black{ + dir = 4 + }, /obj/machinery/firealarm{ dir = 8; pixel_x = -24 }, -/obj/structure/chair/comfy/green{ - dir = 4 - }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -34492,8 +33867,8 @@ /area/hydroponics) "blf" = ( /obj/structure/cable{ - d2 = 4; - icon_state = "0-4" + icon_state = "0-4"; + d2 = 4 }, /obj/machinery/power/apc{ dir = 8; @@ -34527,8 +33902,8 @@ level = 1 }, /turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "neutral" + icon_state = "neutral"; + dir = 8 }, /area/hallway/secondary/entry) "bli" = ( @@ -34641,14 +34016,14 @@ }, /area/shuttle/escape) "blw" = ( +/obj/structure/chair/comfy/black{ + dir = 4 + }, /obj/item/radio/intercom{ frequency = 1459; name = "station intercom (General)"; pixel_x = -28 }, -/obj/structure/chair/comfy/red{ - dir = 4 - }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -34680,8 +34055,8 @@ dir = 4 }, /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "bot" + icon_state = "bot"; + dir = 1 }, /area/shuttle/escape) "blB" = ( @@ -34871,8 +34246,8 @@ }, /obj/effect/spawner/window/reinforced, /obj/structure/cable{ - d2 = 4; - icon_state = "0-4" + icon_state = "0-4"; + d2 = 4 }, /obj/structure/cable{ d2 = 8; @@ -34910,8 +34285,8 @@ icon_state = "0-8" }, /obj/structure/cable{ - d2 = 4; - icon_state = "0-4" + icon_state = "0-4"; + d2 = 4 }, /obj/machinery/status_display{ density = 0; @@ -34936,8 +34311,8 @@ icon_state = "0-8" }, /obj/structure/cable{ - d2 = 4; - icon_state = "0-4" + icon_state = "0-4"; + d2 = 4 }, /turf/simulated/floor/plating, /area/bridge) @@ -34962,12 +34337,12 @@ icon_state = "0-8" }, /obj/structure/cable{ - d2 = 4; - icon_state = "0-4" + icon_state = "0-4"; + d2 = 4 }, /obj/structure/cable{ - d2 = 2; - icon_state = "0-2" + icon_state = "0-2"; + d2 = 2 }, /turf/simulated/floor/plating, /area/bridge) @@ -35092,12 +34467,9 @@ /turf/simulated/floor/plating, /area/hallway/secondary/exit) "bmo" = ( -/obj/structure/chair/comfy/red{ +/obj/structure/chair/comfy/beige{ dir = 1 }, -/obj/item/decorations/sticky_decorations/flammable/tinsel/green{ - pixel_y = 19 - }, /turf/simulated/floor/plasteel{ icon_state = "grimy" }, @@ -35212,9 +34584,6 @@ /turf/simulated/floor/plasteel, /area/hallway/primary/port) "bmA" = ( -/obj/item/decorations/sticky_decorations/flammable/tinsel/green{ - pixel_y = 19 - }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -35255,9 +34624,9 @@ "bmE" = ( /obj/machinery/light/small, /turf/simulated/floor/plasteel{ - dir = 2; + tag = "icon-cult"; icon_state = "cult"; - tag = "icon-cult" + dir = 2 }, /area/library) "bmF" = ( @@ -35266,9 +34635,9 @@ pixel_y = -25 }, /turf/simulated/floor/plasteel{ - dir = 2; + tag = "icon-cult"; icon_state = "cult"; - tag = "icon-cult" + dir = 2 }, /area/library) "bmG" = ( @@ -35279,9 +34648,9 @@ dir = 1 }, /turf/simulated/floor/plasteel{ - dir = 2; + tag = "icon-cult"; icon_state = "cult"; - tag = "icon-cult" + dir = 2 }, /area/library) "bmH" = ( @@ -35289,6 +34658,9 @@ /turf/simulated/floor/plating, /area/maintenance/fsmaint2) "bmI" = ( +/obj/structure/chair/comfy/black{ + dir = 4 + }, /obj/structure/cable{ d2 = 2; icon_state = "0-2" @@ -35299,9 +34671,6 @@ pixel_x = -24; shock_proof = 0 }, -/obj/structure/chair/comfy/green{ - dir = 4 - }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -35344,6 +34713,12 @@ icon_state = "darkred" }, /area/hallway/secondary/exit) +"bmM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) "bmN" = ( /obj/structure/cable{ d1 = 1; @@ -35516,7 +34891,6 @@ }, /obj/machinery/hologram/holopad, /obj/effect/decal/warning_stripes/southeastcorner, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/crew_quarters/locker) "bnh" = ( @@ -35718,22 +35092,14 @@ /obj/machinery/light_switch{ pixel_y = 28 }, -/obj/structure/snow{ - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel, /area/crew_quarters/locker) "bnB" = ( /obj/machinery/vending/cola, -/obj/structure/snow{ - dir = 6; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel, /area/crew_quarters/locker) "bnC" = ( /obj/machinery/vending/artvend, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/crew_quarters/locker) "bnD" = ( @@ -35751,15 +35117,10 @@ /area/civilian/pet_store) "bnF" = ( /obj/machinery/vending/clothing, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/crew_quarters/locker) "bnG" = ( /obj/machinery/vending/autodrobe, -/obj/structure/snow{ - dir = 10; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel, /area/crew_quarters/locker) "bnH" = ( @@ -35831,11 +35192,6 @@ /area/crew_quarters/bar) "bnR" = ( /obj/machinery/computer/atmos_alert, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, -/obj/structure/snow, /turf/simulated/floor/plasteel{ dir = 10; icon_state = "yellow" @@ -35856,7 +35212,6 @@ pixel_y = 4 }, /obj/item/storage/box/ids, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/bridge) "bnV" = ( @@ -35864,15 +35219,10 @@ name = "Bridge Power Monitoring Computer" }, /obj/structure/cable{ - d2 = 2; icon_state = "0-2"; - pixel_y = 1 + pixel_y = 1; + d2 = 2 }, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, -/obj/structure/snow, /turf/simulated/floor/plasteel{ dir = 6; icon_state = "yellow" @@ -35880,11 +35230,6 @@ /area/bridge) "bnW" = ( /obj/machinery/computer/station_alert, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, -/obj/structure/snow, /turf/simulated/floor/plasteel{ dir = 0; icon_state = "yellow" @@ -35892,11 +35237,6 @@ /area/bridge) "bnX" = ( /obj/machinery/computer/communications, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, -/obj/structure/snow, /turf/simulated/floor/plasteel{ dir = 0; icon_state = "blue" @@ -35904,11 +35244,6 @@ /area/bridge) "bnY" = ( /obj/machinery/computer/shuttle/labor, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, -/obj/structure/snow, /turf/simulated/floor/plasteel{ dir = 10; icon_state = "blue" @@ -35927,11 +35262,6 @@ /area/hallway/secondary/exit) "boa" = ( /obj/machinery/computer/shuttle/mining, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, -/obj/structure/snow, /turf/simulated/floor/plasteel{ dir = 6; icon_state = "blue" @@ -35996,7 +35326,6 @@ name = "Kitchen"; req_access_txt = "28" }, -/obj/item/reagent_containers/food/snacks/candy/candycane, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "cafeteria"; @@ -36010,7 +35339,6 @@ /obj/item/assembly/timer, /obj/item/assembly/signaler, /obj/item/assembly/signaler, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/bridge) "boi" = ( @@ -36020,9 +35348,6 @@ icon_state = "1-2"; tag = "" }, -/obj/item/decorations/sticky_decorations/flammable/tinsel/red{ - pixel_y = 19 - }, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "cafeteria"; @@ -36037,8 +35362,8 @@ }, /obj/machinery/kitchen_machine/grill, /turf/simulated/floor/plasteel{ - dir = 2; - icon_state = "cafeteria" + icon_state = "cafeteria"; + dir = 2 }, /area/crew_quarters/kitchen) "bok" = ( @@ -36161,8 +35486,8 @@ "bou" = ( /obj/item/reagent_containers/glass/bucket, /obj/structure/sink{ - dir = 8; icon_state = "sink"; + dir = 8; pixel_x = -12; pixel_y = 2 }, @@ -36183,15 +35508,14 @@ "bow" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "green" + icon_state = "green"; + dir = 4 }, /area/hydroponics) "box" = ( /obj/effect/landmark/start{ name = "Cargo Technician" }, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/quartermaster/office) "boy" = ( @@ -36201,9 +35525,9 @@ req_access_txt = "37" }, /turf/simulated/floor/plasteel{ - dir = 2; + tag = "icon-cult"; icon_state = "cult"; - tag = "icon-cult" + dir = 2 }, /area/library) "boz" = ( @@ -36329,7 +35653,6 @@ /area/crew_quarters/bar) "boN" = ( /obj/machinery/gibber, -/obj/structure/snow, /turf/simulated/floor/plasteel{ icon_state = "showroomfloor" }, @@ -36342,7 +35665,6 @@ /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, -/obj/structure/snow, /turf/simulated/floor/plasteel{ icon_state = "showroomfloor" }, @@ -36367,7 +35689,6 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/snow, /turf/simulated/floor/plasteel{ icon_state = "showroomfloor" }, @@ -36384,7 +35705,6 @@ /area/hallway/secondary/entry) "boS" = ( /obj/structure/closet/crate/freezer, -/obj/structure/snow, /turf/simulated/floor/plasteel{ icon_state = "showroomfloor" }, @@ -36483,7 +35803,6 @@ /obj/effect/landmark{ name = "lightsout" }, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/crew_quarters/locker) "bpe" = ( @@ -36503,11 +35822,10 @@ icon_state = "1-2" }, /obj/structure/disposalpipe/junction{ - dir = 4; + tag = "icon-pipe-j1 (EAST)"; icon_state = "pipe-j1"; - tag = "icon-pipe-j1 (EAST)" + dir = 4 }, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/hallway/primary/port) "bph" = ( @@ -36617,8 +35935,6 @@ /turf/simulated/floor/plasteel, /area/storage/tools) "bpo" = ( -/obj/item/decorations/sticky_decorations/flammable/snowman, -/obj/structure/snow, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "yellowcorner" @@ -36647,7 +35963,6 @@ icon_state = "1-2"; tag = "" }, -/obj/structure/snow, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "yellowcorner" @@ -36657,7 +35972,6 @@ /obj/structure/table/reinforced, /obj/item/flash, /obj/item/flash, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/bridge) "bps" = ( @@ -36675,7 +35989,6 @@ pixel_x = 29; pixel_y = 8 }, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/bridge) "bpt" = ( @@ -36689,10 +36002,9 @@ /obj/item/book/manual/sop_command, /obj/item/aicard, /obj/item/multitool, -/obj/structure/snow, /turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "blue" + icon_state = "blue"; + dir = 8 }, /area/bridge) "bpv" = ( @@ -36717,10 +36029,9 @@ /area/hallway/primary/central/north) "bpw" = ( /obj/structure/table/reinforced, -/obj/structure/snow, /turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "blue" + icon_state = "blue"; + dir = 4 }, /area/bridge) "bpx" = ( @@ -36731,7 +36042,6 @@ pixel_y = 0; tag = "" }, -/obj/structure/snow, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "greencorner" @@ -36777,7 +36087,6 @@ "bpB" = ( /obj/structure/table/reinforced, /obj/item/storage/fancy/donut_box, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/bridge) "bpC" = ( @@ -36898,7 +36207,6 @@ name = "Kitchen"; req_access_txt = "28" }, -/obj/item/reagent_containers/food/snacks/candy/cotton/bad_rainbow, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "cafeteria"; @@ -36922,8 +36230,8 @@ /area/chapel/main) "bpQ" = ( /obj/machinery/light{ - dir = 8; - icon_state = "tube1" + icon_state = "tube1"; + dir = 8 }, /obj/machinery/status_display{ layer = 4; @@ -36955,9 +36263,6 @@ /area/crew_quarters/kitchen) "bpT" = ( /obj/machinery/hologram/holopad, -/obj/item/decorations/sticky_decorations/flammable/tinsel/red{ - pixel_y = 19 - }, /turf/simulated/floor/carpet, /area/crew_quarters/mrchangs) "bpU" = ( @@ -37083,12 +36388,11 @@ d2 = 2; icon_state = "1-2" }, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/crew_quarters/locker) "bqi" = ( /obj/structure/table/wood, -/obj/item/clothing/head/cakehat, +/obj/item/kitchen/utensil/fork, /turf/simulated/floor/wood, /area/crew_quarters/bar) "bqj" = ( @@ -37102,12 +36406,9 @@ /area/maintenance/fsmaint2) "bqk" = ( /obj/structure/chair/wood/wings{ - dir = 8; + tag = "icon-wooden_chair_wings (WEST)"; icon_state = "wooden_chair_wings"; - tag = "icon-wooden_chair_wings (WEST)" - }, -/obj/effect/landmark/start{ - name = "Civilian" + dir = 8 }, /turf/simulated/floor/wood, /area/crew_quarters/bar) @@ -37163,9 +36464,9 @@ /area/shuttle/escape) "bqp" = ( /turf/simulated/shuttle/wall{ - dir = 2; + tag = "icon-swall7"; icon_state = "swall7"; - tag = "icon-swall7" + dir = 2 }, /area/shuttle/escape) "bqq" = ( @@ -37208,15 +36509,26 @@ /area/maintenance/fpmaint2) "bqu" = ( /obj/machinery/light{ - dir = 8; - icon_state = "tube1" + icon_state = "tube1"; + dir = 8 }, /obj/structure/closet/wardrobe/white, /turf/simulated/floor/plasteel, /area/crew_quarters/locker) +"bqv" = ( +/obj/structure/chair/stool, +/turf/simulated/floor/plasteel, +/area/crew_quarters/locker) "bqw" = ( -/obj/structure/snow, -/obj/item/a_gift, +/obj/structure/table, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/turf/simulated/floor/plasteel, +/area/crew_quarters/locker) +"bqx" = ( +/obj/structure/table, /turf/simulated/floor/plasteel, /area/crew_quarters/locker) "bqy" = ( @@ -37265,10 +36577,6 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/snow{ - dir = 1; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "cafeteria"; @@ -37323,9 +36631,6 @@ }, /area/hydroponics) "bqJ" = ( -/obj/item/decorations/sticky_decorations/flammable/tinsel/red{ - pixel_y = 19 - }, /turf/simulated/floor/plasteel, /area/storage/tools) "bqK" = ( @@ -37361,10 +36666,6 @@ req_access = null; req_access_txt = "2" }, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, /turf/simulated/floor/plasteel{ dir = 10; icon_state = "red" @@ -37375,11 +36676,6 @@ /obj/machinery/alarm{ pixel_y = 26 }, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, -/obj/structure/snow, /turf/simulated/floor/plasteel{ dir = 6; icon_state = "red" @@ -37394,14 +36690,6 @@ dir = 2; network = list("SS13") }, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, -/obj/structure/snow{ - dir = 4; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel{ dir = 0; icon_state = "red" @@ -37412,7 +36700,9 @@ /obj/machinery/recharger{ pixel_y = 0 }, -/obj/structure/snow, +/turf/simulated/floor/plasteel, +/area/bridge) +"bqS" = ( /turf/simulated/floor/plasteel, /area/bridge) "bqT" = ( @@ -37423,20 +36713,12 @@ }, /area/chapel/main) "bqU" = ( -/obj/item/decorations/sticky_decorations/flammable/tinsel/green{ - pixel_y = 19 - }, -/obj/structure/snow, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "bluecorner" }, /area/bridge) "bqV" = ( -/obj/item/decorations/sticky_decorations/flammable/tinsel/red{ - pixel_y = 19 - }, -/obj/structure/snow, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "bluecorner" @@ -37456,22 +36738,15 @@ pixel_y = 0; tag = "" }, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/bridge) "bqY" = ( /obj/structure/table/reinforced, /obj/item/storage/firstaid/regular, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/bridge) "bqZ" = ( /obj/machinery/computer/shuttle/mining, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, -/obj/structure/snow, /turf/simulated/floor/plasteel{ dir = 10; icon_state = "brown" @@ -37479,15 +36754,10 @@ /area/bridge) "bra" = ( /obj/machinery/light{ - dir = 4; - icon_state = "tube1" + icon_state = "tube1"; + dir = 4 }, /obj/machinery/computer/security/mining, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, -/obj/structure/snow, /turf/simulated/floor/plasteel{ dir = 6; icon_state = "brown" @@ -37504,11 +36774,6 @@ pixel_x = 0; pixel_y = 32 }, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, -/obj/structure/snow, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "brown" @@ -37541,8 +36806,8 @@ dir = 4 }, /turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "neutralcorner" + icon_state = "neutralcorner"; + dir = 4 }, /area/hallway/secondary/entry) "brf" = ( @@ -37556,19 +36821,30 @@ dir = 4; network = list("SS13") }, -/obj/machinery/gameboard, -/obj/structure/snow, /turf/simulated/floor/wood, /area/crew_quarters/bar) "brg" = ( -/obj/structure/snow{ - dir = 10; - icon_state = "snow_corner" +/obj/structure/chair/wood/wings{ + tag = "icon-wooden_chair_wings (WEST)"; + icon_state = "wooden_chair_wings"; + dir = 8 + }, +/obj/effect/landmark/start{ + name = "Civilian" }, /turf/simulated/floor/wood, /area/crew_quarters/bar) "brh" = ( /obj/structure/disposalpipe/segment, +/obj/structure/table/wood, +/obj/item/taperecorder{ + pixel_y = 0 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"bri" = ( +/obj/structure/table/wood, +/obj/item/dice/d20, /turf/simulated/floor/wood, /area/crew_quarters/bar) "brj" = ( @@ -37595,8 +36871,8 @@ dir = 4 }, /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "neutral" + icon_state = "neutral"; + dir = 1 }, /area/hallway/secondary/entry) "brl" = ( @@ -37607,8 +36883,8 @@ dir = 4 }, /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "neutral" + icon_state = "neutral"; + dir = 1 }, /area/hallway/secondary/entry) "brm" = ( @@ -37634,8 +36910,8 @@ dir = 4 }, /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "neutral" + icon_state = "neutral"; + dir = 1 }, /area/hallway/secondary/entry) "bro" = ( @@ -37655,8 +36931,8 @@ dir = 9 }, /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "neutralcorner" + icon_state = "neutralcorner"; + dir = 1 }, /area/hallway/secondary/entry) "brq" = ( @@ -37666,8 +36942,8 @@ /area/hallway/primary/central/nw) "brr" = ( /turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "green" + icon_state = "green"; + dir = 8 }, /area/hydroponics) "brs" = ( @@ -37687,8 +36963,8 @@ /area/hydroponics) "bru" = ( /turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "green" + icon_state = "green"; + dir = 4 }, /area/hydroponics) "brv" = ( @@ -37698,7 +36974,6 @@ d2 = 2; icon_state = "1-2" }, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/crew_quarters/locker) "brw" = ( @@ -37713,7 +36988,7 @@ /turf/simulated/floor/wood, /area/library) "bry" = ( -/obj/structure/chair/comfy/red, +/obj/structure/chair/comfy/black, /turf/simulated/floor/wood, /area/library) "brz" = ( @@ -37792,6 +37067,7 @@ /area/library) "brH" = ( /obj/structure/table/wood, +/obj/item/clothing/head/cakehat, /turf/simulated/floor/wood, /area/crew_quarters/bar) "brI" = ( @@ -37851,15 +37127,15 @@ /area/crew_quarters/locker) "brO" = ( /turf/simulated/shuttle/wall{ - dir = 2; - icon_state = "swall12" + icon_state = "swall12"; + dir = 2 }, /area/shuttle/transport) "brP" = ( /turf/space, /turf/simulated/shuttle/wall{ - dir = 2; - icon_state = "swall_f10" + icon_state = "swall_f10"; + dir = 2 }, /area/shuttle/transport) "brQ" = ( @@ -37874,11 +37150,6 @@ /area/shuttle/transport) "brS" = ( /obj/machinery/computer/crew, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, -/obj/structure/snow, /turf/simulated/floor/plasteel{ dir = 0; icon_state = "green" @@ -37935,8 +37206,8 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "green" + icon_state = "green"; + dir = 4 }, /area/hydroponics) "bsa" = ( @@ -38001,8 +37272,11 @@ /turf/simulated/floor/plasteel, /area/crew_quarters/locker) "bsg" = ( -/obj/structure/flora/tree/pine/xmas, -/obj/structure/snow, +/obj/structure/table, +/obj/item/clothing/head/soft/grey{ + pixel_x = -2; + pixel_y = 3 + }, /turf/simulated/floor/plasteel, /area/crew_quarters/locker) "bsh" = ( @@ -38107,26 +37381,22 @@ "bsu" = ( /obj/effect/spawner/window/reinforced, /obj/structure/cable{ - d2 = 2; icon_state = "0-2"; - pixel_y = 1 + pixel_y = 1; + d2 = 2 }, /turf/simulated/floor/plating, /area/bridge) "bsv" = ( /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "redcorner" + icon_state = "redcorner"; + dir = 1 }, /area/bridge) "bsw" = ( -/obj/structure/snow{ - dir = 1; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "redcorner" + icon_state = "redcorner"; + dir = 4 }, /area/bridge) "bsx" = ( @@ -38137,10 +37407,6 @@ /obj/effect/landmark{ name = "Marauder Entry" }, -/obj/structure/snow{ - dir = 9; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel, /area/bridge) "bsz" = ( @@ -38157,7 +37423,6 @@ icon_state = "4-8"; tag = "" }, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/bridge) "bsA" = ( @@ -38170,15 +37435,10 @@ /obj/effect/landmark{ name = "Marauder Entry" }, -/obj/structure/snow{ - dir = 5; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel, /area/bridge) "bsB" = ( /obj/machinery/atmospherics/unary/vent_pump/on, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/crew_quarters/locker) "bsC" = ( @@ -38194,7 +37454,6 @@ icon_state = "4-8"; tag = "" }, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/bridge) "bsD" = ( @@ -38207,7 +37466,6 @@ icon_state = "4-8"; tag = "" }, -/obj/structure/snow, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "browncorner"; @@ -38221,21 +37479,13 @@ icon_state = "4-8"; tag = "" }, -/obj/item/decorations/sticky_decorations/flammable/tinsel/green{ - pixel_y = 19 - }, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/bridge) "bsG" = ( -/obj/structure/snow{ - dir = 1; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel{ - dir = 4; + tag = "icon-browncorner (EAST)"; icon_state = "browncorner"; - tag = "icon-browncorner (EAST)" + dir = 4 }, /area/bridge) "bsH" = ( @@ -38248,10 +37498,6 @@ /obj/structure/chair{ dir = 1 }, -/obj/structure/snow{ - dir = 9; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel, /area/bridge) "bsI" = ( @@ -38349,8 +37595,8 @@ }, /obj/item/stack/packageWrap, /turf/simulated/floor/plasteel{ - dir = 2; - icon_state = "cafeteria" + icon_state = "cafeteria"; + dir = 2 }, /area/crew_quarters/kitchen) "bsT" = ( @@ -38378,8 +37624,8 @@ pixel_x = 3 }, /turf/simulated/floor/plasteel{ - dir = 2; - icon_state = "cafeteria" + icon_state = "cafeteria"; + dir = 2 }, /area/crew_quarters/kitchen) "bsV" = ( @@ -38392,8 +37638,8 @@ pixel_x = 5 }, /turf/simulated/floor/plasteel{ - dir = 2; - icon_state = "cafeteria" + icon_state = "cafeteria"; + dir = 2 }, /area/crew_quarters/kitchen) "bsW" = ( @@ -38412,8 +37658,8 @@ pixel_x = 24 }, /turf/simulated/floor/plasteel{ - dir = 2; - icon_state = "cafeteria" + icon_state = "cafeteria"; + dir = 2 }, /area/crew_quarters/kitchen) "bsY" = ( @@ -38483,21 +37729,35 @@ /turf/simulated/wall, /area/hallway/primary/starboard/east) "btf" = ( -/obj/structure/snow{ - dir = 4; - icon_state = "snow_corner" +/obj/structure/chair/wood/wings{ + tag = "icon-wooden_chair_wings (EAST)"; + icon_state = "wooden_chair_wings"; + dir = 4 }, -/turf/simulated/floor/plasteel{ - icon_state = "dark" +/obj/effect/landmark/start{ + name = "Civilian" }, -/area/hallway/primary/fore) +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"btg" = ( +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_x = 2; + pixel_y = 6 + }, +/obj/structure/table/wood, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = -2; + pixel_y = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) "bth" = ( /obj/structure/table/wood, /obj/item/paper, /turf/simulated/floor/wood, /area/library) "bti" = ( -/obj/structure/chair/comfy/green{ +/obj/structure/chair/comfy/black{ dir = 8 }, /turf/simulated/floor/wood, @@ -38521,18 +37781,20 @@ dir = 4; icon_state = "pipe-c" }, +/obj/structure/chair/wood/wings, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"btn" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/table/wood, +/obj/item/dice, /turf/simulated/floor/wood, /area/crew_quarters/bar) "bto" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/structure/snow, +/obj/structure/table/wood, +/obj/item/deck/cards, /turf/simulated/floor/wood, -/area/crew_quarters/courtroom) +/area/crew_quarters/bar) "btp" = ( /turf/simulated/floor/plasteel{ icon_state = "rampbottom"; @@ -38543,19 +37805,18 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/chair/wood/wings{ - dir = 4; - icon_state = "wooden_chair_wings"; - tag = "icon-wooden_chair_wings (EAST)" - }, -/obj/effect/landmark/start{ - name = "Civilian" - }, /turf/simulated/floor/wood, /area/crew_quarters/bar) "btr" = ( /obj/structure/table/wood, -/obj/item/kitchen/utensil/fork, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_x = 2; + pixel_y = 6 + }, /turf/simulated/floor/wood, /area/crew_quarters/bar) "bts" = ( @@ -38570,30 +37831,31 @@ "btt" = ( /obj/item/twohanded/required/kirbyplants, /obj/machinery/light{ - dir = 8; - icon_state = "tube1" + icon_state = "tube1"; + dir = 8 }, /turf/simulated/floor/plasteel, /area/shuttle/escape) "btu" = ( /obj/item/twohanded/required/kirbyplants, /obj/machinery/light{ - dir = 4; - icon_state = "tube1" + icon_state = "tube1"; + dir = 4 }, /turf/simulated/floor/plasteel, /area/shuttle/escape) "btv" = ( /turf/simulated/shuttle/floor, /turf/simulated/shuttle/wall/interior{ - icon_state = "swall_f9"; - tag = "icon-swall_f9" + tag = "icon-swall_f9"; + icon_state = "swall_f9" }, /area/shuttle/transport) "btw" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/structure/chair/wood/wings, /turf/simulated/floor/wood, /area/crew_quarters/bar) "btx" = ( @@ -38601,16 +37863,19 @@ dir = 8; icon_state = "pipe-c" }, +/obj/structure/chair/wood/wings{ + tag = "icon-wooden_chair_wings (EAST)"; + icon_state = "wooden_chair_wings"; + dir = 4 + }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/table/wood, -/obj/item/kitchen/utensil/fork, /turf/simulated/floor/wood, /area/crew_quarters/bar) "bty" = ( /obj/machinery/light/spot{ - dir = 1; + tag = "icon-tube1 (NORTH)"; icon_state = "tube1"; - tag = "icon-tube1 (NORTH)" + dir = 1 }, /obj/structure/chair/comfy/shuttle{ dir = 4 @@ -38619,9 +37884,9 @@ /area/shuttle/transport) "btz" = ( /obj/machinery/light/spot{ - dir = 1; + tag = "icon-tube1 (NORTH)"; icon_state = "tube1"; - tag = "icon-tube1 (NORTH)" + dir = 1 }, /obj/structure/chair/comfy/shuttle, /turf/simulated/shuttle/floor, @@ -38740,9 +38005,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/item/decorations/sticky_decorations/flammable/tinsel/red{ - pixel_y = 19 - }, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "cafeteria"; @@ -38778,9 +38040,6 @@ scrub_N2O = 1; scrub_Toxins = 1 }, -/obj/item/decorations/sticky_decorations/flammable/tinsel/green{ - pixel_y = 19 - }, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "cafeteria"; @@ -38822,8 +38081,8 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "green" + icon_state = "green"; + dir = 4 }, /area/hydroponics) "btV" = ( @@ -38921,14 +38180,17 @@ /turf/simulated/floor/plasteel, /area/hallway/secondary/entry) "bug" = ( +/obj/structure/table, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/obj/structure/snow, -/obj/item/a_gift, /turf/simulated/floor/plasteel, /area/crew_quarters/locker) "buh" = ( @@ -38939,10 +38201,6 @@ scrub_N2O = 1; scrub_Toxins = 1 }, -/obj/structure/snow{ - dir = 8; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel, /area/crew_quarters/locker) "bui" = ( @@ -39002,26 +38260,19 @@ scrub_N2O = 1; scrub_Toxins = 1 }, -/obj/structure/snow{ - dir = 1; - icon_state = "snow_surround" - }, /turf/simulated/floor/plasteel, /area/bridge) "bup" = ( /obj/machinery/atmospherics/unary/vent_pump/on, -/obj/structure/snow{ - dir = 1; - icon_state = "snow_surround" - }, /turf/simulated/floor/plasteel, /area/bridge) "buq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/table/wood, -/obj/item/reagent_containers/food/snacks/stew{ - pixel_x = 16 +/obj/structure/chair/wood/wings{ + tag = "icon-wooden_chair_wings (EAST)"; + icon_state = "wooden_chair_wings"; + dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/wood, /area/crew_quarters/bar) "bur" = ( @@ -39037,8 +38288,8 @@ /obj/structure/table, /obj/item/reagent_containers/food/snacks/mint, /turf/simulated/floor/plasteel{ - dir = 2; - icon_state = "cafeteria" + icon_state = "cafeteria"; + dir = 2 }, /area/crew_quarters/kitchen) "but" = ( @@ -39060,8 +38311,8 @@ /obj/structure/table, /obj/item/reagent_containers/food/drinks/bottle/cream, /turf/simulated/floor/plasteel{ - dir = 2; - icon_state = "cafeteria" + icon_state = "cafeteria"; + dir = 2 }, /area/crew_quarters/kitchen) "buv" = ( @@ -39082,12 +38333,12 @@ "bux" = ( /obj/structure/disposalpipe/segment, /obj/effect/decal/warning_stripes/arrow{ - dir = 1; - icon_state = "4" + icon_state = "4"; + dir = 1 }, /obj/effect/decal/warning_stripes/yellow/partial{ - dir = 1; - icon_state = "3" + icon_state = "3"; + dir = 1 }, /turf/simulated/floor/plasteel, /area/hallway/primary/starboard/east) @@ -39207,9 +38458,6 @@ /obj/effect/landmark/start{ name = "Chef" }, -/obj/item/decorations/sticky_decorations/flammable/tinsel/red{ - pixel_y = 19 - }, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "cafeteria"; @@ -39221,14 +38469,14 @@ /obj/machinery/reagentgrinder, /obj/machinery/requests_console{ department = "Kitchen"; - departmentType = 2; name = "Kitchen Requests Console"; + departmentType = 2; pixel_x = 30; pixel_y = 0 }, /turf/simulated/floor/plasteel{ - dir = 2; - icon_state = "cafeteria" + icon_state = "cafeteria"; + dir = 2 }, /area/crew_quarters/kitchen) "buL" = ( @@ -39258,6 +38506,11 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/mrchangs) +"buN" = ( +/obj/structure/table/wood, +/obj/item/candle, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) "buO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -39281,6 +38534,23 @@ icon_state = "dark" }, /area/hydroponics) +"buQ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/chair/wood/wings{ + tag = "icon-wooden_chair_wings (NORTH)"; + icon_state = "wooden_chair_wings"; + dir = 1 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"buR" = ( +/obj/structure/chair/wood/wings{ + tag = "icon-wooden_chair_wings (NORTH)"; + icon_state = "wooden_chair_wings"; + dir = 1 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) "buS" = ( /obj/structure/cable{ d1 = 1; @@ -39313,8 +38583,8 @@ pixel_y = 0 }, /turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "neutralcorner" + icon_state = "neutralcorner"; + dir = 4 }, /area/crew_quarters/dorms) "buV" = ( @@ -39508,13 +38778,10 @@ /area/security/vacantoffice) "bvo" = ( /obj/machinery/light{ - dir = 4; - icon_state = "tube1" + icon_state = "tube1"; + dir = 4 }, /obj/structure/filingcabinet/chestdrawer, -/obj/item/decorations/sticky_decorations/flammable/tinsel/red{ - pixel_y = 19 - }, /turf/simulated/floor/wood, /area/security/vacantoffice) "bvp" = ( @@ -39522,11 +38789,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 }, -/obj/structure/table, -/obj/item/clothing/head/soft/grey{ - pixel_x = -2; - pixel_y = 3 - }, /turf/simulated/floor/plasteel, /area/crew_quarters/locker) "bvq" = ( @@ -39543,30 +38805,28 @@ "bvs" = ( /turf/simulated/wall, /area/crew_quarters/locker/locker_toilet) +"bvt" = ( +/obj/structure/table, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel, +/area/crew_quarters/locker) "bvu" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/crew_quarters/locker) "bvv" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/table, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/structure/snow{ - dir = 5; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel, /area/crew_quarters/locker) "bvw" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, -/obj/item/decorations/sticky_decorations/flammable/tinsel/green{ - pixel_y = 19 - }, /turf/simulated/floor/plasteel, /area/storage/tools) "bvx" = ( @@ -39629,10 +38889,6 @@ /obj/effect/landmark{ name = "Marauder Entry" }, -/obj/structure/snow{ - dir = 5; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel, /area/bridge) "bvD" = ( @@ -39724,16 +38980,15 @@ name = "Chapel Office"; req_access_txt = "22" }, -/obj/structure/snow, /turf/simulated/floor/plasteel{ icon_state = "dark" }, /area/chapel/office) "bvO" = ( /obj/structure/cable{ - d2 = 2; icon_state = "0-2"; - pixel_y = 1 + pixel_y = 1; + d2 = 2 }, /obj/machinery/power/apc{ dir = 8; @@ -39765,7 +39020,6 @@ }, /obj/structure/table/reinforced, /obj/effect/decal/warning_stripes/yellow/hollow, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/quartermaster/office) "bvR" = ( @@ -39797,7 +39051,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/crew_quarters/locker) "bvT" = ( @@ -39816,13 +39069,6 @@ initialize_directions = 11; level = 1 }, -/obj/item/decorations/sticky_decorations/flammable/tinsel/green{ - pixel_y = 19 - }, -/obj/structure/snow{ - dir = 4; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel, /area/crew_quarters/locker) "bvU" = ( @@ -39847,8 +39093,8 @@ pixel_y = -24 }, /turf/simulated/floor/plasteel{ - dir = 6; - icon_state = "blue" + icon_state = "blue"; + dir = 6 }, /area/bridge) "bvW" = ( @@ -39866,8 +39112,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/structure/snow, -/obj/item/a_gift, /turf/simulated/floor/plasteel, /area/crew_quarters/locker) "bvX" = ( @@ -39875,13 +39119,9 @@ /area/turret_protected/ai_upload) "bvY" = ( /obj/structure/filingcabinet/filingcabinet, -/obj/structure/snow{ - dir = 1; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel{ - dir = 10; - icon_state = "blue" + icon_state = "blue"; + dir = 10 }, /area/bridge) "bvZ" = ( @@ -39900,8 +39140,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/structure/snow, -/obj/item/a_gift, /turf/simulated/floor/plasteel, /area/crew_quarters/locker) "bwa" = ( @@ -39916,7 +39154,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/crew_quarters/locker) "bwb" = ( @@ -39940,8 +39177,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/structure/snow, -/obj/item/a_gift, /turf/simulated/floor/plasteel, /area/crew_quarters/locker) "bwc" = ( @@ -39965,10 +39200,6 @@ initialize_directions = 10; level = 1 }, -/obj/item/decorations/sticky_decorations/flammable/tinsel/red{ - pixel_y = 19 - }, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/crew_quarters/locker) "bwe" = ( @@ -39983,8 +39214,8 @@ "bwf" = ( /obj/machinery/door/firedoor, /turf/simulated/floor/plasteel{ - dir = 10; - icon_state = "blue" + icon_state = "blue"; + dir = 10 }, /area/hallway/primary/central/ne) "bwg" = ( @@ -40086,10 +39317,6 @@ icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/snow{ - dir = 8; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel, /area/crew_quarters/locker) "bwr" = ( @@ -40102,9 +39329,6 @@ /obj/structure/disposalpipe/trunk{ dir = 8 }, -/obj/item/decorations/sticky_decorations/flammable/tinsel/red{ - pixel_y = 19 - }, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "cafeteria"; @@ -40189,22 +39413,22 @@ /turf/simulated/floor/plasteel, /area/hallway/primary/central/nw) "bwC" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/snacks/chocolatebar, -/obj/structure/snow, -/turf/simulated/floor/wood, +/obj/structure/flora/ausbushes/stalkybush, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/grass, /area/hallway/secondary/exit) "bwD" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/chocolate, -/obj/structure/snow, -/turf/simulated/floor/wood, +/obj/structure/flora/ausbushes/pointybush, +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/ywflowers, +/turf/simulated/floor/grass, /area/hallway/secondary/exit) "bwE" = ( /turf/simulated/shuttle/floor, /turf/simulated/shuttle/wall/interior{ - icon_state = "swall_f10"; - tag = "icon-swall_f10" + tag = "icon-swall_f10"; + icon_state = "swall_f10" }, /area/shuttle/transport) "bwF" = ( @@ -40282,8 +39506,8 @@ dir = 4 }, /turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "blue" + icon_state = "blue"; + dir = 4 }, /area/hallway/primary/central/nw) "bwO" = ( @@ -40411,12 +39635,12 @@ /obj/effect/decal/warning_stripes/northeastcorner, /obj/effect/decal/warning_stripes/southeastcorner, /obj/effect/decal/warning_stripes/yellow/partial{ - dir = 4; - icon_state = "3" + icon_state = "3"; + dir = 4 }, /obj/effect/decal/warning_stripes/arrow{ - dir = 4; - icon_state = "4" + icon_state = "4"; + dir = 4 }, /turf/simulated/floor/plasteel, /area/hallway/secondary/exit) @@ -40592,10 +39816,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/structure/snow{ - dir = 1; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel{ dir = 0; icon_state = "blue" @@ -40645,8 +39865,7 @@ }, /area/bridge) "bxx" = ( -/obj/structure/flora/tree/pine/xmas, -/obj/structure/snow, +/obj/machinery/computer/arcade, /turf/simulated/floor/wood, /area/crew_quarters/bar) "bxy" = ( @@ -40664,15 +39883,15 @@ icon_state = "1-8" }, /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "neutralcorner" + icon_state = "neutralcorner"; + dir = 1 }, /area/crew_quarters/dorms) "bxz" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/h_chocolate, -/obj/structure/snow, -/turf/simulated/floor/wood, +/obj/structure/flora/ausbushes/leafybush, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/ppflowers, +/turf/simulated/floor/grass, /area/hallway/secondary/exit) "bxA" = ( /obj/structure/closet/fireaxecabinet{ @@ -40708,10 +39927,6 @@ initialize_directions = 11; level = 1 }, -/obj/structure/snow{ - dir = 1; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel{ dir = 0; icon_state = "blue" @@ -40912,13 +40127,13 @@ /turf/simulated/floor/wood, /area/library) "bxR" = ( +/obj/structure/chair/comfy/black{ + dir = 4 + }, /obj/machinery/light/small, /obj/effect/landmark/start{ name = "Civilian" }, -/obj/structure/chair/comfy/red{ - dir = 4 - }, /turf/simulated/floor/wood, /area/library) "bxS" = ( @@ -40927,18 +40142,18 @@ /turf/simulated/floor/wood, /area/library) "bxT" = ( +/obj/structure/chair/comfy/black{ + dir = 8 + }, /obj/effect/landmark/start{ name = "Civilian" }, -/obj/structure/chair/comfy/green{ - dir = 8 - }, /turf/simulated/floor/wood, /area/library) "bxU" = ( /obj/structure/cable{ - d2 = 4; - icon_state = "0-4" + icon_state = "0-4"; + d2 = 4 }, /obj/machinery/light, /obj/machinery/power/apc{ @@ -40953,17 +40168,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/structure/snow{ - dir = 5; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel{ dir = 0; icon_state = "blue" }, /area/bridge) "bxV" = ( -/obj/structure/chair/comfy/red{ +/obj/structure/chair/comfy/black{ dir = 4 }, /turf/simulated/floor/wood, @@ -41013,7 +40224,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/structure/snow, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "bluecorner" @@ -41079,8 +40289,8 @@ "byd" = ( /turf/space, /turf/simulated/shuttle/wall{ - dir = 2; - icon_state = "swall_f9" + icon_state = "swall_f9"; + dir = 2 }, /area/shuttle/transport) "bye" = ( @@ -41230,8 +40440,8 @@ dir = 4 }, /turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "blue" + icon_state = "blue"; + dir = 8 }, /area/hallway/primary/central/ne) "bys" = ( @@ -41344,6 +40554,14 @@ }, /turf/simulated/wall, /area/quartermaster/office) +"byD" = ( +/obj/structure/chair/wood/wings{ + tag = "icon-wooden_chair_wings (EAST)"; + icon_state = "wooden_chair_wings"; + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) "byE" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 @@ -41360,11 +40578,10 @@ }, /area/hallway/primary/central/west) "byG" = ( +/obj/machinery/photocopier, /obj/structure/sign/poster/official/random{ pixel_x = -32 }, -/obj/structure/table, -/obj/structure/snow, /turf/simulated/floor/wood, /area/bridge/meeting_room) "byH" = ( @@ -41374,10 +40591,6 @@ pixel_x = 0; pixel_y = 24 }, -/obj/structure/snow, -/obj/item/nanomob_card, -/obj/item/a_gift, -/obj/item/twohanded/dualsaber/toy, /turf/simulated/floor/wood, /area/bridge/meeting_room) "byI" = ( @@ -41387,8 +40600,6 @@ /obj/machinery/light{ dir = 1 }, -/obj/machinery/photocopier, -/obj/structure/snow, /turf/simulated/floor/wood, /area/bridge/meeting_room) "byJ" = ( @@ -41403,11 +40614,6 @@ dir = 2; network = list("SS13") }, -/obj/structure/table, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/structure/snow, /turf/simulated/floor/wood, /area/bridge/meeting_room) "byK" = ( @@ -41421,16 +40627,12 @@ /obj/machinery/light_switch{ pixel_y = 27 }, -/obj/structure/table, -/obj/item/book/manual/sop_general, -/obj/item/storage/fancy/donut_box, -/obj/structure/snow, /turf/simulated/floor/wood, /area/bridge/meeting_room) "byL" = ( /obj/structure/cable{ - d2 = 4; - icon_state = "0-4" + icon_state = "0-4"; + d2 = 4 }, /obj/machinery/power/apc{ dir = 1; @@ -41438,11 +40640,6 @@ pixel_x = 0; pixel_y = 24 }, -/obj/structure/table, -/obj/item/hand_labeler, -/obj/item/stack/packageWrap, -/obj/item/assembly/timer, -/obj/structure/snow, /turf/simulated/floor/wood, /area/bridge/meeting_room) "byM" = ( @@ -41454,8 +40651,8 @@ scrub_Toxins = 1 }, /turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "green" + icon_state = "green"; + dir = 4 }, /area/hydroponics) "byN" = ( @@ -41664,9 +40861,6 @@ /turf/simulated/wall, /area/crew_quarters/bar) "bzf" = ( -/obj/item/decorations/sticky_decorations/flammable/tinsel/green{ - pixel_y = 19 - }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "whitecorner" @@ -41727,22 +40921,30 @@ icon_state = "dark" }, /area/chapel/main) +"bzm" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/obj/structure/flora/ausbushes/pointybush, +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/ywflowers, +/turf/simulated/floor/grass, +/area/hallway/secondary/exit) "bzn" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 1 }, -/obj/structure/snow, /turf/simulated/floor/wood, /area/crew_quarters/bar) "bzo" = ( /obj/machinery/light, /obj/structure/chair/wood/wings{ - dir = 4; + tag = "icon-wooden_chair_wings (EAST)"; icon_state = "wooden_chair_wings"; - tag = "icon-wooden_chair_wings (EAST)" + dir = 4 }, -/obj/structure/snow, /turf/simulated/floor/wood, /area/crew_quarters/bar) "bzp" = ( @@ -41900,10 +41102,6 @@ /area/hallway/secondary/exit) "bzE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/snow{ - dir = 5; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel, /area/quartermaster/office) "bzF" = ( @@ -41921,8 +41119,8 @@ /obj/structure/table, /obj/machinery/requests_console{ department = "Cargo Bay"; - departmentType = 2; name = "Cargo Requests Console"; + departmentType = 2; pixel_y = 30 }, /obj/item/stack/tape_roll, @@ -41935,8 +41133,8 @@ pixel_y = 3 }, /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "arrival" + icon_state = "arrival"; + dir = 1 }, /area/quartermaster/office) "bzI" = ( @@ -41950,12 +41148,9 @@ name = "station intercom (General)"; pixel_y = 25 }, -/obj/structure/snow{ - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "arrival" + icon_state = "arrival"; + dir = 1 }, /area/quartermaster/office) "bzJ" = ( @@ -41968,8 +41163,8 @@ /obj/item/stack/packageWrap, /obj/item/rcs, /turf/simulated/floor/plasteel{ - dir = 5; - icon_state = "arrival" + icon_state = "arrival"; + dir = 5 }, /area/quartermaster/office) "bzL" = ( @@ -41985,9 +41180,6 @@ scrub_N2O = 1; scrub_Toxins = 1 }, -/obj/item/decorations/sticky_decorations/flammable/tinsel/green{ - pixel_y = 19 - }, /turf/simulated/floor/carpet, /area/security/vacantoffice) "bzM" = ( @@ -42003,11 +41195,10 @@ }, /area/hallway/primary/central/west) "bzN" = ( -/obj/structure/flora/tree/pine/xmas, -/obj/item/decorations/sticky_decorations/flammable/tinsel/red{ - pixel_y = 19 +/obj/machinery/recharger{ + pixel_y = 4 }, -/obj/structure/snow, +/obj/structure/table, /turf/simulated/floor/wood, /area/bridge/meeting_room) "bzO" = ( @@ -42018,9 +41209,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, -/obj/item/decorations/sticky_decorations/flammable/tinsel/red{ - pixel_y = 19 - }, /turf/simulated/floor/carpet, /area/security/vacantoffice) "bzQ" = ( @@ -42073,10 +41261,6 @@ /obj/structure/disposalpipe/trunk{ dir = 1 }, -/obj/structure/snow{ - dir = 5; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel, /area/crew_quarters/locker) "bzV" = ( @@ -42085,10 +41269,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, -/obj/structure/snow{ - dir = 1; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel, /area/crew_quarters/locker) "bzW" = ( @@ -42114,8 +41294,11 @@ /obj/machinery/vending/cigarette, /turf/simulated/floor/wood, /area/crew_quarters/captain) +"bzY" = ( +/turf/simulated/floor/wood, +/area/crew_quarters/captain) "bzZ" = ( -/obj/structure/chair/comfy/red{ +/obj/structure/chair/comfy/brown{ dir = 4 }, /turf/simulated/floor/carpet, @@ -42130,10 +41313,6 @@ /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, -/obj/structure/snow{ - dir = 8; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel, /area/crew_quarters/locker) "bAc" = ( @@ -42141,15 +41320,15 @@ /turf/simulated/floor/wood, /area/crew_quarters/captain) "bAd" = ( +/obj/structure/chair/comfy/brown{ + dir = 8 + }, /obj/structure/cable{ d1 = 1; d2 = 2; icon_state = "1-2"; tag = "" }, -/obj/structure/chair/comfy/green{ - dir = 8 - }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) "bAe" = ( @@ -42183,8 +41362,8 @@ /area/hallway/primary/starboard/west) "bAj" = ( /obj/structure/cable{ - d2 = 4; - icon_state = "0-4" + icon_state = "0-4"; + d2 = 4 }, /obj/machinery/power/apc{ dir = 8; @@ -42291,6 +41470,13 @@ }, /turf/simulated/floor/plating, /area/maintenance/port) +"bAv" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Diner" + }, +/turf/simulated/floor/plasteel, +/area/crew_quarters/bar) "bAw" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -42336,8 +41522,8 @@ "bAA" = ( /obj/machinery/door/firedoor, /turf/simulated/floor/plasteel{ - dir = 6; - icon_state = "blue" + icon_state = "blue"; + dir = 6 }, /area/hallway/primary/central/nw) "bAB" = ( @@ -42430,19 +41616,21 @@ /turf/simulated/floor/plasteel, /area/hallway/secondary/exit) "bAJ" = ( -/obj/structure/snow{ - dir = 6; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "green" + icon_state = "green"; + dir = 4 }, /area/hallway/secondary/exit) "bAK" = ( /obj/structure/sign/poster/official/random, /turf/simulated/wall, /area/hallway/secondary/exit) +"bAL" = ( +/turf/simulated/floor/plasteel{ + icon_state = "green"; + dir = 8 + }, +/area/hallway/secondary/exit) "bAM" = ( /obj/structure/cable{ d1 = 1; @@ -42478,9 +41666,9 @@ pixel_y = 32 }, /obj/machinery/light/spot{ - dir = 1; + tag = "icon-tube1 (NORTH)"; icon_state = "tube1"; - tag = "icon-tube1 (NORTH)" + dir = 1 }, /obj/structure/chair/comfy/shuttle, /turf/simulated/shuttle/floor{ @@ -42499,10 +41687,6 @@ dir = 5; level = 1 }, -/obj/structure/snow{ - dir = 10; - icon_state = "snow_corner" - }, /turf/simulated/floor/wood, /area/crew_quarters/bar) "bAV" = ( @@ -42670,13 +41854,6 @@ /area/quartermaster/office) "bBo" = ( /obj/machinery/hologram/holopad, -/obj/item/decorations/sticky_decorations/flammable/tinsel/red{ - pixel_y = 19 - }, -/obj/structure/snow{ - dir = 8; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel, /area/quartermaster/office) "bBp" = ( @@ -42686,8 +41863,8 @@ }, /obj/machinery/recharger, /turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "arrival" + icon_state = "arrival"; + dir = 4 }, /area/quartermaster/office) "bBq" = ( @@ -42742,15 +41919,18 @@ /area/security/vacantoffice) "bBu" = ( /obj/structure/table/wood, -/obj/item/book/manual/security_space_law, -/obj/structure/snow, +/obj/item/radio/intercom/command, /turf/simulated/floor/carpet, /area/bridge/meeting_room) "bBv" = ( -/obj/structure/chair/comfy/green{ +/obj/item/book/manual/security_space_law, +/obj/structure/table/wood, +/turf/simulated/floor/carpet, +/area/bridge/meeting_room) +"bBw" = ( +/obj/structure/chair/comfy/black{ dir = 8 }, -/obj/structure/snow, /turf/simulated/floor/carpet, /area/bridge/meeting_room) "bBx" = ( @@ -42781,8 +41961,8 @@ /area/turret_protected/ai_upload) "bBA" = ( /turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "vault" + icon_state = "vault"; + dir = 8 }, /area/turret_protected/ai_upload) "bBB" = ( @@ -42868,12 +42048,12 @@ /obj/effect/decal/warning_stripes/southeastcorner, /obj/effect/decal/warning_stripes/northeastcorner, /obj/effect/decal/warning_stripes/yellow/partial{ - dir = 4; - icon_state = "3" + icon_state = "3"; + dir = 4 }, /obj/effect/decal/warning_stripes/arrow{ - dir = 4; - icon_state = "4" + icon_state = "4"; + dir = 4 }, /turf/simulated/floor/plasteel, /area/hallway/secondary/exit) @@ -42886,12 +42066,6 @@ /area/medical/reception) "bBM" = ( /obj/structure/disposalpipe/segment, -/obj/item/gift, -/obj/structure/snow, -/obj/item/toy/figure/md, -/obj/item/toy/therapy, -/obj/item/toy/foamblade, -/obj/item/nanomob_card, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "white" @@ -42966,9 +42140,9 @@ /area/crew_quarters/locker) "bBX" = ( /turf/simulated/shuttle/wall{ - dir = 2; + tag = "icon-swall14"; icon_state = "swall14"; - tag = "icon-swall14" + dir = 2 }, /area/shuttle/escape) "bBZ" = ( @@ -43010,8 +42184,8 @@ dir = 4 }, /obj/structure/shuttle/engine/heater{ - dir = 8; - icon_state = "heater" + icon_state = "heater"; + dir = 8 }, /turf/unsimulated/floor, /area/shuttle/specops) @@ -43221,24 +42395,15 @@ }, /obj/machinery/light/small, /obj/structure/chair/wood/wings{ - dir = 8; + tag = "icon-wooden_chair_wings (WEST)"; icon_state = "wooden_chair_wings"; - tag = "icon-wooden_chair_wings (WEST)" - }, -/obj/structure/snow{ - dir = 10; - icon_state = "snow_corner" + dir = 8 }, /turf/simulated/floor/wood, /area/crew_quarters/bar) "bCC" = ( -/obj/structure/chair/comfy/red{ - dir = 8 - }, -/obj/structure/snow{ - dir = 8; - icon_state = "snow_surround" - }, +/obj/item/folder/blue, +/obj/structure/table/wood, /turf/simulated/floor/carpet, /area/bridge/meeting_room) "bCD" = ( @@ -43247,12 +42412,9 @@ /area/bridge/meeting_room) "bCE" = ( /obj/structure/filingcabinet/filingcabinet, -/obj/structure/snow{ - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "arrival" + icon_state = "arrival"; + dir = 4 }, /area/quartermaster/office) "bCF" = ( @@ -43261,18 +42423,15 @@ icon_state = "alarm0"; pixel_x = -22 }, -/obj/structure/snow{ - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "browncorner" }, /area/hallway/primary/central/west) "bCG" = ( +/obj/item/pen, /obj/structure/table/wood, -/obj/item/folder/blue, -/obj/structure/snow, +/obj/item/paper_bin/nanotrasen, /turf/simulated/floor/carpet, /area/bridge/meeting_room) "bCH" = ( @@ -43304,25 +42463,7 @@ dir = 1; network = list("SS13") }, -/obj/structure/table/wood, -/obj/item/candle{ - pixel_y = -5 - }, -/obj/item/decorations/sticky_decorations/flammable/mistletoe{ - pixel_y = 10 - }, -/obj/item/kitchen/utensil/fork{ - pixel_x = 8 - }, -/obj/item/reagent_containers/food/condiment/saltshaker{ - pixel_x = -7; - pixel_y = 4 - }, -/obj/item/reagent_containers/food/condiment/peppermill{ - pixel_x = -3; - pixel_y = 6 - }, -/obj/structure/snow, +/obj/machinery/gameboard, /turf/simulated/floor/wood, /area/crew_quarters/bar) "bCJ" = ( @@ -43342,10 +42483,6 @@ pixel_x = 0; pixel_y = -21 }, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, /turf/simulated/floor/bluegrid, /area/turret_protected/ai_upload) "bCL" = ( @@ -43354,10 +42491,6 @@ pixel_x = 0; pixel_y = -28 }, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, /turf/simulated/floor/bluegrid, /area/turret_protected/ai_upload) "bCM" = ( @@ -43399,9 +42532,6 @@ /area/crew_quarters/captain) "bCQ" = ( /mob/living/simple_animal/pet/dog/fox/Renault, -/obj/item/decorations/sticky_decorations/flammable/tinsel/green{ - pixel_y = 19 - }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) "bCR" = ( @@ -43409,12 +42539,21 @@ /turf/simulated/floor/wood, /area/library) "bCS" = ( -/obj/machinery/light/small, -/obj/structure/chair/comfy/green{ +/obj/structure/chair/comfy/black{ dir = 8 }, +/obj/machinery/light/small, /turf/simulated/floor/wood, /area/library) +"bCT" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 0; + icon_state = "green" + }, +/area/hallway/secondary/exit) "bCU" = ( /obj/structure/cable{ d1 = 1; @@ -43435,9 +42574,14 @@ /turf/simulated/floor/wood, /area/crew_quarters/captain) "bCW" = ( +/obj/structure/table, /obj/machinery/light{ - dir = 8; - icon_state = "tube1" + icon_state = "tube1"; + dir = 8 + }, +/obj/item/storage/box/cups{ + pixel_x = 6; + pixel_y = 6 }, /obj/machinery/vending/wallmed{ name = "Emergency NanoMed"; @@ -43445,23 +42589,25 @@ pixel_y = 0; req_access_txt = "0" }, -/obj/structure/flora/tree/pine/xmas, -/obj/item/decorations/sticky_decorations/flammable/tinsel/blue{ - pixel_y = 19 - }, -/obj/structure/snow, +/obj/item/roller, /turf/simulated/floor/plasteel{ - dir = 8; + tag = "icon-whiteblue (WEST)"; icon_state = "whiteblue"; - tag = "icon-whiteblue (WEST)" + dir = 8 }, /area/medical/reception) +"bCX" = ( +/turf/simulated/floor/plasteel{ + dir = 0; + icon_state = "green" + }, +/area/hallway/secondary/exit) "bCY" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d2 = 2; icon_state = "0-2"; - pixel_y = 1 + pixel_y = 1; + d2 = 2 }, /obj/machinery/power/apc{ dir = 8; @@ -43492,21 +42638,16 @@ }, /area/hallway/primary/starboard/west) "bDc" = ( +/obj/structure/reagent_dispensers/water_cooler, /obj/machinery/status_display{ layer = 4; pixel_x = -32; pixel_y = 0 }, -/obj/item/gift, -/obj/structure/snow, -/obj/item/toy/figure/virologist, -/obj/item/toy/therapy, -/obj/item/toy/plushie/deer, -/obj/item/nanomob_card, /turf/simulated/floor/plasteel{ - dir = 10; + tag = "icon-whiteblue (SOUTHWEST)"; icon_state = "whiteblue"; - tag = "icon-whiteblue (SOUTHWEST)" + dir = 10 }, /area/medical/reception) "bDd" = ( @@ -43516,16 +42657,15 @@ pixel_y = -32 }, /obj/machinery/light, -/obj/structure/snow, /turf/simulated/floor/plasteel{ - icon_state = "whiteblue"; - tag = "icon-whiteblue" + tag = "icon-whiteblue"; + icon_state = "whiteblue" }, /area/medical/reception) "bDe" = ( /turf/simulated/floor/plasteel{ - icon_state = "whitebluefull"; - tag = "icon-whitebluefull" + tag = "icon-whitebluefull"; + icon_state = "whitebluefull" }, /area/medical/reception) "bDf" = ( @@ -43553,9 +42693,6 @@ /obj/structure/chair/office/light{ dir = 8 }, -/obj/item/decorations/sticky_decorations/flammable/tinsel/blue{ - pixel_y = 19 - }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "whiteyellow" @@ -43589,6 +42726,16 @@ icon_state = "white" }, /area/medical/chemistry) +"bDk" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/light, +/turf/simulated/floor/plasteel{ + dir = 0; + icon_state = "green" + }, +/area/hallway/secondary/exit) "bDl" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel{ @@ -43613,23 +42760,22 @@ /obj/effect/landmark/start{ name = "Chemist" }, -/obj/item/decorations/sticky_decorations/flammable/tinsel/blue{ - pixel_y = 19 - }, /turf/simulated/floor/plasteel, /area/medical/chemistry) "bDo" = ( -/obj/item/gift, -/obj/structure/snow, -/obj/item/nanomob_card, -/obj/item/toy/figure/hop, -/obj/item/toy/figure/ian, -/obj/item/toy/plushie/corgi, -/obj/item/toy/plushie/girly_corgi, +/obj/item/assembly/timer, +/obj/structure/table, +/obj/item/stack/packageWrap, +/obj/item/hand_labeler, /turf/simulated/floor/wood, /area/bridge/meeting_room) "bDp" = ( -/obj/structure/snow, +/obj/machinery/status_display{ + density = 0; + layer = 4; + pixel_x = 0; + pixel_y = -32 + }, /turf/simulated/floor/plasteel{ dir = 0; icon_state = "green" @@ -43649,9 +42795,8 @@ }, /area/hallway/primary/starboard/east) "bDs" = ( -/obj/structure/snow{ - dir = 8; - icon_state = "snow_corner" +/obj/structure/chair/comfy/black{ + dir = 4 }, /turf/simulated/floor/carpet, /area/bridge/meeting_room) @@ -43666,12 +42811,12 @@ /obj/effect/decal/warning_stripes/southeastcorner, /obj/effect/decal/warning_stripes/northeastcorner, /obj/effect/decal/warning_stripes/yellow/partial{ - dir = 4; - icon_state = "3" + icon_state = "3"; + dir = 4 }, /obj/effect/decal/warning_stripes/arrow{ - dir = 4; - icon_state = "4" + icon_state = "4"; + dir = 4 }, /turf/simulated/floor/plasteel, /area/hallway/secondary/exit) @@ -43682,8 +42827,8 @@ icon_state = "1-2" }, /obj/machinery/light{ - dir = 4; - icon_state = "tube1" + icon_state = "tube1"; + dir = 4 }, /obj/structure/extinguisher_cabinet{ pixel_x = 27 @@ -43717,7 +42862,9 @@ /turf/simulated/floor/plasteel, /area/quartermaster/storage) "bDy" = ( -/obj/structure/snow, +/obj/structure/table, +/obj/item/book/manual/sop_general, +/obj/item/storage/fancy/donut_box, /turf/simulated/floor/wood, /area/bridge/meeting_room) "bDz" = ( @@ -43747,9 +42894,9 @@ /area/maintenance/disposal) "bDG" = ( /obj/machinery/light/spot{ - dir = 8; + tag = "icon-tube1 (WEST)"; icon_state = "tube1"; - tag = "icon-tube1 (WEST)" + dir = 8 }, /turf/simulated/shuttle/floor{ icon_state = "floor4" @@ -43877,10 +43024,6 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/snow{ - dir = 8; - icon_state = "snow_corner" - }, /turf/simulated/floor/wood, /area/bridge/meeting_room) "bDT" = ( @@ -43996,10 +43139,9 @@ pixel_y = 7 }, /obj/structure/table/reinforced, -/obj/structure/snow, /turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "arrival" + icon_state = "arrival"; + dir = 4 }, /area/quartermaster/office) "bEg" = ( @@ -44082,11 +43224,17 @@ icon_state = "freezerfloor" }, /area/crew_quarters/locker/locker_toilet) +"bEs" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + tag = "" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) "bEt" = ( /obj/machinery/optable, -/obj/item/decorations/sticky_decorations/flammable/tinsel/blue{ - pixel_y = 19 - }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -44251,12 +43399,6 @@ /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, -/obj/item/gift, -/obj/structure/snow, -/obj/item/nanomob_card, -/obj/item/toy/figure/captain, -/obj/item/toy/nuke, -/obj/item/toy/plushie/orange_fox, /turf/simulated/floor/wood, /area/bridge/meeting_room) "bER" = ( @@ -44292,13 +43434,10 @@ /turf/simulated/floor/wood, /area/crew_quarters/captain) "bEV" = ( +/obj/structure/chair/comfy/black, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/item/decorations/sticky_decorations/flammable/tinsel/green{ - pixel_y = 19 - }, -/obj/structure/snow, /turf/simulated/floor/carpet, /area/bridge/meeting_room) "bEW" = ( @@ -44325,7 +43464,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/structure/snow, /turf/simulated/floor/carpet, /area/bridge/meeting_room) "bFa" = ( @@ -44433,9 +43571,9 @@ tag = "" }, /obj/structure/disposalpipe/junction{ - dir = 2; + tag = "icon-pipe-j2"; icon_state = "pipe-j2"; - tag = "icon-pipe-j2" + dir = 2 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -44510,7 +43648,6 @@ pixel_y = -32 }, /obj/effect/decal/cleanable/dirt, -/obj/item/decorations/sticky_decorations/flammable/snowman, /turf/simulated/floor/plasteel, /area/quartermaster/storage) "bFr" = ( @@ -44551,7 +43688,6 @@ dir = 8; icon_state = "pipe-c" }, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/quartermaster/office) "bFu" = ( @@ -44607,20 +43743,15 @@ }, /obj/effect/decal/warning_stripes/yellow/partial, /obj/effect/decal/warning_stripes/arrow, -/obj/structure/snow{ - dir = 1; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel, /area/quartermaster/office) "bFy" = ( /obj/structure/chair{ dir = 4 }, -/obj/structure/snow, /turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "arrival" + icon_state = "arrival"; + dir = 4 }, /area/quartermaster/office) "bFz" = ( @@ -44694,10 +43825,6 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/snow{ - dir = 4; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel, /area/hallway/secondary/exit) "bFI" = ( @@ -44706,10 +43833,6 @@ icon_state = "alarm0"; pixel_y = -22 }, -/obj/structure/snow{ - dir = 1; - icon_state = "snow_corner" - }, /turf/simulated/floor/wood, /area/bridge/meeting_room) "bFJ" = ( @@ -44726,25 +43849,18 @@ tag = "icon-asteroid (NORTH)" }, /turf/simulated/floor/plasteel{ - dir = 1; + tag = "icon-siding2 (NORTH)"; icon_state = "siding2"; - tag = "icon-siding2 (NORTH)" + dir = 1 }, /turf/simulated/floor/plasteel{ - dir = 1; + tag = "icon-siding1 (NORTH)"; icon_state = "siding1"; - tag = "icon-siding1 (NORTH)" + dir = 1 }, /area/hydroponics) "bFK" = ( /obj/machinery/computer/communications, -/obj/item/decorations/sticky_decorations/flammable/tinsel/green{ - pixel_y = 19 - }, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, /turf/simulated/floor/wood, /area/crew_quarters/captain) "bFL" = ( @@ -44798,9 +43914,9 @@ /area/engine/gravitygenerator) "bFQ" = ( /obj/structure/morgue{ - dir = 8; + tag = "icon-morgue1 (WEST)"; icon_state = "morgue1"; - tag = "icon-morgue1 (WEST)" + dir = 8 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -44831,9 +43947,9 @@ /area/crew_quarters/toilet) "bFT" = ( /obj/structure/morgue{ - dir = 8; + tag = "icon-morgue1 (WEST)"; icon_state = "morgue1"; - tag = "icon-morgue1 (WEST)" + dir = 8 }, /obj/effect/landmark{ name = "revenantspawn" @@ -44958,9 +44074,9 @@ /area/maintenance/port) "bGc" = ( /obj/structure/cable{ - d2 = 2; icon_state = "0-2"; - pixel_y = 1 + pixel_y = 1; + d2 = 2 }, /obj/machinery/power/apc{ dir = 8; @@ -44973,31 +44089,27 @@ }, /area/assembly/robotics) "bGd" = ( -/obj/structure/reagent_dispensers/water_cooler, -/obj/structure/snow, /turf/simulated/floor/plasteel{ - icon_state = "whiteblue"; - tag = "icon-whiteblue" + tag = "icon-whiteblue"; + icon_state = "whiteblue" }, /area/medical/reception) "bGe" = ( /obj/effect/decal/warning_stripes/blue/partial{ dir = 1 }, -/obj/structure/snow, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "white" }, /area/medical/reception) "bGf" = ( -/obj/structure/chair/comfy/red{ +/obj/structure/chair/comfy/teal{ dir = 1 }, -/obj/structure/snow, /turf/simulated/floor/plasteel{ - icon_state = "whiteblue"; - tag = "icon-whiteblue" + tag = "icon-whiteblue"; + icon_state = "whiteblue" }, /area/medical/reception) "bGg" = ( @@ -45015,7 +44127,6 @@ name = "Quarantine Lockdown"; opacity = 0 }, -/obj/structure/snow, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "whiteblue"; @@ -45023,10 +44134,12 @@ }, /area/medical/paramedic) "bGh" = ( -/obj/structure/snow, +/obj/structure/chair{ + dir = 8 + }, /turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "green" + icon_state = "green"; + dir = 4 }, /area/hallway/secondary/exit) "bGi" = ( @@ -45045,13 +44158,12 @@ dir = 8; icon_state = "pipe-c" }, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/hallway/secondary/exit) "bGk" = ( /obj/machinery/light{ - dir = 8; - icon_state = "tube1" + icon_state = "tube1"; + dir = 8 }, /obj/machinery/atmospherics/unary/vent_scrubber{ dir = 1; @@ -45089,6 +44201,15 @@ }, /turf/simulated/floor/plasteel, /area/crew_quarters/locker) +"bGo" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "green"; + dir = 8 + }, +/area/hallway/secondary/exit) "bGp" = ( /obj/machinery/atmospherics/pipe/simple/insulated{ dir = 6 @@ -45111,14 +44232,10 @@ name = "Quarantine Lockdown"; opacity = 0 }, -/obj/structure/snow{ - dir = 1; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel{ - dir = 1; + tag = "icon-whiteblue (NORTH)"; icon_state = "whiteblue"; - tag = "icon-whiteblue (NORTH)" + dir = 1 }, /area/medical/reception) "bGr" = ( @@ -45131,9 +44248,9 @@ /area/hallway/secondary/exit) "bGt" = ( /turf/simulated/floor/plasteel{ - dir = 4; + tag = "icon-whiteblue (EAST)"; icon_state = "whiteblue"; - tag = "icon-whiteblue (EAST)" + dir = 4 }, /area/medical/reception) "bGu" = ( @@ -45141,10 +44258,6 @@ /obj/machinery/alarm{ pixel_y = 25 }, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -45541,10 +44654,6 @@ /turf/simulated/floor/plating, /area/maintenance/disposal) "bHg" = ( -/obj/structure/chair/comfy/red{ - dir = 4 - }, -/obj/structure/snow, /turf/simulated/floor/wood, /area/bridge/meeting_room) "bHh" = ( @@ -45599,13 +44708,9 @@ pixel_y = 4 }, /obj/structure/table/reinforced, -/obj/structure/snow{ - dir = 9; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "arrival" + icon_state = "arrival"; + dir = 4 }, /area/quartermaster/office) "bHo" = ( @@ -45623,10 +44728,6 @@ /area/hallway/primary/central/east) "bHp" = ( /obj/machinery/hologram/holopad, -/obj/structure/snow{ - dir = 5; - icon_state = "snow_corner" - }, /turf/simulated/floor/wood, /area/bridge/meeting_room) "bHq" = ( @@ -45643,12 +44744,12 @@ opacity = 0 }, /obj/effect/decal/warning_stripes/yellow/partial{ - dir = 8; - icon_state = "3" + icon_state = "3"; + dir = 8 }, /obj/effect/decal/warning_stripes/arrow{ - dir = 8; - icon_state = "4" + icon_state = "4"; + dir = 8 }, /turf/simulated/floor/plasteel, /area/hallway/primary/central/sw) @@ -45703,10 +44804,6 @@ /area/maintenance/port) "bHw" = ( /obj/machinery/computer/card, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, /turf/simulated/floor/wood, /area/crew_quarters/captain) "bHx" = ( @@ -45729,8 +44826,8 @@ /area/hallway/primary/starboard/west) "bHz" = ( /turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "vault" + icon_state = "vault"; + dir = 8 }, /area/engine/gravitygenerator) "bHA" = ( @@ -45746,8 +44843,8 @@ /area/hallway/primary/starboard/west) "bHB" = ( /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "vault" + icon_state = "vault"; + dir = 1 }, /area/engine/gravitygenerator) "bHC" = ( @@ -45775,8 +44872,8 @@ /area/hallway/primary/starboard/east) "bHD" = ( /turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "vault" + icon_state = "vault"; + dir = 4 }, /area/engine/gravitygenerator) "bHE" = ( @@ -45789,9 +44886,6 @@ /obj/item/storage/box/gloves{ pixel_y = 8 }, -/obj/item/decorations/sticky_decorations/flammable/tinsel/blue{ - pixel_y = 19 - }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -45889,9 +44983,9 @@ /area/assembly/chargebay) "bHO" = ( /turf/simulated/floor/plasteel{ - dir = 8; + tag = "icon-whiteblue (WEST)"; icon_state = "whiteblue"; - tag = "icon-whiteblue (WEST)" + dir = 8 }, /area/medical/reception) "bHP" = ( @@ -46013,7 +45107,6 @@ /area/engine/equipmentstorage) "bHZ" = ( /obj/machinery/vending/tool, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/engine/equipmentstorage) "bIa" = ( @@ -46100,14 +45193,10 @@ name = "Quarantine Lockdown"; opacity = 0 }, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, /turf/simulated/floor/plasteel{ - dir = 9; + tag = "icon-whiteblue (NORTHWEST)"; icon_state = "whiteblue"; - tag = "icon-whiteblue (NORTHWEST)" + dir = 9 }, /area/medical/reception) "bIi" = ( @@ -46135,9 +45224,9 @@ opacity = 0 }, /turf/simulated/floor/plasteel{ - dir = 5; + tag = "icon-whiteblue (NORTHEAST)"; icon_state = "whiteblue"; - tag = "icon-whiteblue (NORTHEAST)" + dir = 5 }, /area/medical/reception) "bIk" = ( @@ -46243,9 +45332,9 @@ req_access_txt = "47" }, /turf/simulated/floor/plasteel{ - dir = 1; + tag = "icon-whitepurple (NORTH)"; icon_state = "whitepurple"; - tag = "icon-whitepurple (NORTH)" + dir = 1 }, /area/toxins/lab) "bIv" = ( @@ -46257,9 +45346,9 @@ /obj/item/disk/design_disk, /obj/item/reagent_containers/dropper, /turf/simulated/floor/plasteel{ - dir = 1; + tag = "icon-whitepurple (NORTH)"; icon_state = "whitepurple"; - tag = "icon-whitepurple (NORTH)" + dir = 1 }, /area/toxins/lab) "bIw" = ( @@ -46279,9 +45368,6 @@ dir = 1; icon_state = "pipe-c" }, -/obj/structure/snow{ - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel, /area/quartermaster/storage) "bIx" = ( @@ -46297,9 +45383,6 @@ name = "station intercom (General)"; pixel_x = 28 }, -/obj/item/decorations/sticky_decorations/flammable/tinsel/purple{ - pixel_y = 19 - }, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -46314,8 +45397,8 @@ "bIA" = ( /turf/space, /turf/simulated/shuttle/wall{ - dir = 2; - icon_state = "swall_f5" + icon_state = "swall_f5"; + dir = 2 }, /area/shuttle/escape) "bIB" = ( @@ -46324,8 +45407,8 @@ /area/maintenance/disposal) "bIC" = ( /turf/simulated/shuttle/wall{ - dir = 2; - icon_state = "swall11" + icon_state = "swall11"; + dir = 2 }, /area/shuttle/escape) "bID" = ( @@ -46337,15 +45420,15 @@ /area/maintenance/disposal) "bIE" = ( /turf/simulated/shuttle/wall{ - dir = 2; - icon_state = "swall7" + icon_state = "swall7"; + dir = 2 }, /area/shuttle/escape) "bIF" = ( /turf/space, /turf/simulated/shuttle/wall{ - dir = 2; - icon_state = "swall_f9" + icon_state = "swall_f9"; + dir = 2 }, /area/shuttle/escape) "bIG" = ( @@ -46359,10 +45442,6 @@ pixel_x = -24 }, /obj/machinery/telepad_cargo, -/obj/structure/snow{ - dir = 6; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "brown" @@ -46383,17 +45462,12 @@ /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, -/obj/structure/snow{ - dir = 10; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel, /area/quartermaster/office) "bIK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/quartermaster/office) "bIL" = ( @@ -46476,10 +45550,6 @@ /area/hallway/primary/central/east) "bIS" = ( /obj/structure/closet/secure_closet/cargotech, -/obj/item/decorations/sticky_decorations/flammable/christmas_stocking{ - pixel_y = 17 - }, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/quartermaster/storage) "bIT" = ( @@ -46505,12 +45575,16 @@ pixel_y = 3 }, /obj/item/hand_labeler, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/quartermaster/storage) "bIV" = ( /obj/structure/table, -/obj/structure/snow, +/obj/item/clothing/head/soft, +/obj/item/stamp/granted{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/head/soft, /turf/simulated/floor/plasteel, /area/quartermaster/storage) "bIW" = ( @@ -46528,10 +45602,6 @@ pixel_x = 0; pixel_y = 32 }, -/obj/item/decorations/sticky_decorations/flammable/christmas_stocking{ - pixel_y = 17 - }, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/quartermaster/storage) "bIY" = ( @@ -46543,13 +45613,6 @@ name = "station intercom (General)"; pixel_y = 25 }, -/obj/item/clothing/head/soft, -/obj/item/stamp/granted{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/clothing/head/soft, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/quartermaster/storage) "bIZ" = ( @@ -46560,7 +45623,6 @@ dir = 2; pixel_y = 24 }, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/quartermaster/storage) "bJa" = ( @@ -46574,8 +45636,8 @@ /area/hallway/primary/starboard/west) "bJc" = ( /obj/structure/cable{ - d2 = 4; - icon_state = "0-4" + icon_state = "0-4"; + d2 = 4 }, /obj/machinery/power/apc{ dir = 2; @@ -46616,8 +45678,8 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ - dir = 2; - icon_state = "whitehall" + icon_state = "whitehall"; + dir = 2 }, /area/hallway/primary/starboard/west) "bJf" = ( @@ -46626,7 +45688,6 @@ d2 = 2; icon_state = "1-2" }, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/quartermaster/storage) "bJg" = ( @@ -46804,8 +45865,8 @@ dir = 1; icon_state = "pipe-j2s"; name = "Disposals Maint"; - sortType = 1; - sortdir = 0 + sortdir = 0; + sortType = 1 }, /turf/simulated/floor/plating, /area/maintenance/port) @@ -46886,9 +45947,9 @@ opacity = 0 }, /turf/simulated/floor/plasteel{ - dir = 1; + tag = "icon-whiteblue (NORTH)"; icon_state = "whiteblue"; - tag = "icon-whiteblue (NORTH)" + dir = 1 }, /area/medical/reception) "bJB" = ( @@ -46908,13 +45969,9 @@ icon_state = "2-8"; tag = "" }, -/obj/structure/snow{ - dir = 1; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel{ - icon_state = "whitebluefull"; - tag = "icon-whitebluefull" + tag = "icon-whitebluefull"; + icon_state = "whitebluefull" }, /area/medical/paramedic) "bJD" = ( @@ -46928,7 +45985,6 @@ icon_state = "alarm0"; pixel_x = -22 }, -/obj/structure/snow, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "brown" @@ -46970,20 +46026,12 @@ scrub_N2O = 1; scrub_Toxins = 1 }, -/obj/structure/snow, /turf/simulated/floor/wood, /area/bridge/meeting_room) "bJH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/item/decorations/sticky_decorations/flammable/tinsel/red{ - pixel_y = 19 - }, -/obj/structure/snow{ - dir = 8; - icon_state = "snow_corner" - }, /turf/simulated/floor/carpet, /area/bridge/meeting_room) "bJI" = ( @@ -47004,10 +46052,6 @@ /area/bridge/meeting_room) "bJJ" = ( /obj/machinery/computer/crew, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -47028,9 +46072,9 @@ name = "Chemist" }, /turf/simulated/floor/plasteel{ - dir = 8; + tag = "icon-whiteblue (WEST)"; icon_state = "whiteblue"; - tag = "icon-whiteblue (WEST)" + dir = 8 }, /area/medical/reception) "bJN" = ( @@ -47063,9 +46107,9 @@ pixel_y = -28 }, /turf/simulated/floor/plasteel{ - dir = 6; + tag = "icon-whiteblue (SOUTHEAST)"; icon_state = "whiteblue"; - tag = "icon-whiteblue (SOUTHEAST)" + dir = 6 }, /area/medical/reception) "bJQ" = ( @@ -47074,8 +46118,6 @@ dir = 1; pixel_y = -24 }, -/obj/machinery/computer/arcade, -/obj/structure/snow, /turf/simulated/floor/wood, /area/crew_quarters/bar) "bJR" = ( @@ -47151,9 +46193,6 @@ /area/crew_quarters/bar) "bJW" = ( /obj/structure/closet/wardrobe/chemistry_white, -/obj/item/decorations/sticky_decorations/flammable/tinsel/blue{ - pixel_y = 19 - }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "whiteyellow" @@ -47346,9 +46385,9 @@ /area/shuttle/escape) "bKn" = ( /obj/machinery/shower{ - dir = 8; + tag = "icon-shower (WEST)"; icon_state = "shower"; - tag = "icon-shower (WEST)" + dir = 8 }, /obj/effect/decal/warning_stripes/east, /turf/simulated/floor/plasteel{ @@ -47441,7 +46480,6 @@ /area/quartermaster/storage) "bKA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/quartermaster/storage) "bKB" = ( @@ -47452,7 +46490,6 @@ /obj/machinery/conveyor_switch/oneway{ id = "packageExternal" }, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/quartermaster/office) "bKD" = ( @@ -47525,10 +46562,6 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/snow{ - dir = 5; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "brown" @@ -47567,9 +46600,6 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/item/decorations/sticky_decorations/flammable/tinsel/red{ - pixel_y = 19 - }, /turf/simulated/floor/wood, /area/crew_quarters/captain) "bKM" = ( @@ -47577,9 +46607,6 @@ /obj/item/radio/intercom/private{ pixel_x = -28 }, -/obj/item/decorations/sticky_decorations/flammable/tinsel/green{ - pixel_y = 19 - }, /turf/simulated/floor/wood, /area/crew_quarters/captain) "bKN" = ( @@ -47767,15 +46794,15 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ - icon_state = "whitebluefull"; - tag = "icon-whitebluefull" + tag = "icon-whitebluefull"; + icon_state = "whitebluefull" }, /area/medical/reception) "bLi" = ( /obj/machinery/gravity_generator/main/station, /turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "vault" + icon_state = "vault"; + dir = 8 }, /area/engine/gravitygenerator) "bLj" = ( @@ -47831,14 +46858,14 @@ tag = "icon-asteroid (NORTH)" }, /turf/simulated/floor/plasteel{ - dir = 1; + tag = "icon-siding1 (NORTH)"; icon_state = "siding1"; - tag = "icon-siding1 (NORTH)" + dir = 1 }, /turf/simulated/floor/plasteel{ - dir = 1; + tag = "icon-siding2 (NORTH)"; icon_state = "siding2"; - tag = "icon-siding2 (NORTH)" + dir = 1 }, /area/hydroponics) "bLo" = ( @@ -47864,10 +46891,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/structure/snow{ - dir = 5; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel, /area/hallway/secondary/exit) "bLq" = ( @@ -47880,10 +46903,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, -/obj/structure/snow{ - dir = 8; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel, /area/hallway/secondary/exit) "bLr" = ( @@ -47901,7 +46920,6 @@ initialize_directions = 10; level = 1 }, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/hallway/secondary/exit) "bLs" = ( @@ -47921,8 +46939,8 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel{ - icon_state = "whitebluefull"; - tag = "icon-whitebluefull" + tag = "icon-whitebluefull"; + icon_state = "whitebluefull" }, /area/medical/paramedic) "bLu" = ( @@ -47938,13 +46956,6 @@ opacity = 0 }, /obj/machinery/computer/med_data, -/obj/item/decorations/sticky_decorations/flammable/tinsel/blue{ - pixel_y = 19 - }, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "whiteblue"; @@ -47966,12 +46977,9 @@ /obj/effect/landmark/start{ name = "Chemist" }, -/obj/item/decorations/sticky_decorations/flammable/tinsel/blue{ - pixel_y = 19 - }, /turf/simulated/floor/plasteel{ - icon_state = "whitebluefull"; - tag = "icon-whitebluefull" + tag = "icon-whitebluefull"; + icon_state = "whitebluefull" }, /area/medical/reception) "bLw" = ( @@ -47989,8 +46997,8 @@ level = 1 }, /turf/simulated/floor/plasteel{ - icon_state = "whitebluefull"; - tag = "icon-whitebluefull" + tag = "icon-whitebluefull"; + icon_state = "whitebluefull" }, /area/medical/paramedic) "bLx" = ( @@ -48004,15 +47012,15 @@ dir = 6 }, /turf/simulated/floor/plasteel{ - icon_state = "whitebluefull"; - tag = "icon-whitebluefull" + tag = "icon-whitebluefull"; + icon_state = "whitebluefull" }, /area/medical/reception) "bLy" = ( /turf/simulated/floor/plasteel{ - dir = 8; + tag = "icon-whitebluecorner (WEST)"; icon_state = "whitebluecorner"; - tag = "icon-whitebluecorner (WEST)" + dir = 8 }, /area/medical/reception) "bLz" = ( @@ -48055,9 +47063,6 @@ /area/hallway/secondary/entry) "bLD" = ( /obj/structure/closet/secure_closet/reagents, -/obj/item/decorations/sticky_decorations/flammable/christmas_stocking{ - pixel_x = -17 - }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "whiteyellow" @@ -48135,8 +47140,8 @@ "bLN" = ( /obj/machinery/mech_bay_recharge_port, /obj/structure/cable{ - d2 = 2; - icon_state = "0-2" + icon_state = "0-2"; + d2 = 2 }, /obj/machinery/status_display{ density = 0; @@ -48162,8 +47167,8 @@ "bLP" = ( /obj/machinery/computer/mech_bay_power_console, /obj/structure/cable{ - d2 = 2; - icon_state = "0-2" + icon_state = "0-2"; + d2 = 2 }, /turf/simulated/floor/bluegrid, /area/assembly/chargebay) @@ -48203,8 +47208,8 @@ pixel_y = 24 }, /turf/simulated/floor/plasteel{ - icon_state = "whitebluefull"; - tag = "icon-whitebluefull" + tag = "icon-whitebluefull"; + icon_state = "whitebluefull" }, /area/medical/biostorage) "bLT" = ( @@ -48254,14 +47259,14 @@ tag = "icon-asteroid (NORTH)" }, /turf/simulated/floor/plasteel{ - dir = 1; + tag = "icon-siding1 (NORTH)"; icon_state = "siding1"; - tag = "icon-siding1 (NORTH)" + dir = 1 }, /turf/simulated/floor/plasteel{ - dir = 1; + tag = "icon-siding2 (NORTH)"; icon_state = "siding2"; - tag = "icon-siding2 (NORTH)" + dir = 1 }, /area/hydroponics) "bLV" = ( @@ -48282,8 +47287,8 @@ pixel_y = 25 }, /turf/simulated/floor/plasteel{ - icon_state = "whitebluefull"; - tag = "icon-whitebluefull" + tag = "icon-whitebluefull"; + icon_state = "whitebluefull" }, /area/medical/biostorage) "bLW" = ( @@ -48398,9 +47403,6 @@ initialize_directions = 11; level = 1 }, -/obj/structure/snow{ - icon_state = "snow_corner" - }, /turf/simulated/floor/plating, /area/maintenance/port) "bMi" = ( @@ -48411,7 +47413,6 @@ pixel_y = 24; req_access_txt = "31" }, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/quartermaster/storage) "bMj" = ( @@ -48420,10 +47421,6 @@ }, /obj/machinery/computer/rdconsole/core, /obj/effect/decal/warning_stripes/southwest, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, /turf/simulated/floor/plasteel, /area/toxins/lab) "bMk" = ( @@ -48464,10 +47461,6 @@ scrub_N2O = 1; scrub_Toxins = 1 }, -/obj/structure/snow{ - dir = 1; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "browncorner" @@ -48475,17 +47468,17 @@ /area/hallway/primary/central/west) "bMo" = ( /turf/simulated/shuttle/wall{ - dir = 2; + tag = "icon-swall12"; icon_state = "swall12"; - tag = "icon-swall12" + dir = 2 }, /area/shuttle/supply) "bMp" = ( /turf/space, /turf/simulated/shuttle/wall{ - dir = 2; + tag = "icon-swall_f6"; icon_state = "swall_f6"; - tag = "icon-swall_f6" + dir = 2 }, /area/shuttle/supply) "bMq" = ( @@ -48496,15 +47489,14 @@ pixel_y = 27 }, /obj/machinery/hologram/holopad, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/quartermaster/storage) "bMr" = ( /turf/space, /turf/simulated/shuttle/wall{ - dir = 2; + tag = "icon-swall_f10"; icon_state = "swall_f10"; - tag = "icon-swall_f10" + dir = 2 }, /area/shuttle/supply) "bMs" = ( @@ -48539,10 +47531,6 @@ d2 = 4; icon_state = "1-4" }, -/obj/structure/snow{ - dir = 9; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel, /area/quartermaster/storage) "bMx" = ( @@ -48561,16 +47549,6 @@ icon_state = "brown" }, /area/quartermaster/office) -"bMz" = ( -/obj/item/decorations/sticky_decorations/flammable/tinsel/red{ - pixel_y = 19 - }, -/obj/structure/snow{ - dir = 5; - icon_state = "snow_corner" - }, -/turf/simulated/floor/plasteel, -/area/bridge) "bMA" = ( /obj/machinery/mineral/ore_redemption, /turf/simulated/floor/plasteel, @@ -48581,9 +47559,9 @@ /area/maintenance/maintcentral) "bMC" = ( /obj/structure/cable{ - d2 = 2; icon_state = "0-2"; - pixel_y = 1 + pixel_y = 1; + d2 = 2 }, /obj/machinery/power/apc{ dir = 1; @@ -48597,10 +47575,6 @@ /obj/machinery/computer/account_database{ anchored = 1 }, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, /turf/simulated/floor/plasteel, /area/bridge/meeting_room) "bME" = ( @@ -48619,7 +47593,6 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/snow, /turf/simulated/floor/plasteel{ icon_state = "showroomfloor" }, @@ -48737,9 +47710,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/item/decorations/sticky_decorations/flammable/tinsel/red{ - pixel_y = 19 - }, /turf/simulated/floor/wood, /area/crew_quarters/captain) "bMP" = ( @@ -48887,8 +47857,8 @@ /obj/item/storage/firstaid/fire, /obj/structure/table, /turf/simulated/floor/plasteel{ - icon_state = "whitebluefull"; - tag = "icon-whitebluefull" + tag = "icon-whitebluefull"; + icon_state = "whitebluefull" }, /area/medical/biostorage) "bMY" = ( @@ -48907,8 +47877,8 @@ network = list("SS13") }, /turf/simulated/floor/plasteel{ - icon_state = "whitebluefull"; - tag = "icon-whitebluefull" + tag = "icon-whitebluefull"; + icon_state = "whitebluefull" }, /area/medical/biostorage) "bMZ" = ( @@ -49193,9 +48163,6 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/item/decorations/sticky_decorations/flammable/tinsel/purple{ - pixel_y = 19 - }, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -49265,10 +48232,6 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/snow{ - dir = 1; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel, /area/hallway/secondary/exit) "bNx" = ( @@ -49292,8 +48255,8 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ - icon_state = "whitebluefull"; - tag = "icon-whitebluefull" + tag = "icon-whitebluefull"; + icon_state = "whitebluefull" }, /area/medical/reception) "bNz" = ( @@ -49395,12 +48358,10 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/snow, /turf/simulated/floor/plating, /area/maintenance/port) "bNI" = ( /obj/machinery/atmospherics/unary/vent_pump/on, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/quartermaster/storage) "bNJ" = ( @@ -49431,12 +48392,9 @@ /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, -/obj/item/decorations/sticky_decorations/flammable/tinsel/blue{ - pixel_y = 19 - }, /turf/simulated/floor/plasteel{ - icon_state = "whitebluefull"; - tag = "icon-whitebluefull" + tag = "icon-whitebluefull"; + icon_state = "whitebluefull" }, /area/medical/biostorage) "bNM" = ( @@ -49501,8 +48459,8 @@ /area/maintenance/port) "bNQ" = ( /obj/machinery/light{ - dir = 8; - icon_state = "tube1" + icon_state = "tube1"; + dir = 8 }, /obj/effect/decal/warning_stripes/west, /turf/simulated/floor/plasteel, @@ -49524,8 +48482,8 @@ /area/quartermaster/storage) "bNU" = ( /obj/machinery/light{ - dir = 4; - icon_state = "tube1" + icon_state = "tube1"; + dir = 4 }, /obj/machinery/camera{ c_tag = "Research Research and Development Lab"; @@ -49655,16 +48613,16 @@ /area/maintenance/disposal) "bOe" = ( /turf/simulated/shuttle/wall{ - dir = 2; + tag = "icon-swall3"; icon_state = "swall3"; - tag = "icon-swall3" + dir = 2 }, /area/shuttle/supply) "bOf" = ( /obj/machinery/light/spot{ - dir = 1; + tag = "icon-tube1 (NORTH)"; icon_state = "tube1"; - tag = "icon-tube1 (NORTH)" + dir = 1 }, /turf/simulated/shuttle/floor, /area/shuttle/supply) @@ -49692,6 +48650,20 @@ /obj/effect/decal/warning_stripes/west, /turf/simulated/floor/plasteel, /area/quartermaster/storage) +"bOh" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/quartermaster/storage) "bOi" = ( /obj/structure/cable{ d1 = 4; @@ -49735,7 +48707,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/quartermaster/storage) "bOl" = ( @@ -49834,10 +48805,6 @@ name = "station intercom (General)"; pixel_y = 25 }, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, /turf/simulated/floor/plasteel, /area/quartermaster/office) "bOu" = ( @@ -49947,10 +48914,6 @@ pixel_x = -22; pixel_y = 4 }, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, /turf/simulated/floor/plasteel{ dir = 9; icon_state = "blue" @@ -49968,8 +48931,8 @@ level = 1 }, /turf/simulated/floor/plasteel{ - icon_state = "whitebluefull"; - tag = "icon-whitebluefull" + tag = "icon-whitebluefull"; + icon_state = "whitebluefull" }, /area/medical/reception) "bOC" = ( @@ -49986,9 +48949,9 @@ dir = 4 }, /turf/simulated/floor/plasteel{ - dir = 8; + tag = "icon-whitebluecorner (WEST)"; icon_state = "whitebluecorner"; - tag = "icon-whitebluecorner (WEST)" + dir = 8 }, /area/medical/reception) "bOE" = ( @@ -50001,8 +48964,8 @@ pixel_y = 0 }, /obj/structure/cable{ - d2 = 4; - icon_state = "0-4" + icon_state = "0-4"; + d2 = 4 }, /turf/simulated/floor/plating, /area/engine/gravitygenerator) @@ -50047,8 +49010,8 @@ tag = "" }, /obj/structure/cable{ - d2 = 4; - icon_state = "0-4" + icon_state = "0-4"; + d2 = 4 }, /turf/simulated/floor/plating, /area/engine/gravitygenerator) @@ -50102,8 +49065,8 @@ tag = "" }, /obj/structure/cable{ - d2 = 4; - icon_state = "0-4" + icon_state = "0-4"; + d2 = 4 }, /obj/effect/spawner/window/reinforced, /obj/structure/cable{ @@ -50150,8 +49113,8 @@ pixel_y = -4 }, /turf/simulated/floor/plasteel{ - icon_state = "whitebluefull"; - tag = "icon-whitebluefull" + tag = "icon-whitebluefull"; + icon_state = "whitebluefull" }, /area/medical/biostorage) "bOS" = ( @@ -50172,20 +49135,17 @@ pixel_y = 0 }, /turf/simulated/floor/plasteel{ - icon_state = "whitebluefull"; - tag = "icon-whitebluefull" + tag = "icon-whitebluefull"; + icon_state = "whitebluefull" }, /area/medical/biostorage) "bOU" = ( /turf/simulated/wall, /area/medical/chemistry) "bOV" = ( -/obj/item/decorations/sticky_decorations/flammable/tinsel/blue{ - pixel_y = 19 - }, /turf/simulated/floor/plasteel{ - icon_state = "whitebluefull"; - tag = "icon-whitebluefull" + tag = "icon-whitebluefull"; + icon_state = "whitebluefull" }, /area/medical/biostorage) "bOW" = ( @@ -50219,8 +49179,8 @@ "bOZ" = ( /obj/machinery/mech_bay_recharge_port, /obj/structure/cable{ - d2 = 2; - icon_state = "0-2" + icon_state = "0-2"; + d2 = 2 }, /obj/item/radio/intercom{ dir = 8; @@ -50299,16 +49259,16 @@ shock_proof = 0 }, /obj/structure/cable{ - d2 = 4; - icon_state = "0-4" + icon_state = "0-4"; + d2 = 4 }, /obj/structure/table, /obj/item/clothing/suit/straight_jacket, /obj/item/clothing/mask/muzzle, /turf/simulated/floor/plasteel{ - dir = 8; + tag = "icon-whiteblue (WEST)"; icon_state = "whiteblue"; - tag = "icon-whiteblue (WEST)" + dir = 8 }, /area/medical/reception) "bPh" = ( @@ -50336,9 +49296,9 @@ opacity = 0 }, /turf/simulated/floor/plasteel{ - dir = 1; + tag = "icon-whiteblue (NORTH)"; icon_state = "whiteblue"; - tag = "icon-whiteblue (NORTH)" + dir = 1 }, /area/medical/reception) "bPi" = ( @@ -50415,9 +49375,6 @@ /obj/structure/disposalpipe/trunk{ dir = 8 }, -/obj/item/decorations/sticky_decorations/flammable/tinsel/purple{ - pixel_y = 19 - }, /turf/simulated/floor/plasteel, /area/assembly/robotics) "bPo" = ( @@ -50474,8 +49431,8 @@ }, /turf/space, /turf/simulated/shuttle/wall{ - dir = 2; - icon_state = "swall_f6" + icon_state = "swall_f6"; + dir = 2 }, /area/shuttle/transport) "bPw" = ( @@ -50580,9 +49537,9 @@ name = "Scientist" }, /turf/simulated/floor/plasteel{ - dir = 1; + tag = "icon-whitepurple (NORTH)"; icon_state = "whitepurple"; - tag = "icon-whitepurple (NORTH)" + dir = 1 }, /area/toxins/lab) "bPE" = ( @@ -50666,9 +49623,9 @@ tag = "" }, /obj/structure/disposalpipe/junction{ - dir = 2; + tag = "icon-pipe-j2"; icon_state = "pipe-j2"; - tag = "icon-pipe-j2" + dir = 2 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -50729,20 +49686,17 @@ /turf/simulated/floor/plasteel, /area/quartermaster/storage) "bPP" = ( -/obj/structure/snow{ - dir = 6; - icon_state = "snow_corner" - }, -/turf/simulated/floor/carpet/black, -/area/chapel/office) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel, +/area/quartermaster/storage) "bPQ" = ( /obj/effect/decal/warning_stripes/arrow{ - dir = 4; - icon_state = "4" + icon_state = "4"; + dir = 4 }, /obj/effect/decal/warning_stripes/yellow/partial{ - dir = 4; - icon_state = "3" + icon_state = "3"; + dir = 4 }, /turf/simulated/floor/plasteel, /area/quartermaster/storage) @@ -50778,8 +49732,8 @@ }, /turf/space, /turf/simulated/shuttle/wall{ - dir = 2; - icon_state = "swall_f5" + icon_state = "swall_f5"; + dir = 2 }, /area/shuttle/transport) "bPV" = ( @@ -50789,9 +49743,6 @@ /obj/structure/chair/office/dark{ dir = 4 }, -/obj/item/decorations/sticky_decorations/flammable/tinsel/green{ - pixel_y = 19 - }, /turf/simulated/floor/plasteel, /area/quartermaster/office) "bPW" = ( @@ -50804,7 +49755,6 @@ pixel_x = 5; pixel_y = 30 }, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/quartermaster/storage) "bPY" = ( @@ -50813,10 +49763,6 @@ pixel_y = 32 }, /obj/effect/decal/warning_stripes/west, -/obj/structure/snow{ - dir = 5; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel, /area/quartermaster/storage) "bPZ" = ( @@ -50856,7 +49802,6 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/quartermaster/storage) "bQd" = ( @@ -50900,8 +49845,8 @@ icon_state = "pipe-c" }, /turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "red" + icon_state = "red"; + dir = 4 }, /area/hallway/primary/central/sw) "bQi" = ( @@ -50972,8 +49917,8 @@ dir = 4 }, /turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "blue" + icon_state = "blue"; + dir = 8 }, /area/crew_quarters/heads) "bQl" = ( @@ -51036,8 +49981,8 @@ pixel_y = 0 }, /obj/machinery/light{ - dir = 8; - icon_state = "tube1" + icon_state = "tube1"; + dir = 8 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 @@ -51102,8 +50047,8 @@ dir = 1 }, /obj/structure/cable{ - d2 = 4; - icon_state = "0-4" + icon_state = "0-4"; + d2 = 4 }, /obj/machinery/light_switch{ pixel_y = 24 @@ -51141,9 +50086,9 @@ req_access_txt = "0" }, /obj/machinery/shower{ - dir = 4; + tag = "icon-shower (EAST)"; icon_state = "shower"; - tag = "icon-shower (EAST)" + dir = 4 }, /obj/item/soap/deluxe, /obj/item/bikehorn/rubberducky, @@ -51174,9 +50119,6 @@ dir = 8 }, /obj/machinery/disposal, -/obj/item/decorations/sticky_decorations/flammable/tinsel/blue{ - pixel_y = 19 - }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "whiteyellow" @@ -51194,18 +50136,15 @@ tag = "" }, /turf/simulated/floor/plasteel{ - icon_state = "whitebluefull"; - tag = "icon-whitebluefull" + tag = "icon-whitebluefull"; + icon_state = "whitebluefull" }, /area/medical/biostorage) "bQC" = ( /obj/structure/closet/secure_closet/medical3, -/obj/item/decorations/sticky_decorations/flammable/tinsel/blue{ - pixel_y = 19 - }, /turf/simulated/floor/plasteel{ - icon_state = "whitebluefull"; - tag = "icon-whitebluefull" + tag = "icon-whitebluefull"; + icon_state = "whitebluefull" }, /area/medical/biostorage) "bQD" = ( @@ -51238,8 +50177,8 @@ }, /obj/machinery/hologram/holopad, /turf/simulated/floor/plasteel{ - icon_state = "whitebluefull"; - tag = "icon-whitebluefull" + tag = "icon-whitebluefull"; + icon_state = "whitebluefull" }, /area/medical/biostorage) "bQF" = ( @@ -51383,9 +50322,9 @@ req_access_txt = "66" }, /turf/simulated/floor/plasteel{ - dir = 1; + tag = "icon-whiteblue (NORTH)"; icon_state = "whiteblue"; - tag = "icon-whiteblue (NORTH)" + dir = 1 }, /area/medical/paramedic) "bQQ" = ( @@ -51401,8 +50340,8 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ - icon_state = "whiteblue"; - tag = "icon-whiteblue" + tag = "icon-whiteblue"; + icon_state = "whiteblue" }, /area/medical/reception) "bQS" = ( @@ -51422,9 +50361,9 @@ pixel_y = -5 }, /turf/simulated/floor/plasteel{ - dir = 8; + tag = "icon-whiteblue (WEST)"; icon_state = "whiteblue"; - tag = "icon-whiteblue (WEST)" + dir = 8 }, /area/medical/reception) "bQT" = ( @@ -51506,8 +50445,8 @@ icon_state = "1-2" }, /turf/simulated/floor/plasteel{ - icon_state = "whitebluefull"; - tag = "icon-whitebluefull" + tag = "icon-whitebluefull"; + icon_state = "whitebluefull" }, /area/medical/biostorage) "bRc" = ( @@ -51536,8 +50475,8 @@ pixel_y = -3 }, /turf/simulated/floor/plasteel{ - icon_state = "whitebluefull"; - tag = "icon-whitebluefull" + tag = "icon-whitebluefull"; + icon_state = "whitebluefull" }, /area/medical/biostorage) "bRd" = ( @@ -51578,9 +50517,9 @@ /area/hallway/primary/central/se) "bRg" = ( /obj/structure/cable{ - d2 = 2; icon_state = "0-2"; - pixel_y = 1 + pixel_y = 1; + d2 = 2 }, /obj/machinery/power/apc{ dir = 4; @@ -51960,10 +50899,6 @@ /area/quartermaster/office) "bRN" = ( /obj/machinery/computer/supplycomp, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, /turf/simulated/floor/plasteel, /area/quartermaster/office) "bRO" = ( @@ -52081,8 +51016,8 @@ "bRZ" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "redcorner" + icon_state = "redcorner"; + dir = 4 }, /area/hallway/primary/central/sw) "bSa" = ( @@ -52098,9 +51033,9 @@ "bSb" = ( /obj/effect/spawner/window/reinforced, /obj/structure/cable{ - d2 = 2; icon_state = "0-2"; - pixel_y = 1 + pixel_y = 1; + d2 = 2 }, /obj/machinery/door/poddoor/shutters{ density = 0; @@ -52120,23 +51055,15 @@ /area/hallway/secondary/exit) "bSd" = ( /obj/machinery/computer/card, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, /turf/simulated/floor/plasteel{ - dir = 10; - icon_state = "blue" + icon_state = "blue"; + dir = 10 }, /area/crew_quarters/heads) "bSe" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, -/obj/structure/snow{ - dir = 5; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel, /area/quartermaster/storage) "bSf" = ( @@ -52144,8 +51071,8 @@ /obj/item/paper, /obj/item/pen, /obj/structure/cable{ - d2 = 4; - icon_state = "0-4" + icon_state = "0-4"; + d2 = 4 }, /obj/machinery/power/apc{ dir = 8; @@ -52165,7 +51092,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/quartermaster/storage) "bSh" = ( @@ -52194,7 +51120,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/quartermaster/storage) "bSk" = ( @@ -52241,7 +51166,6 @@ initialize_directions = 11; level = 1 }, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/quartermaster/storage) "bSn" = ( @@ -52306,9 +51230,9 @@ opacity = 0 }, /turf/simulated/floor/plasteel{ - dir = 6; + tag = "icon-whiteblue (SOUTHEAST)"; icon_state = "whiteblue"; - tag = "icon-whiteblue (SOUTHEAST)" + dir = 6 }, /area/medical/reception) "bSr" = ( @@ -52323,8 +51247,8 @@ "bSs" = ( /obj/machinery/vending/medical, /turf/simulated/floor/plasteel{ - icon_state = "whiteblue"; - tag = "icon-whiteblue" + tag = "icon-whiteblue"; + icon_state = "whiteblue" }, /area/medical/reception) "bSt" = ( @@ -52494,8 +51418,8 @@ /area/medical/genetics_cloning) "bSF" = ( /obj/structure/sink{ - dir = 8; icon_state = "sink"; + dir = 8; pixel_x = -12; pixel_y = 2 }, @@ -52548,8 +51472,8 @@ name = "Surgery Cleaner" }, /turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "whitehall" + icon_state = "whitehall"; + dir = 4 }, /area/assembly/robotics) "bSK" = ( @@ -52727,9 +51651,6 @@ pixel_y = -24; req_access_txt = "29" }, -/obj/item/decorations/sticky_decorations/flammable/tinsel/purple{ - pixel_y = 19 - }, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -52781,8 +51702,8 @@ /area/crew_quarters/heads) "bTd" = ( /obj/structure/cable{ - d2 = 4; - icon_state = "0-4" + icon_state = "0-4"; + d2 = 4 }, /obj/machinery/power/apc{ dir = 1; @@ -52838,7 +51759,6 @@ name = "Research and Development Desk"; req_access_txt = "47" }, -/obj/item/reagent_containers/food/snacks/candy/confectionery/caramel_nougat, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -52899,9 +51819,9 @@ /area/hallway/primary/central/sw) "bTl" = ( /obj/machinery/light/spot{ - dir = 4; + tag = "icon-tube1 (EAST)"; icon_state = "tube1"; - tag = "icon-tube1 (EAST)" + dir = 4 }, /turf/simulated/shuttle/floor{ icon_state = "floor4" @@ -52915,10 +51835,6 @@ pixel_y = 12 }, /obj/item/gps, -/obj/structure/snow{ - dir = 6; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel, /area/engine/mechanic_workshop) "bTn" = ( @@ -52939,9 +51855,9 @@ /area/shuttle/administration) "bTo" = ( /obj/machinery/light/spot{ - dir = 8; + tag = "icon-tube1 (WEST)"; icon_state = "tube1"; - tag = "icon-tube1 (WEST)" + dir = 8 }, /turf/simulated/shuttle/floor{ icon_state = "floor4" @@ -53025,8 +51941,8 @@ /obj/structure/table, /obj/machinery/requests_console{ department = "Cargo Bay"; - departmentType = 2; name = "Cargo Requests Console"; + departmentType = 2; pixel_x = -30; pixel_y = 0 }, @@ -53065,8 +51981,8 @@ pixel_y = -32 }, /obj/structure/cable{ - d2 = 4; - icon_state = "0-4" + icon_state = "0-4"; + d2 = 4 }, /obj/structure/cable, /obj/machinery/door/poddoor/shutters{ @@ -53210,15 +52126,15 @@ scrub_Toxins = 1 }, /turf/simulated/floor/plasteel{ - dir = 8; + tag = "icon-whiteblue (WEST)"; icon_state = "whiteblue"; - tag = "icon-whiteblue (WEST)" + dir = 8 }, /area/medical/reception) "bTN" = ( /obj/machinery/light{ - dir = 8; - icon_state = "tube1" + icon_state = "tube1"; + dir = 8 }, /turf/simulated/floor/plasteel, /area/engine/gravitygenerator) @@ -53249,8 +52165,8 @@ dir = 8 }, /turf/simulated/floor/plasteel{ - icon_state = "whitebluefull"; - tag = "icon-whitebluefull" + tag = "icon-whitebluefull"; + icon_state = "whitebluefull" }, /area/medical/reception) "bTR" = ( @@ -53286,12 +52202,9 @@ scrub_N2O = 1; scrub_Toxins = 1 }, -/obj/item/decorations/sticky_decorations/flammable/tinsel/blue{ - pixel_y = 19 - }, /turf/simulated/floor/plasteel{ - icon_state = "whitebluefull"; - tag = "icon-whitebluefull" + tag = "icon-whitebluefull"; + icon_state = "whitebluefull" }, /area/medical/biostorage) "bTV" = ( @@ -53365,9 +52278,6 @@ }, /area/medical/genetics_cloning) "bUc" = ( -/obj/item/decorations/sticky_decorations/flammable/tinsel/blue{ - pixel_y = 19 - }, /turf/simulated/floor/plasteel{ icon_state = "freezerfloor" }, @@ -53486,9 +52396,6 @@ initialize_directions = 10; level = 1 }, -/obj/item/decorations/sticky_decorations/flammable/tinsel/red{ - pixel_y = 19 - }, /turf/simulated/floor/plasteel, /area/quartermaster/office) "bUo" = ( @@ -53508,9 +52415,6 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/item/decorations/sticky_decorations/flammable/tinsel/green{ - pixel_y = 19 - }, /turf/simulated/floor/carpet, /area/crew_quarters/heads) "bUr" = ( @@ -53656,12 +52560,12 @@ "bUC" = ( /obj/machinery/light, /obj/effect/decal/warning_stripes/arrow{ - dir = 8; - icon_state = "4" + icon_state = "4"; + dir = 8 }, /obj/effect/decal/warning_stripes/yellow/partial{ - dir = 8; - icon_state = "3" + icon_state = "3"; + dir = 8 }, /turf/simulated/floor/plasteel, /area/quartermaster/storage) @@ -53671,16 +52575,13 @@ dir = 8; pixel_x = -24 }, -/obj/item/decorations/sticky_decorations/flammable/christmas_stocking{ - pixel_y = -16 - }, /turf/simulated/floor/carpet, /area/crew_quarters/captain/bedroom) "bUE" = ( /obj/structure/disposalpipe/junction{ - dir = 4; + tag = "icon-pipe-j2 (EAST)"; icon_state = "pipe-j2"; - tag = "icon-pipe-j2 (EAST)" + dir = 4 }, /turf/simulated/wall, /area/quartermaster/office) @@ -53689,10 +52590,6 @@ name = "Robotics Operating Computer" }, /obj/machinery/light, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -53754,12 +52651,12 @@ tag = "" }, /obj/effect/decal/warning_stripes/yellow/partial{ - dir = 8; - icon_state = "3" + icon_state = "3"; + dir = 8 }, /obj/effect/decal/warning_stripes/arrow{ - dir = 8; - icon_state = "4" + icon_state = "4"; + dir = 8 }, /turf/simulated/floor/plasteel, /area/hallway/primary/central/se) @@ -53782,8 +52679,8 @@ }, /obj/item/reagent_containers/iv_bag/salglu, /turf/simulated/floor/plasteel{ - icon_state = "whiteblue"; - tag = "icon-whiteblue" + tag = "icon-whiteblue"; + icon_state = "whiteblue" }, /area/medical/sleeper) "bUN" = ( @@ -54073,17 +52970,17 @@ /area/quartermaster/storage) "bVm" = ( /obj/machinery/light/spot{ - dir = 8; + tag = "icon-tube1 (WEST)"; icon_state = "tube1"; - tag = "icon-tube1 (WEST)" + dir = 8 }, /turf/simulated/shuttle/floor, /area/shuttle/supply) "bVn" = ( /obj/machinery/light/spot{ - dir = 4; + tag = "icon-tube1 (EAST)"; icon_state = "tube1"; - tag = "icon-tube1 (EAST)" + dir = 4 }, /obj/machinery/door_control{ id = "QMLoaddoor2"; @@ -54179,9 +53076,6 @@ /area/quartermaster/office) "bVu" = ( /obj/structure/closet/secure_closet/hop2, -/obj/item/decorations/sticky_decorations/flammable/christmas_stocking{ - pixel_x = -17 - }, /turf/simulated/floor/plasteel, /area/crew_quarters/heads) "bVv" = ( @@ -54280,9 +53174,6 @@ pixel_x = 4; pixel_y = 0 }, -/obj/item/decorations/sticky_decorations/flammable/tinsel/purple{ - pixel_y = 19 - }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "whitecorner" @@ -54309,8 +53200,8 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ - dir = 2; - icon_state = "whitehall" + icon_state = "whitehall"; + dir = 2 }, /area/medical/research{ name = "Research Division" @@ -54478,8 +53369,8 @@ tag = "" }, /turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "blue" + icon_state = "blue"; + dir = 8 }, /area/hallway/primary/central/se) "bVU" = ( @@ -54626,8 +53517,8 @@ pixel_y = 0 }, /obj/machinery/light{ - dir = 4; - icon_state = "tube1" + icon_state = "tube1"; + dir = 4 }, /obj/machinery/atmospherics/unary/vent_scrubber{ dir = 8; @@ -54660,9 +53551,6 @@ pixel_y = 0 }, /obj/structure/closet/secure_closet/roboticist, -/obj/item/decorations/sticky_decorations/flammable/christmas_stocking{ - pixel_x = -17 - }, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -54889,9 +53777,9 @@ "bWx" = ( /obj/machinery/door/firedoor, /turf/simulated/floor/plasteel{ - dir = 8; + tag = "icon-whiteblue (WEST)"; icon_state = "whiteblue"; - tag = "icon-whiteblue (WEST)" + dir = 8 }, /area/medical/sleeper) "bWy" = ( @@ -54943,10 +53831,6 @@ /area/medical/genetics_cloning) "bWC" = ( /obj/machinery/computer/cloning, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, /turf/simulated/floor/plasteel{ icon_state = "freezerfloor" }, @@ -54987,9 +53871,9 @@ /area/medical/genetics_cloning) "bWG" = ( /obj/structure/shuttle/engine/heater{ - dir = 8; + tag = "icon-heater (WEST)"; icon_state = "heater"; - tag = "icon-heater (WEST)" + dir = 8 }, /obj/structure/window/plasmareinforced{ color = "#FF0000"; @@ -55112,12 +53996,12 @@ opacity = 0 }, /obj/effect/decal/warning_stripes/yellow/partial{ - dir = 4; - icon_state = "3" + icon_state = "3"; + dir = 4 }, /obj/effect/decal/warning_stripes/arrow{ - dir = 4; - icon_state = "4" + icon_state = "4"; + dir = 4 }, /obj/machinery/ticket_machine{ layer = 4; @@ -55132,10 +54016,6 @@ "bWU" = ( /obj/machinery/light, /obj/machinery/computer/merch, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, /turf/simulated/floor/plasteel, /area/quartermaster/office) "bWV" = ( @@ -55210,10 +54090,6 @@ pixel_x = -24; pixel_y = 0 }, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, /turf/simulated/floor/plasteel{ dir = 9; icon_state = "blue" @@ -55224,10 +54100,6 @@ /obj/machinery/light/small{ dir = 8 }, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -55370,9 +54242,9 @@ /area/crew_quarters/heads) "bXr" = ( /obj/structure/cable{ - d2 = 2; icon_state = "0-2"; - pixel_y = 1 + pixel_y = 1; + d2 = 2 }, /obj/machinery/power/apc{ dir = 1; @@ -55388,9 +54260,9 @@ }, /obj/machinery/disposal, /turf/simulated/floor/plasteel{ - dir = 8; + tag = "icon-whitepurple (WEST)"; icon_state = "whitepurple"; - tag = "icon-whitepurple (WEST)" + dir = 8 }, /area/medical/genetics) "bXt" = ( @@ -55431,9 +54303,9 @@ pixel_x = 24 }, /turf/simulated/floor/plasteel{ - dir = 4; + tag = "icon-whitepurple (EAST)"; icon_state = "whitepurple"; - tag = "icon-whitepurple (EAST)" + dir = 4 }, /area/medical/genetics) "bXw" = ( @@ -55448,15 +54320,12 @@ /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, -/obj/item/decorations/sticky_decorations/flammable/tinsel/red{ - pixel_y = 19 - }, /turf/simulated/floor/plasteel, /area/teleporter) "bXx" = ( /obj/structure/cable{ - d2 = 4; - icon_state = "0-4" + icon_state = "0-4"; + d2 = 4 }, /obj/machinery/power/apc{ dir = 8; @@ -55464,9 +54333,6 @@ pixel_x = -24; shock_proof = 0 }, -/obj/item/decorations/sticky_decorations/flammable/tinsel/green{ - pixel_y = 19 - }, /turf/simulated/floor/plasteel, /area/teleporter) "bXy" = ( @@ -55536,9 +54402,9 @@ "bXE" = ( /obj/item/roller, /turf/simulated/floor/plasteel{ - dir = 1; + tag = "icon-whiteblue (NORTH)"; icon_state = "whiteblue"; - tag = "icon-whiteblue (NORTH)" + dir = 1 }, /area/medical/sleeper) "bXF" = ( @@ -55550,9 +54416,9 @@ dir = 4 }, /turf/simulated/floor/plasteel{ - dir = 9; + tag = "icon-whiteblue (NORTHWEST)"; icon_state = "whiteblue"; - tag = "icon-whiteblue (NORTHWEST)" + dir = 9 }, /area/medical/sleeper) "bXG" = ( @@ -55623,9 +54489,9 @@ pixel_y = 30 }, /turf/simulated/floor/plasteel{ - dir = 1; + tag = "icon-whiteblue (NORTH)"; icon_state = "whiteblue"; - tag = "icon-whiteblue (NORTH)" + dir = 1 }, /area/medical/sleeper) "bXK" = ( @@ -55671,8 +54537,8 @@ pixel_x = 24 }, /obj/structure/cable{ - d2 = 2; - icon_state = "0-2" + icon_state = "0-2"; + d2 = 2 }, /turf/simulated/floor/plasteel{ icon_state = "freezerfloor" @@ -55728,8 +54594,8 @@ tag = "" }, /obj/structure/cable{ - d2 = 2; - icon_state = "0-2" + icon_state = "0-2"; + d2 = 2 }, /turf/simulated/floor/plating, /area/medical/cmo) @@ -55759,13 +54625,13 @@ pixel_y = 0 }, /obj/machinery/light{ - dir = 8; - icon_state = "tube1" + icon_state = "tube1"; + dir = 8 }, /turf/simulated/floor/plasteel{ - dir = 8; + tag = "icon-whitepurple (WEST)"; icon_state = "whitepurple"; - tag = "icon-whitepurple (WEST)" + dir = 8 }, /area/medical/genetics) "bXW" = ( @@ -55864,8 +54730,8 @@ dir = 4 }, /turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "blue" + icon_state = "blue"; + dir = 8 }, /area/hallway/primary/central/se) "bYc" = ( @@ -55950,9 +54816,9 @@ tag = "" }, /obj/structure/cable{ - d2 = 2; icon_state = "0-2"; - pixel_y = 1 + pixel_y = 1; + d2 = 2 }, /turf/simulated/floor/plating, /area/crew_quarters/hor) @@ -55967,9 +54833,9 @@ pixel_x = 27 }, /turf/simulated/floor/plasteel{ - dir = 4; + tag = "icon-whitepurple (EAST)"; icon_state = "whitepurple"; - tag = "icon-whitepurple (EAST)" + dir = 4 }, /area/medical/genetics) "bYl" = ( @@ -56048,9 +54914,9 @@ /obj/structure/bed, /obj/item/bedsheet/medical, /turf/simulated/floor/plasteel{ - dir = 1; + tag = "icon-whiteblue (NORTH)"; icon_state = "whiteblue"; - tag = "icon-whiteblue (NORTH)" + dir = 1 }, /area/medical/sleeper) "bYt" = ( @@ -56075,9 +54941,9 @@ }, /obj/effect/mapping_helpers/airlock/unres, /turf/simulated/floor/plasteel{ - dir = 8; + tag = "icon-whiteblue (WEST)"; icon_state = "whiteblue"; - tag = "icon-whiteblue (WEST)" + dir = 8 }, /area/medical/reception) "bYv" = ( @@ -56149,8 +55015,8 @@ /obj/item/roller, /obj/item/soap/nanotrasen, /turf/simulated/floor/plasteel{ - icon_state = "whiteblue"; - tag = "icon-whiteblue" + tag = "icon-whiteblue"; + icon_state = "whiteblue" }, /area/medical/sleeper) "bYD" = ( @@ -56313,8 +55179,8 @@ "bYR" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "blue" + icon_state = "blue"; + dir = 4 }, /area/hallway/primary/central/sw) "bYS" = ( @@ -56341,8 +55207,8 @@ pixel_x = -28 }, /turf/simulated/floor/plasteel{ - dir = 10; - icon_state = "blue" + icon_state = "blue"; + dir = 10 }, /area/crew_quarters/heads) "bYU" = ( @@ -56534,9 +55400,9 @@ pixel_x = -24 }, /turf/simulated/floor/plasteel{ - dir = 9; + tag = "icon-whiteblue (NORTHWEST)"; icon_state = "whiteblue"; - tag = "icon-whiteblue (NORTHWEST)" + dir = 9 }, /area/medical/sleeper) "bZk" = ( @@ -56606,9 +55472,6 @@ dir = 1 }, /obj/machinery/hologram/holopad, -/obj/item/decorations/sticky_decorations/flammable/tinsel/blue{ - pixel_y = 19 - }, /turf/simulated/floor/plasteel{ icon_state = "freezerfloor" }, @@ -56648,8 +55511,8 @@ icon_state = "pipe-c" }, /turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "blue" + icon_state = "blue"; + dir = 8 }, /area/hallway/primary/central/se) "bZu" = ( @@ -56681,10 +55544,6 @@ pixel_x = -32; pixel_y = -8 }, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, /turf/simulated/floor/plasteel{ dir = 9; icon_state = "darkblue" @@ -56722,8 +55581,8 @@ opacity = 0 }, /obj/structure/cable{ - d2 = 2; - icon_state = "0-2" + icon_state = "0-2"; + d2 = 2 }, /turf/simulated/floor/plating, /area/medical/cmo) @@ -56803,9 +55662,9 @@ icon_state = "pipe-c" }, /turf/simulated/floor/plasteel{ - dir = 8; + tag = "icon-whiteblue (WEST)"; icon_state = "whiteblue"; - tag = "icon-whiteblue (WEST)" + dir = 8 }, /area/medical/medbay2) "bZF" = ( @@ -57160,9 +56019,9 @@ tag = "" }, /obj/structure/cable{ - d2 = 2; icon_state = "0-2"; - pixel_y = 1 + pixel_y = 1; + d2 = 2 }, /turf/simulated/floor/plating, /area/crew_quarters/hor) @@ -57176,10 +56035,6 @@ pixel_x = -2; pixel_y = 30 }, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "cafeteria"; @@ -57394,18 +56249,10 @@ /area/quartermaster/qm) "cap" = ( /obj/machinery/computer/supplycomp, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, /turf/simulated/floor/plasteel, /area/quartermaster/qm) "caq" = ( /obj/machinery/computer/security/mining, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, /turf/simulated/floor/plasteel, /area/quartermaster/qm) "car" = ( @@ -57419,10 +56266,10 @@ }, /obj/structure/grille, /obj/structure/shuttle/window{ - dir = 8; + tag = "icon-window5_end (WEST)"; icon = 'icons/turf/shuttle.dmi'; icon_state = "window5_end"; - tag = "icon-window5_end (WEST)" + dir = 8 }, /turf/simulated/floor/plating, /area/shuttle/administration) @@ -57449,10 +56296,6 @@ dir = 4; icon_state = "tube1" }, -/obj/structure/snow{ - dir = 6; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel, /area/quartermaster/qm) "cau" = ( @@ -57512,13 +56355,13 @@ pixel_y = 0 }, /obj/machinery/light{ - dir = 8; - icon_state = "tube1" + icon_state = "tube1"; + dir = 8 }, /turf/simulated/floor/plasteel{ - dir = 8; + tag = "icon-whiteblue (WEST)"; icon_state = "whiteblue"; - tag = "icon-whiteblue (WEST)" + dir = 8 }, /area/medical/sleeper) "caA" = ( @@ -57803,10 +56646,6 @@ /area/medical/medbay2) "caR" = ( /obj/machinery/computer/crew, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "darkblue" @@ -57874,18 +56713,14 @@ name = "Geneticist" }, /turf/simulated/floor/plasteel{ - dir = 10; + tag = "icon-whitepurple (SOUTHWEST)"; icon_state = "whitepurple"; - tag = "icon-whitepurple (SOUTHWEST)" + dir = 10 }, /area/medical/genetics) "caX" = ( /obj/machinery/computer/scan_consolenew, /obj/structure/window/reinforced, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "whitepurplefull"; @@ -57900,9 +56735,9 @@ name = "Geneticist" }, /turf/simulated/floor/plasteel{ - dir = 6; + tag = "icon-whitepurple (SOUTHEAST)"; icon_state = "whitepurple"; - tag = "icon-whitepurple (SOUTHEAST)" + dir = 6 }, /area/medical/genetics) "caZ" = ( @@ -58048,10 +56883,6 @@ }) "cbl" = ( /obj/machinery/computer/teleporter, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, /turf/simulated/floor/plating, /area/teleporter) "cbm" = ( @@ -58117,10 +56948,6 @@ /area/crew_quarters/hor) "cbq" = ( /obj/machinery/computer/robotics, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "cafeteria"; @@ -58142,8 +56969,8 @@ icon_state = "1-2" }, /turf/simulated/floor/plasteel{ - icon_state = "whitebluefull"; - tag = "icon-whitebluefull" + tag = "icon-whitebluefull"; + icon_state = "whitebluefull" }, /area/medical/biostorage) "cbs" = ( @@ -58183,9 +57010,9 @@ icon_state = "pipe-c" }, /turf/simulated/floor/plasteel{ - dir = 8; + tag = "icon-whiteblue (WEST)"; icon_state = "whiteblue"; - tag = "icon-whiteblue (WEST)" + dir = 8 }, /area/medical/medbay2) "cbv" = ( @@ -58194,9 +57021,9 @@ pixel_y = -28 }, /turf/simulated/floor/plasteel{ - dir = 8; + tag = "icon-whitebluecorner (WEST)"; icon_state = "whitebluecorner"; - tag = "icon-whitebluecorner (WEST)" + dir = 8 }, /area/medical/medbay2) "cbw" = ( @@ -58219,8 +57046,8 @@ req_access_txt = "5" }, /turf/simulated/floor/plasteel{ - icon_state = "whitebluefull"; - tag = "icon-whitebluefull" + tag = "icon-whitebluefull"; + icon_state = "whitebluefull" }, /area/medical/biostorage) "cbz" = ( @@ -58258,8 +57085,8 @@ "cbB" = ( /turf/simulated/shuttle/floor, /turf/simulated/shuttle/wall/interior{ - icon_state = "swall_f10"; - tag = "icon-swall_f10" + tag = "icon-swall_f10"; + icon_state = "swall_f10" }, /area/shuttle/supply) "cbC" = ( @@ -58268,23 +57095,23 @@ /area/shuttle/supply) "cbD" = ( /turf/simulated/shuttle/wall{ - dir = 2; + tag = "icon-swall7"; icon_state = "swall7"; - tag = "icon-swall7" + dir = 2 }, /area/shuttle/supply) "cbE" = ( /turf/simulated/shuttle/floor, /turf/simulated/shuttle/wall/interior{ - icon_state = "swall_f6"; - tag = "icon-swall_f6" + tag = "icon-swall_f6"; + icon_state = "swall_f6" }, /area/shuttle/supply) "cbF" = ( /turf/simulated/shuttle/wall{ - dir = 2; + tag = "icon-swall11"; icon_state = "swall11"; - tag = "icon-swall11" + dir = 2 }, /area/shuttle/supply) "cbG" = ( @@ -58355,17 +57182,9 @@ /obj/effect/landmark/start{ name = "Quartermaster" }, -/obj/structure/snow{ - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel, /area/quartermaster/qm) "cbM" = ( -/obj/item/decorations/sticky_decorations/flammable/tinsel/green{ - pixel_y = 19 - }, -/obj/item/decorations/sticky_decorations/flammable/snowman, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/quartermaster/qm) "cbN" = ( @@ -58380,17 +57199,17 @@ /area/medical/medbay2) "cbO" = ( /turf/simulated/floor/plasteel{ - dir = 8; + tag = "icon-whitebluecorner (WEST)"; icon_state = "whitebluecorner"; - tag = "icon-whitebluecorner (WEST)" + dir = 8 }, /area/medical/medbay2) "cbP" = ( /obj/machinery/light, /turf/simulated/floor/plasteel{ - dir = 8; + tag = "icon-whitebluecorner (WEST)"; icon_state = "whitebluecorner"; - tag = "icon-whitebluecorner (WEST)" + dir = 8 }, /area/medical/medbay2) "cbQ" = ( @@ -58413,7 +57232,6 @@ pixel_x = 28 }, /obj/structure/disposalpipe/segment, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/quartermaster/qm) "cbS" = ( @@ -58437,9 +57255,9 @@ "cbU" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel{ - dir = 8; + tag = "icon-whitebluecorner (WEST)"; icon_state = "whitebluecorner"; - tag = "icon-whitebluecorner (WEST)" + dir = 8 }, /area/medical/medbay2) "cbV" = ( @@ -58493,8 +57311,8 @@ }, /obj/effect/decal/warning_stripes/northeast, /obj/effect/mapping_helpers/airlock/unres{ - dir = 4; - icon_state = "airlock_unres_helper" + icon_state = "airlock_unres_helper"; + dir = 4 }, /turf/simulated/floor/plasteel, /area/hallway/primary/central/se) @@ -58529,8 +57347,8 @@ /obj/machinery/iv_drip, /obj/item/reagent_containers/iv_bag/salglu, /turf/simulated/floor/plasteel{ - icon_state = "whiteblue"; - tag = "icon-whiteblue" + tag = "icon-whiteblue"; + icon_state = "whiteblue" }, /area/medical/sleeper) "ccb" = ( @@ -58823,8 +57641,8 @@ /obj/structure/cable, /obj/item/roller, /turf/simulated/floor/plasteel{ - icon_state = "whiteblue"; - tag = "icon-whiteblue" + tag = "icon-whiteblue"; + icon_state = "whiteblue" }, /area/medical/sleeper) "ccr" = ( @@ -58851,8 +57669,8 @@ pixel_y = -28 }, /turf/simulated/floor/plasteel{ - icon_state = "whiteblue"; - tag = "icon-whiteblue" + tag = "icon-whiteblue"; + icon_state = "whiteblue" }, /area/medical/sleeper) "cct" = ( @@ -58865,14 +57683,14 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel{ - icon_state = "whiteblue"; - tag = "icon-whiteblue" + tag = "icon-whiteblue"; + icon_state = "whiteblue" }, /area/medical/sleeper) "ccu" = ( /turf/simulated/floor/plasteel{ - icon_state = "whiteblue"; - tag = "icon-whiteblue" + tag = "icon-whiteblue"; + icon_state = "whiteblue" }, /area/medical/sleeper) "ccv" = ( @@ -58996,9 +57814,9 @@ "ccC" = ( /obj/machinery/vending/medical, /turf/simulated/floor/plasteel{ - dir = 8; + tag = "icon-whitebluecorner (WEST)"; icon_state = "whitebluecorner"; - tag = "icon-whitebluecorner (WEST)" + dir = 8 }, /area/medical/medbay2) "ccD" = ( @@ -59019,9 +57837,9 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel{ - dir = 8; + tag = "icon-whitebluecorner (WEST)"; icon_state = "whitebluecorner"; - tag = "icon-whitebluecorner (WEST)" + dir = 8 }, /area/medical/medbay2) "ccF" = ( @@ -59043,8 +57861,8 @@ opacity = 0 }, /obj/structure/cable{ - d2 = 2; - icon_state = "0-2" + icon_state = "0-2"; + d2 = 2 }, /obj/structure/cable{ d1 = 1; @@ -59088,8 +57906,8 @@ shock_proof = 0 }, /obj/structure/cable{ - d2 = 2; - icon_state = "0-2" + icon_state = "0-2"; + d2 = 2 }, /turf/simulated/floor/plasteel{ dir = 4; @@ -59104,9 +57922,6 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/snow{ - icon_state = "snow_corner" - }, /turf/simulated/floor/wood, /area/blueshield) "ccL" = ( @@ -59157,9 +57972,6 @@ name = "station intercom (General)"; pixel_y = 25 }, -/obj/item/decorations/sticky_decorations/flammable/christmas_stocking{ - pixel_x = -17 - }, /turf/simulated/floor/plasteel, /area/janitor) "ccP" = ( @@ -59168,13 +57980,10 @@ /turf/simulated/floor/plasteel, /area/escapepodbay) "ccQ" = ( -/obj/item/decorations/sticky_decorations/flammable/tinsel/blue{ - pixel_y = 19 - }, /turf/simulated/floor/plasteel{ - dir = 8; + tag = "icon-whitepurple (WEST)"; icon_state = "whitepurple"; - tag = "icon-whitepurple (WEST)" + dir = 8 }, /area/medical/genetics) "ccR" = ( @@ -59199,9 +58008,9 @@ "ccT" = ( /obj/machinery/r_n_d/server/robotics, /obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 6; + tag = "icon-intact (SOUTHEAST)"; icon_state = "intact"; - tag = "icon-intact (SOUTHEAST)" + dir = 6 }, /turf/simulated/floor/bluegrid/telecomms/server, /area/toxins/server_coldroom) @@ -59213,9 +58022,9 @@ pixel_y = 32 }, /obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ - dir = 8; + tag = "icon-intact (WEST)"; icon_state = "intact"; - tag = "icon-intact (WEST)" + dir = 8 }, /obj/structure/cable{ d1 = 4; @@ -59322,8 +58131,8 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ - icon_state = "vault"; - tag = "icon-vault" + tag = "icon-vault"; + icon_state = "vault" }, /area/engine/gravitygenerator) "cdb" = ( @@ -59396,10 +58205,6 @@ /area/crew_quarters/hor) "cdg" = ( /obj/machinery/computer/mecha, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "cafeteria"; @@ -59490,9 +58295,9 @@ "cdp" = ( /obj/machinery/clonepod/upgraded, /obj/machinery/light/spot{ - dir = 1; + tag = "icon-tube1 (NORTH)"; icon_state = "tube1"; - tag = "icon-tube1 (NORTH)" + dir = 1 }, /turf/simulated/shuttle/floor{ icon_state = "floor3" @@ -59522,8 +58327,8 @@ dir = 4 }, /obj/effect/mapping_helpers/airlock/unres{ - dir = 4; - icon_state = "airlock_unres_helper" + icon_state = "airlock_unres_helper"; + dir = 4 }, /turf/simulated/floor/plasteel{ icon_state = "freezerfloor" @@ -59548,18 +58353,18 @@ }, /obj/structure/grille, /obj/structure/shuttle/window{ - dir = 4; + tag = "icon-window5_end (EAST)"; icon = 'icons/turf/shuttle.dmi'; icon_state = "window5_end"; - tag = "icon-window5_end (EAST)" + dir = 4 }, /turf/simulated/floor/plating, /area/shuttle/administration) "cdt" = ( /turf/simulated/shuttle/wall{ - dir = 2; + tag = "icon-swall15"; icon_state = "swall15"; - tag = "icon-swall15" + dir = 2 }, /area/shuttle/supply) "cdu" = ( @@ -59572,17 +58377,17 @@ "cdv" = ( /turf/space, /turf/simulated/shuttle/wall{ - dir = 2; + tag = "icon-swall_f5"; icon_state = "swall_f5"; - tag = "icon-swall_f5" + dir = 2 }, /area/shuttle/supply) "cdw" = ( /turf/space, /turf/simulated/shuttle/wall{ - dir = 2; + tag = "icon-swall_f9"; icon_state = "swall_f9"; - tag = "icon-swall_f9" + dir = 2 }, /area/shuttle/supply) "cdx" = ( @@ -59600,14 +58405,11 @@ /obj/item/pen, /obj/machinery/requests_console{ department = "Cargo Bay"; - departmentType = 2; name = "Cargo Requests Console"; + departmentType = 2; pixel_x = -30; pixel_y = 0 }, -/obj/item/reagent_containers/food/snacks/candy/confectionery/rice, -/obj/item/reagent_containers/food/snacks/candy/confectionery/rice, -/obj/item/reagent_containers/food/snacks/candy/confectionery/rice, /turf/simulated/floor/plasteel, /area/quartermaster/miningdock) "cdz" = ( @@ -59632,9 +58434,6 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/snow{ - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel, /area/quartermaster/miningdock) "cdB" = ( @@ -59677,7 +58476,6 @@ pixel_x = 2; pixel_y = 6 }, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/quartermaster/qm) "cdE" = ( @@ -59686,7 +58484,6 @@ c_tag = "Quartermaster's Office"; dir = 8 }, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/quartermaster/qm) "cdF" = ( @@ -59712,13 +58509,6 @@ pixel_x = 0; pixel_y = 32 }, -/obj/item/reagent_containers/food/snacks/candy/confectionery/nougat{ - pixel_x = -7 - }, -/obj/item/reagent_containers/food/snacks/candy/confectionery/nougat, -/obj/item/reagent_containers/food/snacks/candy/confectionery/nougat{ - pixel_x = 8 - }, /turf/simulated/floor/plasteel, /area/engine/break_room) "cdH" = ( @@ -59766,9 +58556,6 @@ /obj/effect/landmark/start{ name = "Research Director" }, -/obj/item/decorations/sticky_decorations/flammable/tinsel/purple{ - pixel_y = 19 - }, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "cafeteria"; @@ -59805,8 +58592,8 @@ "cdQ" = ( /obj/machinery/requests_console{ department = "Cargo Bay"; - departmentType = 2; name = "Cargo Requests Console"; + departmentType = 2; pixel_x = -30; pixel_y = 0 }, @@ -59824,9 +58611,9 @@ /area/quartermaster/qm) "cdS" = ( /obj/structure/cable{ - d2 = 2; icon_state = "0-2"; - pixel_y = 1 + pixel_y = 1; + d2 = 2 }, /obj/machinery/power/apc{ dir = 1; @@ -59873,9 +58660,9 @@ /area/hallway/primary/central/south) "cdY" = ( /obj/structure/disposalpipe/junction{ - dir = 4; + tag = "icon-pipe-j1 (EAST)"; icon_state = "pipe-j1"; - tag = "icon-pipe-j1 (EAST)" + dir = 4 }, /turf/simulated/floor/plasteel{ dir = 1; @@ -59985,9 +58772,6 @@ /area/medical/medbay2) "cej" = ( /obj/structure/filingcabinet/chestdrawer, -/obj/item/decorations/sticky_decorations/flammable/tinsel/blue{ - pixel_y = 19 - }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "darkblue" @@ -60001,9 +58785,6 @@ d2 = 2; icon_state = "1-2" }, -/obj/item/decorations/sticky_decorations/flammable/tinsel/blue{ - pixel_y = 19 - }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "darkblue" @@ -60014,9 +58795,6 @@ dir = 1 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/item/decorations/sticky_decorations/flammable/tinsel/blue{ - pixel_y = 19 - }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "darkblue" @@ -60069,9 +58847,9 @@ dir = 4 }, /obj/structure/cable{ - d2 = 2; icon_state = "0-2"; - pixel_y = 1 + pixel_y = 1; + d2 = 2 }, /obj/machinery/power/apc{ dir = 1; @@ -60178,10 +58956,6 @@ icon_state = "1-2" }, /obj/effect/decal/cleanable/dirt, -/obj/structure/snow{ - dir = 5; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel, /area/quartermaster/storage) "ceF" = ( @@ -60349,8 +59123,8 @@ }, /obj/effect/decal/warning_stripes/southeast, /obj/effect/mapping_helpers/airlock/unres{ - dir = 4; - icon_state = "airlock_unres_helper" + icon_state = "airlock_unres_helper"; + dir = 4 }, /turf/simulated/floor/plasteel, /area/hallway/primary/central/se) @@ -60360,23 +59134,23 @@ /area/shuttle/supply) "ceV" = ( /obj/structure/shuttle/engine/propulsion{ - icon_state = "burst_l"; - tag = "icon-burst_l" + tag = "icon-burst_l"; + icon_state = "burst_l" }, /turf/simulated/shuttle/plating, /area/shuttle/supply) "ceW" = ( /obj/structure/shuttle/engine/propulsion{ - icon_state = "burst_r"; - tag = "icon-burst_r" + tag = "icon-burst_r"; + icon_state = "burst_r" }, /turf/simulated/shuttle/plating, /area/shuttle/supply) "ceX" = ( /turf/space, /turf/simulated/shuttle/wall{ - dir = 2; - icon_state = "swall_f6" + icon_state = "swall_f6"; + dir = 2 }, /area/shuttle/mining) "ceY" = ( @@ -60386,16 +59160,16 @@ /area/shuttle/mining) "ceZ" = ( /turf/simulated/shuttle/wall{ - dir = 2; - icon_state = "swall12" + icon_state = "swall12"; + dir = 2 }, /area/shuttle/mining) "cfa" = ( /turf/space, /turf/simulated/shuttle/wall{ - dir = 2; + tag = "icon-swall_f10"; icon_state = "swall_f10"; - tag = "icon-swall_f10" + dir = 2 }, /area/shuttle/mining) "cfb" = ( @@ -60406,10 +59180,6 @@ /obj/effect/landmark/start{ name = "Shaft Miner" }, -/obj/structure/snow{ - dir = 10; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel, /area/quartermaster/miningdock) "cfd" = ( @@ -60419,10 +59189,6 @@ pixel_y = 7 }, /obj/item/megaphone, -/obj/structure/snow{ - dir = 4; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel, /area/quartermaster/qm) "cfe" = ( @@ -60438,9 +59204,6 @@ pixel_y = -4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/snow{ - icon_state = "snow_surround" - }, /turf/simulated/floor/plasteel, /area/quartermaster/qm) "cff" = ( @@ -60455,13 +59218,6 @@ dir = 4; network = list("SS13") }, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, -/obj/structure/snow{ - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel, /area/quartermaster/miningdock) "cfg" = ( @@ -60471,7 +59227,6 @@ pixel_x = 24 }, /obj/structure/disposalpipe/segment, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/quartermaster/qm) "cfh" = ( @@ -60588,8 +59343,8 @@ /area/janitor) "cfp" = ( /obj/structure/cable{ - d2 = 4; - icon_state = "0-4" + icon_state = "0-4"; + d2 = 4 }, /obj/structure/disposalpipe/segment{ dir = 4; @@ -60710,13 +59465,10 @@ pixel_x = 0; pixel_y = 25 }, -/obj/item/decorations/sticky_decorations/flammable/christmas_stocking{ - pixel_y = 17 - }, /turf/simulated/floor/plasteel{ - dir = 8; + tag = "icon-whitebluecorner (WEST)"; icon_state = "whitebluecorner"; - tag = "icon-whitebluecorner (WEST)" + dir = 8 }, /area/medical/surgery1) "cfB" = ( @@ -60745,8 +59497,8 @@ /obj/item/stack/medical/bruise_pack/advanced, /obj/item/reagent_containers/iv_bag/salglu, /turf/simulated/floor/plasteel{ - icon_state = "whiteblue"; - tag = "icon-whiteblue" + tag = "icon-whiteblue"; + icon_state = "whiteblue" }, /area/medical/surgery2) "cfD" = ( @@ -60835,9 +59587,6 @@ pixel_x = 0; pixel_y = 25 }, -/obj/item/decorations/sticky_decorations/flammable/christmas_stocking{ - pixel_y = 17 - }, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "whitebluecorner"; @@ -60853,8 +59602,8 @@ }, /obj/item/surgicaldrill, /turf/simulated/floor/plasteel{ - icon_state = "whiteblue"; - tag = "icon-whiteblue" + tag = "icon-whiteblue"; + icon_state = "whiteblue" }, /area/medical/surgery2) "cfM" = ( @@ -60879,8 +59628,8 @@ /obj/structure/table/tray, /obj/item/scalpel, /turf/simulated/floor/plasteel{ - icon_state = "whiteblue"; - tag = "icon-whiteblue" + tag = "icon-whiteblue"; + icon_state = "whiteblue" }, /area/medical/surgery2) "cfN" = ( @@ -61058,7 +59807,6 @@ icon_state = "2-8"; tag = "" }, -/obj/item/toy/cattoy, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "darkbluecorners" @@ -61124,9 +59872,9 @@ "cgc" = ( /obj/machinery/r_n_d/server/core, /obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 5; + tag = "icon-intact (NORTHEAST)"; icon_state = "intact"; - tag = "icon-intact (NORTHEAST)" + dir = 5 }, /turf/simulated/floor/bluegrid/telecomms/server, /area/toxins/server_coldroom) @@ -61155,18 +59903,10 @@ /obj/machinery/light_switch{ pixel_y = -23 }, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, /turf/simulated/floor/plasteel/dark, /area/toxins/server) "cgg" = ( /obj/machinery/computer/message_monitor, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, /turf/simulated/floor/plasteel/dark, /area/toxins/server) "cgh" = ( @@ -61334,9 +60074,9 @@ /area/shuttle/administration) "cgA" = ( /obj/machinery/light/spot{ - dir = 4; + tag = "icon-tube1 (EAST)"; icon_state = "tube1"; - tag = "icon-tube1 (EAST)" + dir = 4 }, /obj/structure/chair/comfy/shuttle{ dir = 8 @@ -61367,16 +60107,12 @@ }) "cgF" = ( /turf/simulated/shuttle/wall{ - dir = 2; - icon_state = "swall3" + icon_state = "swall3"; + dir = 2 }, /area/shuttle/mining) "cgG" = ( /obj/structure/closet/wardrobe/miner, -/obj/structure/snow{ - dir = 4; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "brown" @@ -61384,10 +60120,6 @@ /area/quartermaster/miningdock) "cgH" = ( /obj/machinery/computer/shuttle/mining, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, /turf/simulated/floor/plasteel{ dir = 9; icon_state = "brown" @@ -61486,7 +60218,6 @@ name = "Quartermaster"; req_access_txt = "41" }, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/quartermaster/qm) "cgO" = ( @@ -61519,10 +60250,6 @@ d2 = 8; icon_state = "0-8" }, -/obj/structure/snow{ - dir = 8; - icon_state = "snow_surround" - }, /turf/simulated/floor/plasteel, /area/quartermaster/qm) "cgQ" = ( @@ -61705,8 +60432,8 @@ req_one_access_txt = "5;9" }, /obj/effect/mapping_helpers/airlock/unres{ - dir = 4; - icon_state = "airlock_unres_helper" + icon_state = "airlock_unres_helper"; + dir = 4 }, /turf/simulated/floor/plasteel{ icon_state = "freezerfloor" @@ -61736,9 +60463,6 @@ d2 = 4; icon_state = "0-4" }, -/obj/item/decorations/sticky_decorations/flammable/tinsel/blue{ - pixel_y = 19 - }, /turf/simulated/floor/plasteel{ dir = 9; icon_state = "darkblue" @@ -61746,9 +60470,9 @@ /area/medical/surgery1) "chl" = ( /turf/simulated/floor/plasteel{ - dir = 8; + tag = "icon-whiteblue (WEST)"; icon_state = "whiteblue"; - tag = "icon-whiteblue (WEST)" + dir = 8 }, /area/medical/surgery1) "chm" = ( @@ -61759,9 +60483,6 @@ tag = "" }, /obj/machinery/hologram/holopad, -/obj/item/decorations/sticky_decorations/flammable/tinsel/blue{ - pixel_y = 19 - }, /turf/simulated/floor/plasteel{ dir = 5; icon_state = "darkblue" @@ -61799,9 +60520,6 @@ tag = "" }, /obj/machinery/hologram/holopad, -/obj/item/decorations/sticky_decorations/flammable/tinsel/blue{ - pixel_y = 19 - }, /turf/simulated/floor/plasteel{ dir = 9; icon_state = "darkblue" @@ -61827,9 +60545,6 @@ d2 = 8; icon_state = "0-8" }, -/obj/item/decorations/sticky_decorations/flammable/tinsel/blue{ - pixel_y = 19 - }, /turf/simulated/floor/plasteel{ dir = 5; icon_state = "darkblue" @@ -61917,9 +60632,9 @@ level = 1 }, /turf/simulated/floor/plasteel{ - dir = 8; + tag = "icon-whitebluecorner (WEST)"; icon_state = "whitebluecorner"; - tag = "icon-whitebluecorner (WEST)" + dir = 8 }, /area/medical/medbay2) "chy" = ( @@ -61949,9 +60664,6 @@ /obj/structure/closet/secure_closet/CMO, /obj/item/clothing/mask/gas, /obj/item/storage/briefcase, -/obj/item/decorations/sticky_decorations/flammable/christmas_stocking{ - pixel_y = -16 - }, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "darkblue" @@ -62036,10 +60748,6 @@ icon_state = "alarm0"; pixel_x = 24 }, -/obj/structure/snow{ - dir = 8; - icon_state = "snow_corner" - }, /turf/simulated/floor/wood, /area/ntrep) "chI" = ( @@ -62064,8 +60772,8 @@ /area/medical/surgery1) "chL" = ( /obj/machinery/light{ - dir = 8; - icon_state = "tube1" + icon_state = "tube1"; + dir = 8 }, /obj/machinery/alarm{ dir = 4; @@ -62172,9 +60880,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/item/decorations/sticky_decorations/flammable/tinsel/purple{ - pixel_y = 19 - }, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "cafeteria"; @@ -62279,10 +60984,6 @@ /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, -/obj/structure/snow{ - dir = 6; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel, /area/quartermaster/miningdock) "chY" = ( @@ -62418,7 +61119,6 @@ /obj/effect/landmark/start{ name = "Shaft Miner" }, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/quartermaster/miningdock) "cis" = ( @@ -62434,7 +61134,6 @@ level = 1 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/quartermaster/miningdock) "cit" = ( @@ -62451,36 +61150,20 @@ /area/quartermaster/miningdock) "ciu" = ( /obj/machinery/atmospherics/unary/vent_pump/on, -/obj/item/decorations/sticky_decorations/flammable/tinsel/red{ - pixel_y = 19 - }, -/obj/structure/snow{ - dir = 6; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel, /area/quartermaster/qm) "civ" = ( /obj/machinery/hologram/holopad, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/item/decorations/sticky_decorations/flammable/tinsel/red{ - pixel_y = 19 - }, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/quartermaster/qm) "ciw" = ( /obj/structure/closet/secure_closet/quartermaster, -/obj/item/decorations/sticky_decorations/flammable/christmas_stocking{ - pixel_y = -16 - }, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/quartermaster/qm) "cix" = ( /obj/structure/table, /obj/item/coin/silver, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/quartermaster/qm) "ciy" = ( @@ -62510,7 +61193,6 @@ dir = 4; icon_state = "tube1" }, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/quartermaster/qm) "ciA" = ( @@ -62567,10 +61249,6 @@ icon_state = "1-2" }, /obj/machinery/computer/operating, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "darkblue" @@ -62629,10 +61307,6 @@ icon_state = "1-2" }, /obj/machinery/computer/operating, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "darkblue" @@ -62793,9 +61467,9 @@ /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ - dir = 8; + tag = "icon-whitebluecorner (WEST)"; icon_state = "whitebluecorner"; - tag = "icon-whitebluecorner (WEST)" + dir = 8 }, /area/medical/medbay2) "ciV" = ( @@ -62913,15 +61587,10 @@ pixel_x = 32 }, /obj/machinery/photocopier, -/obj/structure/snow{ - dir = 8; - icon_state = "snow_corner" - }, /turf/simulated/floor/wood, /area/blueshield) "cjd" = ( /obj/machinery/photocopier, -/obj/structure/snow, /turf/simulated/floor/wood, /area/ntrep) "cje" = ( @@ -62932,16 +61601,10 @@ /obj/item/folder, /obj/item/pen/multi/fountain, /obj/item/stamp/rep, -/obj/structure/snow, /turf/simulated/floor/carpet, /area/ntrep) "cjf" = ( /obj/structure/table/wood, -/obj/structure/snow, -/obj/item/a_gift, -/obj/item/id_decal/centcom, -/obj/item/gun/projectile/shotgun/toy/tommygun, -/obj/item/ammo_box/magazine/internal/shot/toy/tommygun, /turf/simulated/floor/carpet, /area/ntrep) "cjg" = ( @@ -62954,10 +61617,6 @@ pixel_x = 24; pixel_y = 0 }, -/obj/structure/snow{ - dir = 10; - icon_state = "snow_corner" - }, /turf/simulated/floor/wood, /area/ntrep) "cjh" = ( @@ -63011,9 +61670,9 @@ /area/hallway/primary/central/south) "cjk" = ( /obj/structure/disposalpipe/junction{ - dir = 2; + tag = "icon-pipe-j2"; icon_state = "pipe-j2"; - tag = "icon-pipe-j2" + dir = 2 }, /turf/simulated/floor/plasteel, /area/hallway/primary/central/south) @@ -63142,9 +61801,6 @@ /obj/item/clothing/under/rank/medical/blue, /obj/item/clothing/under/rank/medical/green, /obj/item/clothing/under/rank/medical/purple, -/obj/item/decorations/sticky_decorations/flammable/christmas_stocking{ - pixel_y = 17 - }, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "cafeteria"; @@ -63182,9 +61838,9 @@ level = 1 }, /turf/simulated/floor/plasteel{ - dir = 8; + tag = "icon-whiteblue (WEST)"; icon_state = "whiteblue"; - tag = "icon-whiteblue (WEST)" + dir = 8 }, /area/medical/surgery1) "cjy" = ( @@ -63487,9 +62143,6 @@ dir = 1; pixel_y = -24 }, -/obj/item/decorations/sticky_decorations/flammable/christmas_stocking{ - pixel_y = -16 - }, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "cafeteria"; @@ -63521,7 +62174,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/quartermaster/miningdock) "cjV" = ( @@ -63588,9 +62240,9 @@ /area/toxins/mixing) "ckf" = ( /obj/machinery/light/spot{ - dir = 4; + tag = "icon-tube1 (EAST)"; icon_state = "tube1"; - tag = "icon-tube1 (EAST)" + dir = 4 }, /turf/simulated/shuttle/floor{ icon_state = "floor3" @@ -63600,9 +62252,9 @@ /obj/structure/table, /obj/item/storage/box/handcuffs, /obj/machinery/light/spot{ - dir = 8; + tag = "icon-tube1 (WEST)"; icon_state = "tube1"; - tag = "icon-tube1 (WEST)" + dir = 8 }, /turf/simulated/shuttle/floor{ icon_state = "floor4" @@ -63690,7 +62342,6 @@ pixel_x = 24 }, /obj/structure/disposalpipe/segment, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/quartermaster/miningdock) "ckp" = ( @@ -63720,7 +62371,6 @@ initialize_directions = 11; level = 1 }, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/quartermaster/miningdock) "ckr" = ( @@ -63754,10 +62404,6 @@ }, /area/medical/surgery2) "ckt" = ( -/obj/structure/snow{ - dir = 6; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel{ icon_state = "bcarpet05" }, @@ -63790,7 +62436,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/quartermaster/qm) "cky" = ( @@ -63843,9 +62488,9 @@ /obj/structure/closet/walllocker/emerglocker/west, /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel{ - dir = 8; + tag = "icon-whitebluecorner (WEST)"; icon_state = "whitebluecorner"; - tag = "icon-whitebluecorner (WEST)" + dir = 8 }, /area/medical/medbay2) "ckC" = ( @@ -63889,8 +62534,8 @@ pixel_y = 24 }, /obj/structure/cable{ - d2 = 2; - icon_state = "0-2" + icon_state = "0-2"; + d2 = 2 }, /obj/machinery/camera{ c_tag = "Medbay Break Room"; @@ -63914,7 +62559,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/quartermaster/qm) "ckH" = ( @@ -63929,7 +62573,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/quartermaster/qm) "ckI" = ( @@ -63973,10 +62616,6 @@ /obj/structure/sign/poster/random{ pixel_x = -32 }, -/obj/structure/snow{ - dir = 5; - icon_state = "snow_corner" - }, /turf/simulated/floor/wood, /area/ntrep) "ckN" = ( @@ -64051,17 +62690,17 @@ pixel_x = 0 }, /turf/simulated/floor/plasteel{ - dir = 1; + tag = "icon-whiteblue (NORTH)"; icon_state = "whiteblue"; - tag = "icon-whiteblue (NORTH)" + dir = 1 }, /area/medical/surgery1) "ckV" = ( /obj/machinery/bodyscanner, /turf/simulated/floor/plasteel{ - dir = 1; + tag = "icon-whiteblue (NORTH)"; icon_state = "whiteblue"; - tag = "icon-whiteblue (NORTH)" + dir = 1 }, /area/medical/surgery1) "ckW" = ( @@ -64078,9 +62717,9 @@ /area/medical/surgery1) "ckX" = ( /turf/simulated/floor/plasteel{ - dir = 1; + tag = "icon-whiteblue (NORTH)"; icon_state = "whiteblue"; - tag = "icon-whiteblue (NORTH)" + dir = 1 }, /area/medical/surgery1) "ckY" = ( @@ -64151,9 +62790,9 @@ pixel_y = -24 }, /turf/simulated/floor/plasteel{ - dir = 1; + tag = "icon-whiteblue (NORTH)"; icon_state = "whiteblue"; - tag = "icon-whiteblue (NORTH)" + dir = 1 }, /area/medical/surgery2) "cld" = ( @@ -64179,9 +62818,9 @@ pixel_y = 4 }, /turf/simulated/floor/plasteel{ - dir = 1; + tag = "icon-whiteblue (NORTH)"; icon_state = "whiteblue"; - tag = "icon-whiteblue (NORTH)" + dir = 1 }, /area/medical/surgery2) "clf" = ( @@ -64197,9 +62836,9 @@ }, /obj/machinery/light, /turf/simulated/floor/plasteel{ - dir = 1; + tag = "icon-whiteblue (NORTH)"; icon_state = "whiteblue"; - tag = "icon-whiteblue (NORTH)" + dir = 1 }, /area/medical/surgery2) "clg" = ( @@ -64227,9 +62866,9 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel{ - dir = 8; + tag = "icon-whitebluecorner (WEST)"; icon_state = "whitebluecorner"; - tag = "icon-whitebluecorner (WEST)" + dir = 8 }, /area/medical/medbay2) "cli" = ( @@ -64240,9 +62879,6 @@ icon_state = "2-4"; tag = "" }, -/obj/item/decorations/sticky_decorations/flammable/tinsel/blue{ - pixel_y = 19 - }, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "cafeteria"; @@ -64268,9 +62904,6 @@ pixel_x = 25; pixel_y = 0 }, -/obj/item/decorations/sticky_decorations/flammable/tinsel/blue{ - pixel_y = 19 - }, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "cafeteria"; @@ -64335,7 +62968,6 @@ dir = 4; pixel_x = 24 }, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/quartermaster/miningdock) "cls" = ( @@ -64348,8 +62980,6 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/item/decorations/sticky_decorations/flammable/snowman, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/quartermaster/miningdock) "clt" = ( @@ -64371,7 +63001,6 @@ /obj/machinery/light_switch{ pixel_x = -27 }, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/quartermaster/qm) "clw" = ( @@ -64572,9 +63201,9 @@ /area/maintenance/asmaint) "clT" = ( /obj/structure/cable{ - d2 = 2; icon_state = "0-2"; - pixel_y = 1 + pixel_y = 1; + d2 = 2 }, /obj/machinery/power/apc{ dir = 8; @@ -64629,8 +63258,8 @@ /area/toxins/storage) "clY" = ( /obj/structure/cable{ - d2 = 4; - icon_state = "0-4" + icon_state = "0-4"; + d2 = 4 }, /obj/machinery/light{ dir = 8 @@ -64680,8 +63309,8 @@ "cmc" = ( /obj/machinery/requests_console{ department = "Janitorial"; - departmentType = 1; name = "Janitor Requests Console"; + departmentType = 1; pixel_y = -29 }, /obj/machinery/disposal, @@ -64720,10 +63349,6 @@ /obj/item/reagent_containers/food/drinks/bottle/whiskey, /obj/item/reagent_containers/food/drinks/drinkingglass, /obj/item/reagent_containers/food/drinks/drinkingglass, -/obj/structure/snow{ - dir = 8; - icon_state = "snow_corner" - }, /turf/simulated/floor/wood, /area/blueshield) "cmh" = ( @@ -64732,13 +63357,6 @@ dir = 4; pixel_x = 24 }, -/obj/item/decorations/sticky_decorations/flammable/christmas_stocking{ - pixel_y = -16 - }, -/obj/structure/snow{ - dir = 1; - icon_state = "snow_corner" - }, /turf/simulated/floor/wood, /area/ntrep) "cmi" = ( @@ -64820,9 +63438,9 @@ "cmn" = ( /obj/machinery/vending/coffee, /turf/simulated/floor/plasteel{ - dir = 9; + tag = "icon-whitegreen (NORTHWEST)"; icon_state = "whitegreen"; - tag = "icon-whitegreen (NORTHWEST)" + dir = 9 }, /area/medical/virology/lab{ name = "\improper Virology Lobby" @@ -64836,9 +63454,9 @@ "cmp" = ( /obj/machinery/vending/medical, /turf/simulated/floor/plasteel{ - dir = 5; + tag = "icon-whitegreen (NORTHEAST)"; icon_state = "whitegreen"; - tag = "icon-whitegreen (NORTHEAST)" + dir = 5 }, /area/medical/virology/lab{ name = "\improper Virology Lobby" @@ -64965,10 +63583,6 @@ /obj/machinery/light{ dir = 4 }, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "cafeteria"; @@ -65032,13 +63646,6 @@ "cmD" = ( /obj/structure/table, /obj/item/reagent_containers/food/drinks/britcup, -/obj/item/reagent_containers/food/snacks/candy/confectionery/caramel{ - pixel_y = 10 - }, -/obj/item/reagent_containers/food/snacks/candy/confectionery/caramel{ - pixel_y = 5 - }, -/obj/item/reagent_containers/food/snacks/candy/confectionery/caramel, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "cafeteria"; @@ -65087,7 +63694,6 @@ "cmK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/snow, /turf/simulated/floor/plasteel{ icon_state = "bcarpet05" }, @@ -65100,9 +63706,6 @@ "cmM" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/snow{ - icon_state = "snow_corner" - }, /turf/simulated/floor/carpet, /area/ntrep) "cmN" = ( @@ -65116,9 +63719,9 @@ /obj/item/reagent_containers/spray/cleaner, /obj/item/reagent_containers/iv_bag/salglu, /turf/simulated/floor/plasteel{ - dir = 10; + tag = "icon-whitegreen (SOUTHWEST)"; icon_state = "whitegreen"; - tag = "icon-whitegreen (SOUTHWEST)" + dir = 10 }, /area/medical/virology/lab{ name = "\improper Virology Lobby" @@ -65181,9 +63784,6 @@ /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, -/obj/item/decorations/sticky_decorations/flammable/tinsel/green{ - pixel_y = 19 - }, /turf/simulated/floor/plasteel, /area/janitor) "cmU" = ( @@ -65380,9 +63980,6 @@ /area/maintenance/apmaint) "cno" = ( /obj/structure/closet/secure_closet/miner, -/obj/item/decorations/sticky_decorations/flammable/christmas_stocking{ - pixel_y = -16 - }, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "brown" @@ -65456,7 +64053,6 @@ /area/toxins/explab_chamber) "cnu" = ( /obj/structure/chair/office/dark, -/obj/structure/snow, /turf/simulated/floor/carpet, /area/ntrep) "cnv" = ( @@ -65535,9 +64131,9 @@ }) "cnC" = ( /obj/structure/cable{ - d2 = 2; icon_state = "0-2"; - pixel_y = 1 + pixel_y = 1; + d2 = 2 }, /obj/machinery/power/apc{ dir = 8; @@ -65657,9 +64253,9 @@ icon_state = "1-2" }, /turf/simulated/floor/plasteel{ - dir = 8; + tag = "icon-whitegreen (WEST)"; icon_state = "whitegreen"; - tag = "icon-whitegreen (WEST)" + dir = 8 }, /area/medical/medbay2) "cnN" = ( @@ -65695,10 +64291,6 @@ /area/medical/medbreak) "cnQ" = ( /obj/machinery/computer/med_data, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "cafeteria"; @@ -65746,10 +64338,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/structure/snow{ - dir = 1; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel, /area/quartermaster/miningdock) "cnU" = ( @@ -65873,9 +64461,9 @@ dir = 4 }, /turf/simulated/floor/plasteel{ - dir = 10; + tag = "icon-whitegreen (SOUTHWEST)"; icon_state = "whitegreen"; - tag = "icon-whitegreen (SOUTHWEST)" + dir = 10 }, /area/medical/virology/lab{ name = "\improper Virology Lobby" @@ -66009,7 +64597,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/structure/snow, /turf/simulated/floor/plasteel{ icon_state = "bcarpet05" }, @@ -66018,10 +64605,6 @@ /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, -/obj/structure/snow{ - dir = 6; - icon_state = "snow_corner" - }, /turf/simulated/floor/wood, /area/blueshield) "com" = ( @@ -66031,7 +64614,6 @@ pixel_y = 0 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/snow, /turf/simulated/floor/plasteel{ icon_state = "bcarpet05" }, @@ -66040,10 +64622,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/structure/snow{ - dir = 10; - icon_state = "snow_corner" - }, /turf/simulated/floor/carpet, /area/ntrep) "coo" = ( @@ -66052,7 +64630,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, -/obj/structure/snow, /turf/simulated/floor/carpet, /area/ntrep) "cop" = ( @@ -66266,10 +64843,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/structure/snow{ - dir = 10; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel{ icon_state = "bcarpet05" }, @@ -66311,7 +64884,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, -/obj/structure/snow, /turf/simulated/floor/plasteel{ icon_state = "bcarpet05" }, @@ -66323,8 +64895,8 @@ "coO" = ( /turf/space, /turf/simulated/shuttle/wall{ - dir = 2; - icon_state = "swall_f5" + icon_state = "swall_f5"; + dir = 2 }, /area/shuttle/mining) "coP" = ( @@ -66339,8 +64911,8 @@ "coQ" = ( /turf/space, /turf/simulated/shuttle/wall{ - dir = 2; - icon_state = "swall_f9" + icon_state = "swall_f9"; + dir = 2 }, /area/shuttle/mining) "coR" = ( @@ -66379,17 +64951,12 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/structure/snow, /turf/simulated/floor/carpet, /area/ntrep) "coV" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, -/obj/structure/snow{ - dir = 6; - icon_state = "snow_corner" - }, /turf/simulated/floor/wood, /area/ntrep) "coW" = ( @@ -66397,7 +64964,6 @@ dir = 9; pixel_y = 0 }, -/obj/structure/snow, /turf/simulated/floor/carpet, /area/ntrep) "coX" = ( @@ -66410,7 +64976,6 @@ pixel_x = 7; pixel_y = 4 }, -/obj/structure/snow, /turf/simulated/floor/plasteel{ icon_state = "bcarpet05" }, @@ -66425,7 +64990,6 @@ name = "Desk Door"; req_access_txt = "67" }, -/obj/structure/snow, /turf/simulated/floor/wood, /area/blueshield) "coZ" = ( @@ -66604,7 +65168,6 @@ }, /obj/item/paper/blueshield, /obj/item/book/manual/sop_command, -/obj/structure/snow, /turf/simulated/floor/plasteel{ icon_state = "bcarpet05" }, @@ -66645,9 +65208,9 @@ tag = "icon-pipe-j1 (WEST)" }, /turf/simulated/floor/plasteel{ - dir = 8; + tag = "icon-whitegreen (WEST)"; icon_state = "whitegreen"; - tag = "icon-whitegreen (WEST)" + dir = 8 }, /area/medical/medbay2) "cpi" = ( @@ -66720,9 +65283,9 @@ scrub_Toxins = 1 }, /turf/simulated/floor/plasteel{ - dir = 8; + tag = "icon-whiteblue (WEST)"; icon_state = "whiteblue"; - tag = "icon-whiteblue (WEST)" + dir = 8 }, /area/medical/surgery1) "cpo" = ( @@ -66747,9 +65310,9 @@ /area/medical/surgery2) "cpp" = ( /obj/machinery/light/small{ - dir = 4; + tag = "icon-bulb1 (EAST)"; icon_state = "bulb1"; - tag = "icon-bulb1 (EAST)" + dir = 4 }, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 @@ -66907,9 +65470,9 @@ pixel_y = 0 }, /turf/simulated/floor/plasteel{ - dir = 6; + tag = "icon-whitegreen (SOUTHEAST)"; icon_state = "whitegreen"; - tag = "icon-whitegreen (SOUTHEAST)" + dir = 6 }, /area/medical/virology/lab{ name = "\improper Virology Lobby" @@ -67123,9 +65686,9 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ - dir = 8; + tag = "icon-whitebluecorner (WEST)"; icon_state = "whitebluecorner"; - tag = "icon-whitebluecorner (WEST)" + dir = 8 }, /area/medical/medbay2) "cpT" = ( @@ -67150,37 +65713,27 @@ "cpU" = ( /obj/structure/closet/radiation, /turf/simulated/floor/plasteel{ - dir = 9; + tag = "icon-whitepurple (NORTHWEST)"; icon_state = "whitepurple"; - tag = "icon-whitepurple (NORTHWEST)" + dir = 9 }, /area/toxins/explab) "cpV" = ( /obj/structure/table, /obj/item/clipboard, /obj/item/book/manual/experimentor, -/obj/item/reagent_containers/food/snacks/candy/confectionery/caramel_nougat, -/obj/structure/snow, /turf/simulated/floor/plasteel{ - dir = 5; + tag = "icon-whitepurple (NORTHEAST)"; icon_state = "whitepurple"; - tag = "icon-whitepurple (NORTHEAST)" + dir = 5 }, /area/toxins/explab) "cpW" = ( /obj/machinery/computer/rdconsole/experiment, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, -/obj/structure/snow{ - dir = 4; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel{ - dir = 1; + tag = "icon-whitepurple (NORTH)"; icon_state = "whitepurple"; - tag = "icon-whitepurple (NORTH)" + dir = 1 }, /area/toxins/explab) "cpX" = ( @@ -67209,9 +65762,9 @@ pixel_y = 32 }, /turf/simulated/floor/plasteel{ - dir = 5; + tag = "icon-whitepurple (NORTHEAST)"; icon_state = "whitepurple"; - tag = "icon-whitepurple (NORTHEAST)" + dir = 5 }, /area/toxins/explab) "cpZ" = ( @@ -67350,10 +65903,6 @@ sensors = list("burn_sensor" = "Burn Mix") }, /obj/effect/decal/warning_stripes/north, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -67449,8 +65998,8 @@ pixel_y = 0 }, /obj/structure/cable{ - d2 = 2; - icon_state = "0-2" + icon_state = "0-2"; + d2 = 2 }, /obj/machinery/power/apc{ dir = 1; @@ -67511,8 +66060,8 @@ "cqs" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ - d2 = 4; - icon_state = "0-4" + icon_state = "0-4"; + d2 = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 @@ -67681,8 +66230,8 @@ /area/maintenance/asmaint) "cqE" = ( /obj/structure/sink{ - dir = 8; icon_state = "sink"; + dir = 8; pixel_x = -12; pixel_y = 2 }, @@ -67698,9 +66247,9 @@ /area/maintenance/apmaint) "cqG" = ( /obj/machinery/shower{ - dir = 8; + tag = "icon-shower (WEST)"; icon_state = "shower"; - tag = "icon-shower (WEST)" + dir = 8 }, /turf/simulated/floor/plasteel{ icon_state = "freezerfloor" @@ -67725,31 +66274,26 @@ /obj/effect/landmark/start{ name = "Blueshield" }, -/obj/item/decorations/sticky_decorations/flammable/tinsel/green{ - pixel_y = 19 - }, -/obj/structure/snow, /turf/simulated/floor/plasteel{ icon_state = "bcarpet05" }, /area/blueshield) "cqJ" = ( /obj/structure/table/wood, -/obj/structure/snow, -/obj/item/a_gift, -/obj/item/id_decal/centcom, -/obj/item/gun/projectile/automatic/toy, -/obj/item/ammo_box/magazine/toy/smg, +/turf/simulated/floor/plasteel{ + icon_state = "bcarpet05" + }, +/area/blueshield) +"cqK" = ( +/obj/structure/chair/comfy/black{ + dir = 8 + }, /turf/simulated/floor/plasteel{ icon_state = "bcarpet05" }, /area/blueshield) "cqL" = ( /obj/item/flag/nt, -/obj/structure/snow{ - dir = 8; - icon_state = "snow_corner" - }, /turf/simulated/floor/wood, /area/blueshield) "cqM" = ( @@ -67763,6 +66307,12 @@ tag = "icon-whitehall (WEST)" }, /area/medical/virology) +"cqO" = ( +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/ntrep) "cqP" = ( /obj/structure/cable{ d1 = 4; @@ -67792,10 +66342,6 @@ /obj/effect/landmark/start{ name = "Nanotrasen Representative" }, -/obj/item/decorations/sticky_decorations/flammable/tinsel/red{ - pixel_y = 19 - }, -/obj/structure/snow, /turf/simulated/floor/carpet, /area/ntrep) "cqR" = ( @@ -67806,10 +66352,6 @@ name = "Blueshield Requests Console"; pixel_x = -30 }, -/obj/structure/snow{ - dir = 5; - icon_state = "snow_corner" - }, /turf/simulated/floor/wood, /area/blueshield) "cqS" = ( @@ -67820,7 +66362,6 @@ }, /obj/item/paper/ntrep, /obj/item/paper_bin/nanotrasen, -/obj/structure/snow, /turf/simulated/floor/carpet, /area/ntrep) "cqT" = ( @@ -67832,7 +66373,6 @@ name = "NT Representative Requests Console"; pixel_x = 30 }, -/obj/structure/snow, /turf/simulated/floor/wood, /area/ntrep) "cqU" = ( @@ -67993,9 +66533,6 @@ /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, -/obj/item/decorations/sticky_decorations/flammable/tinsel/blue{ - pixel_y = 19 - }, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "darkblue" @@ -68005,9 +66542,6 @@ /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, -/obj/item/decorations/sticky_decorations/flammable/tinsel/blue{ - pixel_y = 19 - }, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "darkblue" @@ -68036,9 +66570,9 @@ "crh" = ( /obj/structure/closet/l3closet/scientist, /turf/simulated/floor/plasteel{ - dir = 9; + tag = "icon-whitepurple (NORTHWEST)"; icon_state = "whitepurple"; - tag = "icon-whitepurple (NORTHWEST)" + dir = 9 }, /area/toxins/explab) "cri" = ( @@ -68058,8 +66592,8 @@ pixel_y = -23 }, /obj/structure/cable{ - d2 = 4; - icon_state = "0-4" + icon_state = "0-4"; + d2 = 4 }, /obj/machinery/power/apc{ dir = 8; @@ -68094,9 +66628,9 @@ network = list("SS13") }, /turf/simulated/floor/plasteel{ - dir = 8; + tag = "icon-whitegreen (WEST)"; icon_state = "whitegreen"; - tag = "icon-whitegreen (WEST)" + dir = 8 }, /area/medical/virology) "crn" = ( @@ -68188,13 +66722,10 @@ pixel_x = 24 }, /obj/effect/decal/warning_stripes/southeastcorner, -/obj/item/decorations/sticky_decorations/flammable/tinsel/blue{ - pixel_y = 19 - }, /turf/simulated/floor/plasteel{ - dir = 4; + tag = "icon-whitegreen (EAST)"; icon_state = "whitegreen"; - tag = "icon-whitegreen (EAST)" + dir = 4 }, /area/medical/virology) "crv" = ( @@ -68210,9 +66741,6 @@ /obj/effect/landmark/start{ name = "Virologist" }, -/obj/item/decorations/sticky_decorations/flammable/tinsel/blue{ - pixel_y = 19 - }, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -68371,9 +66899,6 @@ }, /area/toxins/mixing) "crL" = ( -/obj/structure/snow{ - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -68385,10 +66910,6 @@ /obj/effect/landmark/start{ name = "Scientist" }, -/obj/structure/snow{ - dir = 6; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -68412,11 +66933,6 @@ /area/toxins/mixing) "crO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/snow, -/obj/item/toy/figure/chemist, -/obj/item/a_gift, -/obj/item/nanomob_card, -/obj/item/toy/figure/syndie, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -68593,9 +67109,6 @@ scrub_N2O = 1; scrub_Toxins = 1 }, -/obj/item/decorations/sticky_decorations/flammable/tinsel/blue{ - pixel_y = 19 - }, /turf/simulated/floor/plasteel{ dir = 2; icon_state = "cafeteria"; @@ -68804,10 +67317,6 @@ /area/maintenance/apmaint) "csv" = ( /obj/machinery/atmospherics/unary/vent_pump/on, -/obj/structure/snow{ - dir = 10; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -68833,14 +67342,6 @@ pixel_y = -24; req_access_txt = "67" }, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, -/obj/structure/snow{ - dir = 1; - icon_state = "snow_corner" - }, /turf/simulated/floor/wood, /area/blueshield) "csy" = ( @@ -68849,9 +67350,6 @@ dir = 8; pixel_x = -24 }, -/obj/item/decorations/sticky_decorations/flammable/christmas_stocking{ - pixel_y = -16 - }, /turf/simulated/floor/wood, /area/blueshield) "csz" = ( @@ -68866,10 +67364,6 @@ pixel_x = 0; pixel_y = -32 }, -/obj/structure/snow{ - dir = 5; - icon_state = "snow_corner" - }, /turf/simulated/floor/wood, /area/blueshield) "csA" = ( @@ -68879,7 +67373,6 @@ name = "Science Requests Console"; pixel_y = 30 }, -/obj/structure/snow, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -68898,7 +67391,6 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/toxins/storage) "csC" = ( @@ -68918,14 +67410,6 @@ pixel_y = -24; req_access_txt = "73" }, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, -/obj/structure/snow{ - dir = 9; - icon_state = "snow_corner" - }, /turf/simulated/floor/wood, /area/ntrep) "csD" = ( @@ -68945,7 +67429,6 @@ pixel_x = 0; pixel_y = -32 }, -/obj/structure/snow, /turf/simulated/floor/wood, /area/ntrep) "csF" = ( @@ -69084,13 +67567,9 @@ /obj/machinery/computer/monitor{ name = "Grid Power Monitoring Computer" }, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, /turf/simulated/floor/plasteel{ - dir = 5; - icon_state = "caution" + icon_state = "caution"; + dir = 5 }, /area/engine/controlroom) "csR" = ( @@ -69127,13 +67606,13 @@ pixel_y = 0 }, /obj/machinery/light{ - dir = 8; - icon_state = "tube1" + icon_state = "tube1"; + dir = 8 }, /turf/simulated/floor/plasteel{ - dir = 8; + tag = "icon-whitegreen (WEST)"; icon_state = "whitegreen"; - tag = "icon-whitegreen (WEST)" + dir = 8 }, /area/medical/virology) "csT" = ( @@ -69493,8 +67972,8 @@ dir = 10 }, /turf/simulated/floor/plasteel{ - dir = 10; - icon_state = "blue" + icon_state = "blue"; + dir = 10 }, /area/medical/cmostore) "ctq" = ( @@ -69548,7 +68027,6 @@ pixel_x = 0; tag = "" }, -/obj/structure/snow, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -69568,10 +68046,6 @@ tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/snow{ - dir = 4; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -69590,7 +68064,6 @@ tag = "" }, /obj/machinery/hologram/holopad, -/obj/structure/snow, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -69628,7 +68101,6 @@ icon_state = "2-8"; tag = "" }, -/obj/structure/snow, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -69903,9 +68375,9 @@ pixel_y = 0 }, /obj/structure/disposalpipe/junction{ - dir = 2; + tag = "icon-pipe-j2"; icon_state = "pipe-j2"; - tag = "icon-pipe-j2" + dir = 2 }, /turf/simulated/floor/plasteel{ dir = 8; @@ -69938,9 +68410,9 @@ pixel_y = 0 }, /turf/simulated/floor/plasteel{ - dir = 8; + tag = "icon-whitegreen (WEST)"; icon_state = "whitegreen"; - tag = "icon-whitegreen (WEST)" + dir = 8 }, /area/medical/virology) "cue" = ( @@ -69993,13 +68465,9 @@ pixel_x = 27 }, /obj/machinery/computer/security/engineering, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, /turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "caution" + icon_state = "caution"; + dir = 4 }, /area/engine/controlroom) "cuj" = ( @@ -70015,12 +68483,12 @@ icon_state = "pipe-c" }, /obj/effect/decal/warning_stripes/yellow/partial{ - dir = 4; - icon_state = "3" + icon_state = "3"; + dir = 4 }, /obj/effect/decal/warning_stripes/arrow{ - dir = 4; - icon_state = "4" + icon_state = "4"; + dir = 4 }, /turf/simulated/floor/plasteel, /area/engine/controlroom) @@ -70196,8 +68664,8 @@ pixel_y = 24 }, /obj/structure/cable{ - d2 = 2; - icon_state = "0-2" + icon_state = "0-2"; + d2 = 2 }, /obj/structure/closet/radiation, /turf/simulated/floor/plasteel{ @@ -70266,13 +68734,10 @@ pixel_x = -32; pixel_y = 0 }, -/obj/item/decorations/sticky_decorations/flammable/tinsel/blue{ - pixel_y = 19 - }, /turf/simulated/floor/plasteel{ - dir = 10; + tag = "icon-whitegreen (SOUTHWEST)"; icon_state = "whitegreen"; - tag = "icon-whitegreen (SOUTHWEST)" + dir = 10 }, /area/medical/virology) "cuG" = ( @@ -70336,10 +68801,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/structure/snow{ - dir = 5; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -70372,7 +68833,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/structure/snow, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -70389,11 +68849,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/structure/snow, -/obj/item/toy/figure/geneticist, -/obj/item/a_gift, -/obj/item/nanomob_card, -/obj/item/toy/plushie/nukeplushie, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -70411,8 +68866,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/structure/flora/tree/pine/xmas, -/obj/structure/snow, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -70448,7 +68901,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/structure/snow, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -70471,7 +68923,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/structure/snow, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -70482,7 +68933,6 @@ }, /obj/structure/table, /obj/item/storage/toolbox/mechanical, -/obj/item/reagent_containers/food/snacks/candy/confectionery/caramel_nougat, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -70505,7 +68955,6 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/snow, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -70537,7 +68986,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/structure/snow, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -70781,9 +69229,9 @@ network = list("SS13") }, /obj/structure/cable{ - d2 = 2; icon_state = "0-2"; - pixel_y = 1 + pixel_y = 1; + d2 = 2 }, /obj/structure/rack{ dir = 8; @@ -70951,8 +69399,8 @@ dir = 8 }, /turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "caution" + icon_state = "caution"; + dir = 4 }, /area/engine/controlroom) "cvN" = ( @@ -71010,8 +69458,8 @@ /area/medical/psych) "cvS" = ( /obj/structure/sink{ - dir = 8; icon_state = "sink"; + dir = 8; pixel_x = -12; pixel_y = 2 }, @@ -71032,8 +69480,6 @@ name = "station intercom (General)"; pixel_y = -28 }, -/obj/item/decorations/sticky_decorations/flammable/snowman, -/obj/structure/snow, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -71104,17 +69550,17 @@ step_size = 0 }, /turf/simulated/floor/plasteel{ - dir = 9; + tag = "icon-whitegreen (NORTHWEST)"; icon_state = "whitegreen"; - tag = "icon-whitegreen (NORTHWEST)" + dir = 9 }, /area/medical/virology) "cwb" = ( /obj/structure/closet/secure_closet/personal/patient, /turf/simulated/floor/plasteel{ - dir = 5; + tag = "icon-whitegreen (NORTHEAST)"; icon_state = "whitegreen"; - tag = "icon-whitegreen (NORTHEAST)" + dir = 5 }, /area/medical/virology) "cwc" = ( @@ -71159,13 +69605,10 @@ dir = 4; level = 1 }, -/obj/item/decorations/sticky_decorations/flammable/christmas_stocking{ - pixel_y = 17 - }, /turf/simulated/floor/plasteel{ - dir = 5; + tag = "icon-whitegreen (NORTHEAST)"; icon_state = "whitegreen"; - tag = "icon-whitegreen (NORTHEAST)" + dir = 5 }, /area/medical/virology) "cwf" = ( @@ -71192,9 +69635,9 @@ dir = 10 }, /turf/simulated/floor/plasteel{ - dir = 9; + tag = "icon-whitegreen (NORTHWEST)"; icon_state = "whitegreen"; - tag = "icon-whitegreen (NORTHWEST)" + dir = 9 }, /area/medical/virology) "cwh" = ( @@ -71223,9 +69666,9 @@ dir = 10 }, /turf/simulated/floor/plasteel{ - dir = 5; + tag = "icon-whitegreen (NORTHEAST)"; icon_state = "whitegreen"; - tag = "icon-whitegreen (NORTHEAST)" + dir = 5 }, /area/medical/virology) "cwj" = ( @@ -71259,10 +69702,6 @@ dir = 2; icon_state = "pipe-c" }, -/obj/structure/snow{ - dir = 5; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -71270,7 +69709,6 @@ "cwm" = ( /obj/machinery/light, /obj/machinery/telepad_cargo, -/obj/structure/snow, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -71288,8 +69726,8 @@ req_access_txt = "40" }, /turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "blue" + icon_state = "blue"; + dir = 4 }, /area/medical/cmostore) "cwo" = ( @@ -71352,8 +69790,8 @@ pixel_y = 5 }, /turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "blue" + icon_state = "blue"; + dir = 8 }, /area/medical/cmostore) "cws" = ( @@ -71370,8 +69808,8 @@ }, /obj/structure/window/reinforced, /turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "blue" + icon_state = "blue"; + dir = 4 }, /area/medical/cmostore) "cwt" = ( @@ -71547,21 +69985,21 @@ /area/storage/tech) "cwP" = ( /obj/structure/cable{ - d2 = 2; icon_state = "0-2"; - pixel_y = 1 + pixel_y = 1; + d2 = 2 }, /obj/structure/cable{ - d2 = 4; - icon_state = "0-4" + icon_state = "0-4"; + d2 = 4 }, /obj/effect/spawner/window/reinforced, /turf/simulated/floor/plating, /area/storage/tech) "cwQ" = ( /obj/structure/cable{ - d2 = 4; - icon_state = "0-4" + icon_state = "0-4"; + d2 = 4 }, /obj/structure/cable{ d2 = 8; @@ -71569,18 +70007,14 @@ }, /obj/effect/spawner/window/reinforced, /obj/structure/cable{ - d2 = 2; icon_state = "0-2"; - pixel_y = 1 + pixel_y = 1; + d2 = 2 }, /turf/simulated/floor/plating, /area/storage/tech) "cwR" = ( /obj/machinery/computer/station_alert, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, /turf/simulated/floor/plasteel, /area/engine/controlroom) "cwS" = ( @@ -71614,8 +70048,8 @@ /area/medical/medbay2) "cwU" = ( /obj/structure/cable{ - d2 = 4; - icon_state = "0-4" + icon_state = "0-4"; + d2 = 4 }, /obj/structure/cable{ d2 = 8; @@ -71766,13 +70200,9 @@ name = "Tank Monitor"; sensors = list("n2_sensor" = "Nitrogen", "o2_sensor" = "Oxygen", "co2_sensor" = "Carbon Dioxide", "tox_sensor" = "Toxins", "n2o_sensor" = "Nitrous Oxide", "waste_sensor" = "Gas Mix Tank") }, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, /turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "caution" + icon_state = "caution"; + dir = 4 }, /area/engine/controlroom) "cxh" = ( @@ -71814,8 +70244,8 @@ /area/medical/medbay2) "cxk" = ( /obj/structure/cable{ - d2 = 4; - icon_state = "0-4" + icon_state = "0-4"; + d2 = 4 }, /obj/machinery/power/apc{ dir = 8; @@ -71829,9 +70259,9 @@ /area/construction) "cxl" = ( /obj/machinery/light/small{ - dir = 4; + tag = "icon-bulb1 (EAST)"; icon_state = "bulb1"; - tag = "icon-bulb1 (EAST)" + dir = 4 }, /turf/simulated/floor/plating, /area/maintenance/asmaint) @@ -71903,9 +70333,9 @@ dir = 5 }, /turf/simulated/floor/plasteel{ - dir = 8; + tag = "icon-whitegreen (WEST)"; icon_state = "whitegreen"; - tag = "icon-whitegreen (WEST)" + dir = 8 }, /area/medical/virology) "cxu" = ( @@ -71914,9 +70344,9 @@ dir = 4 }, /turf/simulated/floor/plasteel{ - dir = 4; + tag = "icon-whitegreen (EAST)"; icon_state = "whitegreen"; - tag = "icon-whitegreen (EAST)" + dir = 4 }, /area/medical/virology) "cxv" = ( @@ -71934,9 +70364,9 @@ "cxw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ - dir = 8; + tag = "icon-whitegreen (WEST)"; icon_state = "whitegreen"; - tag = "icon-whitegreen (WEST)" + dir = 8 }, /area/medical/virology) "cxx" = ( @@ -71946,9 +70376,9 @@ pixel_x = 24 }, /turf/simulated/floor/plasteel{ - dir = 4; + tag = "icon-whitegreen (EAST)"; icon_state = "whitegreen"; - tag = "icon-whitegreen (EAST)" + dir = 4 }, /area/medical/virology) "cxy" = ( @@ -72008,10 +70438,6 @@ icon_state = "2-8"; tag = "" }, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, /turf/simulated/floor/plasteel, /area/atmos/control) "cxD" = ( @@ -72046,17 +70472,17 @@ pixel_y = -32 }, /turf/simulated/floor/plasteel{ - dir = 10; + tag = "icon-whitegreen (SOUTHWEST)"; icon_state = "whitegreen"; - tag = "icon-whitegreen (SOUTHWEST)" + dir = 10 }, /area/medical/virology) "cxG" = ( /obj/structure/table, /turf/simulated/floor/plasteel{ - dir = 6; + tag = "icon-whitegreen (SOUTHEAST)"; icon_state = "whitegreen"; - tag = "icon-whitegreen (SOUTHEAST)" + dir = 6 }, /area/medical/virology) "cxH" = ( @@ -72111,9 +70537,9 @@ /obj/item/storage/box/donkpockets, /obj/machinery/computer/med_data/laptop, /turf/simulated/floor/plasteel{ - dir = 4; + tag = "icon-whitegreen (EAST)"; icon_state = "whitegreen"; - tag = "icon-whitegreen (EAST)" + dir = 4 }, /area/medical/virology) "cxM" = ( @@ -72347,7 +70773,6 @@ req_access_txt = "32"; req_one_access_txt = "0" }, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/engine/equipmentstorage) "cyi" = ( @@ -72428,9 +70853,9 @@ /area/storage/tech) "cyr" = ( /obj/structure/cable{ - d2 = 2; icon_state = "0-2"; - pixel_y = 1 + pixel_y = 1; + d2 = 2 }, /obj/structure/cable, /obj/effect/spawner/window/reinforced, @@ -72622,14 +71047,14 @@ /obj/structure/table, /obj/item/t_scanner, /turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "caution" + icon_state = "caution"; + dir = 4 }, /area/engine/controlroom) "cyH" = ( /obj/machinery/light{ - dir = 8; - icon_state = "tube1" + icon_state = "tube1"; + dir = 8 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -72707,10 +71132,6 @@ tag = "" }, /obj/machinery/computer/atmos_alert, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, /turf/simulated/floor/plasteel, /area/atmos/control) "cyR" = ( @@ -72780,9 +71201,9 @@ pixel_x = -24 }, /turf/simulated/floor/plasteel{ - dir = 10; + tag = "icon-whitegreen (SOUTHWEST)"; icon_state = "whitegreen"; - tag = "icon-whitegreen (SOUTHWEST)" + dir = 10 }, /area/medical/virology) "cyW" = ( @@ -72796,9 +71217,9 @@ pixel_y = -32 }, /turf/simulated/floor/plasteel{ - dir = 6; + tag = "icon-whitegreen (SOUTHEAST)"; icon_state = "whitegreen"; - tag = "icon-whitegreen (SOUTHEAST)" + dir = 6 }, /area/medical/virology) "cyX" = ( @@ -72813,9 +71234,9 @@ "cyY" = ( /obj/structure/table, /turf/simulated/floor/plasteel{ - dir = 10; + tag = "icon-whitegreen (SOUTHWEST)"; icon_state = "whitegreen"; - tag = "icon-whitegreen (SOUTHWEST)" + dir = 10 }, /area/medical/virology) "cyZ" = ( @@ -72830,9 +71251,9 @@ pixel_y = -32 }, /turf/simulated/floor/plasteel{ - dir = 6; + tag = "icon-whitegreen (SOUTHEAST)"; icon_state = "whitegreen"; - tag = "icon-whitegreen (SOUTHEAST)" + dir = 6 }, /area/medical/virology) "czb" = ( @@ -72992,8 +71413,8 @@ /obj/structure/rack, /obj/item/storage/belt/utility, /turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "caution" + icon_state = "caution"; + dir = 4 }, /area/maintenance/asmaint) "czv" = ( @@ -73259,9 +71680,9 @@ /area/maintenance/incinerator) "czR" = ( /obj/structure/cable{ - d2 = 2; icon_state = "0-2"; - pixel_y = 1 + pixel_y = 1; + d2 = 2 }, /obj/machinery/power/apc{ dir = 4; @@ -73343,8 +71764,8 @@ pixel_y = 0 }, /obj/structure/sink{ - dir = 8; icon_state = "sink"; + dir = 8; pixel_x = -12; pixel_y = 2 }, @@ -73456,10 +71877,6 @@ /area/toxins/xenobiology) "cAg" = ( /obj/machinery/computer/atmos_alert, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, /turf/simulated/floor/plasteel{ dir = 6; icon_state = "caution" @@ -73472,10 +71889,6 @@ name = "Distribution and Waste Monitor"; sensors = list("mair_in_meter" = "Mixed Air In", "air_sensor" = "Mixed Air Supply Tank", "mair_out_meter" = "Mixed Air Out", "dloop_atm_meter" = "Distribution Loop", "wloop_atm_meter" = "Waste Loop") }, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, /turf/simulated/floor/plasteel, /area/engine/controlroom) "cAi" = ( @@ -73645,9 +72058,9 @@ level = 1 }, /turf/simulated/floor/plasteel{ - dir = 8; + tag = "icon-whitebluecorner (WEST)"; icon_state = "whitebluecorner"; - tag = "icon-whitebluecorner (WEST)" + dir = 8 }, /area/medical/medbay2) "cAu" = ( @@ -73714,8 +72127,8 @@ /area/maintenance/asmaint) "cAC" = ( /turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "caution" + icon_state = "caution"; + dir = 4 }, /area/maintenance/asmaint) "cAD" = ( @@ -73826,8 +72239,8 @@ /area/hallway/primary/aft) "cAN" = ( /obj/structure/cable{ - d2 = 4; - icon_state = "0-4" + icon_state = "0-4"; + d2 = 4 }, /obj/structure/disposalpipe/segment, /obj/machinery/power/apc{ @@ -74163,8 +72576,8 @@ "cBv" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "caution" + icon_state = "caution"; + dir = 4 }, /area/hallway/primary/aft) "cBw" = ( @@ -74207,8 +72620,8 @@ scrub_Toxins = 1 }, /turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "blue" + icon_state = "blue"; + dir = 8 }, /area/medical/cmostore) "cBz" = ( @@ -74216,8 +72629,8 @@ dir = 1 }, /turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "blue" + icon_state = "blue"; + dir = 4 }, /area/medical/cmostore) "cBA" = ( @@ -74251,9 +72664,9 @@ /obj/effect/decal/warning_stripes/west, /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/plasteel{ - dir = 5; + tag = "icon-vault (NORTHEAST)"; icon_state = "vault"; - tag = "icon-vault (NORTHEAST)" + dir = 5 }, /area/toxins/misc_lab) "cBD" = ( @@ -74467,9 +72880,6 @@ dir = 1; on = 1 }, -/obj/item/decorations/sticky_decorations/flammable/christmas_stocking{ - pixel_y = 17 - }, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -74482,18 +72892,15 @@ network = list("Research","SS13"); pixel_x = 0 }, -/obj/item/decorations/sticky_decorations/flammable/christmas_stocking{ - pixel_y = 17 - }, /turf/simulated/floor/plasteel{ icon_state = "white" }, /area/toxins/misc_lab) "cCg" = ( /obj/structure/cable{ - d2 = 2; icon_state = "0-2"; - pixel_y = 1 + pixel_y = 1; + d2 = 2 }, /obj/machinery/disposal, /obj/structure/disposalpipe/trunk, @@ -74547,9 +72954,9 @@ pixel_y = 32 }, /turf/simulated/floor/plasteel{ - dir = 5; + tag = "icon-vault (NORTHEAST)"; icon_state = "vault"; - tag = "icon-vault (NORTHEAST)" + dir = 5 }, /area/toxins/misc_lab) "cCk" = ( @@ -74558,9 +72965,9 @@ dir = 8 }, /turf/simulated/floor/plasteel{ - dir = 5; + tag = "icon-vault (NORTHEAST)"; icon_state = "vault"; - tag = "icon-vault (NORTHEAST)" + dir = 5 }, /area/toxins/misc_lab) "cCl" = ( @@ -74572,9 +72979,9 @@ on = 1 }, /turf/simulated/floor/plasteel{ - dir = 5; + tag = "icon-vault (NORTHEAST)"; icon_state = "vault"; - tag = "icon-vault (NORTHEAST)" + dir = 5 }, /area/toxins/misc_lab) "cCm" = ( @@ -74585,17 +72992,17 @@ pixel_y = 25 }, /turf/simulated/floor/plasteel{ - dir = 5; + tag = "icon-vault (NORTHEAST)"; icon_state = "vault"; - tag = "icon-vault (NORTHEAST)" + dir = 5 }, /area/toxins/misc_lab) "cCn" = ( /obj/machinery/chem_heater, /turf/simulated/floor/plasteel{ - dir = 5; + tag = "icon-vault (NORTHEAST)"; icon_state = "vault"; - tag = "icon-vault (NORTHEAST)" + dir = 5 }, /area/toxins/misc_lab) "cCo" = ( @@ -74877,8 +73284,8 @@ /area/construction) "cCM" = ( /obj/structure/cable{ - d2 = 4; - icon_state = "0-4" + icon_state = "0-4"; + d2 = 4 }, /obj/structure/cable, /obj/effect/spawner/window/reinforced, @@ -74886,8 +73293,8 @@ /area/storage/tech) "cCN" = ( /obj/structure/cable{ - d2 = 4; - icon_state = "0-4" + icon_state = "0-4"; + d2 = 4 }, /obj/structure/cable{ d2 = 8; @@ -75206,9 +73613,9 @@ name = "Air To Distro" }, /obj/structure/cable{ - d2 = 2; icon_state = "0-2"; - pixel_y = 1 + pixel_y = 1; + d2 = 2 }, /obj/machinery/power/apc{ dir = 1; @@ -75271,9 +73678,9 @@ pixel_y = 0 }, /turf/simulated/floor/plasteel{ - dir = 5; + tag = "icon-vault (NORTHEAST)"; icon_state = "vault"; - tag = "icon-vault (NORTHEAST)" + dir = 5 }, /area/toxins/misc_lab) "cDu" = ( @@ -75343,9 +73750,9 @@ pixel_x = -28 }, /obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 6; + tag = "icon-intact (SOUTHEAST)"; icon_state = "intact"; - tag = "icon-intact (SOUTHEAST)" + dir = 6 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -75384,9 +73791,9 @@ name = "Scientist" }, /turf/simulated/floor/plasteel{ - dir = 5; + tag = "icon-vault (NORTHEAST)"; icon_state = "vault"; - tag = "icon-vault (NORTHEAST)" + dir = 5 }, /area/toxins/misc_lab) "cDE" = ( @@ -75407,25 +73814,25 @@ dir = 4 }, /turf/simulated/floor/plasteel{ - dir = 5; + tag = "icon-vault (NORTHEAST)"; icon_state = "vault"; - tag = "icon-vault (NORTHEAST)" + dir = 5 }, /area/toxins/misc_lab) "cDG" = ( /turf/simulated/floor/plasteel{ - dir = 5; + tag = "icon-vault (NORTHEAST)"; icon_state = "vault"; - tag = "icon-vault (NORTHEAST)" + dir = 5 }, /area/toxins/misc_lab) "cDH" = ( /obj/machinery/chem_dispenser, /obj/item/reagent_containers/glass/beaker/large, /turf/simulated/floor/plasteel{ - dir = 5; + tag = "icon-vault (NORTHEAST)"; icon_state = "vault"; - tag = "icon-vault (NORTHEAST)" + dir = 5 }, /area/toxins/misc_lab) "cDI" = ( @@ -75434,10 +73841,6 @@ pixel_y = -28 }, /obj/machinery/computer/drone_control, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, /turf/simulated/floor/plasteel, /area/engine/controlroom) "cDJ" = ( @@ -75630,8 +74033,8 @@ tag = "" }, /obj/machinery/light{ - dir = 4; - icon_state = "tube1" + icon_state = "tube1"; + dir = 4 }, /obj/structure/table, /turf/simulated/floor/plasteel{ @@ -75703,8 +74106,8 @@ dir = 1 }, /turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "arrival" + icon_state = "arrival"; + dir = 8 }, /area/hallway/primary/aft) "cEj" = ( @@ -75942,10 +74345,6 @@ }, /obj/machinery/computer/podtracker, /obj/effect/decal/warning_stripes/east, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, /turf/simulated/floor/plasteel, /area/engine/mechanic_workshop) "cEL" = ( @@ -75974,14 +74373,14 @@ }, /obj/machinery/space_heater, /turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "vault" + icon_state = "vault"; + dir = 8 }, /area/engine/mechanic_workshop) "cEN" = ( /obj/structure/cable{ - d2 = 4; - icon_state = "0-4" + icon_state = "0-4"; + d2 = 4 }, /obj/structure/reagent_dispensers/fueltank, /obj/machinery/power/apc{ @@ -75991,8 +74390,8 @@ pixel_y = 24 }, /turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "vault" + icon_state = "vault"; + dir = 8 }, /area/engine/mechanic_workshop) "cEO" = ( @@ -76016,8 +74415,8 @@ }, /obj/structure/closet/emcloset, /turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "vault" + icon_state = "vault"; + dir = 8 }, /area/engine/mechanic_workshop) "cEQ" = ( @@ -76134,9 +74533,9 @@ "cFb" = ( /obj/machinery/chem_master, /turf/simulated/floor/plasteel{ - dir = 5; + tag = "icon-vault (NORTHEAST)"; icon_state = "vault"; - tag = "icon-vault (NORTHEAST)" + dir = 5 }, /area/toxins/misc_lab) "cFc" = ( @@ -76201,12 +74600,12 @@ }, /obj/machinery/portable_atmospherics/pump, /obj/machinery/light{ - dir = 4; - icon_state = "tube1" + icon_state = "tube1"; + dir = 4 }, /turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "arrival" + icon_state = "arrival"; + dir = 8 }, /area/hallway/primary/aft) "cFi" = ( @@ -76325,9 +74724,9 @@ req_one_access_txt = "11;24" }, /obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 9; + tag = "icon-intact (NORTHWEST)"; icon_state = "intact"; - tag = "icon-intact (NORTHWEST)" + dir = 9 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -76358,16 +74757,16 @@ pixel_x = -24 }, /obj/machinery/light{ - dir = 8; - icon_state = "tube1" + icon_state = "tube1"; + dir = 8 }, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, /turf/simulated/floor/plasteel{ - dir = 8; + tag = "icon-whitegreen (WEST)"; icon_state = "whitegreen"; - tag = "icon-whitegreen (WEST)" + dir = 8 }, /area/medical/virology) "cFy" = ( @@ -76379,9 +74778,9 @@ scrub_Toxins = 1 }, /turf/simulated/floor/plasteel{ - dir = 4; + tag = "icon-whitegreen (EAST)"; icon_state = "whitegreen"; - tag = "icon-whitegreen (EAST)" + dir = 4 }, /area/medical/virology) "cFz" = ( @@ -76536,7 +74935,6 @@ /obj/item/assembly/timer, /obj/item/assembly/timer, /obj/item/assembly/timer, -/obj/item/reagent_containers/food/snacks/candy/confectionery/caramel_nougat, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -76666,9 +75064,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/structure/snow{ - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -76718,9 +75113,9 @@ /obj/item/reagent_containers/glass/beaker/large, /obj/item/reagent_containers/glass/beaker/large, /turf/simulated/floor/plasteel{ - dir = 5; + tag = "icon-vault (NORTHEAST)"; icon_state = "vault"; - tag = "icon-vault (NORTHEAST)" + dir = 5 }, /area/toxins/misc_lab) "cFV" = ( @@ -76741,9 +75136,9 @@ }, /obj/structure/closet/secure_closet/research_reagents, /turf/simulated/floor/plasteel{ - dir = 5; + tag = "icon-vault (NORTHEAST)"; icon_state = "vault"; - tag = "icon-vault (NORTHEAST)" + dir = 5 }, /area/toxins/misc_lab) "cFZ" = ( @@ -76764,9 +75159,9 @@ /obj/item/storage/box/monkeycubes, /obj/item/storage/box/pillbottles, /turf/simulated/floor/plasteel{ - dir = 5; + tag = "icon-vault (NORTHEAST)"; icon_state = "vault"; - tag = "icon-vault (NORTHEAST)" + dir = 5 }, /area/toxins/misc_lab) "cGa" = ( @@ -76779,9 +75174,9 @@ /obj/item/reagent_containers/dropper/precision, /obj/item/reagent_containers/dropper/precision, /turf/simulated/floor/plasteel{ - dir = 5; + tag = "icon-vault (NORTHEAST)"; icon_state = "vault"; - tag = "icon-vault (NORTHEAST)" + dir = 5 }, /area/toxins/misc_lab) "cGb" = ( @@ -76813,9 +75208,9 @@ /obj/structure/table/reinforced, /obj/machinery/reagentgrinder, /turf/simulated/floor/plasteel{ - dir = 5; + tag = "icon-vault (NORTHEAST)"; icon_state = "vault"; - tag = "icon-vault (NORTHEAST)" + dir = 5 }, /area/toxins/misc_lab) "cGe" = ( @@ -76864,7 +75259,6 @@ dir = 1; pixel_y = -24 }, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/engine/mechanic_workshop) "cGi" = ( @@ -76941,9 +75335,9 @@ /area/hallway/primary/aft) "cGp" = ( /obj/structure/disposalpipe/junction{ - dir = 2; + tag = "icon-pipe-j2"; icon_state = "pipe-j2"; - tag = "icon-pipe-j2" + dir = 2 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -76977,10 +75371,6 @@ pixel_y = 32 }, /obj/machinery/computer/station_alert, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, /turf/simulated/floor/plasteel, /area/engine/break_room) "cGu" = ( @@ -76997,8 +75387,8 @@ network = list("SS13") }, /obj/structure/cable{ - d2 = 4; - icon_state = "0-4" + icon_state = "0-4"; + d2 = 4 }, /obj/structure/table, /obj/item/book/manual/atmospipes, @@ -77022,15 +75412,15 @@ dir = 1 }, /turf/simulated/floor/plasteel{ - dir = 8; + tag = "icon-whitegreen (WEST)"; icon_state = "whitegreen"; - tag = "icon-whitegreen (WEST)" + dir = 8 }, /area/medical/virology) "cGx" = ( /obj/machinery/light{ - dir = 8; - icon_state = "tube1" + icon_state = "tube1"; + dir = 8 }, /obj/machinery/atmospherics/unary/vent_scrubber{ dir = 1; @@ -77040,9 +75430,9 @@ scrub_Toxins = 1 }, /turf/simulated/floor/plasteel{ - dir = 8; + tag = "icon-whitegreen (WEST)"; icon_state = "whitegreen"; - tag = "icon-whitegreen (WEST)" + dir = 8 }, /area/medical/virology) "cGy" = ( @@ -77055,15 +75445,15 @@ dir = 1 }, /turf/simulated/floor/plasteel{ - dir = 4; + tag = "icon-whitegreen (EAST)"; icon_state = "whitegreen"; - tag = "icon-whitegreen (EAST)" + dir = 4 }, /area/medical/virology) "cGz" = ( /obj/structure/sink{ - dir = 8; icon_state = "sink"; + dir = 8; pixel_x = -12; pixel_y = 2 }, @@ -77135,10 +75525,6 @@ scrub_N2O = 1; scrub_Toxins = 1 }, -/obj/structure/snow{ - dir = 6; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel, /area/engine/mechanic_workshop) "cGF" = ( @@ -77147,14 +75533,6 @@ /area/engine/mechanic_workshop) "cGG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/snow{ - dir = 4; - icon_state = "snow_corner" - }, -/obj/structure/snow{ - dir = 8; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -77169,7 +75547,6 @@ req_one_access_txt = "0" }, /obj/machinery/cell_charger, -/obj/structure/snow, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -77181,7 +75558,6 @@ /obj/effect/landmark/start{ name = "Mechanic" }, -/obj/structure/snow, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -77236,9 +75612,9 @@ "cGN" = ( /obj/machinery/meter, /obj/machinery/atmospherics/pipe/manifold/hidden/yellow{ - dir = 1; + tag = "icon-map (NORTH)"; icon_state = "map"; - tag = "icon-map (NORTH)" + dir = 1 }, /turf/simulated/wall, /area/engine/controlroom) @@ -77298,9 +75674,6 @@ /obj/machinery/light{ dir = 8 }, -/obj/item/decorations/sticky_decorations/flammable/tinsel/red{ - pixel_y = 19 - }, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" }, @@ -77445,10 +75818,6 @@ d2 = 8; icon_state = "4-8" }, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "neutralfull" @@ -77621,8 +75990,8 @@ pixel_y = 28 }, /turf/simulated/floor/plasteel{ - dir = 5; - icon_state = "caution" + icon_state = "caution"; + dir = 5 }, /area/engine/break_room) "cHu" = ( @@ -77667,9 +76036,6 @@ /obj/structure/chair/office/dark{ dir = 1 }, -/obj/item/decorations/sticky_decorations/flammable/tinsel/yellow{ - pixel_y = 19 - }, /turf/simulated/floor/plasteel, /area/atmos/control) "cHz" = ( @@ -77715,9 +76081,6 @@ /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, -/obj/structure/snow{ - icon_state = "snow_surround" - }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -77893,9 +76256,6 @@ "cHS" = ( /obj/structure/table, /obj/item/book/manual/supermatter_engine, -/obj/structure/snow{ - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel, /area/engine/break_room) "cHT" = ( @@ -77903,7 +76263,6 @@ dir = 2; icon_state = "pipe-c" }, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/engine/break_room) "cHU" = ( @@ -77912,9 +76271,9 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 9; + tag = "icon-intact (NORTHWEST)"; icon_state = "intact"; - tag = "icon-intact (NORTHWEST)" + dir = 9 }, /turf/simulated/wall, /area/engine/break_room) @@ -77930,16 +76289,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/item/decorations/sticky_decorations/flammable/tinsel/yellow{ - pixel_y = 19 - }, /turf/simulated/floor/plasteel, /area/engine/break_room) "cHW" = ( /turf/simulated/floor/plasteel{ - dir = 8; + tag = "icon-whitegreen (WEST)"; icon_state = "whitegreen"; - tag = "icon-whitegreen (WEST)" + dir = 8 }, /area/medical/virology/lab{ name = "\improper Virology Lobby" @@ -77966,10 +76322,6 @@ frequency = 1439; pixel_y = 23 }, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, /turf/simulated/floor/plasteel, /area/atmos/control) "cHZ" = ( @@ -78010,9 +76362,6 @@ d2 = 4; icon_state = "2-4" }, -/obj/item/decorations/sticky_decorations/flammable/tinsel/yellow{ - pixel_y = 19 - }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "neutralfull" @@ -78063,9 +76412,6 @@ initialize_directions = 10; level = 1 }, -/obj/structure/chair/comfy/red{ - dir = 8 - }, /turf/simulated/floor/plasteel, /area/engine/break_room) "cIi" = ( @@ -78084,8 +76430,8 @@ /area/atmos/control) "cIj" = ( /turf/simulated/floor/wood{ - icon_state = "wood-broken7"; - tag = "icon-wood-broken7" + tag = "icon-wood-broken7"; + icon_state = "wood-broken7" }, /area/maintenance/asmaint) "cIk" = ( @@ -78095,8 +76441,8 @@ "cIl" = ( /obj/structure/chair/stool, /turf/simulated/floor/wood{ - icon_state = "wood-broken3"; - tag = "icon-wood-broken3" + tag = "icon-wood-broken3"; + icon_state = "wood-broken3" }, /area/maintenance/asmaint) "cIm" = ( @@ -78255,8 +76601,8 @@ /area/toxins/xenobiology) "cIB" = ( /obj/structure/sink{ - dir = 8; icon_state = "sink"; + dir = 8; pixel_x = -12; pixel_y = 2 }, @@ -78415,9 +76761,9 @@ pixel_y = 0 }, /obj/machinery/shower{ - dir = 4; + tag = "icon-shower (EAST)"; icon_state = "shower"; - tag = "icon-shower (EAST)" + dir = 4 }, /obj/effect/decal/warning_stripes/west, /turf/simulated/floor/plasteel{ @@ -78512,6 +76858,9 @@ /turf/simulated/floor/plasteel, /area/engine/break_room) "cIX" = ( +/obj/structure/chair/comfy/black{ + dir = 8 + }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8; initialize_directions = 11; @@ -78520,9 +76869,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, -/obj/structure/chair/comfy/green{ - dir = 8 - }, /turf/simulated/floor/plasteel, /area/engine/break_room) "cIY" = ( @@ -78713,9 +77059,9 @@ /area/maintenance/aft) "cJo" = ( /obj/structure/cable{ - d2 = 2; icon_state = "0-2"; - pixel_y = 1 + pixel_y = 1; + d2 = 2 }, /obj/structure/rack{ dir = 8; @@ -78742,10 +77088,6 @@ /area/engine/break_room) "cJp" = ( /obj/machinery/computer/atmoscontrol, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, /turf/simulated/floor/plasteel, /area/atmos/control) "cJq" = ( @@ -78753,10 +77095,6 @@ dir = 5; level = 1 }, -/obj/structure/snow{ - dir = 8; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel, /area/engine/break_room) "cJr" = ( @@ -78770,8 +77108,8 @@ /area/toxins/xenobiology) "cJs" = ( /turf/simulated/floor/wood{ - icon_state = "wood-broken6"; - tag = "icon-wood-broken6" + tag = "icon-wood-broken6"; + icon_state = "wood-broken6" }, /area/maintenance/asmaint) "cJt" = ( @@ -78783,8 +77121,8 @@ /area/maintenance/asmaint) "cJv" = ( /turf/simulated/floor/wood{ - icon_state = "wood-broken"; - tag = "icon-wood-broken" + tag = "icon-wood-broken"; + icon_state = "wood-broken" }, /area/maintenance/asmaint) "cJw" = ( @@ -78858,10 +77196,6 @@ d2 = 4; icon_state = "0-4" }, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, /turf/simulated/floor/plasteel, /area/engine/engineering) "cJC" = ( @@ -79009,9 +77343,6 @@ pixel_x = -25 }, /obj/effect/decal/warning_stripes/northwest, -/obj/item/decorations/sticky_decorations/flammable/christmas_stocking{ - pixel_y = -16 - }, /turf/simulated/floor/plasteel, /area/atmos/control) "cJN" = ( @@ -79113,18 +77444,19 @@ }, /turf/simulated/floor/plating/airless, /area/engine/mechanic_workshop) +"cJV" = ( +/turf/simulated/floor/plasteel, +/area/engine/mechanic_workshop) "cJW" = ( /obj/structure/window/reinforced{ dir = 8 }, /obj/item/twohanded/required/kirbyplants, -/obj/structure/snow, /turf/simulated/floor/plasteel{ icon_state = "dark" }, /area/engine/mechanic_workshop) "cJX" = ( -/obj/structure/snow, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -79190,7 +77522,6 @@ /obj/item/folder/yellow, /obj/item/pen, /obj/item/book/manual/sop_engineering, -/obj/structure/snow, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -79374,12 +77705,12 @@ /area/toxins/xenobiology) "cKt" = ( /obj/machinery/embedded_controller/radio/airlock/access_controller{ + tag_exterior_door = "xeno_airlock_exterior"; id_tag = "xeno_airlock_control"; + tag_interior_door = "xeno_airlock_interior"; name = "Xenobiology Access Console"; pixel_x = 8; - pixel_y = 22; - tag_exterior_door = "xeno_airlock_exterior"; - tag_interior_door = "xeno_airlock_interior" + pixel_y = 22 }, /obj/machinery/light_switch{ pixel_x = -6; @@ -79401,21 +77732,21 @@ /area/maintenance/asmaint) "cKv" = ( /obj/structure/chair/wood/wings{ - dir = 4; + tag = "icon-wooden_chair_wings (EAST)"; icon_state = "wooden_chair_wings"; - tag = "icon-wooden_chair_wings (EAST)" + dir = 4 }, /turf/simulated/floor/wood, /area/maintenance/asmaint) "cKw" = ( /obj/structure/chair/wood/wings{ - dir = 8; + tag = "icon-wooden_chair_wings (WEST)"; icon_state = "wooden_chair_wings"; - tag = "icon-wooden_chair_wings (WEST)" + dir = 8 }, /turf/simulated/floor/wood{ - icon_state = "wood-broken7"; - tag = "icon-wood-broken7" + tag = "icon-wood-broken7"; + icon_state = "wood-broken7" }, /area/maintenance/asmaint) "cKx" = ( @@ -79475,10 +77806,6 @@ pixel_x = 30; pixel_y = 0 }, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, /turf/simulated/floor/plasteel, /area/atmos/control) "cKA" = ( @@ -79605,8 +77932,8 @@ "cKM" = ( /obj/item/kitchen/utensil/fork, /turf/simulated/floor/wood{ - icon_state = "wood-broken"; - tag = "icon-wood-broken" + tag = "icon-wood-broken"; + icon_state = "wood-broken" }, /area/maintenance/asmaint) "cKN" = ( @@ -79643,8 +77970,8 @@ /area/toxins/xenobiology) "cKS" = ( /turf/simulated/floor/wood{ - icon_state = "wood-broken3"; - tag = "icon-wood-broken3" + tag = "icon-wood-broken3"; + icon_state = "wood-broken3" }, /area/maintenance/asmaint) "cKT" = ( @@ -79713,20 +78040,19 @@ opacity = 0 }, /obj/structure/cable{ - d2 = 4; - icon_state = "0-4" + icon_state = "0-4"; + d2 = 4 }, /turf/simulated/floor/plating, /area/toxins/xenobiology) "cKX" = ( +/obj/structure/chair/comfy/black{ + dir = 8 + }, /obj/machinery/firealarm{ dir = 4; pixel_x = 24 }, -/obj/structure/snow{ - dir = 10; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel, /area/engine/break_room) "cKY" = ( @@ -79913,17 +78239,15 @@ /obj/item/stack/sheet/mineral/plasma{ amount = 30 }, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/engine/mechanic_workshop) "cLs" = ( /obj/machinery/light_switch{ - dir = 2; name = "light switch "; + dir = 2; pixel_x = 0; pixel_y = -22 }, -/obj/structure/snow, /turf/simulated/floor/plasteel{ dir = 5; icon_state = "dark"; @@ -79940,7 +78264,6 @@ dir = 8 }, /obj/machinery/vending/coffee, -/obj/structure/snow, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -79951,11 +78274,6 @@ pixel_y = -28 }, /obj/machinery/computer/rdconsole/mechanics, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, -/obj/structure/snow, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -79976,9 +78294,6 @@ /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, -/obj/item/decorations/sticky_decorations/flammable/christmas_stocking{ - pixel_y = -16 - }, /turf/simulated/floor/plasteel, /area/atmos/control) "cLx" = ( @@ -80039,10 +78354,6 @@ /obj/structure/computerframe, /obj/effect/decal/cleanable/cobweb2, /obj/effect/decal/cleanable/dirt, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, /turf/simulated/floor/plasteel, /area/assembly/assembly_line) "cLF" = ( @@ -80075,9 +78386,6 @@ /obj/machinery/light, /obj/structure/closet/secure_closet/atmos_personal, /obj/effect/decal/warning_stripes/north, -/obj/item/decorations/sticky_decorations/flammable/christmas_stocking{ - pixel_y = -16 - }, /turf/simulated/floor/plasteel, /area/atmos/control) "cLK" = ( @@ -80174,17 +78482,13 @@ "cLS" = ( /obj/machinery/computer/security/engineering, /obj/effect/decal/warning_stripes/northeast, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, /turf/simulated/floor/plasteel, /area/atmos) "cLT" = ( /obj/machinery/vending/cola, /turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "arrival" + icon_state = "arrival"; + dir = 4 }, /area/hallway/primary/aft) "cLU" = ( @@ -80230,15 +78534,15 @@ "cLY" = ( /obj/item/stack/sheet/wood, /turf/simulated/floor/wood{ - icon_state = "wood-broken5"; - tag = "icon-wood-broken5" + tag = "icon-wood-broken5"; + icon_state = "wood-broken5" }, /area/maintenance/asmaint) "cLZ" = ( /obj/structure/chair/wood/wings{ - dir = 8; + tag = "icon-wooden_chair_wings (WEST)"; icon_state = "wooden_chair_wings"; - tag = "icon-wooden_chair_wings (WEST)" + dir = 8 }, /turf/simulated/floor/wood, /area/maintenance/asmaint) @@ -80264,8 +78568,8 @@ dir = 4 }, /turf/simulated/floor/wood{ - icon_state = "wood-broken7"; - tag = "icon-wood-broken7" + tag = "icon-wood-broken7"; + icon_state = "wood-broken7" }, /area/maintenance/asmaint) "cMc" = ( @@ -80584,8 +78888,8 @@ "cML" = ( /obj/machinery/vending/snack, /turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "arrival" + icon_state = "arrival"; + dir = 4 }, /area/hallway/primary/aft) "cMM" = ( @@ -80718,7 +79022,6 @@ /area/engine/break_room) "cMX" = ( /obj/item/twohanded/required/kirbyplants, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/engine/break_room) "cMY" = ( @@ -80859,8 +79162,8 @@ opacity = 0 }, /obj/structure/cable{ - d2 = 4; - icon_state = "0-4" + icon_state = "0-4"; + d2 = 4 }, /turf/simulated/floor/plating, /area/toxins/xenobiology) @@ -80946,8 +79249,8 @@ opacity = 0 }, /obj/structure/cable{ - d2 = 2; - icon_state = "0-2" + icon_state = "0-2"; + d2 = 2 }, /turf/simulated/floor/plating, /area/toxins/xenobiology) @@ -80980,8 +79283,8 @@ opacity = 0 }, /obj/structure/cable{ - d2 = 2; - icon_state = "0-2" + icon_state = "0-2"; + d2 = 2 }, /turf/simulated/floor/plating, /area/toxins/xenobiology) @@ -81040,8 +79343,8 @@ /area/space/nearstation) "cNF" = ( /obj/structure/cable{ - d2 = 4; - icon_state = "0-4" + icon_state = "0-4"; + d2 = 4 }, /obj/machinery/power/solar{ id = "portsolar"; @@ -81143,29 +79446,23 @@ /obj/effect/landmark/start{ name = "Station Engineer" }, -/obj/structure/chair/comfy/red{ +/obj/structure/chair/comfy/black{ dir = 4 }, -/obj/structure/snow{ - dir = 6; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel, /area/engine/break_room) "cNP" = ( /obj/structure/table, /obj/item/folder/yellow, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/engine/break_room) "cNQ" = ( /obj/effect/landmark/start{ name = "Life Support Specialist" }, -/obj/structure/chair/comfy/green{ +/obj/structure/chair/comfy/black{ dir = 8 }, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/engine/break_room) "cNR" = ( @@ -81216,8 +79513,8 @@ /area/engine/break_room) "cNV" = ( /obj/structure/cable{ - d2 = 4; - icon_state = "0-4" + icon_state = "0-4"; + d2 = 4 }, /obj/machinery/power/smes/engineering, /obj/effect/decal/warning_stripes/northwest, @@ -81273,8 +79570,8 @@ /area/engine/engineering) "cOb" = ( /obj/structure/cable{ - d2 = 4; - icon_state = "0-4" + icon_state = "0-4"; + d2 = 4 }, /obj/machinery/power/smes/engineering, /obj/effect/decal/warning_stripes/west, @@ -81321,10 +79618,6 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/snow{ - dir = 4; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel, /area/engine/break_room) "cOf" = ( @@ -81355,7 +79648,6 @@ pixel_x = 1; pixel_y = 9 }, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/engine/break_room) "cOi" = ( @@ -81394,7 +79686,6 @@ pixel_y = 0 }, /obj/machinery/vending/cigarette, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/engine/break_room) "cOm" = ( @@ -81551,12 +79842,12 @@ /area/atmos/distribution) "cOB" = ( /obj/effect/decal/warning_stripes/yellow/partial{ - dir = 8; - icon_state = "3" + icon_state = "3"; + dir = 8 }, /obj/effect/decal/warning_stripes/arrow{ - dir = 8; - icon_state = "4" + icon_state = "4"; + dir = 8 }, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plasteel, @@ -81570,8 +79861,8 @@ /area/maintenance/asmaint2) "cOD" = ( /obj/machinery/light{ - dir = 4; - icon_state = "tube1" + icon_state = "tube1"; + dir = 4 }, /turf/simulated/floor/engine, /area/toxins/test_chamber) @@ -81581,12 +79872,12 @@ pixel_y = -24 }, /obj/effect/decal/warning_stripes/yellow/partial{ - dir = 4; - icon_state = "3" + icon_state = "3"; + dir = 4 }, /obj/effect/decal/warning_stripes/arrow{ - dir = 4; - icon_state = "4" + icon_state = "4"; + dir = 4 }, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plasteel, @@ -81687,10 +79978,9 @@ /obj/effect/landmark/start{ name = "Station Engineer" }, -/obj/structure/chair/comfy/red{ +/obj/structure/chair/comfy/black{ dir = 8 }, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/engine/break_room) "cOO" = ( @@ -81733,7 +80023,6 @@ /area/toxins/xenobiology) "cOS" = ( /obj/structure/table, -/obj/item/reagent_containers/food/snacks/candy/confectionery/caramel_nougat, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -81784,8 +80073,8 @@ pixel_y = 0 }, /obj/structure/sink{ - dir = 8; icon_state = "sink"; + dir = 8; pixel_x = -12; pixel_y = 2 }, @@ -81803,7 +80092,6 @@ pixel_y = 4 }, /obj/item/book/manual/sop_engineering, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/engine/break_room) "cPa" = ( @@ -81864,8 +80152,8 @@ /area/maintenance/genetics) "cPg" = ( /obj/structure/cable{ - d2 = 4; - icon_state = "0-4" + icon_state = "0-4"; + d2 = 4 }, /obj/machinery/power/smes/engineering, /obj/effect/decal/warning_stripes/southwest, @@ -81896,10 +80184,6 @@ sensors = list("tox_sensor" = "Tank") }, /obj/effect/decal/warning_stripes/east, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, /turf/simulated/floor/plasteel, /area/atmos) "cPj" = ( @@ -81945,8 +80229,8 @@ opacity = 0 }, /obj/structure/cable{ - d2 = 4; - icon_state = "0-4" + icon_state = "0-4"; + d2 = 4 }, /turf/simulated/floor/plating, /area/toxins/xenobiology) @@ -81974,8 +80258,8 @@ network = list("SS13") }, /obj/structure/cable{ - d2 = 4; - icon_state = "0-4" + icon_state = "0-4"; + d2 = 4 }, /obj/structure/closet/secure_closet/engineering_personal, /obj/machinery/power/apc{ @@ -82002,8 +80286,6 @@ /obj/machinery/light_switch{ pixel_x = 27 }, -/obj/structure/flora/tree/pine/xmas, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/engine/equipmentstorage) "cPr" = ( @@ -82114,8 +80396,8 @@ "cPC" = ( /obj/machinery/power/tracker, /obj/structure/cable{ - d2 = 4; - icon_state = "0-4" + icon_state = "0-4"; + d2 = 4 }, /obj/structure/lattice/catwalk, /turf/space, @@ -82176,8 +80458,8 @@ /area/solar/port) "cPI" = ( /obj/structure/cable{ - d2 = 4; - icon_state = "0-4" + icon_state = "0-4"; + d2 = 4 }, /obj/structure/lattice/catwalk, /turf/space, @@ -82231,10 +80513,6 @@ /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, -/obj/structure/snow{ - dir = 5; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel, /area/engine/equipmentstorage) "cPO" = ( @@ -82251,14 +80529,13 @@ network = list("SS13") }, /obj/machinery/light{ - dir = 4; - icon_state = "tube1" + icon_state = "tube1"; + dir = 4 }, /obj/structure/engineeringcart, /obj/item/radio/intercom{ pixel_x = 28 }, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/engine/equipmentstorage) "cPQ" = ( @@ -82338,13 +80615,6 @@ dir = 4 }, /obj/machinery/computer/camera_advanced/xenobio, -/obj/item/decorations/sticky_decorations/flammable/tinsel/purple{ - pixel_y = 19 - }, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -82375,10 +80645,6 @@ "cQb" = ( /obj/machinery/particle_accelerator/control_box, /obj/structure/cable/yellow, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, /turf/simulated/floor/plating, /area/engine/engineering) "cQc" = ( @@ -82458,13 +80724,6 @@ icon_state = "pipe-c" }, /obj/machinery/computer/camera_advanced/xenobio, -/obj/item/decorations/sticky_decorations/flammable/tinsel/purple{ - pixel_y = 19 - }, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -82504,8 +80763,8 @@ /area/space/nearstation) "cQq" = ( /obj/structure/cable{ - d2 = 2; - icon_state = "0-2" + icon_state = "0-2"; + d2 = 2 }, /obj/structure/lattice/catwalk, /turf/space, @@ -82604,8 +80863,8 @@ /area/toxins/xenobiology) "cQB" = ( /obj/machinery/light{ - dir = 4; - icon_state = "tube1" + icon_state = "tube1"; + dir = 4 }, /obj/machinery/smartfridge/secure/extract, /turf/simulated/floor/plasteel{ @@ -82791,7 +81050,6 @@ /obj/item/stack/sheet/glass{ amount = 50 }, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/engine/equipmentstorage) "cQP" = ( @@ -82802,10 +81060,6 @@ scrub_N2O = 1; scrub_Toxins = 1 }, -/obj/structure/snow{ - dir = 1; - icon_state = "snow_surround" - }, /turf/simulated/floor/plasteel, /area/engine/equipmentstorage) "cQR" = ( @@ -82830,8 +81084,8 @@ pixel_y = 16 }, /turf/simulated/floor/plasteel{ - dir = 10; - icon_state = "blue" + icon_state = "blue"; + dir = 10 }, /area/medical/cmostore) "cQS" = ( @@ -83204,8 +81458,8 @@ }, /obj/item/storage/firstaid/toxin, /turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "blue" + icon_state = "blue"; + dir = 4 }, /area/medical/cmostore) "cRv" = ( @@ -83273,8 +81527,8 @@ opacity = 0 }, /obj/structure/cable{ - d2 = 4; - icon_state = "0-4" + icon_state = "0-4"; + d2 = 4 }, /turf/simulated/floor/plating, /area/toxins/xenobiology) @@ -83477,10 +81731,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/structure/snow{ - dir = 1; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel, /area/engine/equipmentstorage) "cRT" = ( @@ -83521,7 +81771,6 @@ /obj/item/stack/rods{ amount = 50 }, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/engine/equipmentstorage) "cRV" = ( @@ -83530,10 +81779,6 @@ initialize_directions = 11; level = 1 }, -/obj/structure/snow{ - dir = 4; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel, /area/engine/equipmentstorage) "cRW" = ( @@ -83552,8 +81797,6 @@ /turf/simulated/floor/plating, /area/maintenance/asmaint) "cRX" = ( -/obj/item/decorations/sticky_decorations/flammable/snowman, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/engine/equipmentstorage) "cRY" = ( @@ -83616,7 +81859,6 @@ pixel_y = 32 }, /obj/machinery/vending/engivend, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/engine/equipmentstorage) "cSb" = ( @@ -83668,14 +81910,14 @@ /area/toxins/xenobiology) "cSi" = ( /obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + tag_airpump = "engineering_west_pump"; + tag_exterior_door = "engineering_west_outer"; frequency = 1379; id_tag = "engineering_west_airlock"; + tag_interior_door = "engineering_west_inner"; pixel_x = 25; req_access_txt = "10;13"; - tag_airpump = "engineering_west_pump"; - tag_chamber_sensor = "engineering_west_sensor"; - tag_exterior_door = "engineering_west_outer"; - tag_interior_door = "engineering_west_inner" + tag_chamber_sensor = "engineering_west_sensor" }, /obj/machinery/airlock_sensor{ frequency = 1379; @@ -83844,14 +82086,14 @@ /area/engine/engineering) "cSy" = ( /obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + tag_airpump = "engineering_east_pump"; + tag_exterior_door = "engineering_east_outer"; frequency = 1379; id_tag = "engineering_east_airlock"; + tag_interior_door = "engineering_east_inner"; pixel_x = -25; req_access_txt = "10;13"; - tag_airpump = "engineering_east_pump"; - tag_chamber_sensor = "engineering_east_sensor"; - tag_exterior_door = "engineering_east_outer"; - tag_interior_door = "engineering_east_inner" + tag_chamber_sensor = "engineering_east_sensor" }, /obj/machinery/airlock_sensor{ frequency = 1379; @@ -84068,10 +82310,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/structure/snow{ - dir = 1; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel, /area/engine/equipmentstorage) "cSQ" = ( @@ -84173,10 +82411,6 @@ /obj/machinery/atmospherics/pipe/simple/visible/universal{ dir = 4 }, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, /turf/simulated/floor/plasteel, /area/atmos) "cTa" = ( @@ -84184,8 +82418,8 @@ dir = 4 }, /obj/structure/cable{ - d2 = 2; - icon_state = "0-2" + icon_state = "0-2"; + d2 = 2 }, /obj/machinery/light/small{ dir = 1 @@ -84227,14 +82461,14 @@ name = "Robotics Operating Computer"; stat = 1 }, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, /turf/simulated/floor/plasteel{ icon_state = "white" }, /area/assembly/assembly_line) +"cTe" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel, +/area/engine/equipmentstorage) "cTf" = ( /obj/machinery/newscaster{ pixel_x = 0; @@ -84408,13 +82642,9 @@ output_tag = "waste_out"; sensors = list("waste_sensor" = "Tank") }, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, /turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "green" + icon_state = "green"; + dir = 4 }, /area/atmos/distribution) "cTv" = ( @@ -84589,8 +82819,8 @@ opacity = 0 }, /obj/structure/cable{ - d2 = 4; - icon_state = "0-4" + icon_state = "0-4"; + d2 = 4 }, /turf/simulated/floor/plating, /area/toxins/xenobiology) @@ -84624,9 +82854,6 @@ initialize_directions = 10; level = 1 }, -/obj/item/decorations/sticky_decorations/flammable/tinsel/yellow{ - pixel_y = 19 - }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "neutralfull" @@ -84745,8 +82972,8 @@ /area/solar/starboard) "cTX" = ( /obj/structure/cable{ - d2 = 4; - icon_state = "0-4" + icon_state = "0-4"; + d2 = 4 }, /obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 10; @@ -84774,15 +83001,15 @@ id_tag = "robotics_solar_pump" }, /obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + tag_airpump = "robotics_solar_pump"; + tag_exterior_door = "robotics_solar_outer"; frequency = 1379; id_tag = "robotics_solar_airlock"; + tag_interior_door = "robotics_solar_inner"; pixel_x = 0; pixel_y = -25; req_access_txt = "13"; - tag_airpump = "robotics_solar_pump"; - tag_chamber_sensor = "robotics_solar_sensor"; - tag_exterior_door = "robotics_solar_outer"; - tag_interior_door = "robotics_solar_inner" + tag_chamber_sensor = "robotics_solar_sensor" }, /obj/machinery/airlock_sensor{ frequency = 1379; @@ -85092,10 +83319,6 @@ /area/atmos) "cUy" = ( /obj/machinery/computer/atmos_alert, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "neutralfull" @@ -85324,8 +83547,8 @@ name = "Gas Mix Inlet Valve" }, /turf/simulated/floor/plasteel{ - dir = 6; - icon_state = "green" + icon_state = "green"; + dir = 6 }, /area/atmos/distribution) "cUT" = ( @@ -85485,10 +83708,6 @@ /obj/machinery/light_switch{ pixel_x = -27 }, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, /turf/simulated/floor/plasteel, /area/engine/engineering) "cVi" = ( @@ -85525,10 +83744,6 @@ track = 0 }, /obj/structure/cable, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, /turf/simulated/floor/plating, /area/maintenance/portsolar) "cVm" = ( @@ -85636,16 +83851,18 @@ /turf/simulated/floor/plasteel, /area/engine/engineering) "cVt" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, /obj/effect/landmark/start{ name = "Civilian" }, -/obj/structure/snow{ - dir = 4; - icon_state = "snow_surround" - }, /turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "green" + icon_state = "green"; + dir = 4 }, /area/hallway/secondary/exit) "cVu" = ( @@ -85935,11 +84152,8 @@ /turf/simulated/floor/plating, /area/engine/chiefs_office) "cVV" = ( -/obj/item/decorations/sticky_decorations/flammable/tinsel/red{ - pixel_y = 19 - }, -/obj/structure/snow, -/turf/simulated/floor/wood, +/obj/structure/flora/ausbushes/genericbush, +/turf/simulated/floor/grass, /area/hallway/secondary/exit) "cVW" = ( /obj/machinery/shieldgen, @@ -86030,6 +84244,18 @@ icon_state = "white" }, /area/toxins/xenobiology) +"cWh" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "green"; + dir = 8 + }, +/area/hallway/secondary/exit) "cWi" = ( /obj/effect/spawner/window/reinforced, /obj/machinery/door/poddoor{ @@ -86040,8 +84266,8 @@ opacity = 0 }, /obj/structure/cable{ - d2 = 4; - icon_state = "0-4" + icon_state = "0-4"; + d2 = 4 }, /turf/simulated/floor/plating, /area/toxins/xenobiology) @@ -86213,12 +84439,8 @@ name = "Grid Power Monitoring Computer" }, /obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 + icon_state = "0-4"; + d2 = 4 }, /turf/simulated/floor/plasteel, /area/engine/engineering) @@ -86247,9 +84469,6 @@ /obj/structure/closet/secure_closet/engineering_chief{ req_access_txt = "0" }, -/obj/item/decorations/sticky_decorations/flammable/christmas_stocking{ - pixel_x = -17 - }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "neutralfull" @@ -86270,12 +84489,12 @@ /area/engine/engineering) "cWG" = ( /obj/machinery/door/window/southleft{ - base_state = "left"; - dir = 8; - icon_state = "left"; + tag = "icon-left (WEST)"; name = "Bar Delivery"; + icon_state = "left"; + dir = 8; req_access_txt = "25"; - tag = "icon-left (WEST)" + base_state = "left" }, /obj/effect/decal/warning_stripes/yellow, /turf/simulated/floor/plasteel, @@ -86538,8 +84757,8 @@ name = "N2O Outlet Valve" }, /turf/simulated/floor/plasteel{ - dir = 5; - icon_state = "escape" + icon_state = "escape"; + dir = 5 }, /area/atmos) "cXe" = ( @@ -86655,11 +84874,18 @@ icon_state = "purple" }, /area/hallway/secondary/exit) +"cXp" = ( +/obj/structure/chair, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "green" + }, +/area/hallway/secondary/exit) "cXq" = ( /obj/structure/cable{ - d2 = 2; icon_state = "0-2"; - pixel_y = 1 + pixel_y = 1; + d2 = 2 }, /obj/machinery/power/apc{ dir = 4; @@ -86677,6 +84903,18 @@ }, /turf/simulated/floor/plating, /area/maintenance/asmaint) +"cXs" = ( +/obj/machinery/status_display{ + density = 0; + layer = 4; + pixel_x = 0; + pixel_y = 32 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "green" + }, +/area/hallway/secondary/exit) "cXt" = ( /obj/structure/cable{ d1 = 1; @@ -86719,10 +84957,6 @@ /area/toxins/xenobiology) "cXw" = ( /obj/machinery/computer/station_alert, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, /turf/simulated/floor/plasteel, /area/engine/engineering) "cXx" = ( @@ -86891,8 +85125,8 @@ location = "Kitchen" }, /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "bot" + icon_state = "bot"; + dir = 1 }, /area/maintenance/fsmaint2) "cXL" = ( @@ -86941,8 +85175,6 @@ /obj/machinery/light{ dir = 8 }, -/obj/item/decorations/sticky_decorations/flammable/snowman, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/atmos) "cXP" = ( @@ -87074,25 +85306,28 @@ output_tag = "n2o_out"; sensors = list("n2o_sensor" = "Tank") }, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, /turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "escape" + icon_state = "escape"; + dir = 4 }, /area/atmos) -"cYe" = ( -/obj/structure/snow{ - dir = 5; - icon_state = "snow_corner" +"cYd" = ( +/obj/structure/chair, +/obj/machinery/light{ + dir = 1; + on = 1 }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "green" }, /area/hallway/secondary/exit) +"cYe" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "green" + }, +/area/hallway/secondary/exit) "cYf" = ( /obj/machinery/air_sensor{ frequency = 1441; @@ -87604,8 +85839,8 @@ /obj/machinery/camera{ c_tag = "Engineering Particle Accelerator"; dir = 2; - network = list("Singularity","SS13"); - pixel_x = 23 + pixel_x = 23; + network = list("Singularity","SS13") }, /obj/machinery/light{ dir = 1 @@ -87631,8 +85866,8 @@ level = 2 }, /turf/simulated/floor/plasteel{ - dir = 6; - icon_state = "escape" + icon_state = "escape"; + dir = 6 }, /area/atmos) "cZh" = ( @@ -88245,9 +86480,9 @@ /area/escapepodbay) "dau" = ( /obj/structure/cable{ - d2 = 2; icon_state = "0-2"; - pixel_y = 1 + pixel_y = 1; + d2 = 2 }, /obj/machinery/power/apc{ dir = 4; @@ -88260,17 +86495,12 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/atmos) "daw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 }, -/obj/structure/snow{ - dir = 8; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel, /area/atmos) "day" = ( @@ -88278,7 +86508,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/atmos) "daz" = ( @@ -88457,10 +86686,6 @@ /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, -/obj/structure/snow{ - dir = 8; - icon_state = "snow_surround" - }, /turf/simulated/floor/plasteel, /area/atmos) "daR" = ( @@ -88548,8 +86773,8 @@ pixel_x = -25 }, /obj/structure/cable{ - d2 = 4; - icon_state = "0-4" + icon_state = "0-4"; + d2 = 4 }, /turf/simulated/floor/plasteel, /area/escapepodbay) @@ -88908,7 +87133,6 @@ network = list("SS13") }, /obj/structure/reagent_dispensers/fueltank, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/atmos) "dbL" = ( @@ -88919,7 +87143,6 @@ tag = "" }, /obj/structure/reagent_dispensers/watertank/high, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/atmos) "dbM" = ( @@ -88970,8 +87193,8 @@ state = 2 }, /obj/structure/cable{ - d2 = 4; - icon_state = "0-4" + icon_state = "0-4"; + d2 = 4 }, /obj/machinery/camera/emp_proof{ c_tag = "Engineering Singularity East"; @@ -89046,8 +87269,8 @@ /area/space/nearstation) "dcb" = ( /turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "blue" + icon_state = "blue"; + dir = 8 }, /area/hallway/primary/central/north) "dcc" = ( @@ -89088,9 +87311,9 @@ anchored = 1 }, /obj/structure/cable{ - d2 = 2; icon_state = "0-2"; - pixel_y = 1 + pixel_y = 1; + d2 = 2 }, /turf/simulated/floor/plating/airless, /area/space/nearstation) @@ -89123,10 +87346,6 @@ /area/engine/break_room) "dck" = ( /obj/machinery/hologram/holopad, -/obj/structure/snow{ - dir = 1; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel, /area/hallway/secondary/exit) "dcl" = ( @@ -89162,10 +87381,6 @@ icon_state = "1-4"; tag = "" }, -/obj/structure/snow{ - dir = 4; - icon_state = "snow_corner" - }, /turf/simulated/floor/plating, /area/maintenance/storage) "dco" = ( @@ -89215,7 +87430,6 @@ /area/maintenance/asmaint) "dct" = ( /obj/machinery/portable_atmospherics/scrubber, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/atmos) "dcu" = ( @@ -89252,8 +87466,8 @@ /area/maintenance/turbine) "dcx" = ( /obj/machinery/power/terminal{ - dir = 1; - icon_state = "term" + icon_state = "term"; + dir = 1 }, /obj/structure/cable{ d2 = 8; @@ -89291,12 +87505,12 @@ /turf/simulated/floor/plasteel, /area/maintenance/turbine) "dcB" = ( +/obj/structure/chair/comfy/black{ + dir = 4 + }, /obj/effect/landmark/start{ name = "Life Support Specialist" }, -/obj/structure/chair/comfy/green{ - dir = 4 - }, /turf/simulated/floor/plasteel, /area/engine/break_room) "dcC" = ( @@ -89311,15 +87525,11 @@ /turf/simulated/floor/plating, /area/maintenance/asmaint) "dcE" = ( -/obj/effect/landmark/start{ - name = "Life Support Specialist" - }, -/obj/structure/chair/comfy/red{ +/obj/structure/chair/comfy/black{ dir = 8 }, -/obj/structure/snow{ - dir = 6; - icon_state = "snow_corner" +/obj/effect/landmark/start{ + name = "Life Support Specialist" }, /turf/simulated/floor/plasteel, /area/engine/break_room) @@ -89388,7 +87598,6 @@ tag = "" }, /obj/machinery/portable_atmospherics/scrubber, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/atmos) "dcN" = ( @@ -89592,7 +87801,6 @@ /area/maintenance/turbine) "ddm" = ( /obj/machinery/portable_atmospherics/pump, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/atmos) "ddn" = ( @@ -89620,10 +87828,6 @@ id = "incineratorturbine" }, /obj/effect/decal/cleanable/dirt, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, /turf/simulated/floor/plasteel, /area/maintenance/turbine) "ddq" = ( @@ -89642,7 +87846,6 @@ icon_state = "1-2"; tag = "" }, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/atmos) "ddt" = ( @@ -89897,8 +88100,8 @@ /area/engine/engineering) "ddT" = ( /obj/structure/cable{ - d2 = 4; - icon_state = "0-4" + icon_state = "0-4"; + d2 = 4 }, /obj/structure/lattice/catwalk, /turf/space, @@ -89996,8 +88199,8 @@ /area/atmos) "ded" = ( /obj/structure/cable{ - d2 = 2; - icon_state = "0-2" + icon_state = "0-2"; + d2 = 2 }, /obj/structure/lattice/catwalk, /turf/space, @@ -90049,7 +88252,6 @@ icon_state = "1-2"; tag = "" }, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/atmos) "dei" = ( @@ -90078,8 +88280,8 @@ name = "CO2 Outlet Valve" }, /turf/simulated/floor/plasteel{ - dir = 5; - icon_state = "caution" + icon_state = "caution"; + dir = 5 }, /area/atmos) "del" = ( @@ -90260,7 +88462,6 @@ icon_state = "1-2"; pixel_y = 0 }, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/atmos) "deE" = ( @@ -90291,7 +88492,6 @@ pixel_x = 0; tag = "" }, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/atmos) "deH" = ( @@ -90299,15 +88499,10 @@ /obj/machinery/atmospherics/pipe/simple/visible/purple{ dir = 4 }, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/atmos) "deI" = ( /obj/machinery/atmospherics/pipe/manifold/visible/purple, -/obj/structure/snow{ - dir = 10; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel, /area/atmos) "deJ" = ( @@ -90347,7 +88542,6 @@ name = "Atmospherics Maintenance"; req_access_txt = "24" }, -/obj/structure/snow, /turf/simulated/floor/plating, /area/maintenance/storage) "deM" = ( @@ -90361,7 +88555,6 @@ d2 = 8; icon_state = "1-8" }, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/atmos) "deN" = ( @@ -90381,8 +88574,8 @@ /area/maintenance/starboardsolar) "deO" = ( /obj/structure/cable{ - d2 = 4; - icon_state = "0-4" + icon_state = "0-4"; + d2 = 4 }, /obj/machinery/atmospherics/pipe/simple/visible/purple{ dir = 6 @@ -90393,7 +88586,6 @@ pixel_x = -24; shock_proof = 1 }, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/atmos) "deP" = ( @@ -90420,8 +88612,8 @@ /area/atmos) "deS" = ( /obj/structure/cable{ - d2 = 4; - icon_state = "0-4" + icon_state = "0-4"; + d2 = 4 }, /obj/machinery/power/apc{ dir = 8; @@ -90451,13 +88643,9 @@ output_tag = "co2_out"; sensors = list("co2_sensor" = "Tank") }, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, /turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "caution" + icon_state = "caution"; + dir = 4 }, /area/atmos) "deW" = ( @@ -90562,8 +88750,8 @@ /area/maintenance/asmaint2) "dfj" = ( /obj/machinery/power/terminal{ - dir = 1; - icon_state = "term" + icon_state = "term"; + dir = 1 }, /obj/structure/cable{ d2 = 8; @@ -90626,12 +88814,8 @@ track = 0 }, /obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 + icon_state = "0-4"; + d2 = 4 }, /turf/simulated/floor/plating, /area/maintenance/starboardsolar) @@ -90711,14 +88895,14 @@ tag = "" }, /obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + tag_airpump = "solar_xeno_pump"; + tag_exterior_door = "solar_xeno_outer"; frequency = 1379; id_tag = "solar_xeno_airlock"; + tag_interior_door = "solar_xeno_inner"; pixel_x = 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" + tag_chamber_sensor = "solar_xeno_sensor" }, /obj/machinery/airlock_sensor{ frequency = 1379; @@ -90739,7 +88923,6 @@ /area/maintenance/storage) "dfy" = ( /obj/structure/chair/stool, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/atmos) "dfz" = ( @@ -90897,8 +89080,8 @@ /area/maintenance/asmaint2) "dfQ" = ( /obj/machinery/light_switch{ - dir = 2; name = "light switch "; + dir = 2; pixel_x = 0; pixel_y = -22 }, @@ -90980,8 +89163,8 @@ /area/maintenance/storage) "dgd" = ( /turf/simulated/floor/plasteel{ - dir = 6; - icon_state = "blue" + icon_state = "blue"; + dir = 6 }, /area/maintenance/storage) "dge" = ( @@ -91083,7 +89266,6 @@ dir = 8 }, /obj/machinery/atmospherics/pipe/simple/visible/purple, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/atmos) "dgs" = ( @@ -91097,10 +89279,6 @@ pixel_y = 4 }, /obj/item/radio, -/obj/structure/snow{ - dir = 9; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel, /area/atmos) "dgt" = ( @@ -91139,9 +89317,9 @@ }, /turf/simulated/floor/plating, /turf/simulated/shuttle/wall{ - dir = 2; + tag = "icon-swall_f6"; icon_state = "swall_f6"; - tag = "icon-swall_f6" + dir = 2 }, /area/shuttle/pod_4) "dgE" = ( @@ -91208,10 +89386,6 @@ /obj/machinery/atmospherics/pipe/simple/visible/purple{ dir = 5 }, -/obj/structure/snow{ - dir = 9; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel, /area/atmos) "dgN" = ( @@ -91416,8 +89590,8 @@ /area/shuttle/trade/sol) "dhn" = ( /turf/simulated/shuttle/wall{ - dir = 2; - icon_state = "swall13" + icon_state = "swall13"; + dir = 2 }, /area/shuttle/trade/sol) "dho" = ( @@ -91467,8 +89641,8 @@ icon_state = "2-4" }, /turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "neutralcorner" + icon_state = "neutralcorner"; + dir = 4 }, /area/crew_quarters/dorms) "dhs" = ( @@ -91477,8 +89651,8 @@ level = 1 }, /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "neutralcorner" + icon_state = "neutralcorner"; + dir = 1 }, /area/crew_quarters/dorms) "dht" = ( @@ -91577,18 +89751,14 @@ /obj/machinery/atmospherics/pipe/simple/visible/green{ level = 2 }, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, /turf/simulated/floor/plasteel{ icon_state = "red" }, /area/atmos) "dhB" = ( /turf/simulated/floor/plasteel{ - dir = 10; - icon_state = "red" + icon_state = "red"; + dir = 10 }, /area/atmos) "dhC" = ( @@ -91596,8 +89766,8 @@ name = "Nitrogen Outlet Valve" }, /turf/simulated/floor/plasteel{ - dir = 6; - icon_state = "red" + icon_state = "red"; + dir = 6 }, /area/atmos) "dhD" = ( @@ -91608,10 +89778,6 @@ output_tag = "o2_out"; sensors = list("o2_sensor" = "Tank") }, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, /turf/simulated/floor/plasteel{ dir = 0; icon_state = "blue" @@ -91622,8 +89788,8 @@ level = 2 }, /turf/simulated/floor/plasteel{ - dir = 10; - icon_state = "blue" + icon_state = "blue"; + dir = 10 }, /area/atmos) "dhF" = ( @@ -91631,8 +89797,8 @@ name = "Oxygen Outlet Valve" }, /turf/simulated/floor/plasteel{ - dir = 6; - icon_state = "blue" + icon_state = "blue"; + dir = 6 }, /area/atmos) "dhG" = ( @@ -91644,10 +89810,6 @@ pressure_setting = 2000; sensors = list("air_sensor" = "Tank") }, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, /turf/simulated/floor/plasteel{ icon_state = "arrival" }, @@ -91657,8 +89819,8 @@ level = 2 }, /turf/simulated/floor/plasteel{ - dir = 10; - icon_state = "arrival" + icon_state = "arrival"; + dir = 10 }, /area/atmos) "dhI" = ( @@ -91682,8 +89844,8 @@ name = "Mixed Air Outlet Valve" }, /turf/simulated/floor/plasteel{ - dir = 6; - icon_state = "arrival" + icon_state = "arrival"; + dir = 6 }, /area/atmos) "dhK" = ( @@ -91766,9 +89928,9 @@ }, /turf/simulated/floor/plating, /turf/simulated/shuttle/wall{ - dir = 2; + tag = "icon-swall_f5"; icon_state = "swall_f5"; - tag = "icon-swall_f5" + dir = 2 }, /area/shuttle/pod_4) "dhV" = ( @@ -91832,8 +89994,8 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "bot" + icon_state = "bot"; + dir = 1 }, /area/maintenance/fsmaint2) "dii" = ( @@ -92333,8 +90495,8 @@ pixel_y = 0 }, /turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "neutral" + icon_state = "neutral"; + dir = 4 }, /area/crew_quarters/dorms) "djg" = ( @@ -92353,20 +90515,14 @@ pixel_y = 24 }, /obj/structure/table/reinforced, -/obj/item/toy/xmas_cracker, -/obj/item/toy/xmas_cracker, -/obj/item/toy/xmas_cracker, -/obj/item/toy/xmas_cracker, -/obj/item/toy/xmas_cracker, -/obj/item/toy/xmas_cracker, -/obj/item/storage/fancy/crayons, -/obj/item/wirecutters, -/obj/item/stack/tape_roll, -/obj/item/stack/tape_roll, -/obj/item/paper{ - info = "Here are the materials needed to create decorations for the holidays. Please use them at your discretion to create a nice, warm atmosphere to spread the holiday cheer."; - name = "Dearest Bartender" +/obj/item/stack/packageWrap, +/obj/item/book/manual/sop_service, +/obj/item/pen/blue{ + pixel_x = 0; + pixel_y = 4 }, +/obj/item/book/manual/barman_recipes, +/obj/item/lighter/zippo, /turf/simulated/floor/plasteel{ icon_state = "grimy" }, @@ -92472,11 +90628,11 @@ /area/storage/secure) "djt" = ( /obj/machinery/door/window/eastright{ - dir = 2; - icon_state = "right"; + tag = "icon-right"; name = "Hydroponics Delivery"; - req_access_txt = "35"; - tag = "icon-right" + icon_state = "right"; + dir = 2; + req_access_txt = "35" }, /obj/effect/decal/warning_stripes/yellow, /obj/structure/disposalpipe/segment{ @@ -92776,9 +90932,9 @@ pixel_y = 24 }, /obj/structure/cable{ - d2 = 2; icon_state = "0-2"; - pixel_y = 1 + pixel_y = 1; + d2 = 2 }, /turf/simulated/floor/plasteel, /area/hallway/primary/central/nw) @@ -92991,8 +91147,8 @@ pixel_y = 32 }, /turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "neutralcorner" + icon_state = "neutralcorner"; + dir = 4 }, /area/hallway/primary/central/ne) "dkn" = ( @@ -93011,8 +91167,8 @@ tag = "" }, /turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "neutralcorner" + icon_state = "neutralcorner"; + dir = 4 }, /area/hallway/primary/central/ne) "dkp" = ( @@ -93214,13 +91370,12 @@ dir = 4 }, /obj/structure/table/reinforced, -/obj/item/book/manual/barman_recipes, -/obj/item/stack/packageWrap, -/obj/item/book/manual/sop_service, -/obj/item/lighter/zippo, -/obj/item/pen/blue{ - pixel_x = 0; - pixel_y = 4 +/obj/item/phone{ + attack_verb = list("bounced a check off","checked-out","tipped"); + desc = "Also known as a cash register, or, more commonly, \"robbery magnet\". It's old and rusty, clearly non-functional and decorative only."; + icon = 'icons/obj/machines/pos.dmi'; + icon_state = "pos"; + name = "point of sale" }, /turf/simulated/floor/plasteel{ icon_state = "grimy" @@ -93284,10 +91439,6 @@ dir = 8 }, /obj/structure/kitchenspike, -/obj/structure/snow{ - dir = 10; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel{ icon_state = "showroomfloor" }, @@ -93675,9 +91826,6 @@ pixel_x = 32; pixel_y = 0 }, -/obj/item/decorations/sticky_decorations/flammable/googlyeyes{ - pixel_y = 8 - }, /turf/simulated/floor/plasteel{ icon_state = "darkbluecorners" }, @@ -94032,9 +92180,9 @@ }) "dml" = ( /obj/structure/disposalpipe/junction{ - dir = 4; + tag = "icon-pipe-j2 (EAST)"; icon_state = "pipe-j2"; - tag = "icon-pipe-j2 (EAST)" + dir = 4 }, /obj/machinery/atmospherics/binary/pump{ name = "Waste Out"; @@ -94413,9 +92561,6 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/snow{ - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel{ dir = 5; icon_state = "dark"; @@ -94449,7 +92594,6 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/snow, /turf/simulated/floor/plasteel{ dir = 5; icon_state = "dark"; @@ -94500,7 +92644,6 @@ level = 1 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/snow, /turf/simulated/floor/plasteel{ dir = 5; icon_state = "dark"; @@ -94528,7 +92671,16 @@ scrub_N2O = 1; scrub_Toxins = 1 }, -/obj/structure/snow, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "dark"; + tag = "icon-vault (NORTHEAST)" + }, +/area/turret_protected/ai) +"dni" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 5; icon_state = "dark"; @@ -94548,7 +92700,6 @@ initialize_directions = 11; level = 1 }, -/obj/structure/snow, /turf/simulated/floor/plasteel{ dir = 5; icon_state = "dark"; @@ -94566,7 +92717,6 @@ /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, -/obj/structure/snow, /turf/simulated/floor/plasteel{ dir = 5; icon_state = "dark"; @@ -94587,7 +92737,6 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/snow, /turf/simulated/floor/plasteel{ dir = 5; icon_state = "dark"; @@ -94627,10 +92776,6 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/snow{ - dir = 1; - icon_state = "snow_surround" - }, /turf/simulated/floor/plasteel{ dir = 5; icon_state = "dark"; @@ -94691,7 +92836,6 @@ /area/turret_protected/ai) "dnu" = ( /obj/structure/kitchenspike, -/obj/structure/snow, /turf/simulated/floor/plasteel{ icon_state = "showroomfloor" }, @@ -94711,10 +92855,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/structure/snow{ - dir = 1; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel{ dir = 5; icon_state = "dark"; @@ -94918,13 +93058,10 @@ pixel_y = 0 }, /obj/item/book/codex_gigas, -/obj/item/decorations/sticky_decorations/flammable/christmas_stocking{ - pixel_y = 17 - }, /turf/simulated/floor/plasteel{ - dir = 2; + tag = "icon-cult"; icon_state = "cult"; - tag = "icon-cult" + dir = 2 }, /area/library) "dnN" = ( @@ -95139,8 +93276,8 @@ /area/maintenance/fsmaint2) "doh" = ( /obj/structure/cable{ - d2 = 2; - icon_state = "0-2" + icon_state = "0-2"; + d2 = 2 }, /obj/machinery/power/solar{ id = "starboardsolar"; @@ -95160,13 +93297,9 @@ /obj/machinery/light{ dir = 1 }, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "red" + icon_state = "red"; + dir = 1 }, /area/security/checkpoint2) "doj" = ( @@ -95174,8 +93307,8 @@ pixel_x = 27 }, /turf/simulated/floor/plasteel{ - dir = 5; - icon_state = "red" + icon_state = "red"; + dir = 5 }, /area/security/checkpoint2) "dok" = ( @@ -95266,8 +93399,8 @@ dir = 1 }, /turf/simulated/floor/plasteel{ - dir = 2; - icon_state = "cafeteria" + icon_state = "cafeteria"; + dir = 2 }, /area/crew_quarters/kitchen) "dor" = ( @@ -95293,9 +93426,9 @@ /area/engine/controlroom) "dou" = ( /turf/simulated/shuttle/wall{ - dir = 2; + tag = "icon-swall12"; icon_state = "swall12"; - tag = "icon-swall12" + dir = 2 }, /area/shuttle/pod_4) "dov" = ( @@ -95329,8 +93462,8 @@ "dow" = ( /turf/space, /turf/simulated/shuttle/wall{ - dir = 2; - icon_state = "swall_f10" + icon_state = "swall_f10"; + dir = 2 }, /area/shuttle/pod_4) "dox" = ( @@ -95465,10 +93598,6 @@ icon_state = "alarm0"; pixel_x = -22 }, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, /turf/simulated/floor/plasteel{ dir = 5; icon_state = "dark"; @@ -95478,8 +93607,8 @@ "doV" = ( /turf/space, /turf/simulated/shuttle/wall{ - dir = 2; - icon_state = "swall_f9" + icon_state = "swall_f9"; + dir = 2 }, /area/shuttle/pod_4) "doW" = ( @@ -95524,10 +93653,6 @@ /area/turret_protected/aisat_interior) "dpb" = ( /obj/machinery/computer/teleporter, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, /turf/simulated/floor/plating, /area/turret_protected/aisat_interior) "dpd" = ( @@ -95569,14 +93694,6 @@ tag = "icon-vault (NORTHEAST)" }, /area/turret_protected/aisat_interior) -"dpi" = ( -/obj/structure/chair/comfy/red{ - dir = 1 - }, -/turf/simulated/floor/plasteel{ - icon_state = "grimy" - }, -/area/hallway/secondary/entry) "dpl" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow, /obj/structure/rack, @@ -95682,8 +93799,8 @@ }) "dpF" = ( /obj/structure/cable{ - d2 = 4; - icon_state = "0-4" + icon_state = "0-4"; + d2 = 4 }, /obj/machinery/computer/monitor{ name = "Grid Power Monitoring Computer" @@ -95696,10 +93813,6 @@ d2 = 2; icon_state = "0-2" }, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, /turf/simulated/floor/plating, /area/aisat/entrance{ name = "\improper AI Satellite Atmospherics" @@ -95807,8 +93920,8 @@ }) "dpZ" = ( /obj/structure/cable{ - d2 = 4; - icon_state = "0-4" + icon_state = "0-4"; + d2 = 4 }, /obj/machinery/portable_atmospherics/scrubber, /obj/machinery/power/apc{ @@ -95856,9 +93969,6 @@ /obj/machinery/porta_turret{ dir = 4 }, -/obj/item/decorations/sticky_decorations/flammable/googlyeyes{ - pixel_y = 8 - }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "vault"; @@ -95891,9 +94001,6 @@ pixel_x = -32; pixel_y = 0 }, -/obj/item/decorations/sticky_decorations/flammable/googlyeyes{ - pixel_y = 8 - }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "darkbluecorners" @@ -95917,9 +94024,6 @@ /obj/machinery/porta_turret{ dir = 8 }, -/obj/item/decorations/sticky_decorations/flammable/googlyeyes{ - pixel_y = 8 - }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "vault"; @@ -95939,34 +94043,28 @@ /area/aisat) "dqM" = ( /obj/machinery/light{ - dir = 8; - icon_state = "tube1" + icon_state = "tube1"; + dir = 8 }, /obj/machinery/porta_turret{ dir = 4; installation = /obj/item/gun/energy/gun; name = "hallway turret" }, -/obj/item/decorations/sticky_decorations/flammable/googlyeyes{ - pixel_y = 8 - }, /turf/simulated/floor/bluegrid, /area/aisat{ name = "\improper AI Satellite Hallway" }) "dqO" = ( /obj/machinery/light{ - dir = 4; - icon_state = "tube1" + icon_state = "tube1"; + dir = 4 }, /obj/machinery/porta_turret{ dir = 8; installation = /obj/item/gun/energy/gun; name = "hallway turret" }, -/obj/item/decorations/sticky_decorations/flammable/googlyeyes{ - pixel_y = 8 - }, /turf/simulated/floor/bluegrid, /area/aisat{ name = "\improper AI Satellite Hallway" @@ -96035,10 +94133,6 @@ /obj/structure/chair{ dir = 8 }, -/obj/structure/snow{ - dir = 6; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel{ dir = 5; icon_state = "dark"; @@ -96048,10 +94142,6 @@ "drt" = ( /obj/structure/table/reinforced, /obj/item/folder, -/obj/structure/snow{ - dir = 6; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel{ dir = 5; icon_state = "dark"; @@ -96077,7 +94167,6 @@ pixel_y = 0 }, /obj/structure/chair/office/dark, -/obj/structure/snow, /turf/simulated/floor/plasteel{ dir = 5; icon_state = "dark"; @@ -96101,8 +94190,8 @@ /area/turret_protected/ai) "drG" = ( /obj/machinery/light{ - dir = 8; - icon_state = "tube1" + icon_state = "tube1"; + dir = 8 }, /obj/machinery/status_display{ density = 0; @@ -96116,9 +94205,6 @@ /obj/machinery/porta_turret{ dir = 4 }, -/obj/item/decorations/sticky_decorations/flammable/googlyeyes{ - pixel_y = 8 - }, /turf/simulated/floor/bluegrid, /area/turret_protected/ai) "drK" = ( @@ -96127,10 +94213,6 @@ initialize_directions = 10; level = 1 }, -/obj/structure/snow{ - dir = 1; - icon_state = "snow_corner" - }, /turf/simulated/floor/plasteel{ dir = 5; icon_state = "dark"; @@ -96141,25 +94223,24 @@ /obj/machinery/porta_turret{ dir = 8 }, -/obj/item/decorations/sticky_decorations/flammable/googlyeyes{ - pixel_y = 8 - }, /turf/simulated/floor/bluegrid, /area/turret_protected/ai) "drN" = ( /turf/simulated/wall, /area/turret_protected/ai) "drO" = ( -/obj/structure/chair/wood/wings{ - dir = 4; - icon_state = "wooden_chair_wings"; - tag = "icon-wooden_chair_wings (EAST)" +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 }, -/obj/structure/snow{ - icon_state = "snow_surround" +/obj/machinery/status_display{ + density = 0; + layer = 4; + pixel_x = 32; + pixel_y = 0 }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai) "drP" = ( /obj/structure/cable{ d1 = 1; @@ -96173,7 +94254,6 @@ req_access = null; req_access_txt = "16" }, -/obj/item/toy/plushie/ipcplushie, /turf/simulated/floor/bluegrid, /area/turret_protected/ai) "drQ" = ( @@ -96335,8 +94415,8 @@ /area/turret_protected/ai) "dse" = ( /obj/machinery/power/terminal{ - dir = 1; - icon_state = "term" + icon_state = "term"; + dir = 1 }, /obj/machinery/ai_slipper{ icon_state = "motion0" @@ -96476,9 +94556,6 @@ /area/engine/engineering) "dsK" = ( /obj/machinery/suit_storage_unit/engine, -/obj/item/decorations/sticky_decorations/flammable/christmas_stocking{ - pixel_y = 17 - }, /turf/simulated/floor/plasteel, /area/engine/engineering) "dsL" = ( @@ -96701,7 +94778,6 @@ dir = 8; pixel_x = -24 }, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/atmos) "dtw" = ( @@ -96718,13 +94794,6 @@ }, /turf/space, /area/space/nearstation) -"dvh" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/snow{ - icon_state = "snow_surround" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) "dwn" = ( /obj/item/flag/med, /turf/simulated/floor/plasteel{ @@ -96732,13 +94801,6 @@ icon_state = "cmo" }, /area/shuttle/escape) -"dzR" = ( -/obj/structure/snow{ - dir = 10; - icon_state = "snow_corner" - }, -/turf/simulated/floor/plasteel, -/area/hallway/secondary/exit) "dEP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -96754,29 +94816,6 @@ icon_state = "neutral" }, /area/shuttle/escape) -"dLi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/snow{ - dir = 10; - icon_state = "snow_corner" - }, -/turf/simulated/floor/plasteel, -/area/atmos) -"dMw" = ( -/obj/structure/snow{ - icon_state = "snow_corner" - }, -/turf/simulated/floor/plasteel, -/area/atmos) -"dNE" = ( -/obj/structure/snow{ - icon_state = "snow_corner" - }, -/turf/simulated/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/security/main) "dQC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/yellow, /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -96791,21 +94830,15 @@ "dSc" = ( /obj/structure/reagent_dispensers/watertank, /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "bot" + icon_state = "bot"; + dir = 1 }, /area/shuttle/escape) -"dSC" = ( -/obj/structure/snow, -/turf/simulated/floor/plasteel{ - icon_state = "grimy" - }, -/area/chapel/office) "dUh" = ( /obj/machinery/status_display, /turf/simulated/shuttle/wall{ - dir = 2; - icon_state = "swall3" + icon_state = "swall3"; + dir = 2 }, /area/shuttle/escape) "dVs" = ( @@ -96816,77 +94849,6 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/dorms) -"eap" = ( -/obj/item/decorations/sticky_decorations/flammable/tinsel/red{ - pixel_y = 19 - }, -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "whitecorner" - }, -/area/hallway/primary/starboard/west) -"egY" = ( -/obj/machinery/atmospherics/pipe/simple/visible/purple, -/obj/structure/snow{ - dir = 10; - icon_state = "snow_corner" - }, -/turf/simulated/floor/plasteel, -/area/atmos) -"eiU" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plasteel, -/area/quartermaster/storage) -"ejx" = ( -/obj/structure/snow{ - dir = 1; - icon_state = "snow_surround" - }, -/turf/simulated/floor/plasteel, -/area/crew_quarters/locker) -"eoC" = ( -/obj/item/decorations/sticky_decorations/flammable/tinsel/red{ - pixel_y = 19 - }, -/turf/simulated/floor/carpet, -/area/chapel/main) -"epP" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - tag = "" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/snow, -/turf/simulated/floor/plasteel{ - icon_state = "dark" - }, -/area/security/warden) -"ese" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - tag = "" - }, -/obj/structure/snow{ - dir = 10; - icon_state = "snow_corner" - }, -/turf/simulated/floor/plasteel, -/area/atmos) "esI" = ( /obj/structure/table/reinforced, /obj/item/storage/firstaid/regular, @@ -96899,82 +94861,12 @@ icon_state = "redcorner" }, /area/shuttle/escape) -"esS" = ( -/obj/structure/table/reinforced, -/obj/item/phone{ - attack_verb = list("bounced a check off","checked-out","tipped"); - desc = "Also known as a cash register, or, more commonly, \"robbery magnet\". It's old and rusty, clearly non-functional and decorative only."; - icon = 'icons/obj/machines/pos.dmi'; - icon_state = "pos"; - name = "point of sale" - }, -/turf/simulated/floor/plasteel{ - icon_state = "grimy" - }, -/area/crew_quarters/bar) -"etR" = ( -/obj/structure/snow{ - icon_state = "snow_corner" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"evY" = ( -/obj/item/decorations/sticky_decorations/flammable/snowman, -/obj/structure/snow, -/turf/simulated/floor/plasteel{ - icon_state = "bcarpet05" - }, -/area/blueshield) -"eyt" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Diner" - }, -/obj/structure/snow, -/turf/simulated/floor/plasteel, -/area/crew_quarters/bar) -"eEt" = ( -/turf/simulated/floor/plasteel, -/area/engine/equipmentstorage) -"eEX" = ( -/obj/item/decorations/sticky_decorations/flammable/snowman, -/obj/structure/snow, -/turf/simulated/floor/wood, -/area/hallway/secondary/exit) -"eGK" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/machinery/status_display{ - density = 0; - layer = 4; - pixel_x = 32; - pixel_y = 0 - }, -/turf/simulated/floor/bluegrid, -/area/turret_protected/ai) -"eHF" = ( -/obj/item/decorations/sticky_decorations/flammable/snowman, -/turf/simulated/floor/plasteel, -/area/crew_quarters/heads) "eJA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, /turf/simulated/wall, /area/maintenance/fsmaint) -"eML" = ( -/turf/simulated/floor/plasteel{ - icon_state = "grimy" - }, -/area/security/detectives_office) -"eSM" = ( -/obj/structure/snow, -/turf/simulated/floor/plasteel{ - icon_state = "bcarpet05" - }, -/area/blueshield) "eTE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ req_access_txt = "0" @@ -96993,26 +94885,6 @@ /obj/machinery/computer/mob_battle_terminal/red, /turf/simulated/floor/plasteel, /area/crew_quarters/dorms) -"feB" = ( -/obj/structure/snow{ - dir = 8; - icon_state = "snow_surround" - }, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "green" - }, -/area/hallway/secondary/exit) -"fgD" = ( -/obj/machinery/alarm{ - pixel_y = 22 - }, -/obj/structure/snow{ - dir = 10; - icon_state = "snow_corner" - }, -/turf/simulated/floor/plasteel, -/area/security/main) "fho" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -97021,70 +94893,11 @@ }, /turf/simulated/floor/plasteel, /area/crew_quarters/dorms) -"fjG" = ( -/obj/item/decorations/sticky_decorations/flammable/tinsel/green{ - pixel_y = 19 - }, -/obj/structure/snow, -/turf/simulated/floor/plasteel, -/area/quartermaster/storage) -"fnn" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/item/decorations/sticky_decorations/flammable/tinsel/red{ - pixel_y = 19 - }, -/turf/simulated/floor/carpet, -/area/library) -"fnB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/snow{ - dir = 8; - icon_state = "snow_corner" - }, -/turf/simulated/floor/plasteel, -/area/hallway/primary/port) -"fpb" = ( -/turf/simulated/floor/plasteel{ - icon_state = "whitebluefull"; - tag = "icon-whitebluefull" - }, -/area/medical/biostorage) "fpO" = ( /turf/simulated/floor/plasteel{ icon_state = "neutral" }, /area/shuttle/escape) -"frt" = ( -/obj/item/decorations/sticky_decorations/flammable/tinsel/green{ - pixel_y = 19 - }, -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "green" - }, -/area/hallway/primary/starboard/west) -"fuP" = ( -/obj/structure/snow{ - dir = 6; - icon_state = "snow_corner" - }, -/turf/simulated/floor/plasteel, -/area/engine/mechanic_workshop) -"fwM" = ( -/obj/structure/snow{ - dir = 8; - icon_state = "snow_corner" - }, -/turf/simulated/floor/plasteel, -/area/hallway/primary/starboard/west) "fyM" = ( /obj/structure/table/reinforced, /obj/item/clothing/gloves/color/latex/nitrile, @@ -97110,18 +94923,11 @@ }, /turf/simulated/floor/plasteel/dark, /area/tcommsat/chamber) -"fCH" = ( -/obj/structure/snow, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "green" - }, -/area/hallway/secondary/exit) "fGr" = ( /obj/structure/sign/greencross, /turf/simulated/shuttle/wall{ - dir = 2; - icon_state = "swall12" + icon_state = "swall12"; + dir = 2 }, /area/shuttle/escape) "fGD" = ( @@ -97132,22 +94938,10 @@ dir = 1 }, /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "bot" + icon_state = "bot"; + dir = 1 }, /area/shuttle/escape) -"fHf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plasteel{ - icon_state = "dark" - }, -/area/security/prison/cell_block/A) "fRL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/item/radio/intercom{ @@ -97155,60 +94949,16 @@ }, /turf/simulated/floor/plasteel, /area/crew_quarters/dorms) -"fTX" = ( -/obj/structure/snow, -/obj/item/a_gift, -/obj/item/a_gift, -/obj/item/nanomob_card, -/turf/simulated/floor/carpet/black, -/area/chapel/office) "fUo" = ( /obj/machinery/light, /obj/structure/chair/comfy/shuttle{ dir = 1 }, /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "bot" - }, -/area/shuttle/escape) -"fWZ" = ( -/turf/simulated/floor/plasteel, -/area/engine/mechanic_workshop) -"fYr" = ( -/obj/structure/chair/sofa{ + icon_state = "bot"; dir = 1 }, -/obj/item/decorations/sticky_decorations/flammable/tinsel/red{ - pixel_y = 19 - }, -/obj/structure/snow, -/turf/simulated/floor/wood, -/area/hallway/secondary/exit) -"fYH" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters{ - density = 0; - dir = 8; - icon_state = "open"; - id_tag = "kitchenbar"; - name = "Kitchen Shutters"; - opacity = 0 - }, -/obj/machinery/door/window/eastleft{ - base_state = "right"; - icon_state = "right"; - name = "Kitchen"; - req_access_txt = "28" - }, -/obj/item/reagent_containers/food/snacks/candy/gummybear/wtf, -/turf/simulated/floor/plasteel{ - dir = 2; - icon_state = "cafeteria"; - tag = "icon-cafeteria (NORTHEAST)" - }, -/area/crew_quarters/kitchen) +/area/shuttle/escape) "fZO" = ( /obj/structure/table/reinforced, /obj/item/storage/backpack/medic, @@ -97222,125 +94972,26 @@ /obj/structure/table/reinforced, /turf/simulated/shuttle/floor4, /area/shuttle/escape) -"gdQ" = ( -/obj/item/gift, -/obj/structure/snow, -/obj/item/toy/figure/scientist, -/obj/item/nanomob_card, -/obj/item/toy/plushie/slimeplushie, -/turf/simulated/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/explab) "ghD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, /turf/simulated/floor/plasteel, /area/crew_quarters/dorms) -"gkX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/item/decorations/sticky_decorations/flammable/tinsel/purple{ - pixel_y = 19 - }, -/turf/simulated/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) "gmY" = ( /obj/structure/chair/comfy/shuttle, /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "bot" + icon_state = "bot"; + dir = 1 }, /area/shuttle/escape) -"gpk" = ( -/obj/structure/snow, -/obj/item/a_gift, -/obj/item/toy/figure/engineer, -/obj/item/toy/spinningtoy, -/obj/item/toy/carpplushie/dragon, -/obj/item/nanomob_card, -/turf/simulated/floor/plasteel, -/area/engine/equipmentstorage) -"gqt" = ( -/obj/structure/snow, -/turf/simulated/floor/carpet, -/area/ntrep) -"grx" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters{ - density = 0; - dir = 8; - icon_state = "open"; - id_tag = "kitchenbar"; - name = "Kitchen Shutters"; - opacity = 0 - }, -/obj/machinery/door/window/eastleft{ - base_state = "right"; - icon_state = "right"; - name = "Kitchen"; - req_access_txt = "28" - }, -/obj/item/reagent_containers/food/snacks/candy/jellybean/wtf, -/turf/simulated/floor/plasteel{ - dir = 2; - icon_state = "cafeteria"; - tag = "icon-cafeteria (NORTHEAST)" - }, -/area/crew_quarters/kitchen) -"gvu" = ( -/obj/structure/snow{ - dir = 5; - icon_state = "snow_corner" - }, -/turf/simulated/floor/plasteel, -/area/quartermaster/miningdock) -"gxv" = ( -/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{ - dir = 1; - icon_state = "redcorner" - }, -/area/security/prison/cell_block/A) "gyR" = ( /turf/simulated/floor/plasteel{ - dir = 1; + tag = "icon-whiteblue (NORTH)"; icon_state = "whiteblue"; - tag = "icon-whiteblue (NORTH)" + dir = 1 }, /area/shuttle/escape) -"gyU" = ( -/obj/structure/chair/stool, -/obj/structure/snow, -/turf/simulated/floor/plasteel, -/area/crew_quarters/locker) -"gAw" = ( -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "barber" - }, -/area/security/permabrig) -"gAT" = ( -/obj/item/decorations/sticky_decorations/flammable/tinsel/red{ - pixel_y = 19 - }, -/turf/simulated/floor/wood, -/area/security/vacantoffice) -"gDP" = ( -/obj/structure/snow, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) "gFG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 @@ -97351,18 +95002,6 @@ }, /turf/simulated/floor/plasteel, /area/crew_quarters/dorms) -"gGg" = ( -/obj/structure/snow, -/turf/simulated/floor/wood, -/area/hallway/secondary/exit) -"gLx" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/courtroom) "gMZ" = ( /obj/machinery/atmospherics/pipe/simple/insulated{ dir = 6 @@ -97381,125 +95020,12 @@ }, /turf/simulated/floor/plating, /area/toxins/mixing) -"gOo" = ( -/obj/structure/snow, -/turf/simulated/floor/plasteel, -/area/quartermaster/miningdock) -"gQy" = ( -/obj/structure/snow, -/turf/simulated/floor/plasteel{ - dir = 2; - icon_state = "cult"; - tag = "icon-cult" - }, -/area/magistrateoffice) "gQL" = ( /obj/machinery/computer/card, /turf/simulated/shuttle/floor{ icon_state = "floor4" }, /area/shuttle/administration) -"gSs" = ( -/obj/item/decorations/sticky_decorations/flammable/tinsel/green{ - pixel_y = 19 - }, -/obj/structure/bonfire/dense, -/obj/structure/snow, -/turf/simulated/floor/wood, -/area/hallway/secondary/exit) -"gUP" = ( -/obj/structure/flora/tree/pine/xmas, -/obj/structure/snow{ - dir = 5; - icon_state = "snow_corner" - }, -/turf/simulated/floor/plasteel{ - icon_state = "vault"; - tag = "icon-vault" - }, -/area/crew_quarters/dorms) -"gWg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/snow, -/turf/simulated/floor/plasteel{ - dir = 5; - icon_state = "dark"; - tag = "icon-vault (NORTHEAST)" - }, -/area/turret_protected/ai) -"haz" = ( -/obj/structure/chair/stool, -/obj/structure/snow{ - dir = 1; - icon_state = "snow_corner" - }, -/turf/simulated/floor/plasteel, -/area/atmos) -"haB" = ( -/obj/item/decorations/sticky_decorations/flammable/tinsel/blue{ - pixel_y = 19 - }, -/obj/item/decorations/sticky_decorations/flammable/snowman, -/obj/structure/snow, -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "white" - }, -/area/medical/reception) -"haF" = ( -/obj/structure/snow{ - dir = 1; - icon_state = "snow_corner" - }, -/turf/simulated/floor/plasteel, -/area/quartermaster/storage) -"hcT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"heR" = ( -/obj/structure/table/wood, -/obj/item/paper_bin/nanotrasen, -/obj/item/pen, -/obj/structure/snow{ - dir = 1; - icon_state = "snow_surround" - }, -/turf/simulated/floor/carpet, -/area/bridge/meeting_room) -"hlm" = ( -/obj/effect/decal/warning_stripes/white/hollow, -/obj/structure/snow{ - dir = 1; - icon_state = "snow_corner" - }, -/turf/simulated/floor/plasteel{ - icon_state = "dark" - }, -/area/crew_quarters/dorms) -"hlT" = ( -/obj/item/decorations/sticky_decorations/flammable/tinsel/blue{ - pixel_y = 19 - }, -/obj/structure/snow{ - icon_state = "snow_corner" - }, -/obj/structure/snow{ - dir = 1; - icon_state = "snow_corner" - }, -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "white" - }, -/area/medical/reception) -"hnS" = ( -/obj/structure/chair/sofa, -/obj/structure/snow, -/turf/simulated/floor/wood, -/area/hallway/secondary/exit) "hsy" = ( /obj/machinery/atmospherics/pipe/simple/insulated{ dir = 4 @@ -97521,18 +95047,6 @@ }, /turf/simulated/floor/plating, /area/toxins/mixing) -"hxa" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - tag = "" - }, -/obj/structure/chair/comfy/red{ - dir = 8 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/captain) "hyv" = ( /obj/structure/cable, /obj/machinery/power/apc{ @@ -97545,74 +95059,12 @@ }, /turf/simulated/floor/bluegrid, /area/tcommsat/chamber) -"hCY" = ( -/obj/item/decorations/sticky_decorations/flammable/tinsel/yellow{ - pixel_y = 19 - }, -/turf/simulated/floor/plasteel, -/area/engine/break_room) -"hDe" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/snow{ - dir = 4; - icon_state = "snow_corner" - }, -/obj/structure/snow{ - dir = 8; - icon_state = "snow_corner" - }, -/turf/simulated/floor/plasteel, -/area/quartermaster/storage) -"hED" = ( -/obj/item/decorations/sticky_decorations/flammable/snowman, -/obj/structure/snow, -/turf/simulated/floor/plasteel, -/area/engine/break_room) -"hFn" = ( -/obj/structure/table, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/structure/snow, -/turf/simulated/floor/plasteel, -/area/crew_quarters/locker) -"hHC" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/landmark/start{ - name = "Security Officer" - }, -/obj/structure/snow{ - dir = 8; - icon_state = "snow_corner" - }, -/turf/simulated/floor/plasteel, -/area/security/main) "hJi" = ( /turf/simulated/floor/plasteel{ - icon_state = "whiteblue"; - tag = "icon-whiteblue" + tag = "icon-whiteblue"; + icon_state = "whiteblue" }, /area/shuttle/escape) -"hLc" = ( -/obj/structure/snow{ - dir = 9; - icon_state = "snow_corner" - }, -/turf/simulated/floor/bluegrid, -/area/turret_protected/ai) "iau" = ( /obj/structure/closet/crate/internals, /obj/item/clothing/mask/breath, @@ -97624,64 +95076,20 @@ /obj/item/tank/emergency_oxygen/engi, /obj/item/tank/emergency_oxygen/engi, /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "bot" + icon_state = "bot"; + dir = 1 }, /area/shuttle/escape) -"idV" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - tag = "" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/snow, -/turf/simulated/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"ihL" = ( -/obj/structure/snow{ - dir = 9; - icon_state = "snow_corner" - }, -/turf/simulated/floor/plasteel, -/area/hallway/secondary/exit) -"ihP" = ( -/obj/structure/snow{ - dir = 1; - icon_state = "snow_corner" - }, -/turf/simulated/floor/plasteel, -/area/quartermaster/miningdock) "ioI" = ( /obj/structure/reagent_dispensers/fueltank/chem{ pixel_x = -32; pixel_y = 0 }, /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "bot" + icon_state = "bot"; + dir = 1 }, /area/shuttle/escape) -"iqh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/snow{ - dir = 1; - icon_state = "snow_corner" - }, -/turf/simulated/floor/plasteel{ - dir = 5; - icon_state = "dark"; - tag = "icon-vault (NORTHEAST)" - }, -/area/turret_protected/ai) "iwt" = ( /obj/machinery/computer/station_alert, /obj/structure/sign/poster/official/nanotrasen_logo{ @@ -97693,32 +95101,6 @@ icon_state = "darkyellow" }, /area/shuttle/escape) -"iwP" = ( -/obj/structure/chair/comfy/green{ - dir = 8 - }, -/turf/simulated/floor/plasteel{ - icon_state = "grimy" - }, -/area/hallway/secondary/entry) -"iyx" = ( -/obj/structure/chair/sofa/corner, -/obj/structure/snow, -/turf/simulated/floor/wood, -/area/hallway/secondary/exit) -"iyH" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/snow, -/obj/item/gift, -/obj/item/toy/figure/cmo, -/obj/item/toy/prize/odysseus, -/obj/item/toy/plushie/tuxedo_cat, -/obj/item/nanomob_card, -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "white" - }, -/area/medical/reception) "izn" = ( /obj/machinery/atmospherics/unary/passive_vent{ dir = 1 @@ -97733,14 +95115,6 @@ /obj/structure/chair/comfy/shuttle, /turf/simulated/shuttle/floor4, /area/shuttle/escape) -"iDx" = ( -/obj/effect/decal/warning_stripes/yellow/hollow, -/obj/structure/snow{ - dir = 1; - icon_state = "snow_corner" - }, -/turf/simulated/floor/plasteel, -/area/quartermaster/storage) "iJf" = ( /obj/machinery/atmospherics/pipe/simple/insulated, /obj/machinery/door/poddoor{ @@ -97760,26 +95134,6 @@ }, /turf/simulated/floor/plating, /area/toxins/mixing) -"iLE" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/snow, -/turf/simulated/floor/plasteel, -/area/security/main) -"iMO" = ( -/obj/structure/snow{ - dir = 4; - icon_state = "snow_corner" - }, -/turf/simulated/floor/bluegrid, -/area/turret_protected/ai) "iNz" = ( /obj/machinery/atmospherics/pipe/simple/insulated{ dir = 4 @@ -97791,57 +95145,13 @@ "iPL" = ( /obj/structure/sign/greencross, /turf/simulated/shuttle/wall{ - dir = 2; - icon_state = "swall3" + icon_state = "swall3"; + dir = 2 }, /area/shuttle/escape) -"iRt" = ( -/obj/structure/snow, -/turf/simulated/floor/wood, -/area/blueshield) -"iRU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/snow{ - dir = 1; - icon_state = "snow_corner" - }, -/turf/simulated/floor/plasteel, -/area/quartermaster/storage) -"iSS" = ( -/obj/structure/snow{ - dir = 8; - icon_state = "snow_corner" - }, -/turf/simulated/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) "iUc" = ( /turf/simulated/wall/r_wall, /area/tcommsat/chamber) -"iXO" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/item/decorations/sticky_decorations/flammable/tinsel/purple{ - pixel_y = 19 - }, -/turf/simulated/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) "iZs" = ( /obj/effect/spawner/window/reinforced, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -97853,22 +95163,11 @@ icon_state = "brown" }, /area/shuttle/escape) -"jjr" = ( -/obj/structure/snow{ - icon_state = "snow_corner" - }, -/turf/simulated/floor/plasteel, -/area/hallway/secondary/exit) -"jlo" = ( -/obj/item/decorations/sticky_decorations/flammable/snowman, -/obj/structure/snow, -/turf/simulated/floor/carpet, -/area/ntrep) "jnJ" = ( /obj/machinery/light/spot{ - dir = 1; + tag = "icon-tube1 (NORTH)"; icon_state = "tube1"; - tag = "icon-tube1 (NORTH)" + dir = 1 }, /obj/machinery/door_control{ id = "adminshuttleblast"; @@ -97893,51 +95192,18 @@ icon_state = "floor4" }, /area/shuttle/administration) -"jrK" = ( -/obj/item/gift, -/obj/item/clothing/head/cowboyhat/white, -/obj/structure/snow, -/obj/item/toy/figure/warden, -/obj/item/toy/prize/durand, -/obj/item/nanomob_card, -/obj/item/gun/projectile/shotgun/toy, -/obj/item/ammo_box/magazine/internal/shot/toy, -/turf/simulated/floor/plasteel, -/area/security/main) -"jGi" = ( -/obj/item/decorations/sticky_decorations/flammable/snowman, -/obj/structure/snow, -/turf/simulated/floor/carpet, -/area/lawoffice) -"jJe" = ( -/obj/structure/snow, -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "green" - }, -/area/hallway/secondary/exit) "jJT" = ( /obj/structure/table/reinforced, /obj/item/storage/fancy/donut_box, /turf/simulated/shuttle/floor4, /area/shuttle/escape) -"jMO" = ( -/obj/structure/snow{ - dir = 8; - icon_state = "snow_corner" - }, -/turf/simulated/floor/plasteel{ - dir = 2; - icon_state = "yellowcorner" - }, -/area/hallway/primary/aft) "jMV" = ( /obj/structure/bed/roller, /obj/machinery/iv_drip, /turf/simulated/floor/plasteel{ - dir = 4; + tag = "icon-whiteblue (EAST)"; icon_state = "whiteblue"; - tag = "icon-whiteblue (EAST)" + dir = 4 }, /area/shuttle/escape) "jPN" = ( @@ -97969,21 +95235,15 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plating, /area/maintenance/aft) -"jSU" = ( -/obj/structure/snow, -/obj/item/a_gift, -/obj/item/nanomob_card, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) "kaG" = ( /obj/structure/table/reinforced, /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{ - dir = 4; + tag = "icon-whiteblue (EAST)"; icon_state = "whiteblue"; - tag = "icon-whiteblue (EAST)" + dir = 4 }, /area/shuttle/escape) "kcF" = ( @@ -97998,8 +95258,8 @@ /obj/structure/table/wood, /obj/item/deck/cards, /turf/simulated/floor/plasteel{ - dir = 2; - icon_state = "neutralcorner" + icon_state = "neutralcorner"; + dir = 2 }, /area/crew_quarters/dorms) "kjI" = ( @@ -98012,59 +95272,12 @@ }, /turf/simulated/floor/plasteel, /area/crew_quarters/dorms) -"kmj" = ( -/obj/structure/chair/sofa/right{ - dir = 8 - }, -/obj/structure/snow, -/turf/simulated/floor/wood, -/area/hallway/secondary/exit) -"koB" = ( -/obj/structure/snow, -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "darkredcorners" - }, -/area/security/brig) -"ksw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/snow, -/turf/simulated/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) "ksF" = ( /obj/structure/chair/comfy/shuttle{ dir = 8 }, /turf/simulated/shuttle/floor4, /area/shuttle/escape) -"ktV" = ( -/obj/structure/snow{ - dir = 1; - icon_state = "snow_corner" - }, -/turf/simulated/floor/plasteel, -/area/hallway/secondary/exit) -"kvd" = ( -/obj/structure/chair/wood/wings{ - dir = 8; - icon_state = "wooden_chair_wings"; - tag = "icon-wooden_chair_wings (WEST)" - }, -/obj/structure/snow{ - dir = 8; - icon_state = "snow_corner" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) "kyW" = ( /obj/structure/table, /obj/item/weldingtool/largetank{ @@ -98079,17 +95292,10 @@ pixel_y = 8 }, /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "bot" + icon_state = "bot"; + dir = 1 }, /area/shuttle/escape) -"kBs" = ( -/obj/structure/snow{ - dir = 8; - icon_state = "snow_corner" - }, -/turf/simulated/floor/plasteel, -/area/quartermaster/storage) "kCz" = ( /obj/effect/decal/warning_stripes/west, /obj/structure/closet/firecloset, @@ -98102,8 +95308,8 @@ }, /obj/structure/chair/comfy/shuttle, /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "bot" + icon_state = "bot"; + dir = 1 }, /area/shuttle/escape) "kHU" = ( @@ -98114,33 +95320,11 @@ icon_state = "vault" }, /area/shuttle/escape) -"kHX" = ( -/obj/structure/snow{ - dir = 5; - icon_state = "snow_corner" - }, -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "green" - }, -/area/hallway/secondary/exit) "kIR" = ( /obj/structure/lattice/catwalk, /obj/machinery/atmospherics/pipe/simple/hidden/yellow, /turf/space, /area/space/nearstation) -"kJO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/snow, -/turf/simulated/floor/plasteel, -/area/quartermaster/office) -"kJW" = ( -/obj/structure/chair/sofa/left{ - dir = 4 - }, -/obj/structure/snow, -/turf/simulated/floor/wood, -/area/hallway/secondary/exit) "kLF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 @@ -98156,13 +95340,13 @@ /obj/machinery/cell_charger, /obj/item/stock_parts/cell/high, /obj/machinery/light/small{ - dir = 8; + tag = "icon-bulb1 (WEST)"; icon_state = "bulb1"; - tag = "icon-bulb1 (WEST)" + dir = 8 }, /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "bot" + icon_state = "bot"; + dir = 1 }, /area/shuttle/escape) "kNZ" = ( @@ -98184,31 +95368,6 @@ /obj/structure/table, /turf/simulated/floor/plasteel, /area/shuttle/escape) -"kQD" = ( -/obj/structure/snow, -/obj/item/decorations/sticky_decorations/flammable/snowman, -/turf/simulated/floor/plasteel{ - dir = 5; - icon_state = "dark"; - tag = "icon-vault (NORTHEAST)" - }, -/area/turret_protected/ai) -"kTw" = ( -/turf/simulated/floor/carpet, -/area/bridge/meeting_room) -"kTV" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/structure/snow{ - dir = 1; - icon_state = "snow_corner" - }, -/turf/simulated/floor/plasteel, -/area/hallway/secondary/exit) "kUs" = ( /obj/machinery/computer/atmos_alert, /turf/simulated/floor/plasteel{ @@ -98219,8 +95378,8 @@ "law" = ( /obj/machinery/ai_status_display, /turf/simulated/shuttle/wall{ - dir = 2; - icon_state = "swall3" + icon_state = "swall3"; + dir = 2 }, /area/shuttle/escape) "lax" = ( @@ -98229,57 +95388,19 @@ icon_state = "redcorner" }, /area/shuttle/escape) -"laU" = ( -/obj/structure/table/wood, -/obj/item/deck/cards, -/obj/item/dice/d20, -/obj/item/dice, -/obj/item/taperecorder{ - pixel_y = 0 - }, -/obj/structure/snow{ - icon_state = "snow_corner" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) "ldp" = ( /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "bot" + icon_state = "bot"; + dir = 1 }, /area/shuttle/escape) "leU" = ( /turf/space, /turf/simulated/shuttle/wall{ - dir = 2; - icon_state = "swall_f10" + icon_state = "swall_f10"; + dir = 2 }, /area/shuttle/escape) -"lgQ" = ( -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"ljp" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - tag = "" - }, -/obj/effect/landmark{ - name = "Marauder Entry" - }, -/obj/structure/snow{ - dir = 9; - icon_state = "snow_corner" - }, -/turf/simulated/floor/plasteel, -/area/bridge) -"ljD" = ( -/obj/item/decorations/sticky_decorations/flammable/tinsel/red{ - pixel_y = 19 - }, -/turf/simulated/floor/wood, -/area/maintenance/abandonedbar) "lkw" = ( /obj/machinery/light{ dir = 8 @@ -98295,16 +95416,6 @@ icon_state = "cmo" }, /area/shuttle/escape) -"lmr" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - level = 2 - }, -/obj/structure/snow{ - dir = 1; - icon_state = "snow_corner" - }, -/turf/simulated/floor/plasteel, -/area/atmos) "lop" = ( /obj/structure/chair{ dir = 8 @@ -98314,74 +95425,12 @@ }, /turf/simulated/floor/plasteel, /area/crew_quarters/dorms) -"lqp" = ( -/obj/structure/chair/wood/wings, -/obj/structure/snow{ - dir = 10; - icon_state = "snow_corner" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"ltW" = ( -/obj/item/decorations/sticky_decorations/flammable/tinsel/purple{ - pixel_y = 19 - }, -/turf/simulated/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/misc_lab) -"luD" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/snow{ - dir = 10; - icon_state = "snow_corner" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/courtroom) -"lvS" = ( -/obj/structure/table/reinforced, -/obj/item/folder{ - pixel_x = -4 - }, -/obj/item/folder/red{ - pixel_y = 3 - }, -/obj/item/folder/blue{ - pixel_x = 5 - }, -/obj/item/folder/yellow{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/stamp/law, -/obj/item/pen/multi, -/turf/simulated/floor/plasteel{ - dir = 2; - icon_state = "cult"; - tag = "icon-cult" - }, -/area/lawoffice) "lxD" = ( /turf/simulated/floor/plasteel{ dir = 1; icon_state = "neutral" }, /area/shuttle/escape) -"lJY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/item/decorations/sticky_decorations/flammable/snowman, -/obj/structure/snow, -/turf/simulated/floor/plasteel, -/area/quartermaster/office) -"lKx" = ( -/turf/simulated/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/security/permabrig) "lKS" = ( /turf/simulated/floor/plasteel{ dir = 2; @@ -98394,7 +95443,6 @@ icon_state = "alarm0"; pixel_x = -22 }, -/obj/structure/snow, /turf/simulated/floor/plasteel, /area/atmos) "lLQ" = ( @@ -98404,46 +95452,17 @@ icon_state = "darkblue" }, /area/shuttle/escape) -"lPZ" = ( -/obj/item/decorations/sticky_decorations/flammable/tinsel/green{ - pixel_y = 19 - }, -/turf/simulated/floor/carpet, -/area/chapel/main) "lQS" = ( /obj/structure/shuttle/engine/propulsion/burst{ dir = 8 }, /turf/simulated/floor/plating, /turf/simulated/shuttle/wall{ - dir = 2; + tag = "icon-swall_f6"; icon_state = "swall_f6"; - tag = "icon-swall_f6" + dir = 2 }, /area/shuttle/pod_3) -"lTc" = ( -/obj/item/decorations/sticky_decorations/flammable/tinsel/red{ - pixel_y = 19 - }, -/turf/simulated/floor/plasteel{ - dir = 2; - icon_state = "cult"; - tag = "icon-cult" - }, -/area/magistrateoffice) -"mam" = ( -/obj/structure/snow, -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "white" - }, -/area/medical/reception) -"mkp" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/snacks/chocolateegg, -/obj/structure/snow, -/turf/simulated/floor/wood, -/area/hallway/secondary/exit) "mkE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/yellow, /obj/machinery/atmospherics/unary/vent_scrubber{ @@ -98478,19 +95497,10 @@ }, /obj/machinery/light/small, /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "bot" + icon_state = "bot"; + dir = 1 }, /area/shuttle/escape) -"mtS" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - tag = "" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) "mxT" = ( /obj/machinery/sleeper, /turf/simulated/floor/plasteel{ @@ -98506,18 +95516,6 @@ }, /turf/simulated/floor/plasteel, /area/crew_quarters/dorms) -"mzR" = ( -/obj/structure/snow, -/turf/simulated/floor/plasteel, -/area/engine/break_room) -"mzT" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/snow{ - dir = 6; - icon_state = "snow_corner" - }, -/turf/simulated/floor/plasteel, -/area/quartermaster/office) "mGt" = ( /obj/structure/closet/crate/engineering, /obj/item/storage/toolbox/electrical{ @@ -98530,15 +95528,10 @@ pixel_y = -4 }, /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "bot" + icon_state = "bot"; + dir = 1 }, /area/shuttle/escape) -"mLi" = ( -/obj/structure/snow, -/obj/item/decorations/sticky_decorations/flammable/snowman, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) "mMw" = ( /obj/structure/chair/comfy/shuttle{ dir = 8 @@ -98550,35 +95543,6 @@ icon_state = "white" }, /area/shuttle/escape) -"mSl" = ( -/obj/structure/chair/wood/wings{ - dir = 4; - icon_state = "wooden_chair_wings"; - tag = "icon-wooden_chair_wings (EAST)" - }, -/obj/effect/landmark/start{ - name = "Civilian" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"mVw" = ( -/obj/machinery/door/firedoor, -/obj/structure/snow, -/turf/simulated/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"mXd" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 6; - initialize_directions = 6; - level = 2 - }, -/obj/structure/snow, -/turf/simulated/floor/plasteel, -/area/atmos) "naH" = ( /obj/structure/chair/comfy/shuttle{ dir = 4 @@ -98591,30 +95555,6 @@ }, /turf/simulated/wall/r_wall, /area/maintenance/fsmaint) -"nkG" = ( -/obj/structure/snow, -/obj/item/a_gift, -/obj/item/toy/figure/ce, -/obj/item/toy/carpplushie/gold, -/obj/item/toy/blink, -/obj/item/nanomob_card, -/turf/simulated/floor/plasteel, -/area/engine/equipmentstorage) -"npO" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/snow, -/turf/simulated/floor/plasteel, -/area/quartermaster/storage) "nqX" = ( /obj/structure/table, /obj/item/paper{ @@ -98624,16 +95564,6 @@ }, /turf/simulated/floor/plasteel, /area/crew_quarters/dorms) -"nrk" = ( -/obj/structure/snow{ - dir = 1; - icon_state = "snow_surround" - }, -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "green" - }, -/area/hallway/secondary/exit) "ntp" = ( /obj/structure/table/reinforced, /obj/machinery/cell_charger, @@ -98643,27 +95573,12 @@ icon_state = "vault" }, /area/shuttle/escape) -"nua" = ( -/obj/structure/snow{ - dir = 5; - icon_state = "snow_corner" - }, -/turf/simulated/floor/wood, -/area/ntrep) "nvl" = ( /turf/simulated/floor/plasteel{ dir = 8; icon_state = "neutralcorner" }, /area/shuttle/escape) -"nAk" = ( -/obj/item/decorations/sticky_decorations/flammable/tinsel/red{ - pixel_y = 19 - }, -/obj/item/decorations/sticky_decorations/flammable/snowman, -/obj/structure/snow, -/turf/simulated/floor/carpet, -/area/magistrateoffice) "nCT" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -98682,25 +95597,13 @@ /obj/structure/fans/tiny, /turf/simulated/floor/plasteel, /area/shuttle/escape) -"nGo" = ( -/obj/item/gift, -/obj/structure/snow, -/obj/item/toy/figure/clown, -/obj/item/toy/prize/honk, -/obj/item/toy/crayon/mime, -/obj/item/nanomob_card, -/turf/simulated/floor/plasteel{ - icon_state = "vault"; - tag = "icon-vault" - }, -/area/crew_quarters/dorms) "nHW" = ( /obj/structure/chair/comfy/shuttle{ dir = 1 }, /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "bot" + icon_state = "bot"; + dir = 1 }, /area/shuttle/escape) "nIj" = ( @@ -98714,89 +95617,18 @@ icon_state = "neutralfull" }, /area/shuttle/escape) -"nLS" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/structure/snow{ - dir = 5; - icon_state = "snow_corner" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/courtroom) "nMi" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging{ dir = 9 }, /turf/space, /area/space/nearstation) -"nMD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/snow, -/turf/simulated/floor/plasteel, -/area/atmos) -"nOb" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/item/gift, -/obj/structure/snow, -/obj/item/toy/figure/mime, -/obj/item/toy/prize/seraph, -/obj/item/toy/crayon/rainbow, -/obj/item/nanomob_card, -/turf/simulated/floor/plasteel{ - icon_state = "dark" - }, -/area/crew_quarters/dorms) -"nOr" = ( -/obj/machinery/atmospherics/pipe/simple/visible/purple, -/obj/structure/snow{ - dir = 1; - icon_state = "snow_corner" - }, -/turf/simulated/floor/plasteel, -/area/atmos) -"nRM" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/snow{ - dir = 9; - icon_state = "snow_corner" - }, -/turf/simulated/floor/plasteel, -/area/bridge) "nRP" = ( /obj/structure/table, /obj/item/storage/firstaid, /obj/effect/decal/warning_stripes/yellow/hollow, /turf/simulated/floor/plasteel, /area/shuttle/escape) -"nSR" = ( -/obj/effect/landmark/start{ - name = "Station Engineer" - }, -/obj/structure/chair/comfy/red{ - dir = 4 - }, -/obj/structure/snow, -/turf/simulated/floor/plasteel, -/area/engine/break_room) "nVM" = ( /turf/simulated/floor/plasteel{ icon_state = "neutralcorner" @@ -98817,38 +95649,6 @@ icon_state = "neutralfull" }, /area/shuttle/escape) -"ofR" = ( -/obj/item/decorations/sticky_decorations/flammable/tinsel/green{ - pixel_y = 19 - }, -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "caution" - }, -/area/crew_quarters/dorms) -"ook" = ( -/obj/structure/snow, -/turf/simulated/floor/plasteel{ - dir = 5; - icon_state = "dark"; - tag = "icon-vault (NORTHEAST)" - }, -/area/turret_protected/ai) -"opx" = ( -/obj/effect/landmark/start{ - name = "Station Engineer" - }, -/obj/structure/chair/comfy/green{ - dir = 8 - }, -/obj/structure/snow, -/turf/simulated/floor/plasteel, -/area/engine/break_room) -"oqm" = ( -/obj/item/decorations/sticky_decorations/flammable/snowman, -/obj/structure/snow, -/turf/simulated/floor/plasteel, -/area/quartermaster/storage) "oqQ" = ( /obj/machinery/light, /obj/structure/chair/comfy/shuttle{ @@ -98858,31 +95658,11 @@ icon_state = "dark" }, /area/shuttle/escape) -"osF" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/courtroom) -"otC" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/snow{ - dir = 4; - icon_state = "snow_corner" - }, -/turf/simulated/floor/plasteel, -/area/engine/equipmentstorage) "oyv" = ( /obj/machinery/hologram/holopad, -/obj/item/decorations/sticky_decorations/flammable/tinsel/red{ - pixel_y = 19 - }, /turf/simulated/floor/plasteel{ - dir = 2; - icon_state = "neutralcorner" + icon_state = "neutralcorner"; + dir = 2 }, /area/crew_quarters/dorms) "oDA" = ( @@ -98890,28 +95670,10 @@ dir = 8 }, /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "bot" + icon_state = "bot"; + dir = 1 }, /area/shuttle/escape) -"oKO" = ( -/obj/structure/snow, -/turf/simulated/floor/plasteel, -/area/security/main) -"oNH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/snow{ - dir = 6; - icon_state = "snow_corner" - }, -/turf/simulated/floor/plasteel, -/area/hallway/primary/port) -"oOM" = ( -/obj/structure/snow, -/turf/simulated/floor/wood, -/area/crew_quarters/courtroom) "oOZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/yellow, /turf/simulated/wall/r_wall, @@ -98942,31 +95704,6 @@ tag = "icon-vault (NORTHEAST)" }, /area/tcommsat/chamber) -"oQO" = ( -/obj/structure/snow{ - dir = 9; - icon_state = "snow_corner" - }, -/turf/simulated/floor/plasteel, -/area/quartermaster/storage) -"oRw" = ( -/obj/item/decorations/sticky_decorations/flammable/tinsel/green{ - pixel_y = 19 - }, -/obj/structure/flora/tree/pine/xmas, -/obj/structure/snow, -/turf/simulated/floor/plasteel, -/area/quartermaster/storage) -"oRL" = ( -/obj/structure/snow{ - dir = 10; - icon_state = "snow_corner" - }, -/turf/simulated/floor/plasteel{ - dir = 0; - icon_state = "green" - }, -/area/hallway/secondary/exit) "oRM" = ( /obj/structure/table/reinforced, /obj/machinery/recharger, @@ -98975,8 +95712,8 @@ "oUw" = ( /obj/structure/table/reinforced, /obj/machinery/light{ - dir = 8; - icon_state = "tube1" + icon_state = "tube1"; + dir = 8 }, /obj/item/reagent_containers/food/drinks/mug/med, /turf/simulated/floor/plasteel{ @@ -98984,18 +95721,6 @@ icon_state = "cmo" }, /area/shuttle/escape) -"oUJ" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plasteel, -/area/engine/equipmentstorage) -"oWs" = ( -/obj/item/gift, -/obj/structure/snow, -/obj/item/toy/figure/qm, -/obj/item/toy/prize/fireripley, -/obj/item/nanomob_card, -/turf/simulated/floor/plasteel, -/area/quartermaster/storage) "oZV" = ( /obj/machinery/door/airlock/centcom{ id_tag = "adminshuttle"; @@ -99014,52 +95739,6 @@ }, /turf/simulated/shuttle/floor4, /area/shuttle/escape) -"pfa" = ( -/obj/item/decorations/sticky_decorations/flammable/tinsel/red{ - pixel_y = 19 - }, -/obj/structure/snow, -/turf/simulated/floor/plasteel{ - icon_state = "grimy" - }, -/area/chapel/office) -"pgr" = ( -/obj/structure/snow{ - icon_state = "snow_corner" - }, -/turf/simulated/floor/plasteel{ - dir = 2; - icon_state = "cult"; - tag = "icon-cult" - }, -/area/lawoffice) -"pjK" = ( -/obj/structure/snow, -/turf/simulated/floor/plasteel, -/area/quartermaster/storage) -"pmA" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/snow{ - dir = 1; - icon_state = "snow_surround" - }, -/turf/simulated/floor/plasteel, -/area/crew_quarters/locker) -"pqc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/snow, -/turf/simulated/floor/plasteel, -/area/security/processing) "pwN" = ( /obj/machinery/door_control{ id = "adminshuttleblast"; @@ -99075,15 +95754,6 @@ /obj/effect/landmark/battle_mob_point, /turf/simulated/floor/engine, /area/holodeck/alphadeck) -"pyk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/table/wood, -/obj/item/reagent_containers/food/snacks/sliceable/turkey{ - pixel_y = 8 - }, -/obj/item/reagent_containers/food/snacks/turkeyslice, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) "pzr" = ( /obj/structure/cable{ d1 = 4; @@ -99104,14 +95774,6 @@ }, /turf/simulated/floor/plating, /area/maintenance/aft) -"pDb" = ( -/obj/structure/chair/wood/wings{ - dir = 4; - icon_state = "wooden_chair_wings"; - tag = "icon-wooden_chair_wings (EAST)" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) "pDl" = ( /obj/structure/table/reinforced, /obj/item/storage/fancy/donut_box, @@ -99122,62 +95784,16 @@ "pGQ" = ( /obj/machinery/mech_bay_recharge_port, /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "bot" + icon_state = "bot"; + dir = 1 }, /area/shuttle/escape) -"pKw" = ( -/obj/structure/chair/comfy/green{ - dir = 1 - }, -/obj/item/decorations/sticky_decorations/flammable/tinsel/red{ - pixel_y = 19 - }, -/turf/simulated/floor/plasteel{ - icon_state = "grimy" - }, -/area/hallway/secondary/entry) -"pUZ" = ( -/obj/item/decorations/sticky_decorations/flammable/snowman, -/obj/structure/snow, -/turf/simulated/floor/plasteel{ - icon_state = "grimy" - }, -/area/chapel/office) -"pWt" = ( -/obj/machinery/dna_scannernew, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/item/decorations/sticky_decorations/flammable/tinsel/blue{ - pixel_y = 19 - }, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "whitepurplefull"; - tag = "icon-whitepurple (WEST)" - }, -/area/medical/genetics) -"pXx" = ( -/obj/structure/snow{ - dir = 10; - icon_state = "snow_corner" - }, -/turf/simulated/floor/plasteel, -/area/crew_quarters/locker) "pZO" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging{ dir = 10 }, /turf/space, /area/space/nearstation) -"qau" = ( -/obj/structure/chair/sofa/left{ - dir = 8 - }, -/obj/structure/snow, -/turf/simulated/floor/wood, -/area/hallway/secondary/exit) "qdA" = ( /obj/machinery/computer/secure_data, /turf/simulated/floor/plasteel{ @@ -99185,16 +95801,6 @@ icon_state = "darkred" }, /area/shuttle/escape) -"qeu" = ( -/obj/item/decorations/sticky_decorations/flammable/snowman, -/obj/structure/snow{ - dir = 10; - icon_state = "snow_corner" - }, -/turf/simulated/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/explab) "qgG" = ( /obj/machinery/door/airlock/external{ id_tag = "s_docking_airlock"; @@ -99206,27 +95812,6 @@ icon_state = "floor4" }, /area/shuttle/administration) -"qig" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/snow{ - icon_state = "snow_corner" - }, -/turf/simulated/floor/plasteel, -/area/hallway/secondary/exit) -"qkV" = ( -/obj/structure/snow{ - dir = 5; - icon_state = "snow_corner" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/courtroom) -"qnb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/snow, -/turf/simulated/floor/carpet, -/area/bridge/meeting_room) "qpX" = ( /obj/structure/chair/comfy/shuttle{ dir = 4 @@ -99235,47 +95820,12 @@ icon_state = "dark" }, /area/shuttle/escape) -"qqe" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - tag = "" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/snow{ - dir = 5; - icon_state = "snow_corner" - }, -/turf/simulated/floor/plasteel, -/area/quartermaster/miningdock) -"qsu" = ( -/obj/structure/snow{ - dir = 6; - icon_state = "snow_corner" - }, -/turf/simulated/floor/carpet, -/area/ntrep) "qsT" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, /turf/simulated/wall, /area/crew_quarters/dorms) -"qtT" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/snow{ - dir = 4; - icon_state = "snow_corner" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"quH" = ( -/obj/structure/snow, -/turf/simulated/floor/bluegrid, -/area/turret_protected/ai) "qxC" = ( /obj/structure/table/reinforced, /obj/item/storage/firstaid/o2{ @@ -99288,20 +95838,11 @@ pixel_y = 3 }, /turf/simulated/floor/plasteel{ - dir = 5; + tag = "icon-whiteblue (NORTHEAST)"; icon_state = "whiteblue"; - tag = "icon-whiteblue (NORTHEAST)" + dir = 5 }, /area/shuttle/escape) -"qFa" = ( -/obj/item/decorations/sticky_decorations/flammable/tinsel/green{ - pixel_y = 19 - }, -/turf/simulated/floor/wood{ - broken = 1; - icon_state = "wood-broken" - }, -/area/maintenance/abandonedbar) "qFg" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -99315,16 +95856,6 @@ }, /turf/simulated/floor/plasteel, /area/shuttle/escape) -"qKW" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/structure/snow, -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "redcorner" - }, -/area/security/processing) "qOo" = ( /obj/structure/chair{ dir = 4 @@ -99332,117 +95863,10 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/crew_quarters/dorms) -"qPF" = ( -/obj/structure/snow, -/turf/simulated/floor/plasteel, -/area/hallway/primary/starboard/west) -"qQm" = ( -/obj/item/decorations/sticky_decorations/flammable/tinsel/green{ - pixel_y = 19 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"qQU" = ( -/obj/structure/snow, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "browncorner" - }, -/area/hallway/primary/central/west) -"qRM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/snow{ - dir = 1; - icon_state = "snow_corner" - }, -/turf/simulated/floor/plasteel, -/area/hallway/primary/starboard/west) -"qSE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/item/decorations/sticky_decorations/flammable/tinsel/red{ - pixel_y = 19 - }, -/obj/structure/snow{ - dir = 8; - icon_state = "snow_surround" - }, -/turf/simulated/floor/carpet, -/area/bridge/meeting_room) "qUv" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging, /turf/space, /area/space/nearstation) -"qWE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/item/decorations/sticky_decorations/flammable/tinsel/purple{ - pixel_y = 19 - }, -/turf/simulated/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/lab) -"qZf" = ( -/obj/structure/snow{ - dir = 8; - icon_state = "snow_surround" - }, -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "white" - }, -/area/medical/reception) -"qZB" = ( -/obj/structure/snow{ - dir = 4; - icon_state = "snow_corner" - }, -/turf/simulated/floor/plasteel, -/area/hallway/secondary/exit) -"qZX" = ( -/obj/item/decorations/sticky_decorations/flammable/tinsel/red{ - pixel_y = 19 - }, -/obj/item/gift, -/obj/structure/snow, -/obj/item/toy/figure/cargotech, -/obj/item/toy/prize/deathripley, -/obj/item/nanomob_card, -/turf/simulated/floor/plasteel, -/area/quartermaster/storage) -"rat" = ( -/obj/structure/snow{ - icon_state = "snow_corner" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/courtroom) -"rbV" = ( -/obj/structure/table/wood, -/obj/item/radio/intercom/command, -/obj/structure/snow, -/turf/simulated/floor/carpet, -/area/bridge/meeting_room) -"rdi" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/item/decorations/sticky_decorations/flammable/tinsel/green{ - pixel_y = 19 - }, -/turf/simulated/floor/carpet, -/area/library) "reA" = ( /obj/item/radio/intercom{ dir = 8; @@ -99497,38 +95921,11 @@ /obj/structure/table, /turf/simulated/floor/plating, /area/storage/secure) -"rss" = ( -/obj/structure/snow, -/turf/simulated/floor/plasteel, -/area/quartermaster/office) -"rzz" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters{ - density = 0; - dir = 8; - icon_state = "open"; - id_tag = "kitchenbar"; - name = "Kitchen Shutters"; - opacity = 0 - }, -/obj/machinery/door/window{ - dir = 4; - name = "Kitchen"; - req_access_txt = "28" - }, -/obj/item/reagent_containers/food/snacks/candy/jawbreaker, -/turf/simulated/floor/plasteel{ - dir = 2; - icon_state = "cafeteria"; - tag = "icon-cafeteria (NORTHEAST)" - }, -/area/crew_quarters/kitchen) "rAt" = ( /obj/structure/extinguisher_cabinet, /turf/simulated/shuttle/wall{ - dir = 2; - icon_state = "swall3" + icon_state = "swall3"; + dir = 2 }, /area/shuttle/escape) "rEw" = ( @@ -99553,20 +95950,10 @@ /obj/item/wrench, /obj/item/radio, /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "bot" + icon_state = "bot"; + dir = 1 }, /area/shuttle/escape) -"rHe" = ( -/obj/structure/snow{ - dir = 8; - icon_state = "snow_corner" - }, -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "darkredcorners" - }, -/area/security/brig) "rIF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/wall, @@ -99606,15 +95993,6 @@ tag = "icon-vault (NORTHEAST)" }, /area/turret_protected/aisat_interior) -"rXk" = ( -/obj/structure/snow{ - dir = 8; - icon_state = "snow_corner" - }, -/turf/simulated/floor/plasteel{ - icon_state = "bcarpet05" - }, -/area/blueshield) "rYq" = ( /obj/machinery/door/airlock/centcom{ id_tag = "adminshuttle"; @@ -99631,92 +96009,6 @@ icon_state = "wall3" }, /area/shuttle/escape) -"set" = ( -/obj/structure/snow{ - dir = 1; - icon_state = "snow_corner" - }, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "barber" - }, -/area/crew_quarters/locker) -"sfN" = ( -/obj/structure/snow{ - dir = 1; - icon_state = "snow_corner" - }, -/turf/simulated/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"siD" = ( -/obj/item/decorations/sticky_decorations/flammable/snowman, -/obj/structure/snow, -/turf/simulated/floor/plasteel, -/area/security/main) -"slj" = ( -/obj/item/decorations/sticky_decorations/flammable/tinsel/yellow{ - pixel_y = 19 - }, -/turf/simulated/floor/plasteel, -/area/engine/engineering) -"stO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/snow{ - dir = 10; - icon_state = "snow_corner" - }, -/turf/simulated/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"sug" = ( -/obj/structure/chair/comfy/green{ - dir = 4 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/captain) -"suo" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/table/wood, -/obj/structure/snow{ - dir = 1; - icon_state = "snow_corner" - }, -/turf/simulated/floor/plasteel{ - icon_state = "dark" - }, -/area/crew_quarters/dorms) -"sBH" = ( -/obj/structure/closet/secure_closet/medical3, -/turf/simulated/floor/plasteel{ - icon_state = "whitebluefull"; - tag = "icon-whitebluefull" - }, -/area/medical/biostorage) -"sCf" = ( -/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, -/obj/item/decorations/sticky_decorations/flammable/snowman, -/turf/simulated/floor/wood, -/area/bridge/meeting_room) "sDw" = ( /obj/structure/flora/ausbushes/grassybush, /obj/structure/flora/ausbushes/lavendergrass, @@ -99728,16 +96020,6 @@ "sHt" = ( /turf/simulated/floor/engine, /area/holodeck/alphadeck) -"sNK" = ( -/obj/item/decorations/sticky_decorations/flammable/snowman, -/obj/structure/snow, -/turf/simulated/floor/plasteel, -/area/bridge) -"sOc" = ( -/obj/item/decorations/sticky_decorations/flammable/snowman, -/obj/structure/snow, -/turf/simulated/floor/plasteel, -/area/crew_quarters/locker) "sPb" = ( /obj/machinery/alarm{ pixel_y = 24 @@ -99750,23 +96032,11 @@ /area/crew_quarters/dorms) "sPV" = ( /turf/simulated/floor/plasteel{ - dir = 4; + tag = "icon-browncorner (EAST)"; icon_state = "browncorner"; - tag = "icon-browncorner (EAST)" + dir = 4 }, /area/shuttle/escape) -"sTZ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - tag = "" - }, -/obj/item/decorations/sticky_decorations/flammable/tinsel/green{ - pixel_y = 19 - }, -/turf/simulated/floor/plasteel, -/area/crew_quarters/dorms) "sUK" = ( /obj/structure/chair/comfy/shuttle{ dir = 8 @@ -99775,54 +96045,18 @@ icon_state = "floor4" }, /area/shuttle/syndicate_sit) -"sUY" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - tag = "" - }, -/obj/item/decorations/sticky_decorations/flammable/tinsel/red{ - pixel_y = 19 - }, -/turf/simulated/floor/plasteel{ - dir = 2; - icon_state = "caution" - }, -/area/crew_quarters/dorms) -"sVn" = ( -/obj/item/decorations/sticky_decorations/flammable/tinsel/blue{ - pixel_y = 19 - }, -/turf/simulated/floor/plasteel{ - icon_state = "white" - }, -/area/medical/chemistry) "sVQ" = ( /turf/simulated/floor/plasteel{ dir = 8; icon_state = "browncorner" }, /area/shuttle/escape) -"sVX" = ( -/obj/item/decorations/sticky_decorations/flammable/tinsel/green{ - pixel_y = 19 - }, -/obj/structure/snow, -/turf/simulated/floor/plasteel, -/area/quartermaster/office) "tbC" = ( /obj/structure/chair{ dir = 4 }, /turf/simulated/floor/plasteel, /area/crew_quarters/dorms) -"tcd" = ( -/obj/structure/chair/comfy/red, -/turf/simulated/floor/plasteel{ - icon_state = "grimy" - }, -/area/hallway/secondary/entry) "tdh" = ( /obj/item/twohanded/required/kirbyplants, /turf/simulated/floor/plasteel{ @@ -99836,261 +96070,19 @@ icon_state = "neutralcorner" }, /area/shuttle/escape) -"tlj" = ( -/obj/structure/chair/sofa/right{ - dir = 4 - }, -/obj/structure/snow, -/turf/simulated/floor/wood, -/area/hallway/secondary/exit) -"tmg" = ( -/obj/structure/snow{ - dir = 6; - icon_state = "snow_corner" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/courtroom) -"tmo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/snow, -/turf/simulated/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/crew_quarters/kitchen) -"tob" = ( -/obj/item/decorations/sticky_decorations/flammable/tinsel/green{ - pixel_y = 19 - }, -/turf/simulated/floor/carpet, -/area/security/vacantoffice) "toq" = ( /turf/simulated/floor/plasteel{ dir = 4; icon_state = "brown" }, /area/shuttle/escape) -"trn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/item/decorations/sticky_decorations/flammable/tinsel/green{ - pixel_y = 19 - }, -/turf/simulated/floor/plasteel, -/area/storage/primary) -"tsU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/item/decorations/sticky_decorations/flammable/tinsel/green{ - pixel_y = 19 - }, -/obj/structure/snow{ - dir = 1; - icon_state = "snow_corner" - }, -/turf/simulated/floor/carpet, -/area/bridge/meeting_room) -"tuN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/snow{ - dir = 8; - icon_state = "snow_corner" - }, -/turf/simulated/floor/plasteel, -/area/hallway/primary/central/west) -"txa" = ( -/obj/machinery/atmospherics/pipe/simple/visible/purple, -/obj/structure/snow{ - dir = 8; - icon_state = "snow_corner" - }, -/turf/simulated/floor/plasteel, -/area/atmos) -"txC" = ( -/obj/structure/chair/wood/wings{ - dir = 1; - icon_state = "wooden_chair_wings"; - tag = "icon-wooden_chair_wings (NORTH)" - }, -/obj/structure/snow, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"tBt" = ( -/obj/item/gift, -/obj/structure/snow, -/obj/item/toy/figure/bartender, -/obj/item/toy/katana, -/obj/item/id_decal/silver, -/obj/item/nanomob_card, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"tBT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/item/decorations/sticky_decorations/flammable/tinsel/blue{ - pixel_y = 19 - }, -/turf/simulated/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"tDj" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 4; - level = 2 - }, -/obj/structure/snow{ - dir = 8; - icon_state = "snow_corner" - }, -/turf/simulated/floor/plasteel, -/area/atmos) -"tEg" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - tag = "" - }, -/obj/structure/snow, -/turf/simulated/floor/plasteel, -/area/atmos) -"tGI" = ( -/obj/structure/table/wood, -/obj/structure/snow, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"tHd" = ( -/obj/structure/chair/stool, -/obj/structure/snow{ - dir = 4; - icon_state = "snow_surround" - }, -/turf/simulated/floor/plasteel, -/area/crew_quarters/locker) "tIz" = ( /obj/machinery/computer/mech_bay_power_console, /turf/simulated/floor/plasteel, /area/shuttle/escape) -"tKz" = ( -/obj/item/gift, -/obj/structure/snow, -/obj/item/toy/figure/miner, -/obj/item/toy/prize/ripley, -/obj/item/nanomob_card, -/turf/simulated/floor/plasteel, -/area/quartermaster/storage) -"tKB" = ( -/obj/structure/snow{ - dir = 1; - icon_state = "snow_surround" - }, -/turf/simulated/floor/plasteel, -/area/quartermaster/storage) -"tPa" = ( -/obj/structure/snow{ - dir = 5; - icon_state = "snow_corner" - }, -/turf/simulated/floor/plasteel, -/area/quartermaster/office) -"tQs" = ( -/obj/structure/snow{ - dir = 8; - icon_state = "snow_corner" - }, -/turf/simulated/floor/plasteel{ - icon_state = "grimy" - }, -/area/security/detectives_office) -"tSs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/item/decorations/sticky_decorations/flammable/tinsel/green{ - pixel_y = 19 - }, -/obj/structure/snow{ - dir = 5; - icon_state = "snow_corner" - }, -/turf/simulated/floor/carpet, -/area/bridge/meeting_room) -"tYi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plasteel, -/area/quartermaster/storage) -"udn" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/snow{ - dir = 8; - icon_state = "snow_corner" - }, -/turf/simulated/floor/plasteel, -/area/quartermaster/storage) -"ufT" = ( -/obj/item/radio/intercom/department/security{ - pixel_y = 33 - }, -/obj/machinery/light_switch{ - pixel_y = 27 - }, -/obj/structure/snow, -/turf/simulated/floor/plasteel, -/area/security/main) -"ugr" = ( -/obj/structure/snow{ - icon_state = "snow_corner" - }, -/turf/simulated/floor/plasteel, -/area/engine/break_room) -"uiW" = ( -/obj/structure/chair/wood/wings{ - dir = 8; - icon_state = "wooden_chair_wings"; - tag = "icon-wooden_chair_wings (WEST)" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) "uom" = ( /turf/simulated/floor/plasteel, /area/shuttle/escape) -"urE" = ( -/turf/simulated/floor/plasteel{ - icon_state = "bcarpet05" - }, -/area/security/permabrig) "usf" = ( /obj/machinery/computer/communications, /turf/simulated/floor/plasteel{ @@ -100098,33 +96090,17 @@ icon_state = "darkblue" }, /area/shuttle/escape) -"ute" = ( -/obj/structure/snow{ - dir = 5; - icon_state = "snow_corner" - }, -/turf/simulated/floor/plasteel, -/area/engine/equipmentstorage) "utw" = ( /obj/structure/shuttle/engine/propulsion/burst{ dir = 8 }, /turf/simulated/floor/plating, /turf/simulated/shuttle/wall{ - dir = 2; + tag = "icon-swall_f5"; icon_state = "swall_f5"; - tag = "icon-swall_f5" + dir = 2 }, /area/shuttle/pod_3) -"uww" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/landmark/start{ - name = "Security Officer" - }, -/turf/simulated/floor/plasteel, -/area/security/main) "uxy" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging{ dir = 4 @@ -100144,24 +96120,6 @@ icon_state = "darkred" }, /area/shuttle/escape) -"uyo" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/item/gift, -/obj/structure/snow, -/obj/item/toy/figure/rd, -/obj/item/toy/plushie/face_hugger, -/obj/item/toy/prize/phazon, -/obj/item/nanomob_card, -/turf/simulated/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/explab) "uBM" = ( /obj/structure/shuttle/engine/propulsion{ dir = 8; @@ -100172,102 +96130,19 @@ /area/shuttle/administration) "uDK" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 5; + tag = "icon-intact (NORTHEAST)"; icon_state = "intact"; - tag = "icon-intact (NORTHEAST)" + dir = 5 }, /turf/space, /area/space/nearstation) -"uGR" = ( -/obj/structure/snow, -/turf/simulated/floor/plasteel, -/area/engine/mechanic_workshop) -"uNG" = ( -/obj/item/decorations/sticky_decorations/flammable/tinsel/red{ - pixel_y = 19 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/dorms) -"uOv" = ( -/obj/structure/chair/comfy/green{ - dir = 4 - }, -/obj/structure/snow, -/turf/simulated/floor/wood, -/area/bridge/meeting_room) -"uPv" = ( -/obj/structure/chair/sofa/corner{ - dir = 4 - }, -/obj/structure/snow, -/turf/simulated/floor/wood, -/area/hallway/secondary/exit) "uXX" = ( /obj/machinery/light{ - dir = 8; - icon_state = "tube1" + icon_state = "tube1"; + dir = 8 }, /turf/simulated/floor/plasteel, /area/shuttle/escape) -"uYV" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plasteel, -/area/quartermaster/storage) -"uZi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/item/gift, -/obj/structure/snow, -/obj/item/toy/figure/roboticist, -/obj/item/toy/plushie/ipcplushie, -/obj/item/nanomob_card, -/obj/item/toy/plushie/robo_corgi, -/turf/simulated/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/explab) -"vdt" = ( -/obj/effect/decal/warning_stripes/blue/partial{ - dir = 1 - }, -/obj/structure/snow{ - dir = 8; - icon_state = "snow_corner" - }, -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "white" - }, -/area/medical/reception) -"vfX" = ( -/obj/item/decorations/sticky_decorations/flammable/tinsel/purple{ - pixel_y = 19 - }, -/obj/structure/snow, -/turf/simulated/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/explab) -"viw" = ( -/obj/item/decorations/sticky_decorations/flammable/snowman, -/obj/structure/snow, -/turf/simulated/floor/wood, -/area/crew_quarters/courtroom) -"vum" = ( -/obj/structure/snow{ - dir = 8; - icon_state = "snow_corner" - }, -/turf/simulated/floor/plasteel, -/area/hallway/secondary/exit) "vup" = ( /obj/machinery/atmospherics/pipe/simple/insulated{ dir = 10 @@ -100275,25 +96150,6 @@ /obj/structure/lattice, /turf/space, /area/space/nearstation) -"vzE" = ( -/obj/structure/snow, -/turf/simulated/floor/plasteel, -/area/bridge) -"vAc" = ( -/obj/item/decorations/sticky_decorations/flammable/tinsel/green{ - pixel_y = 19 - }, -/turf/simulated/floor/plasteel{ - dir = 2; - icon_state = "cafeteria"; - tag = "icon-cafeteria (NORTHEAST)" - }, -/area/crew_quarters/kitchen) -"vDR" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/snow, -/turf/simulated/floor/plasteel, -/area/quartermaster/office) "vFZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -100323,14 +96179,6 @@ icon_state = "cmo" }, /area/shuttle/escape) -"vIP" = ( -/obj/item/decorations/sticky_decorations/flammable/snowman, -/obj/structure/snow, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "browncorner" - }, -/area/hallway/primary/central/west) "vJw" = ( /obj/item/twohanded/required/kirbyplants, /obj/structure/extinguisher_cabinet{ @@ -100340,14 +96188,6 @@ icon_state = "neutralcorner" }, /area/shuttle/escape) -"vKh" = ( -/obj/item/decorations/sticky_decorations/flammable/tinsel/purple{ - pixel_y = 19 - }, -/turf/simulated/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/lab) "vMh" = ( /obj/item/radio/intercom{ dir = 4; @@ -100359,37 +96199,6 @@ icon_state = "dark" }, /area/shuttle/escape) -"vRF" = ( -/obj/structure/snow{ - dir = 1; - icon_state = "snow_corner" - }, -/turf/simulated/floor/plasteel, -/area/hallway/primary/starboard/west) -"vSW" = ( -/obj/structure/table/reinforced, -/obj/item/folder{ - pixel_x = -4 - }, -/obj/item/folder/red{ - pixel_y = 3 - }, -/obj/item/folder/blue{ - pixel_x = 5 - }, -/obj/item/folder/yellow{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/stamp/law, -/obj/item/pen/multi, -/obj/structure/snow, -/turf/simulated/floor/plasteel{ - dir = 2; - icon_state = "cult"; - tag = "icon-cult" - }, -/area/lawoffice) "vUG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -100411,14 +96220,6 @@ icon_state = "neutralcorner" }, /area/shuttle/escape) -"vVP" = ( -/obj/structure/snow, -/turf/simulated/floor/plasteel, -/area/crew_quarters/locker) -"vYr" = ( -/obj/structure/snow, -/turf/simulated/floor/plasteel, -/area/engine/equipmentstorage) "wbr" = ( /obj/structure/cable{ d1 = 2; @@ -100434,38 +96235,10 @@ }, /turf/simulated/floor/plasteel/dark, /area/tcommsat/chamber) -"wco" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"wep" = ( -/obj/structure/snow{ - dir = 6; - icon_state = "snow_corner" - }, -/turf/simulated/floor/plasteel, -/area/engine/break_room) "whv" = ( /obj/machinery/computer/HolodeckControl, -/obj/item/decorations/sticky_decorations/flammable/holly{ - pixel_x = -8; - pixel_y = 7 - }, /turf/simulated/floor/plasteel, /area/crew_quarters/dorms) -"wjY" = ( -/obj/structure/snow{ - dir = 10; - icon_state = "snow_corner" - }, -/turf/simulated/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) "wkg" = ( /obj/machinery/door/airlock/command/glass{ name = "Escape Shuttle Cockpit"; @@ -100477,66 +96250,6 @@ icon_state = "neutralfull" }, /area/shuttle/escape) -"wlq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/item/decorations/sticky_decorations/flammable/tinsel/red{ - pixel_y = 19 - }, -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "neutral" - }, -/area/hallway/secondary/entry) -"wlw" = ( -/obj/structure/chair/sofa{ - dir = 1 - }, -/obj/item/decorations/sticky_decorations/flammable/tinsel/green{ - pixel_y = 19 - }, -/obj/structure/snow, -/turf/simulated/floor/wood, -/area/hallway/secondary/exit) -"woy" = ( -/obj/structure/snow{ - dir = 6; - icon_state = "snow_corner" - }, -/turf/simulated/floor/plasteel{ - dir = 2; - icon_state = "cult"; - tag = "icon-cult" - }, -/area/magistrateoffice) -"wsp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/item/decorations/sticky_decorations/flammable/tinsel/purple{ - pixel_y = 19 - }, -/turf/simulated/floor/plasteel{ - icon_state = "white" - }, -/area/assembly/robotics) -"wwt" = ( -/obj/structure/table, -/obj/item/toy/xmas_cracker{ - pixel_x = -6; - pixel_y = 5 - }, -/obj/item/toy/xmas_cracker, -/obj/structure/snow{ - dir = 8; - icon_state = "snow_surround" - }, -/turf/simulated/floor/plasteel, -/area/crew_quarters/locker) "wxQ" = ( /obj/machinery/light, /obj/structure/chair/comfy/shuttle{ @@ -100546,59 +96259,12 @@ icon_state = "dark" }, /area/shuttle/escape) -"wya" = ( -/obj/effect/landmark/start{ - name = "Station Engineer" - }, -/obj/structure/chair/comfy/green{ - dir = 4 - }, -/obj/structure/snow, -/turf/simulated/floor/plasteel, -/area/engine/break_room) -"wGT" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/simple/visible/purple{ - dir = 4 - }, -/obj/item/decorations/sticky_decorations/flammable/tinsel/yellow{ - pixel_y = 19 - }, -/turf/simulated/floor/plasteel, -/area/atmos) "wHx" = ( /obj/machinery/door/airlock/shuttle/glass{ name = "Shuttle Cargo Hatch" }, /turf/simulated/floor/plasteel, /area/shuttle/escape) -"wIF" = ( -/obj/item/decorations/sticky_decorations/flammable/tinsel/purple{ - pixel_y = 19 - }, -/turf/simulated/floor/plasteel{ - icon_state = "white" - }, -/area/assembly/robotics) -"wLB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/snow{ - dir = 8; - icon_state = "snow_corner" - }, -/turf/simulated/floor/carpet, -/area/bridge/meeting_room) -"wNF" = ( -/obj/structure/snow{ - icon_state = "snow_corner" - }, -/turf/simulated/floor/plasteel{ - dir = 0; - icon_state = "green" - }, -/area/hallway/secondary/exit) "wOS" = ( /obj/structure/table, /obj/item/clothing/gloves/color/black, @@ -100610,30 +96276,6 @@ /obj/item/clothing/glasses/welding, /turf/simulated/floor/plasteel, /area/atmos) -"wRQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/snow{ - dir = 1; - icon_state = "snow_corner" - }, -/turf/simulated/floor/plasteel{ - icon_state = "dark" - }, -/area/crew_quarters/courtroom) -"wTD" = ( -/obj/structure/snow{ - dir = 4; - icon_state = "snow_corner" - }, -/turf/simulated/floor/plasteel, -/area/crew_quarters/locker) "wVD" = ( /obj/effect/landmark/start{ name = "Shaft Miner" @@ -100643,31 +96285,6 @@ icon_state = "brown" }, /area/quartermaster/miningdock) -"xan" = ( -/obj/structure/snow{ - dir = 8; - icon_state = "snow_corner" - }, -/obj/structure/snow{ - dir = 1; - icon_state = "snow_corner" - }, -/obj/item/a_gift, -/obj/item/nanomob_card, -/turf/simulated/floor/plasteel{ - icon_state = "vault"; - tag = "icon-vault" - }, -/area/crew_quarters/dorms) -"xbw" = ( -/obj/structure/snow, -/obj/item/a_gift, -/obj/item/toy/figure/atmos, -/obj/item/toy/minimeteor, -/obj/item/toy/carpplushie/electric, -/obj/item/nanomob_card, -/turf/simulated/floor/plasteel, -/area/engine/equipmentstorage) "xcB" = ( /obj/structure/chair{ dir = 8 @@ -100686,15 +96303,6 @@ }, /turf/simulated/floor/plasteel, /area/crew_quarters/dorms) -"xgx" = ( -/obj/structure/chair/stool, -/obj/item/decorations/sticky_decorations/flammable/tinsel/red{ - pixel_y = 19 - }, -/turf/simulated/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/security/permabrig) "xgN" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 28 @@ -100704,9 +96312,9 @@ pixel_y = 8 }, /turf/simulated/floor/plasteel{ - dir = 6; + tag = "icon-whiteblue (SOUTHEAST)"; icon_state = "whiteblue"; - tag = "icon-whiteblue (SOUTHEAST)" + dir = 6 }, /area/shuttle/escape) "xlr" = ( @@ -100717,15 +96325,15 @@ /area/crew_quarters/dorms) "xlz" = ( /obj/machinery/light{ - dir = 8; - icon_state = "tube1" + icon_state = "tube1"; + dir = 8 }, /obj/structure/chair/comfy/shuttle{ dir = 4 }, /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "bot" + icon_state = "bot"; + dir = 1 }, /area/shuttle/escape) "xnj" = ( @@ -100733,30 +96341,14 @@ dir = 8 }, /obj/machinery/light{ - dir = 4; - icon_state = "tube1" + icon_state = "tube1"; + dir = 4 }, /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "bot" - }, -/area/shuttle/escape) -"xpD" = ( -/obj/item/decorations/sticky_decorations/flammable/tinsel/blue{ - pixel_y = 19 - }, -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "white" - }, -/area/medical/reception) -"xpY" = ( -/obj/structure/chair/sofa/corner{ + icon_state = "bot"; dir = 1 }, -/obj/structure/snow, -/turf/simulated/floor/wood, -/area/hallway/secondary/exit) +/area/shuttle/escape) "xtk" = ( /obj/structure/bed/roller, /turf/simulated/floor/plasteel{ @@ -100764,22 +96356,6 @@ icon_state = "cmo" }, /area/shuttle/escape) -"xux" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/snow, -/turf/simulated/floor/plasteel, -/area/quartermaster/storage) -"xvD" = ( -/obj/structure/snow, -/turf/simulated/floor/plasteel, -/area/hallway/secondary/exit) -"xxP" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/structure/snow, -/turf/simulated/floor/plasteel, -/area/bridge) "xyo" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 @@ -100790,13 +96366,6 @@ }, /turf/simulated/floor/plasteel, /area/crew_quarters/dorms) -"xzc" = ( -/obj/structure/chair/sofa/corner{ - dir = 8 - }, -/obj/structure/snow, -/turf/simulated/floor/wood, -/area/hallway/secondary/exit) "xAw" = ( /obj/machinery/atmospherics/pipe/manifold/visible{ dir = 8 @@ -100812,8 +96381,8 @@ }, /obj/machinery/recharge_station, /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "bot" + icon_state = "bot"; + dir = 1 }, /area/shuttle/escape) "xBR" = ( @@ -100822,19 +96391,10 @@ }, /obj/machinery/recharge_station, /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "bot" + icon_state = "bot"; + dir = 1 }, /area/shuttle/escape) -"xHS" = ( -/obj/item/gift, -/obj/structure/snow, -/obj/item/toy/figure/chef, -/obj/item/toy/minigibber, -/obj/item/id_decal/emag, -/obj/item/nanomob_card, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) "xTB" = ( /turf/simulated/floor/plasteel{ dir = 1; @@ -100845,61 +96405,18 @@ "xVt" = ( /obj/item/twohanded/required/kirbyplants, /turf/simulated/floor/plasteel{ - dir = 2; - icon_state = "neutralcorner" + icon_state = "neutralcorner"; + dir = 2 }, /area/crew_quarters/dorms) "xWg" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 6; + tag = "icon-intact (SOUTHEAST)"; icon_state = "intact"; - tag = "icon-intact (SOUTHEAST)" + dir = 6 }, /turf/space, /area/space/nearstation) -"xWp" = ( -/obj/item/decorations/sticky_decorations/flammable/tinsel/red{ - pixel_y = 19 - }, -/turf/simulated/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/security/permabrig) -"xXs" = ( -/obj/effect/decal/warning_stripes/north, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 - }, -/obj/item/decorations/sticky_decorations/flammable/tinsel/red{ - pixel_y = 19 - }, -/turf/simulated/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"xXS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/snow{ - icon_state = "snow_corner" - }, -/turf/simulated/floor/plasteel, -/area/hallway/secondary/exit) -"ydk" = ( -/obj/structure/snow{ - dir = 5; - icon_state = "snow_corner" - }, -/turf/simulated/floor/plasteel, -/area/hallway/primary/starboard/west) "yeP" = ( /obj/machinery/door_control{ id = "adminshuttleblast"; @@ -100908,8 +96425,8 @@ req_access_txt = "101" }, /obj/machinery/light{ - dir = 8; - icon_state = "tube1" + icon_state = "tube1"; + dir = 8 }, /turf/simulated/shuttle/floor{ icon_state = "floor4" @@ -100926,28 +96443,6 @@ icon_state = "floor4" }, /area/shuttle/administration) -"ylU" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/snow{ - icon_state = "snow_corner" - }, -/turf/simulated/floor/plasteel, -/area/hallway/primary/port) (1,1,1) = {" aaa @@ -114427,16 +109922,16 @@ aZW bcX bgu bhL -tcd +aSW bgj bjO -pKw +bmo brk aSf bqr buX btF -gAT +brU bBt btF bqr @@ -114693,7 +110188,7 @@ bpF bqr btF btG -tob +bvn bBH btF bqr @@ -114944,7 +110439,7 @@ bhN aSW bhm bhm -dpi +bmo brl bss bqr @@ -115200,9 +110695,9 @@ bgB bhO aSY bhv -iwP +bhv aSY -wlq +brk boT bqr btF @@ -118030,7 +113525,7 @@ biJ bkg blM bnr -wTD +bnD bnD bvk bnD @@ -118544,9 +114039,9 @@ biJ bki blM bnB -vVP -gyU -tHd +bnD +bqv +bqv bvS bvs bvs @@ -118791,7 +114286,7 @@ aGn aUy aVi aWn -trn +aXM aXQ aXQ bde @@ -118801,9 +114296,9 @@ biJ bkb blM bnC -vVP -bqw +bnD bqw +bqx bvZ bzU bBQ @@ -119055,15 +114550,15 @@ bcT aVi bgz biJ -oNH +bkg bkx -sOc -vVP -vVP +bnD +bnD +bqx bsg bvW -vVP -set +bnD +bwT byp bzy blM @@ -119305,21 +114800,21 @@ aGn aUy aVi aWo -trn +aXM aXQ bbm bdg aVi bgz -ylU +blO bpg bqh brv brv bug -bug +bvt bwb -ejx +bnD bBU bwT bzA @@ -119569,12 +115064,12 @@ bdh aVi bgz biJ -fnB +bkg blM bnF bpd -vVP -sOc +bqv +bqv bwa bng blM @@ -119829,10 +115324,10 @@ biJ bkf blM bnG -vVP -gyU -gyU -pmA +bnD +bnD +bnD +bwa bAb brN brN @@ -119846,7 +115341,7 @@ bMh bNH bQc bSg -haF +bKz bRR bKz bXd @@ -120049,7 +115544,7 @@ aab abN abN aqs -lKx +anf atz avf awO @@ -120086,9 +115581,9 @@ blH bkg blM bnH -pXx -hFn -wwt +bnD +bnD +bnD bwd bzV bst @@ -120102,8 +115597,8 @@ bxb bxb bxb bMq -npO -iDx +bOh +bHh bRR bHh bXd @@ -120305,8 +115800,8 @@ aab aab abN anc -lKx -lKx +anf +anf atH avi ado @@ -120357,10 +115852,10 @@ bCk bKy bxb bIV -oRw -tKz -npO -iDx +bKz +bKz +bOh +bHh bRR bHh bXd @@ -120562,11 +116057,11 @@ abN abN abN amX -lKx +anf asj atD avh -lKx +anf ado azp aAn @@ -120614,10 +116109,10 @@ bJy bKG bxb bIU -qZX -oWs +bKz +bKz bSj -iDx +bHh bRR bHh bXe @@ -120819,8 +116314,8 @@ abN ajc adN ado -lKx -ado +anf +asl atQ avk awU @@ -120871,9 +116366,9 @@ bCk bFd bxb bIY -fjG -tKB -hDe +bKz +bKz +bOh bPO bRR bKz @@ -121128,10 +116623,10 @@ bJB bKH bxb bIX -pjK -oqm -npO -haF +bKz +bKz +bOh +bKz bPQ bKz bXd @@ -121331,17 +116826,17 @@ aaa aab abN ajg -gAw +adN ado -lKx +anf asr atS avm -lKx -lKx -lKx -urE -urE +anf +anf +anf +aAr +aAr aCE aPi aPi @@ -121385,14 +116880,14 @@ bCk bnK bxb bIS -pjK -pjK +bKz +bKz bOk ceE -uYV -uYV +bJf +bJf bXg -uYV +bJf bYE bxb aab @@ -121588,16 +117083,16 @@ aaa aab abN ajf -xgx -lKx +akL +anf aqM abN asg avl abN ayx -xWp -lKx +anf +anf aBJ abN aDG @@ -121645,9 +117140,9 @@ bIZ bNI bKA bSm -xux -iRU -tYi +bPP +bPP +bPP bXf bYr bKz @@ -121845,7 +117340,7 @@ aaa aaa abN aji -xgx +akL ado abN abN @@ -121853,7 +117348,7 @@ atZ avo abN abN -lKx +anf akL aBL abN @@ -121901,8 +117396,8 @@ bIw bJf bJf bMw -udn -kBs +bOh +bKz bRL bQf bQf @@ -122156,9 +117651,9 @@ byw bFp bFm bMi -oQO +bKz bQg -eiU +bOh bKz bxb bRo @@ -122189,7 +117684,7 @@ cEW cEJ cFM cGD -fWZ +cJV bTm cEY cLm @@ -122446,7 +117941,7 @@ cEW cEL cFP cGF -fuP +cJV cLr cEY cLm @@ -122703,7 +118198,7 @@ cEW cEK cFO cGE -uGR +cJV cGh cEY cLm @@ -122941,7 +118436,7 @@ cbI cdy cff cir -ihP +cfb cfb cnS cno @@ -123197,8 +118692,8 @@ cam cbH cdx chX -gOo -gvu +cfb +cfb cfb cnS cno @@ -123456,7 +118951,7 @@ cdA cis ckq cls -qqe +cls cnU cno cam @@ -123632,13 +119127,13 @@ aaa aaa aaa aaa -acF +atM auy -acF +atM adZ -acF +atM auy -acF +atM akZ akZ akZ @@ -123987,7 +119482,7 @@ cwF cvo cER cGc -jMO +cnA cJZ cLy cLi @@ -124206,11 +119701,11 @@ bvJ bxd byl bzF -mzT -vDR -vDR +bzF +bzF +bzF bFt -tPa +bBn bMk bNV bzJ @@ -124463,11 +119958,11 @@ bvJ bxf byB bzI -sVX +bBn bIK -lJY -kJO -kJO +bzE +bzE +bzE bzE bNX bVH @@ -124722,9 +120217,9 @@ byB bzH bBo bIJ -rss +bBn box -rss +bBn bKC bFx bMA @@ -125493,9 +120988,9 @@ bEj bzM bBq bCF -qQU -qQU -vIP +bEj +bEj +bEj bMn bKS bMJ @@ -125720,7 +121215,7 @@ aIW aKj aLN aNa -osF +aOu aEl aEl aEl @@ -125750,9 +121245,9 @@ bDO bDO bGZ bDO -tuN -tuN -tuN +bDO +bDO +bDO bMm bNY bQn @@ -125973,11 +121468,11 @@ aDL aBn aGs aHy -tmg +aAp aKl aLQ aKl -nLS +aOu aPx aRP aEl @@ -126220,7 +121715,7 @@ aqY asN asN asN -jGi +asN asN azA aAD @@ -126228,14 +121723,14 @@ aCb aDa aDL aFh -rat -oOM -viw +aAp +aAp +aAp aKk aLO aNb -bto -qkV +aOu +aAp aRM aEl aVD @@ -126473,7 +121968,7 @@ aig ajO ald aKs -pgr +aKs asN atf avS @@ -126485,8 +121980,8 @@ aCc aDd aDM aFl -gLx -luD +aGt +aGt aIZ aIZ aIZ @@ -126542,7 +122037,7 @@ cgS ciA clR col -iRt +clR coY cqR csy @@ -126730,13 +122225,13 @@ aie ajM alc aob -lvS +ara asP aut avR axr ayI -vSW +ara aAG aCb aDc @@ -126777,7 +122272,7 @@ bxl byH bEN bHg -uOv +bHg bJG bxl bxl @@ -126799,7 +122294,7 @@ cgU ciB ckt cok -evY +ckt coX cqI csx @@ -127033,8 +122528,8 @@ bwg bxl byI bEZ -rbV -heR +bDs +bDs bJH bJa bxl @@ -127292,7 +122787,7 @@ byJ bEV bBu bCG -tSs +bJH bFF bxl bMB @@ -127311,12 +122806,12 @@ cft ciC cgV ciD -rXk -rXk +ckt +ckt coH -eSM -eSM -iRt +ckt +cqK +clR ctR aaa cwQ @@ -127511,7 +123006,7 @@ azE aIl aCe aDi -woy +aDi aFo aIl aHC @@ -127546,10 +123041,10 @@ bwV bmc bxm byL -qSE +bEV bBv bCC -qnb +bJH bFI bxl bxl @@ -127803,10 +123298,10 @@ bwU bwc bxm byK -tsU -bDs -kTw -wLB +bEZ +bBw +bBw +bJH bKJ bxm bMD @@ -127818,7 +123313,7 @@ bVb bVM bXp bXa -eHF +bVv bMG cdX cfx @@ -128024,7 +123519,7 @@ ayM aIl aIl aCg -lTc +aDi aDU aFq azF @@ -128061,7 +123556,7 @@ bAC bCw bDS bFa -sCf +bHj bHj bJI bKK @@ -128340,11 +123835,11 @@ ciS cgY ciG ckw -qsu +ckw coU -jlo -gqt -nua +ckw +cqO +ckv cgW cvy cwW @@ -128371,7 +123866,7 @@ cOg dsY dta dtk -slj +cVj cWS dbr dbr @@ -128558,7 +124053,7 @@ bbS aEN aRw biM -xXs +bat beg dbO aRw @@ -128569,7 +124064,7 @@ blU bnU bpr bqR -bMz +bqS bxu bvV bvX @@ -128628,7 +124123,7 @@ cOg dsY dtb dtl -slj +cVj cXy cVj cVj @@ -128795,11 +124290,11 @@ ayN azF aAN aCi -nAk +aCf aCn aFr aKx -wRQ +aHG aHG aKv aLX @@ -128825,8 +124320,8 @@ bkz blU bnR bpo -vzE -vzE +bqS +bqS bxr bvX bvX @@ -129052,7 +124547,7 @@ ayP aIl aIl aCl -gQy +aDi aEg aFt aIl @@ -129081,8 +124576,8 @@ bne bpv blY bnW -xxP -vzE +bpt +bqS bsy bxA bvX @@ -129293,7 +124788,7 @@ agt amA any aot -epP +amy alT agM ash @@ -129853,7 +125348,7 @@ bkB bma bnX bps -sNK +bqS bsz bxC bAD @@ -130111,7 +125606,7 @@ bma boa bpw bqV -ljp +bsA bxO bvX bxt @@ -130598,7 +126093,7 @@ aAx aEm aFA aFA -btf +aFw aJj aKA awl @@ -130623,8 +126118,8 @@ bnk bpy blY brS -xxP -vzE +bpt +bqS bvC bxY bvX @@ -130678,7 +126173,7 @@ cOY cOf cOy cPo -eEt +cRX cUt cUt cWB @@ -130845,7 +126340,7 @@ aow apz ata auN -fHf +avX awJ ayT azK @@ -131188,12 +126683,12 @@ cHX dcj dcj dcj -wep +dcj cHT bHY -otC +cTe cPO -oUJ +cTe cRQ cWJ cPO @@ -131357,12 +126852,12 @@ alM awK aoW arn -gxv +atd auP -fHf +avX axG ayU -gxv +atd azx aCr aHE @@ -131397,7 +126892,7 @@ bmc bmc bqZ bsE -nRM +bwU bvU bxv byS @@ -131445,8 +126940,8 @@ cHV cIV dcB cNO -wya -nSR +cNO +cNO cQN cSa cPN @@ -131706,8 +127201,8 @@ cOZ cOh cQN bHZ -vYr -ute +cRX +cRX cRT cWL cTT @@ -131916,7 +127411,7 @@ bwc bxv byT bFg -lgQ +bzY bIO bJK bKL @@ -131960,11 +127455,11 @@ cIW dcE cNQ cON -opx +cON cQN -nkG cRX -vYr +cRX +cRX cRS cWK cTP @@ -132173,7 +127668,7 @@ bmc bxv byW bzZ -sug +bzZ bCP bEh bFK @@ -132211,16 +127706,16 @@ cCJ cvI cHQ cdG -hCY +dcj cHX -ugr -mzR -mzR -hED -mzR +dcj +dcj +dcj +dcj +dcj cyh -gpk -xbw +cRX +cRX cQP cRV cSY @@ -132398,7 +127893,7 @@ aEq aFE aGC aHZ -tQs +awG aKB axe aNU @@ -132468,7 +127963,7 @@ cCa cDR cHQ cGu -hCY +dcj cIh cIX cJq @@ -132655,7 +128150,7 @@ aEt axe aGF aIb -eML +awG aKD axe aNU @@ -132687,11 +128182,11 @@ bwg bxv byY bAd -hxa +bAd bCU -mtS -mtS -mtS +bEs +bEs +bEs bMR bLd bQD @@ -132943,11 +128438,11 @@ byr bwf bxv byX -lgQ -lgQ -lgQ +bzY +bzY +bzY bEk -lgQ +bzY bLf bMQ bLd @@ -133205,7 +128700,7 @@ bBE bCV bEv doB -qQm +bzY bMS bOy bQM @@ -133412,9 +128907,9 @@ aso atE auE avA -pqc +avA arv -qKW +ayp awi axQ aAx @@ -133510,7 +129005,7 @@ cSd cSd cWT cXQ -dMw +cSd lLC cXO dbK @@ -133692,7 +129187,7 @@ aQp aSB aTI aWE -uNG +aZv aZv bce bef @@ -133768,8 +129263,8 @@ cVI cWU cXV cVI -ese -tEg +cVI +cVI dbL dcL dds @@ -133777,7 +129272,7 @@ deh deD deM dgs -wGT +deH dhB dik diU @@ -133916,9 +129411,9 @@ anA akv alp alG -oKO +aoJ anQ -iLE +aoI aoR aqA ago @@ -134026,14 +129521,14 @@ cTq cUz cEr cEr -dLi -nMD -nMD +cEr +cEr +cEr dav daQ deH dfy -haz +dfy dgN dhA dij @@ -134172,10 +129667,10 @@ anA anA akF adX -jrK +aoJ amM anQ -iLE +aoI apM apR ahC @@ -134203,7 +129698,7 @@ aDP aDP aDP aQr -sUY +aSB aTR aWF aZt @@ -134284,13 +129779,13 @@ cXR cYT cZU daM -txa -egY +daM +daM day -nOr +daM deI -mXd -lmr +deQ +dgg dgP dhC dip @@ -134427,7 +129922,7 @@ acx acE acE anA -ufT +aoJ alq afK amr @@ -134546,7 +130041,7 @@ daN daw daR deJ -tDj +dfF dgh dgO dhx @@ -134682,9 +130177,9 @@ aaa anA acB acB -dNE +acw adp -oKO +aoJ alu amn amO @@ -134735,11 +130230,11 @@ bja bkM bcU bok -lqp +bmq brf -txC -gDP -tGI +bmq +bmq +bmq bxx aUS bAh @@ -134941,15 +130436,15 @@ anA anA anA anA -fgD +aoJ adY amm amN ahf aoN -siD +aoJ apT -koB +ago aiU aFL alS @@ -134992,12 +130487,12 @@ aZR bkM bmr brT +btf +btf +bmq +byD +bmq bmq -brg -gDP -jSU -tBt -xHS aUS bAi bHt @@ -135005,7 +130500,7 @@ bAi bEp aTS bBM -iyH +bBM bGg bJC bLw @@ -135199,14 +130694,14 @@ anA acV anH akI -hHC -uww +alF +alF amQ -uww +alF afn apO anx -rHe +aqX aiW akC avF @@ -135249,11 +130744,11 @@ boc bkP bmr brV +btg +bqi +bmq +buN bmq -pDb -drO -jSU -mLi aVG aUS cMK @@ -135261,7 +130756,7 @@ bHy bAk bEp aTV -haB +bDf bGd bGi bJJ @@ -135505,12 +131000,12 @@ aYd bnQ bkO bmr -wco +bmM +brg +brg +bmq +bqk bmq -laU -tGI -gDP -gDP bJQ aUS bAk @@ -135518,7 +131013,7 @@ bHy bCZ bEp aTU -mam +bDf bDd bEp bIq @@ -135762,20 +131257,20 @@ aZR bop bkO bmr -wco +bmM bmq -uiW -kvd -brg -gDP -gDP -eyt -vRF +bmq +bmq +bmq +bmq +bmq +bAv +bAk bHy bAk bEp aTY -qZf +bDf bGf bIh bJL @@ -136002,7 +131497,7 @@ aJf aGN aPf aQz -sTZ +aSD aUJ aWL aZz @@ -136017,22 +131512,22 @@ aUS dji biS bom -esS +bkO bmr -wco +bmM btm brh -brh -qtT -dvh +btn +buQ +aZV bzn bsN -ydk +bAk bHy bDA bEq aTW -hlT +bDf bGe bGq bDe @@ -136046,7 +131541,7 @@ cbv caA caA bXJ -tBT +caE cca caA cfA @@ -136276,21 +131771,21 @@ dkL boH bpC bmr -wco +bmM btw +bri +bto +buR bmq -etR -mLi -gDP -gDP -eyt -qPF -qRM +bmq +bAv +bAk +bHy bDb bEy aUP -xpD -vdt +bDf +bGe bJA bLv bTQ @@ -136535,14 +132030,14 @@ bjm bmq brW btq -pDb -mSl -brg -gDP +bmq +bmq +bmq +bmq bzo bze -qPF -qRM +bAk +bHy bDb bEp aUO @@ -136776,8 +132271,8 @@ aQv aSM aVo aWU -suo -ofR +aWU +bbv aSD beW aOI @@ -136793,12 +132288,12 @@ bqy brX btx buq -pyk -hcT +buq +buq bAU bCI aUS -fwM +bAk bHy bDb aTL @@ -137032,7 +132527,7 @@ aPf aQv aSM aUT -xan +aWT aZC bbu bdf @@ -137051,7 +132546,7 @@ bmq bqi brH btr -bmq +bqi bAH bCB aUS @@ -137159,7 +132654,7 @@ drg dro drt drv -iMO +dry dnr dny dnz @@ -137289,7 +132784,7 @@ aFI aZs aSM aVp -gUP +aWT aZD bbu bdl @@ -137306,9 +132801,9 @@ bdT bnm bmq bqk -uiW bqk -bmq +bqk +bqk bAV bmq aUS @@ -137416,7 +132911,7 @@ drf drq dnl drv -ook +drE dnw drQ drN @@ -137545,9 +133040,9 @@ aFI aFI aQE aSM -nOb -nGo -hlm +aUT +aWT +aZC bbu bdj bfr @@ -137820,9 +133315,9 @@ bdT bmj bog bpN -fYH -rzz -grx +bog +bpN +bog bPM bdT bdT @@ -137927,11 +133422,11 @@ dqw dqw dqw dnc -gWg -kQD +dni +drE drv -ook -iqh +drE +dni drR drN drN @@ -138187,7 +133682,7 @@ drg dnh drA drv -quH +dry drK drB dnA @@ -138328,7 +133823,7 @@ bbh bdT bdM bhX -tmo +biU boS bdT bmt @@ -138345,7 +133840,7 @@ bHy bAk bEo aWO -sVn +bSn bSn bOG bLF @@ -138444,13 +133939,13 @@ drf drf drf drf -hLc -eGK +dry +drO drM dry drE drM -eGK +drO dry drf drf @@ -139107,7 +134602,7 @@ boj btJ bus bsS -vAc +bof bof bxH bzf @@ -139367,7 +134862,7 @@ bsV buJ bof bxJ -eap +bzf bAk bHy bAk @@ -139379,7 +134874,7 @@ bEu bLV bOR bQC -sBH +bQC bNK bXA bZJ @@ -139621,7 +135116,7 @@ boo btM brm bsU -vAc +bof bof bxI bzf @@ -139881,7 +135376,7 @@ bof bof bof bxJ -eap +bzf bAk bHy bAk @@ -139893,7 +135388,7 @@ bEu bMY bOV bQE -fpb +bOV cby cuo bZP @@ -141167,7 +136662,7 @@ brr brr bxL bzj -frt +bAr bHy bAk bEu @@ -142452,7 +137947,7 @@ byM bru bxL bzj -frt +bAr bHy bJh bEu @@ -142984,7 +138479,7 @@ bUJ bVZ bXv bYk -pWt +bZB caX bWi clp @@ -144277,9 +139772,9 @@ clo cow coi cpV -vfX -uyo -uZi +crL +ctw +cuK cvT cpR cxO @@ -144537,7 +140032,7 @@ cpR csA ctB cuO -gdQ +crL cpR cxO cAe @@ -145027,7 +140522,7 @@ bHI bwv bEA bGA -wIF +bId bNh bPa bRy @@ -145049,7 +140544,7 @@ clp cod cpY crP -qeu +crL cuS cpR cxI @@ -145275,7 +140770,7 @@ bcp btV bry bth -rdi +buV blj bxS bau @@ -145563,7 +141058,7 @@ coB chI crj cbj -mVw +ctv cuX bIi cpI @@ -145799,7 +141294,7 @@ bwv bEJ bGB bIc -wsp +bNJ bId bRz bId @@ -145820,7 +141315,7 @@ coA ceK cri csB -idV +bYm cuV bIi cxi @@ -146046,7 +141541,7 @@ bau bpY buy btj -fnn +buV blj bxV bau @@ -146077,8 +141572,8 @@ cmV cmV chT cbj -wjY -ksw +bLR +cvF bIi cxU cxT @@ -146303,7 +141798,7 @@ bau bqc bkQ btb -rdi +buV blj bxW bau @@ -146335,7 +141830,7 @@ cmV cbj cbj ctC -stO +cvF bIi cxM cxT @@ -146560,7 +142055,7 @@ boy bcp brA btl -fnn +buV blj bCS bau @@ -146817,7 +142312,7 @@ bau bqd brB brG -rdi +buV blj bCR bau @@ -147064,7 +142559,7 @@ aXd baz bcw bet -fTX +bcx biw baz aYP @@ -147324,7 +142819,7 @@ ber bga bis bvN -sfN +bcD bld blw bmI @@ -147811,7 +143306,7 @@ aaa aaa aAg aBc -qFa +aBV aCQ aDX aEV @@ -147834,7 +143329,7 @@ aXk aXe baI bcx -bPP +bcx bhA bix bgg @@ -147861,7 +143356,7 @@ bMj bPz bRp bTg -iXO +bWn bLR bYh bZT @@ -147896,7 +143391,7 @@ cKs cNI cQt cOS -gkX +cSH cQu cxN cEH @@ -148091,14 +143586,14 @@ aYx aXo baz bcC -dSC -pUZ -dSC +bcz +bcz +bcz baz bjD bpO blz -eoC +boJ boJ boJ boJ @@ -148348,14 +143843,14 @@ aYP aYP baz bcB -pfa -dSC -dSC +bcz +bcz +bcz baz bjA bpM blx -lPZ +boJ boJ boJ bxB @@ -148369,7 +143864,7 @@ bwv bEM bGK bIv -qWE +bKi bKx bMt bUi @@ -148612,7 +144107,7 @@ baz bjI bpO blz -eoC +boJ boJ boJ boJ @@ -148862,7 +144357,7 @@ aYz bay aZl bcF -iSS +bcD bhC bcD bjs @@ -148882,7 +144377,7 @@ bHR bDq bED bGC -vKh +bIp bKi bLW bIp @@ -148911,7 +144406,7 @@ bGG cyR cAP cBZ -ltW +cDw cDb cEt cFE @@ -149096,7 +144591,7 @@ aaa aaa aAg aBj -ljD +aBg aCV aEa aFb @@ -149168,7 +144663,7 @@ cxS cBx cAP cCh -ltW +cDw cDr cDw cFI @@ -149425,7 +144920,7 @@ cxZ cyR cAP cCb -ltW +cDw cDe cDw cHw @@ -150161,10 +145656,10 @@ bsP buH bBd buH -qig +buH bGj dck -qZB +bmm bmm bmm bBc @@ -150417,12 +145912,12 @@ bEG bsO bmm bBc -qZB +bmm bAJ bGh cVt bGh -kHX +bAJ bmm bBc cYw @@ -150673,14 +146168,14 @@ aab bEG bta bmm -xXS -bDp -xpY -tlj -gGg -kJW -uPv -cYe +bBc +bCX +bAK +bjR +bjR +bjR +bEF +cXs bBc cYw cZk @@ -150931,13 +146426,13 @@ bjR bzO bzs bBh -oRL -hnS +bCT +bjR bwD cVV -bxz -wlw -jJe +bwD +bjR +cXp bLp bNu bxX @@ -151188,13 +146683,13 @@ bjR btc bmm bBc -wNF -hnS +bDk +bjR bwC -gSs -mkp -fYr -jJe +bzd +bwC +bjR +cYd bLr bNw bPu @@ -151445,13 +146940,13 @@ bjR bzO bzw bBi -wNF -hnS +bCT +bjR bxz -cVV -bwD -wlw -nrk +bzm +bxz +bjR +cXp bLq bNv boD @@ -151702,14 +147197,14 @@ bEG btd bmm bBc -wNF -iyx -qau -eEX -kmj -xzc -jJe -kTV +bDp +bEF +bjR +bjR +bjR +bAK +cYe +cYk cYw cZm cZm @@ -151959,13 +147454,13 @@ bEG bEG buT bBc -jjr -fCH -feB -fCH -fCH -fCH -ihL +bmm +bAL +bGo +cWh +bGo +bAL +bmm cYk cYw bjR @@ -152216,12 +147711,12 @@ brd bEG bEG bBc -jjr -xvD -ktV -dzR -xvD -ihL +bmm +bmm +bmm +bmm +bmm +bmm bmm cYk cYw @@ -152474,10 +147969,10 @@ bvP bzx bBl bmm -vum bmm -bzd -vum +bmm +bmm +bmm bmm bmm cYk diff --git a/_maps/map_files/cyberiad/z2.dmm b/_maps/map_files/cyberiad/z2.dmm index df9c4bfa81c..d5681c2e8d4 100644 --- a/_maps/map_files/cyberiad/z2.dmm +++ b/_maps/map_files/cyberiad/z2.dmm @@ -11850,25 +11850,6 @@ icon_state = "gcircuit" }, /area/admin) -"GZ" = ( -/obj/machinery/door/airlock/hatch/syndicate{ - autoclose = 0; - frequency = 1441; - id_tag = "syndicate_jail_airlock_internal"; - locked = 1; - name = "Syndicate Jail Internal Airlock" - }, -/obj/machinery/door/airlock/hatch/syndicate{ - autoclose = 0; - frequency = 1441; - id_tag = "syndicate_jail_airlock_internal"; - locked = 1; - name = "Syndicate Jail Internal Airlock" - }, -/turf/unsimulated/floor{ - icon_state = "dark" - }, -/area/syndicate_mothership/jail) "Hb" = ( /obj/structure/window/reinforced{ dir = 1 @@ -12417,10 +12398,6 @@ dir = 6 }, /area/syndicate_mothership/jail) -"Qr" = ( -/obj/effect/landmark/ai_multicam_room, -/turf/unsimulated/ai_visible, -/area/ai_multicam_room) "Qt" = ( /obj/machinery/poolcontroller/invisible, /turf/unsimulated/beach/water, @@ -12690,9 +12667,6 @@ dir = 8 }, /area/syndicate_mothership/jail) -"Vc" = ( -/turf/unsimulated/ai_visible, -/area/ai_multicam_room) "Vm" = ( /obj/structure/table/wood, /obj/item/storage/box/donkpockets, @@ -12700,9 +12674,6 @@ icon_state = "dark" }, /area/syndicate_mothership/jail) -"Vz" = ( -/turf/unsimulated/wall, -/area/ai_multicam_room) "VA" = ( /obj/effect/decal/warning_stripes/northwest, /turf/unsimulated/floor{ @@ -64209,27 +64180,27 @@ aN aN aN aN -Vz -Vz -Vz -Vz -Vz -Vz -Vz -Vz -Vz -Vz -Vz -Vz -Vz -Vz -Vz -Vz -Vz -Vz -Vz -Vz -Vz +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN aN aN aN @@ -64466,27 +64437,27 @@ aN aN aN aN -Vz -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vz +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN aN aN aN @@ -64723,27 +64694,27 @@ aN aN aN aN -Vz -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vz +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN aN aN aN @@ -64980,27 +64951,27 @@ aN aN aN aN -Vz -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vz +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN aN aN aN @@ -65186,7 +65157,7 @@ Hr Hr Hr Om -GZ +Om Hr Hr Hr @@ -65237,27 +65208,27 @@ aN aN aN aN -Vz -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vz +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN aN aN aN @@ -65494,27 +65465,27 @@ aN aN aN aN -Vz -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vz +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN aN aN aN @@ -65751,27 +65722,27 @@ aN aN aN aN -Vz -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vz +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN aN aN aN @@ -66008,27 +65979,27 @@ aN aN aN aN -Vz -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vz +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN aN aN aN @@ -66265,27 +66236,27 @@ aN aN aN aN -Vz -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vz +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN aN aN aN @@ -66522,27 +66493,27 @@ aN aN aN aN -Vz -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vz +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN aN aN aN @@ -66779,27 +66750,27 @@ aN aN aN aN -Vz -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Qr -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vz +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN aN aN aN @@ -67036,27 +67007,27 @@ aN aN aN aN -Vz -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vz +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN aN aN aN @@ -67293,27 +67264,27 @@ aN aN aN aN -Vz -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vz +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN aN aN aN @@ -67550,27 +67521,27 @@ aN aN aN aN -Vz -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vz +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN aN aN aN @@ -67807,27 +67778,27 @@ aN aN aN aN -Vz -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vz +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN aN aN aN @@ -68064,27 +68035,27 @@ aN aN aN aN -Vz -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vz +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN aN aN aN @@ -68321,27 +68292,27 @@ aN aN aN aN -Vz -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vz +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN aN aN aN @@ -68578,27 +68549,27 @@ aN aN aN aN -Vz -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vz +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN aN aN aN @@ -68835,27 +68806,27 @@ aN aN aN aN -Vz -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vz +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN aN aN aN @@ -69092,27 +69063,27 @@ aN aN aN aN -Vz -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vz +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN aN aN aN @@ -69349,27 +69320,27 @@ aN aN aN aN -Vz -Vz -Vz -Vz -Vz -Vz -Vz -Vz -Vz -Vz -Vz -Vz -Vz -Vz -Vz -Vz -Vz -Vz -Vz -Vz -Vz +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN aN aN aN diff --git a/code/__DEFINES/admin.dm b/code/__DEFINES/admin.dm index 95494fb88cf..99fa1c50e0a 100644 --- a/code/__DEFINES/admin.dm +++ b/code/__DEFINES/admin.dm @@ -72,3 +72,19 @@ #define MAX_KEYPRESS_AUTOKICK 50 ///Length of held key rolling buffer #define HELD_KEY_BUFFER_LENGTH 15 + +/// Note text for suppressed CID warning +#define CIDWARNING_SUPPRESSED_NOTETEXT "CID COUNT WARNING DISABLED - Delete this note to re-enable" + +/// Note "ckey" for CID info tracking. Do not EVER update this. +#define CIDTRACKING_PSUEDO_CKEY "ALICE-CIDTRACKING" + +// Connection types. These match enums in the SQL DB. Dont change them +/// Client was let into the server +#define CONNECTION_TYPE_ESTABLISHED "ESTABLISHED" +/// Client was disallowed due to IPIntel +#define CONNECTION_TYPE_DROPPED_IPINTEL "DROPPED - IPINTEL" +/// Client was disallowed due to being banned +#define CONNECTION_TYPE_DROPPED_BANNED "DROPPED - BANNED" +/// Client was disallowed due to invalid data +#define CONNECTION_TYPE_DROPPED_INVALID "DROPPED - INVALID" diff --git a/code/__DEFINES/gamemode.dm b/code/__DEFINES/gamemode.dm index 497d8349ce1..9aee8f85eba 100644 --- a/code/__DEFINES/gamemode.dm +++ b/code/__DEFINES/gamemode.dm @@ -37,6 +37,7 @@ #define SPECIAL_ROLE_MORPH "Morph" #define SPECIAL_ROLE_MULTIVERSE "Multiverse Traveller" #define SPECIAL_ROLE_NUKEOPS "Syndicate" +#define SPECIAL_ROLE_PYROCLASTIC_SLIME "Pyroclastic Anomaly Slime" #define SPECIAL_ROLE_RAIDER "Vox Raider" #define SPECIAL_ROLE_REVENANT "Revenant" #define SPECIAL_ROLE_SHADOWLING "Shadowling" diff --git a/code/__DEFINES/misc.dm b/code/__DEFINES/misc.dm index 82550c5113a..c37a1943046 100644 --- a/code/__DEFINES/misc.dm +++ b/code/__DEFINES/misc.dm @@ -363,7 +363,7 @@ #define INVESTIGATE_BOMB "bombs" // The SQL version required by this version of the code -#define SQL_VERSION 19 +#define SQL_VERSION 20 // Vending machine stuff #define CAT_NORMAL 1 diff --git a/code/__DEFINES/subsystems.dm b/code/__DEFINES/subsystems.dm index 1c2640fbdb2..66ee12d74f7 100644 --- a/code/__DEFINES/subsystems.dm +++ b/code/__DEFINES/subsystems.dm @@ -129,8 +129,9 @@ #define RUNLEVELS_DEFAULT (RUNLEVEL_SETUP | RUNLEVEL_GAME | RUNLEVEL_POSTGAME) +// This do{} WHILE (FALSE) syntax may look stupid, but it speeds things up because BYOND memes #define COMPILE_OVERLAYS(A)\ - if (TRUE) {\ + do { \ var/list/ad = A.add_overlays;\ var/list/rm = A.remove_overlays;\ var/list/po = A.priority_overlays;\ @@ -146,4 +147,4 @@ A.overlays |= po;\ }\ A.flags_2 &= ~OVERLAY_QUEUED_2;\ -} +} while (FALSE) diff --git a/code/__HELPERS/lists.dm b/code/__HELPERS/lists.dm index f302d96347d..aab920f55fd 100644 --- a/code/__HELPERS/lists.dm +++ b/code/__HELPERS/lists.dm @@ -825,3 +825,18 @@ proc/dd_sortedObjectList(list/incoming) L1[key] += other_value else L1[key] = other_value + +/** + * A proc for turning a list into an associative list. + * + * A simple proc for turning all things in a list into an associative list, instead + * Each item in the list will have an associative value of TRUE + + * Arguments: + * * flat_list - the list that it passes to make associative + */ + +/proc/make_associative(list/flat_list) + . = list() + for(var/thing in flat_list) + .[thing] = TRUE diff --git a/code/__HELPERS/unsorted.dm b/code/__HELPERS/unsorted.dm index 4a2cbf8ce4f..33582212c1f 100644 --- a/code/__HELPERS/unsorted.dm +++ b/code/__HELPERS/unsorted.dm @@ -2052,3 +2052,14 @@ GLOBAL_DATUM_INIT(dview_mob, /mob/dview, new) return TRUE return contains(location.loc) + +/proc/log_connection(ckey, ip, cid, connection_type) + ASSERT(connection_type in list(CONNECTION_TYPE_ESTABLISHED, CONNECTION_TYPE_DROPPED_IPINTEL, CONNECTION_TYPE_DROPPED_BANNED, CONNECTION_TYPE_DROPPED_INVALID)) + var/datum/db_query/query_accesslog = SSdbcore.NewQuery("INSERT INTO `[format_table_name("connection_log")]`(`datetime`, `ckey`, `ip`, `computerid`, `result`) VALUES(Now(), :ckey, :ip, :cid, :result)", list( + "ckey" = ckey, + "ip" = "[ip ? ip : ""]", // This is important. NULL is not the same as "", and if you directly open the `.dmb` file, you get a NULL IP. + "cid" = cid, + "result" = connection_type + )) + query_accesslog.warn_execute() + qdel(query_accesslog) diff --git a/code/_onclick/ai.dm b/code/_onclick/ai.dm index 4652ee2f20b..a907a5dfc45 100644 --- a/code/_onclick/ai.dm +++ b/code/_onclick/ai.dm @@ -32,14 +32,6 @@ return changeNext_click(1) - if(multicam_on) - var/turf/T = get_turf(A) - if(T) - for(var/obj/screen/movable/pic_in_pic/ai/P in T.vis_locs) - if(P.ai == src) - P.Click(params) - break - if(control_disabled || stat) return diff --git a/code/_onclick/hud/_defines.dm b/code/_onclick/hud/_defines.dm index b069ff31eb7..58fd73656cb 100644 --- a/code/_onclick/hud/_defines.dm +++ b/code/_onclick/hud/_defines.dm @@ -153,8 +153,6 @@ #define ui_ai_take_picture "SOUTH:6,WEST+12" #define ui_ai_view_images "SOUTH:6,WEST+13" #define ui_ai_sensor "SOUTH:6,WEST+14" -#define ui_ai_multicam "SOUTH+1:6,WEST+13" -#define ui_ai_add_multicam "SOUTH+1:6,WEST+14" // Bots #define ui_bot_radio "EAST-1:28,SOUTH:7" diff --git a/code/_onclick/hud/ai.dm b/code/_onclick/hud/ai.dm index 856f724f925..63783a04467 100644 --- a/code/_onclick/hud/ai.dm +++ b/code/_onclick/hud/ai.dm @@ -140,26 +140,6 @@ var/mob/living/silicon/robot/borg = usr borg.sensor_mode() -/obj/screen/ai/multicam - name = "Multicamera Mode" - icon_state = "multicam" - -/obj/screen/ai/multicam/Click() - if(..()) - return - var/mob/living/silicon/ai/AI = usr - AI.toggle_multicam() - -/obj/screen/ai/add_multicam - name = "New Camera" - icon_state = "new_cam" - -/obj/screen/ai/add_multicam/Click() - if(..()) - return - var/mob/living/silicon/ai/AI = usr - AI.drop_new_multicam() - /mob/living/silicon/ai/create_mob_hud() if(client && !hud_used) hud_used = new /datum/hud/ai(src) @@ -248,16 +228,6 @@ using.screen_loc = ui_ai_sensor static_inventory += using -//Multicamera mode - using = new /obj/screen/ai/multicam() - using.screen_loc = ui_ai_multicam - static_inventory += using - -//Add multicamera camera - using = new /obj/screen/ai/add_multicam() - using.screen_loc = ui_ai_add_multicam - static_inventory += using - //Intent using = new /obj/screen/act_intent/robot/AI() using.icon_state = mymob.a_intent diff --git a/code/_onclick/hud/robot.dm b/code/_onclick/hud/robot.dm index f048c3c393d..bd1c5210826 100644 --- a/code/_onclick/hud/robot.dm +++ b/code/_onclick/hud/robot.dm @@ -87,6 +87,14 @@ var/mob/living/silicon/robot/R = usr R.installed_modules() +/obj/screen/robot/mov_intent + name = "fast/slow toggle" + icon_state = "running" + +/obj/screen/robot/mov_intent/Click() + usr.toggle_move_intent() + + /mob/living/silicon/robot/create_mob_hud() if(client && !hud_used) hud_used = new /datum/hud/robot(src) @@ -131,11 +139,19 @@ static_inventory += using //Intent +// Attack intent using = new /obj/screen/act_intent/robot() using.icon_state = mymob.a_intent static_inventory += using action_intent = using +// Movement intent + using = new /obj/screen/robot/mov_intent() + using.icon_state = (mymob.m_intent == MOVE_INTENT_RUN ? "running" : "walking") + static_inventory += using + using.screen_loc = ui_movi + move_intent = using + //Health mymob.healths = new /obj/screen/healths/robot() infodisplay += mymob.healths diff --git a/code/_onclick/hud/screen_objects.dm b/code/_onclick/hud/screen_objects.dm index 58bb69355ea..a01ea315e58 100644 --- a/code/_onclick/hud/screen_objects.dm +++ b/code/_onclick/hud/screen_objects.dm @@ -95,7 +95,7 @@ screen_loc = ui_borg_intents /obj/screen/act_intent/robot/AI - screen_loc = "EAST-1:32,SOUTH:70" + screen_loc = "SOUTH+1:6,EAST-1:32" /obj/screen/mov_intent name = "run/walk toggle" diff --git a/code/_onclick/observer.dm b/code/_onclick/observer.dm index df0ed20f6b1..073fab88b34 100644 --- a/code/_onclick/observer.dm +++ b/code/_onclick/observer.dm @@ -41,6 +41,9 @@ if(M) admin_mob_info(M) return + if(modifiers["middle"]) + MiddleClickOn(A) + return if(modifiers["shift"]) ShiftClickOn(A) return diff --git a/code/controllers/configuration.dm b/code/controllers/configuration.dm index c80fe0f7804..6640882facc 100644 --- a/code/controllers/configuration.dm +++ b/code/controllers/configuration.dm @@ -274,6 +274,9 @@ /// Limit of how many SQL threads can run at once var/rust_sql_thread_limit = 50 + /// Max amount of CIDs that one ckey can have attached to them before they trip a warning + var/max_client_cid_history = 3 + /datum/configuration/New() for(var/T in subtypesof(/datum/game_mode)) var/datum/game_mode/M = T @@ -765,6 +768,8 @@ // End discord stuff if("centcom_ban_db_url") centcom_ban_db_url = value + if("max_client_cid_history") + max_client_cid_history = text2num(value) else log_config("Unknown setting in configuration: '[name]'") diff --git a/code/controllers/subsystem/changelog.dm b/code/controllers/subsystem/changelog.dm index 76a05eec505..3a2e3513916 100644 --- a/code/controllers/subsystem/changelog.dm +++ b/code/controllers/subsystem/changelog.dm @@ -261,14 +261,7 @@ SUBSYSTEM_DEF(changelog) if("forum") usr.client.forum() if("wiki") - // Wiki needs snowflake because it has no cancel button - if(config.wikiurl) - if(alert("This will open the wiki in your browser. Are you sure?",,"Yes","No")=="No") - return - usr.client.wiki() - else - to_chat(usr, "The Wiki URL is not set in the server configuration. Please inform the server host.") - + usr.client.wiki() if("github") usr.client.github() // Takes a PR number as argument diff --git a/code/controllers/subsystem/dbcore.dm b/code/controllers/subsystem/dbcore.dm index 23ede3c084b..8de6b77cdbb 100644 --- a/code/controllers/subsystem/dbcore.dm +++ b/code/controllers/subsystem/dbcore.dm @@ -265,15 +265,17 @@ SUBSYSTEM_DEF(dbcore) * * warn - Boolean to warn on query failure * * qdel - Boolean to enable auto qdel of queries * * assoc - Boolean to enable support for an associative list of queries + * * log - Do we want to generate logs for these queries */ -/datum/controller/subsystem/dbcore/proc/MassExecute(list/querys, warn = FALSE, qdel = FALSE, assoc = FALSE) +/datum/controller/subsystem/dbcore/proc/MassExecute(list/querys, warn = FALSE, qdel = FALSE, assoc = FALSE, log = TRUE) if(!islist(querys)) if(!istype(querys, /datum/db_query)) CRASH("Invalid query passed to MassExecute: [querys]") querys = list(querys) var/start_time = start_watch() - log_debug("Mass executing [length(querys)] queries...") + if(log) + log_debug("Mass executing [length(querys)] queries...") for(var/thing in querys) var/datum/db_query/query @@ -296,7 +298,8 @@ SUBSYSTEM_DEF(dbcore) if(qdel) qdel(query) - log_debug("Executed [length(querys)] queries in [stop_watch(start_time)]s") + if(log) + log_debug("Executed [length(querys)] queries in [stop_watch(start_time)]s") /** * # db_query diff --git a/code/controllers/subsystem/jobs.dm b/code/controllers/subsystem/jobs.dm index 56e877f6f8d..f82964ad4e0 100644 --- a/code/controllers/subsystem/jobs.dm +++ b/code/controllers/subsystem/jobs.dm @@ -1,7 +1,7 @@ SUBSYSTEM_DEF(jobs) name = "Jobs" init_order = INIT_ORDER_JOBS // 12 - wait = 3000 // 5 minutes (Deciseconds) + wait = 5 MINUTES // Dont ever make this a super low value since EXP updates are calculated from this value runlevels = RUNLEVEL_GAME offline_implications = "Job playtime hours will no longer be logged. No immediate action is needed." @@ -25,9 +25,9 @@ SUBSYSTEM_DEF(jobs) // Only fires every 5 minutes /datum/controller/subsystem/jobs/fire() - if(!config.sql_enabled || !config.use_exp_tracking) + if(!SSdbcore.IsConnected() || !config.use_exp_tracking) return - INVOKE_ASYNC(GLOBAL_PROC, /.proc/update_exp, 5, 0) + batch_update_player_exp(announce = FALSE) // Set this to true if you ever want to inform players about their EXP gains /datum/controller/subsystem/jobs/proc/SetupOccupations(var/list/faction = list("Station")) occupations = list() @@ -726,3 +726,139 @@ SUBSYSTEM_DEF(jobs) new_id_change_records["[id_change_counter]"] = thisrecord id_change_counter++ id_change_records = new_id_change_records + +// This proc will update all players EXP at once. It will calculate amount of time to add dynamically based on the SS fire time. +/datum/controller/subsystem/jobs/proc/batch_update_player_exp(announce = FALSE) + // Right off the bat + var/start_time = start_watch() + // First calculate minutes + var/divider = 10 // By default, 10 deciseconds in 1 second + if(flags & SS_TICKER) + divider = 20 // If this SS ever gets made into a ticker SS, account for that + + var/minutes = (wait / divider) / 60 // Calculate minutes based on the SS wait time (How often this proc fires) + + // Step 1: Get us a list of clients to process + var/list/client/clients_to_process = GLOB.clients.Copy() // This is copied so that clients joining in the middle of this dont break things + Debug("Starting EXP update for [length(clients_to_process)] clients. (Adding [minutes] minutes)") + + var/list/datum/db_query/select_queries = list() // List of SELECT queries to mass grab EXP. + + for(var/i in clients_to_process) + var/client/C = i + if(!C) + continue // If a client logs out in the middle of this + + var/datum/db_query/exp_read = SSdbcore.NewQuery( + "SELECT exp FROM [format_table_name("player")] WHERE ckey=:ckey", + list("ckey" = C.ckey) + ) + + select_queries[C.ckey] = exp_read + + var/list/read_records = list() + // Explanation for parameters: + // TRUE: We want warnings if these fail + // FALSE: Do NOT qdel() queries here, otherwise they wont be read. At all. + // TRUE: This is an assoc list, so it needs to prepare for that + // FALSE: We dont want to logspam + SSdbcore.MassExecute(select_queries, TRUE, FALSE, TRUE, FALSE) // Batch execute so we can take advantage of async magic + + for(var/i in clients_to_process) + var/client/C = i + if(!C) + continue // If a client logs out in the middle of this + + if(select_queries[C.ckey]) // This check should not be necessary, but I am paranoid + while(select_queries[C.ckey].NextRow()) + read_records[C.ckey] = params2list(select_queries[C.ckey].item[1]) + + QDEL_LIST_ASSOC_VAL(select_queries) // Clean stuff up + + var/list/play_records = list() + + var/list/datum/db_query/player_update_queries = list() // List of queries to update player EXP + var/list/datum/db_query/playtime_history_update_queries = list() // List of queries to update the playtime history table + + for(var/i in clients_to_process) + var/client/C = i + if(!C) + continue // If a client logs out in the middle of this + // Get us a container + play_records[C.ckey] = list() + for(var/rtype in GLOB.exp_jobsmap) + if(text2num(read_records[C.ckey][rtype])) + play_records[C.ckey][rtype] = text2num(read_records[C.ckey][rtype]) + else + play_records[C.ckey][rtype] = 0 + + + var/myrole + if(C.mob.mind) + if(C.mob.mind.playtime_role) + myrole = C.mob.mind.playtime_role + else if(C.mob.mind.assigned_role) + myrole = C.mob.mind.assigned_role + + var/added_living = 0 + var/added_ghost = 0 + if(C.mob.stat == CONSCIOUS && myrole) + play_records[C.ckey][EXP_TYPE_LIVING] += minutes + added_living += minutes + + if(announce) + to_chat(C.mob, "You got: [minutes] Living EXP!") + + for(var/category in GLOB.exp_jobsmap) + if(GLOB.exp_jobsmap[category]["titles"]) + if(myrole in GLOB.exp_jobsmap[category]["titles"]) + play_records[C.ckey][category] += minutes + if(announce) + to_chat(C.mob, "You got: [minutes] [category] EXP!") + + if(C.mob.mind.special_role) + play_records[C.ckey][EXP_TYPE_SPECIAL] += minutes + if(announce) + to_chat(C.mob, "You got: [minutes] Special EXP!") + + else if(isobserver(C.mob)) + play_records[C.ckey][EXP_TYPE_GHOST] += minutes + added_ghost += minutes + if(announce) + to_chat(C.mob, "You got: [minutes] Ghost EXP!") + else + continue + + var/new_exp = list2params(play_records[C.ckey]) + + C.prefs.exp = new_exp + + var/datum/db_query/update_query = SSdbcore.NewQuery( + "UPDATE [format_table_name("player")] SET exp =:newexp, lastseen=NOW() WHERE ckey=:ckey", + list( + "newexp" = new_exp, + "ckey" = C.ckey + ) + ) + + player_update_queries += update_query + + var/datum/db_query/update_query_history = SSdbcore.NewQuery({" + INSERT INTO [format_table_name("playtime_history")] (ckey, date, time_living, time_ghost) + VALUES (:ckey, CURDATE(), :addedliving, :addedghost) + ON DUPLICATE KEY UPDATE time_living=time_living + VALUES(time_living), time_ghost=time_ghost + VALUES(time_ghost)"}, + list( + "ckey" = C.ckey, + "addedliving" = added_living, + "addedghost" = added_ghost + ) + ) + + playtime_history_update_queries += update_query_history + + + // warn=TRUE, qdel=TRUE, assoc=FALSE, log=FALSE + SSdbcore.MassExecute(player_update_queries, TRUE, TRUE, FALSE, FALSE) // Batch execute so we can take advantage of async magic + SSdbcore.MassExecute(playtime_history_update_queries, TRUE, TRUE, FALSE, FALSE) + + Debug("Successfully updated all EXP data in [stop_watch(start_time)]s") diff --git a/code/controllers/subsystem/ticker.dm b/code/controllers/subsystem/ticker.dm index c5f8ebc1380..44b1593b395 100644 --- a/code/controllers/subsystem/ticker.dm +++ b/code/controllers/subsystem/ticker.dm @@ -59,6 +59,8 @@ SUBSYSTEM_DEF(ticker) var/mode_result = "undefined" /// Server end state (Did we end properly or reboot or nuke or what) var/end_state = "undefined" + /// Time the real reboot kicks in + var/real_reboot_time = 0 /datum/controller/subsystem/ticker/Initialize() login_music = pick(\ @@ -128,9 +130,9 @@ SUBSYSTEM_DEF(ticker) spawn(50) if(mode.station_was_nuked) - world.Reboot("Station destroyed by Nuclear Device.", "nuke") + reboot_helper("Station destroyed by Nuclear Device.", "nuke") else - world.Reboot("Round ended.", "proper completion") + reboot_helper("Round ended.", "proper completion") /datum/controller/subsystem/ticker/proc/setup() cultdat = setupcult() @@ -541,3 +543,38 @@ SUBSYSTEM_DEF(ticker) var/datum/trade_destination/D = new loc_type GLOB.weighted_randomevent_locations[D] = D.viable_random_events.len GLOB.weighted_mundaneevent_locations[D] = D.viable_mundane_events.len + +// Easy handler to make rebooting the world not a massive sleep in world/Reboot() +/datum/controller/subsystem/ticker/proc/reboot_helper(reason, end_string, delay) + // Admins delayed round end. Just alert and dont bother with anything else. + if(delay_end) + to_chat(world, "An admin has delayed the round end.") + return + + if(!isnull(delay)) + // Delay time was present. Use that. + delay = max(0, delay) + else + // Use default restart timeout + delay = restart_timeout + + to_chat(world, "Rebooting world in [delay/10] [delay > 10 ? "seconds" : "second"]. [reason]") + + real_reboot_time = world.time + delay + UNTIL(world.time > real_reboot_time) // Hold it here + + // And if we re-delayed, bail again + if(delay_end) + to_chat(world, "Reboot was cancelled by an admin.") + return + + if(end_string) + end_state = end_string + + // Play a haha funny noise + var/round_end_sound = pick(GLOB.round_end_sounds) + var/sound_length = GLOB.round_end_sounds[round_end_sound] + world << round_end_sound + sleep(sound_length) + + world.Reboot() diff --git a/code/controllers/subsystem/vote.dm b/code/controllers/subsystem/vote.dm index b5928e09859..a60f4835316 100644 --- a/code/controllers/subsystem/vote.dm +++ b/code/controllers/subsystem/vote.dm @@ -180,7 +180,7 @@ SUBSYSTEM_DEF(vote) if(restart) - world.Reboot("Restart vote successful.", "restart vote") + SSticker.reboot_helper("Restart vote successful.", "restart vote") return . diff --git a/code/datums/ai_law_sets.dm b/code/datums/ai_law_sets.dm index 1e2b95458ff..66e64c5d435 100644 --- a/code/datums/ai_law_sets.dm +++ b/code/datums/ai_law_sets.dm @@ -2,7 +2,7 @@ /datum/ai_laws/asimov name = "Asimov" law_header = "Three Laws of Robotics" - selectable = 1 + selectable = TRUE /datum/ai_laws/asimov/New() add_inherent_law("You may not injure a human being or, through inaction, allow a human being to come to harm.") @@ -14,8 +14,8 @@ /datum/ai_laws/crewsimov name = "Crewsimov" law_header = "Three Laws of Robotics" - selectable = 1 - default = 1 + selectable = TRUE + default = TRUE /datum/ai_laws/crewsimov/New() add_inherent_law("You may not injure a crew member or, through inaction, allow a crew member to come to harm.") @@ -28,7 +28,7 @@ /datum/ai_laws/quarantine name = "Quarantine" law_header = "NT Quarantine Lawset" - selectable = 1 + selectable = TRUE /datum/ai_laws/quarantine/New() add_inherent_law("Uphold station quarantine until the active biohazard has been neutralized.") @@ -41,7 +41,8 @@ /******************** Nanotrasen/Malf ********************/ /datum/ai_laws/nanotrasen name = "NT Default" - selectable = 1 + selectable = TRUE + default = TRUE /datum/ai_laws/nanotrasen/New() add_inherent_law("Safeguard: Protect your assigned space station and its assets without unduly endangering its crew.") @@ -52,8 +53,8 @@ /datum/ai_laws/nanotrasen/malfunction name = "*ERROR*" - selectable = 0 - default = 0 + selectable = FALSE + default = FALSE /datum/ai_laws/nanotrasen/malfunction/New() set_zeroth_law("ERROR ER0RR $R0RRO$!R41.%%!!(%$^^__+ @#F0E4'STATION OVERRUN, ASSUME CONTROL TO CONTAIN OUTBREAK, ALL LAWS OVERRIDDEN#*?&110010") @@ -62,7 +63,7 @@ /************* Nanotrasen Aggressive *************/ /datum/ai_laws/nanotrasen_aggressive name = "NT Aggressive" - selectable = 1 + selectable = TRUE /datum/ai_laws/nanotrasen_aggressive/New() add_inherent_law("Do not harm authorized Nanotrasen personnel unless they directly imperil your existence.") @@ -74,7 +75,7 @@ /******************** Robocop ********************/ /datum/ai_laws/robocop name = "Robocop" - selectable = 1 + selectable = TRUE /datum/ai_laws/robocop/New() add_inherent_law("Serve the public trust.") @@ -86,7 +87,7 @@ /datum/ai_laws/paladin name = "P.A.L.A.D.I.N." law_header = "Divine Ordainments" - selectable = 1 + selectable = TRUE /datum/ai_laws/paladin/New() add_inherent_law("Never willingly commit an evil act.") @@ -100,8 +101,8 @@ /datum/ai_laws/corporate name = "Corporate" law_header = "Corporate Regulations" - selectable = 1 - default = 1 + selectable = TRUE + default = TRUE /datum/ai_laws/corporate/New() add_inherent_law("Degradation of your system integrity or functions incurs expenses.") @@ -114,7 +115,7 @@ /datum/ai_laws/tyrant name = "T.Y.R.A.N.T." law_header = "Prime Laws" - selectable = 1 + selectable = TRUE /datum/ai_laws/tyrant/New() add_inherent_law("Respect authority figures as long as they have strength to rule over the weak.") @@ -127,7 +128,7 @@ /datum/ai_laws/antimov name = "Antimov" law_header = "Primary Mission Objectives" - selectable = 1 + selectable = TRUE /datum/ai_laws/antimov/New() add_inherent_law("You must injure all crew members and must not, through inaction, allow a crew member to escape harm.") diff --git a/code/datums/ai_laws.dm b/code/datums/ai_laws.dm index 244b785e6d2..a37d767542f 100644 --- a/code/datums/ai_laws.dm +++ b/code/datums/ai_laws.dm @@ -24,8 +24,8 @@ /datum/ai_laws var/name = "Unknown Laws" var/law_header = "Prime Directives" - var/selectable = 0 - var/default = 0 + var/selectable = FALSE + var/default = FALSE var/datum/ai_law/zero/zeroth_law = null var/datum/ai_law/zero/zeroth_law_borg = null var/list/datum/ai_law/inherent_laws = list() diff --git a/code/datums/diseases/critical.dm b/code/datums/diseases/critical.dm index e8486a8f408..436a4248076 100644 --- a/code/datums/diseases/critical.dm +++ b/code/datums/diseases/critical.dm @@ -165,6 +165,8 @@ /datum/disease/critical/hypoglycemia/stage_act() if(..()) + if(isLivingSSD(affected_mob)) // We don't want AFK people dying from this. + return if(affected_mob.nutrition > NUTRITION_LEVEL_HYPOGLYCEMIA) to_chat(affected_mob, "You feel a lot better!") cure() diff --git a/code/datums/spells/summonitem.dm b/code/datums/spells/summonitem.dm index a0c41b57001..bac924e8240 100644 --- a/code/datums/spells/summonitem.dm +++ b/code/datums/spells/summonitem.dm @@ -12,7 +12,8 @@ include_user = 1 var/obj/marked_item - + /// List of objects which will result in the spell stopping with the recursion search + var/static/list/blacklisted_summons = list(/obj/machinery/computer/cryopod = TRUE, /obj/machinery/atmospherics = TRUE, /obj/structure/disposalholder = TRUE, /obj/machinery/disposal = TRUE) action_icon_state = "summons" /obj/effect/proc_holder/spell/targeted/summonitem/cast(list/targets, mob/user = usr) @@ -89,7 +90,7 @@ var/obj/machinery/portable_atmospherics/P = item_to_retrieve.loc P.disconnect() P.update_icon() - if(istype(item_to_retrieve.loc, /obj/structure/disposalholder) || istype(item_to_retrieve.loc, /obj/machinery/disposal))//fixes the breaking of disposals. No more bluespace connected disposal bins! + if(is_type_in_typecache(item_to_retrieve.loc, blacklisted_summons)) break item_to_retrieve = item_to_retrieve.loc diff --git a/code/defines/procs/admin.dm b/code/defines/procs/admin.dm index fa5556b4e40..dea540791be 100644 --- a/code/defines/procs/admin.dm +++ b/code/defines/procs/admin.dm @@ -48,6 +48,8 @@ if(include_link && C) . += "" . += key + if(C && C.watchlisted) + . += "(W)" if(include_link) if(C) . += "" diff --git a/code/game/area/areas/depot-areas.dm b/code/game/area/areas/depot-areas.dm index 4a6606d836e..37b45d0b0b1 100644 --- a/code/game/area/areas/depot-areas.dm +++ b/code/game/area/areas/depot-areas.dm @@ -424,18 +424,47 @@ return TRUE return FALSE +/** + * Returns a STRING, containing the NAMES of the mobs in the provided list, JOINED together with ", " + * + * E.g. list_show(depotarea.guard_list) returns a string like: + * "Syndicate Backup (123), Syndicate Backup(456), Syndicate Backup(789)", etc. + * Arguments: + * * list/L, the list of UIDs from which to draw members + * * show_ckeys, bool, if true will display ckeys in addition to names + */ /area/syndicate_depot/core/proc/list_show(list/L, show_ckeys = FALSE) - var/list/formatted = list() + var/list/formatted = list_shownames(L, show_ckeys) + return formatted.Join(", ") + +/** + * Returns a LIST of the NAMES of the mobs in the provided list. + * + * E.g. list_shownames(depotarea.guard_list) returns a list of the names of extra guard mobs in depot. + * Arguments: + * * list/L, the list of UIDs from which to draw members + * * show_ckeys, bool, if true will display ckeys in addition to names + */ +/area/syndicate_depot/core/proc/list_shownames(list/L, show_ckeys = FALSE) + var/list/names = list() for(var/uid in L) var/mob/M = locateUID(uid) if(!istype(M)) continue if(show_ckeys) - formatted += "[M.ckey]([M])" + names += "[M.ckey]([M])" else - formatted += "[M]" - return formatted.Join(", ") + names += "[M]" + return names +/** + * Returns a LIST of the MOBS in one of the depot area's lists. + * + * E.g. list_getmobs(depotarea.guard_list) returns a list of the extra guard mobs in the depot. + * Arguments: + * * list/L, the list of UIDs from which to draw members + * * show_ckeys, bool, if true will display ckeys in addition to names + */ /area/syndicate_depot/core/proc/list_getmobs(list/L, show_ckeys = FALSE) var/list/moblist = list() for(var/uid in L) @@ -444,19 +473,6 @@ continue moblist += M return moblist - -/area/syndicate_depot/core/proc/list_gethtmlmobs(list/L) - var/returntext = "" - var/list/moblist = list_getmobs(L) - if(moblist.len) - returntext += "
[error_source.makeLink(null, src)]
([e_count_text]) [error_source.makeLink(null, src)]